mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 21:43:02 +01:00
Added check and define for wide char support
Try to figure out if wide character support is available and provide the necessary define for toxic.
This commit is contained in:
parent
1087bbb4ff
commit
78deb13c45
@ -15,7 +15,8 @@ toxic_SOURCES = $(top_srcdir)/src/main.c \
|
|||||||
$(top_srcdir)/src/dhtstatus.h \
|
$(top_srcdir)/src/dhtstatus.h \
|
||||||
$(top_srcdir)/src/dhtstatus.c
|
$(top_srcdir)/src/dhtstatus.c
|
||||||
|
|
||||||
toxic_CFLAGS = $(NCURSES_CFLAGS) \
|
toxic_CFLAGS = -I$(top_srcdir) \
|
||||||
|
$(NCURSES_CFLAGS) \
|
||||||
$(LIBSODIUM_CFLAGS) \
|
$(LIBSODIUM_CFLAGS) \
|
||||||
$(LIBTOXCORE_CFLAGS)
|
$(LIBTOXCORE_CFLAGS)
|
||||||
|
|
||||||
|
35
configure.ac
35
configure.ac
@ -108,11 +108,18 @@ AC_CHECK_FUNCS(
|
|||||||
# pkg-config based tests
|
# pkg-config based tests
|
||||||
PKG_PROG_PKG_CONFIG
|
PKG_PROG_PKG_CONFIG
|
||||||
|
|
||||||
|
NCURSES_WIDECHAR_SUPPORT="yes"
|
||||||
if test -n "$PKG_CONFIG"; then
|
if test -n "$PKG_CONFIG"; then
|
||||||
if test "$WIN32" != "xyes"; then
|
if test "$WIN32" != "xyes"; then
|
||||||
PKG_CHECK_MODULES([NCURSES], [ncursesw], [],
|
PKG_CHECK_MODULES([NCURSES], [ncursesw],
|
||||||
|
[],
|
||||||
[
|
[
|
||||||
AC_MSG_ERROR([required library ncursesw was not found on your system: $NCURSES_PKG_ERRORS])
|
NCURSES_WIDECHAR_SUPPORT="no"
|
||||||
|
PKG_CHECK_MODULES([NCURSES], [ncurses],
|
||||||
|
[],
|
||||||
|
[
|
||||||
|
AC_MSG_ERROR([required library ncursesw was not found on your system: $NCURSES_PKG_ERRORS])
|
||||||
|
])
|
||||||
])
|
])
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
@ -129,6 +136,8 @@ if (test -z "$PKG_CONFIG") || (test "x$WIN32" = "xyes"); then
|
|||||||
)
|
)
|
||||||
|
|
||||||
if test "x$WIN32" = "xyes"; then
|
if test "x$WIN32" = "xyes"; then
|
||||||
|
dnl Check if pdcurses provides wide char support
|
||||||
|
NCURSES_WIDECHAR_SUPPORT="no"
|
||||||
AC_CHECK_LIB([pdcurses], [clear],
|
AC_CHECK_LIB([pdcurses], [clear],
|
||||||
[],
|
[],
|
||||||
[
|
[
|
||||||
@ -153,7 +162,22 @@ if (test -z "$PKG_CONFIG") || (test "x$WIN32" = "xyes"); then
|
|||||||
AC_CHECK_LIB([ncursesw], [get_wch],
|
AC_CHECK_LIB([ncursesw], [get_wch],
|
||||||
[],
|
[],
|
||||||
[
|
[
|
||||||
AC_MSG_ERROR([required library ncurses was not found on your system])
|
NCURSES_WIDECHAR_SUPPORT="no"
|
||||||
|
AC_CHECK_LIB([ncurses], [clear],
|
||||||
|
[],
|
||||||
|
[
|
||||||
|
unset ac_cv_lib_ncursesw_get_wch
|
||||||
|
AC_CHECK_LIB([ncurses], [clear],
|
||||||
|
[],
|
||||||
|
[
|
||||||
|
AC_MSG_ERROR([required library ncurses was not found on your system])
|
||||||
|
],
|
||||||
|
[
|
||||||
|
-ltinfo
|
||||||
|
]
|
||||||
|
)
|
||||||
|
]
|
||||||
|
)
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
-ltinfo
|
-ltinfo
|
||||||
@ -292,6 +316,11 @@ eval PACKAGE_DATADIR="${datadir}/${PACKAGE}"
|
|||||||
eval PACKAGE_DATADIR="${PACKAGE_DATADIR}"
|
eval PACKAGE_DATADIR="${PACKAGE_DATADIR}"
|
||||||
AC_DEFINE_UNQUOTED(PACKAGE_DATADIR, "$PACKAGE_DATADIR", [toxic data directory])
|
AC_DEFINE_UNQUOTED(PACKAGE_DATADIR, "$PACKAGE_DATADIR", [toxic data directory])
|
||||||
|
|
||||||
|
if test "x$NCURSES_WIDECHAR_SUPPORT" = "xyes"; then
|
||||||
|
AC_DEFINE([HAVE_WIDECHAR], [1], [ncurses wide char support available])
|
||||||
|
AC_DEFINE([_XOPEN_SOURCE_EXTENDED], [1],
|
||||||
|
[enable X/Open Portability Guide functionality])
|
||||||
|
fi
|
||||||
|
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile
|
||||||
misc/Makefile
|
misc/Makefile
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
* Toxic -- Tox Curses Client
|
* Toxic -- Tox Curses Client
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
@ -18,6 +18,10 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "dhtstatus.h"
|
#include "dhtstatus.h"
|
||||||
#include "string.h"
|
#include "string.h"
|
||||||
#include "network.h"
|
#include "network.h"
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
* Toxic -- Tox Curses Client
|
* Toxic -- Tox Curses Client
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
* Toxic -- Tox Curses Client
|
* Toxic -- Tox Curses Client
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "friendlist.h"
|
#include "friendlist.h"
|
||||||
#include "prompt.h"
|
#include "prompt.h"
|
||||||
#include "dhtstatus.h"
|
#include "dhtstatus.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user