1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT(cwidget, 0.5.16)
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([src/cwidget/toplevel.cc])
AM_INIT_AUTOMAKE
AC_CONFIG_HEADERS([config.h cwidget-config.h])
dnl Use C++
AC_LANG([C++])
BUILD_LIBRARY=yes
AC_ARG_ENABLE(library, AS_HELP_STRING([--disable-library], [Disable building the library itself; only build documentation.]),
[if test x$enableval = xno; then BUILD_LIBRARY=no; fi],
)
AM_CONDITIONAL(BUILD_LIBRARY, [test x$BUILD_LIBRARY = xyes])
dnl AM_GNU_GETTEXT needs to be called unconditionally, or the
dnl configure script freaks out. Otherwise this would be inside the
dnl stuff that gets disabled by --disable-library.
ALL_LINGUAS=""
AM_GNU_GETTEXT([external])
dnl Try to find doxygen in the path.
AC_MSG_CHECKING([for the Doxygen documentation generator (http://www.doxygen.org)])
DOXYGEN=`which doxygen 2> /dev/null`
AC_SUBST(DOXYGEN)
if test x$DOXYGEN = x
then
AC_MSG_RESULT([not found])
else
AC_MSG_RESULT([found at $DOXYGEN])
fi
AM_CONDITIONAL(DOXYGEN, [test x$DOXYGEN != x])
dnl Try to find doxygen in the path.
AC_MSG_CHECKING([for the ikiwiki Web site compiler (http://ikiwiki.info)])
IKIWIKI=`which ikiwiki 2>/dev/null`
AC_SUBST(IKIWIKI)
if test x$IKIWIKI = x
then
AC_MSG_RESULT([not found])
else
AC_MSG_RESULT([found at $IKIWIKI])
fi
AM_CONDITIONAL(IKIWIKI, [test x$IKIWIKI != x])
RUN_TESTS=0
if test x$BUILD_LIBRARY = xyes
then
dnl Find the key tools.
AC_PROG_CXX
AC_PROG_LIBTOOL
dnl Look for ncurses
AC_CHECK_LIB(ncursesw, initscr, ,
[AC_MSG_ERROR([Can't find libncursesw -- please install libncursesw5-dev])])
dnl We need threading.
AC_CHECK_LIB(pthread, main,
HAVE_LIBPTHREAD=1
, [AC_MSG_ERROR([Can't find the POSIX thread libraries])])
if test x$HAVE_LIBPTHREAD = x1
then
AC_CHECK_HEADER(pthread.h,
CXXFLAGS="$CXXFLAGS -D_REENTRANT"
LIBS="$LIBS -lpthread"
[AC_DEFINE([HAVE_LIBPTHREAD], [] , [Define if pthread is available])]
,
[AC_MSG_ERROR([POSIX thread header not installed])])
fi
dnl We need strerror_r, but strerror_r has different signatures on GNU
dnl and in other places.
dnl
dnl We could try to hack around a missing strerror_r (e.g. by using
dnl strerror and locking around it) if someone wants to compile this
dnl on a horrid system without safe error string functions.
AC_FUNC_STRERROR_R
if test x$ac_cv_have_strerror_r = xno
then
AC_MSG_ERROR([cwidget requires an implementation of strerror_r()])
fi
dnl Find sigc++
PKG_CHECK_MODULES(SIGC, sigc++-2.0)
CXXFLAGS="$CXXFLAGS $SIGC_CFLAGS"
LIBS="$LIBS $SIGC_LIBS"
AC_DEFINE_UNQUOTED(SIGC_VERSION, ["$(pkg-config --modversion sigc++-2.0)"], [The version of libsigc++ with which the program was compiled])
AC_CHECK_HEADER(locale.h, [AC_DEFINE([HAVE_LOCALE_H], [], [Define if locale.h is available])])
AC_CHECK_DECL(setlocale, [AC_DEFINE([HAVE_SETLOCALE], [], [Define if setlocale is available in locale.h])], , [#include <locale.h>])
dnl Figure out how to extend string traits
TRAITS_CLASS=""
AC_MSG_CHECKING([for the name of the character traits template])
for T in char_traits string_char_traits
do
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <string>],
[std::basic_string<unsigned char,
std::$T < unsigned char > > s;])],
TRAITS_CLASS=$T)
done
if test x$TRAITS_CLASS = xstring_char_traits
then
AC_MSG_WARN([Your compiler uses string_char_traits for its character traits. Some compilers (eg, g++ 2.95) which use this name for the character traits template are known to have hideously broken implementations of the standard string class, which cause aptitude to fail to compile. If you have a compiler with this problem, please upgrade it to a version that has a more compliant version of the STL (g++ >=3.0 is known to work). You can specify which compiler this script should use via the CXX environment variable.])
fi
if test x$TRAITS_CLASS = x
then
AC_MSG_ERROR([can't find the name of the character traits template])
else
AC_DEFINE_UNQUOTED(TRAITS_CLASS, $TRAITS_CLASS, [The name of the class used by the STL to define character traits])
AC_MSG_RESULT([$TRAITS_CLASS])
fi
dnl Default to -Werror, but add an easy flag to disable it.
WERROR="-Werror"
AC_ARG_ENABLE(dynamic-backtrace,
AS_HELP_STRING([--enable-dynamic-backtrace], [Modify the executable so that it can generate a backtrace for uncaught exceptions. Will double the size of the stripped binary.]),
[if test x$enableval = xyes
then
AC_DEFINE([ENABLE_DYNAMIC_BACKTRACE], [], [Define to enable dynamic generation of backtraces if HAVE_EXECINFO_H is defined])
LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
fi]
)
AC_ARG_ENABLE(werror,
AS_HELP_STRING([--disable-werror], [do not compile with -Werror]),
if test x$enableval = xno
then
WERROR=""
fi
)
AC_SUBST(WERROR)
dnl Enable test cases if cppunit is present.
PKG_CHECK_MODULES(CPPUNIT, cppunit,
[HAVE_CPPUNIT=1
AC_SUBST(CPPUNIT_CFLAGS)
AC_SUBST(CPPUNIT_LIBS)],
[true])
# END LIBRARY CONFIGURATION
fi
AM_CONDITIONAL([HAVE_CPPUNIT], [test x$HAVE_CPPUNIT = x1])
AC_CONFIG_FILES([
po/Makefile.in
Doxyfile
Makefile
cwidget.pc
doc/Makefile
src/Makefile
src/cwidget/Makefile
src/cwidget/config/Makefile
src/cwidget/widgets/Makefile
src/cwidget/generic/Makefile
src/cwidget/generic/threads/Makefile
src/cwidget/generic/util/Makefile
tests/Makefile
])
AC_OUTPUT
|