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
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT(include/ability.h)
AC_CANONICAL_SYSTEM
AC_ISC_POSIX
AM_INIT_AUTOMAKE("AIME", "0.60.3")
AM_CONFIG_HEADER(include/autoconfig.h)
CFLAGS="-g"
CXXFLAGS="-g -frepo"
dnl Checks for type of system
AC_CYGWIN
dnl Set of available languages
ALL_LINGUAS=de
dnl Checks for programs.
AC_PROG_CXX
AC_PROG_CC
AC_PROG_CPP
AC_PROG_MAKE_SET
dnl Tell that we are using gettext
dnl turned off for now, uncomment to turn on
dnl AM_GNU_GETTEXT
dnl Checks for libraries.
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h strings.h sys/time.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_HEADER_TIME
dnl Checks for library functions.
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(strtoul)
dnl choose this one for gettext support
dnl AC_OUTPUT(Makefile utils/converter/Makefile src/Makefile utils/Makefile \
dnl intl/Makefile po/Makefile.in)
AC_OUTPUT(Makefile utils/converter/Makefile src/Makefile utils/Makefile)
|