Sha256: 13a98ec5b6436db11d993aaee33f3a71cfaeefa7b050d6e63d7ccb328c12d532
Contents?: true
Size: 1.57 KB
Versions: 3
Compression:
Stored size: 1.57 KB
Contents
AC_PREREQ(2.59) AC_INIT([tnef],[1.4.9],[verdammelt@users.sourceforge.net]) AC_CONFIG_SRCDIR([src/tnef.c]) AM_INIT_AUTOMAKE AC_CONFIG_HEADER([src/config.h]) AC_CONFIG_LIBOBJ_DIR(src/replace) dnl check for programs AC_PROG_AWK AC_PROG_CC AC_PROG_CPP AC_PROG_CXX AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_RANLIB dnl check for libraries AC_CHECK_LIB([intl],gettext) dnl check for headers AC_HEADER_STDC AC_CHECK_HEADERS([libintl.h]) AC_CHECK_DECLS([basename]) dnl check for typedefs AC_TYPE_SIZE_T AC_HEADER_STAT dnl check for structures dnl check for compiler characteristics. AC_C_CONST AC_CHECK_SIZEOF(int) dnl check for library functions AC_REPLACE_FUNCS(strdup getopt_long basename) AC_CHECK_FUNCS(strrchr memmove memset strtoul) AC_FUNC_VPRINTF AC_FUNC_MALLOC dnl do not use this, will try to add in lstat.c which is unnecessary dnl AC_FUNC_STAT dnl check for system services dnl extra arguments: AM_MAINTAINER_MODE AC_ARG_ENABLE( warnings, [ --enable-warnings enable compile warnings], AC_COMPILE_WARNINGS) AC_ARG_ENABLE( debug, [ --enable-debug enable debug build], AC_DEBUG_COMPILE) dnl output AC_CONFIG_FILES([Makefile BUGS tnef.spec doc/Makefile doc/tnef.1 doc/www/Makefile doc/www/cgi-bin/Makefile doc/www/htdocs/Makefile src/Makefile src/replace/Makefile tests/Makefile tests/cmdline/Makefile tests/files/Makefile tests/files/baselines/Makefile tests/files/datafiles/Makefile]) AC_OUTPUT
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tnef-1.0.1 | ext/tnef/configure.in |
tnef-1.0.0 | ext/tnef/configure.in |
tnef-0.0.1 | ext/tnef/configure.in |