dnl Process this file with autoconf to produce a configure script. AC_INIT(src/main.c) AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE(spacechart,"0.9.4") AM_MAINTAINER_MODE AM_ACLOCAL_INCLUDE(macros) dnl Checks for programs. AC_PROG_CC AC_ISC_POSIX AC_PROG_MAKE_SET AM_PROG_LEX AC_PROG_YACC AC_ARG_PROGRAM dnl Checks for libraries. dnl Replace `main' with a function in -libs: AC_CHECK_LIB(ibs, main) dnl Replace `main' with a function in -lm: AC_CHECK_LIB(m, main) GNOME_INIT dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(strings.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE AC_TYPE_SIZE_T GNOME_COMPILE_WARNINGS ALL_LINGUAS="es" AM_GNU_GETTEXT AC_SUBST(CFLAGS) AC_SUBST(LDFLAGS) dnl Checks for library functions. AC_OUTPUT([ Makefile src/Makefile include/Makefile pixmaps/Makefile intl/Makefile po/Makefile.in data/Makefile doc/Makefile])