X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=configure.in;h=34e93035dd9307f6760488ac19f12cc25a73921f;hb=4b8f9231090ada43f7e16987ec46ac7f45a914ec;hp=0a49f8ca4c3b110dfad844d0bf5c986a60484ba6;hpb=0d3c17d9ab127e5596c8fb97d65122b3b90f6b11;p=pkg%2Fabook.git diff --git a/configure.in b/configure.in index 0a49f8c..34e9303 100644 --- a/configure.in +++ b/configure.in @@ -1,10 +1,30 @@ dnl abook configure.in AC_INIT(abook.c) -AM_INIT_AUTOMAKE(abook, 0.4.12pre1) +AM_INIT_AUTOMAKE(abook, 0.5.5pre1) AM_CONFIG_HEADER(config.h) -AC_CANONICAL_HOST +dnl --------------- +dnl gettext support +dnl --------------- + +AM_GNU_GETTEXT +AM_GNU_GETTEXT_VERSION(0.14.1) + +localedir="$ac_default_prefix/share/locale" +AC_ARG_WITH(localedir, + [ --with-localedir=PATH Where the locale files are installed ]) +if test "x$with_localedir" != "x"; then + localedir="$with_localedir" +elif test "x${prefix}" != "xNONE"; then + localedir="$prefix/share/locale" +fi +AC_DEFINE_UNQUOTED(LOCALEDIR, "$localedir", [locale directory]) +AC_SUBST(localedir) + +dnl ---------------------- +dnl end of gettext support +dnl ---------------------- AC_PROG_CC AC_ISC_POSIX @@ -15,16 +35,32 @@ fi AC_C_INLINE AC_PROG_INSTALL AC_HEADER_STDC -AC_CHECK_HEADERS(unistd.h locale.h termios.h linux/termios.h sys/ioctl.h) -AC_CHECK_HEADER(stdarg.h,AC_DEFINE(HAVE_STDARG_H),AC_MSG_ERROR([*** stdarg.h is missing on your system ***])) +AC_CHECK_HEADERS(unistd.h locale.h sys/ioctl.h) +AC_CHECK_HEADER(stdarg.h,AC_DEFINE(HAVE_STDARG_H, 1, [Define if you have the header file.]),AC_MSG_ERROR([*** stdarg.h is missing on your system ***])) +AC_FUNC_STRCOLL AC_CHECK_FUNCS(setlocale) +ac_widec_funcs=yes +AC_CHECK_HEADER(wchar.h,[ + ac_have_wchar_h=yes + AC_DEFINE(HAVE_WCHAR_H, 1, [Define if you have the header file.])], + [ac_have_wchar_h=no]) +AC_CHECK_FUNCS(mbtowc wcwidth mbrtowc mbsinit,,ac_widec_funcs=no) +AC_CHECK_DECLS(wcwidth) +AC_CHECK_TYPE(wchar_t,,ac_widec_funcs=no) + +if test x$ac_widec_funcs = xyes -a x$ac_have_wchar_h = xyes; then + ac_widec_possible=yes +else + ac_widec_possible=no +fi + dnl ------------------- dnl (n)curses detection dnl ------------------- abook_cv_curses=/usr -AC_ARG_WITH(curses, [ --with-curses=DIR Where ncurses is installed ], +AC_ARG_WITH(curses, [ --with-curses=DIR Where ncurses is installed ], [if test $withval != yes; then abook_cv_curses=$withval fi @@ -33,31 +69,66 @@ AC_ARG_WITH(curses, [ --with-curses=DIR Where ncurses is installed ], CPPFLAGS="$CPPFLAGS -I${abook_cv_curses}/include" fi]) -AC_CHECK_LIB(ncurses, initscr, - [LIBS="$LIBS -lncurses" - if test x$abook_cv_curses = x/usr -a -d /usr/include/ncurses; then - CPPFLAGS="$CPPFLAGS -I/usr/include/ncurses" +AC_CHECK_LIB(ncursesw, initscr, + [LIBS="$LIBS -lncursesw" + if test x$abook_cv_curses = x/usr -a -d /usr/include/ncursesw; then + CPPFLAGS="$CPPFLAGS -I/usr/include/ncursesw" fi - AC_CHECK_HEADERS(ncurses.h)], - [CF_CURSES_LIBS]) + AC_CHECK_HEADERS(ncurses.h)],[ + ac_widec_possible=no + AC_CHECK_LIB(ncurses, initscr, + [LIBS="$LIBS -lncurses" + if test x$abook_cv_curses = x/usr -a -d /usr/include/ncurses; then + CPPFLAGS="$CPPFLAGS -I/usr/include/ncurses" + fi + AC_CHECK_HEADERS(ncurses.h)], + [CF_CURSES_LIBS]) + ]) dnl -------------------------- dnl end of (n)curses detection dnl -------------------------- +dnl ------------------ +dnl readline detection +dnl ------------------ + +abook_cv_readline=/usr +AC_ARG_WITH(readline, [ --with-readline=DIR Where readline is installed ], + [if test $withval != yes; then + abook_cv_readline=$withval + fi + if test x$abook_cv_readline != x/usr; then + LDFLAGS="-L${abook_cv_readline}/lib $LDFLAGS" + CPPFLAGS="$CPPFLAGS -I${abook_cv_readline}/include" + fi]) + +AC_LIB_READLINE + +if test x$ac_cv_lib_readline = xno -o x$ac_cv_lib_readline_history = xno; then + AC_MSG_ERROR([*** readline library not found or it doesn't support history ***]) +fi + +dnl ------------------------- +dnl end of readline detection +dnl ------------------------- + +if test x$ac_widec_possible = xyes; then + AC_DEFINE(HANDLE_MULTIBYTE, 1, [Handle multibyte characters]) +fi + AC_CHECK_FUNCS(resizeterm) -AC_CHECK_FUNC(snprintf, [AC_DEFINE(HAVE_SNPRINTF)],) -AC_CHECK_FUNC(vsnprintf, [AC_DEFINE(HAVE_VSNPRINTF)],) +AC_CHECK_FUNCS(snprintf vsnprintf) -AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging support ], [case "${enableval}" in +AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging support ], [case "${enableval}" in yes) debug=true ;; no) debug=false ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;; esac], [debug=false]) if test x$debug = xtrue; then - CPPFLAGS="-DDEBUG $CPPFLAGS" + CPPFLAGS="-DDEBUG=1 $CPPFLAGS" CFLAGS="-g $CFLAGS" fi @@ -65,5 +136,5 @@ if test x$GCC = xyes; then CFLAGS="-Wall $CFLAGS" fi -AC_OUTPUT(Makefile) +AC_OUTPUT(Makefile abook.spec intl/Makefile po/Makefile.in)