From a00fd90cded04581b53d107f07ad2ff4e83384b3 Mon Sep 17 00:00:00 2001 From: Sam Varshavchik Date: Sun, 25 Aug 2013 14:43:26 -0400 Subject: Renamed configure.in to configure.ac --- numlib/configure.ac | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ numlib/configure.in | 49 ------------------------------------------------- 2 files changed, 49 insertions(+), 49 deletions(-) create mode 100644 numlib/configure.ac delete mode 100644 numlib/configure.in (limited to 'numlib') diff --git a/numlib/configure.ac b/numlib/configure.ac new file mode 100644 index 0000000..5291521 --- /dev/null +++ b/numlib/configure.ac @@ -0,0 +1,49 @@ +dnl Process this file with autoconf to produce a configure script. +dnl +dnl Copyright 1998 - 2010 Double Precision, Inc. See COPYING for +dnl distribution information. + +AC_PREREQ(2.59) +AC_INIT(numlib, 0.10, courier-users@lists.sourceforge.net) + +>confdefs.h # Kill PACKAGE_ macros + +AC_CONFIG_SRCDIR([atotimet.c]) +AC_CONFIG_AUX_DIR(../..) +AM_CONFIG_HEADER([config.h]) +AM_INIT_AUTOMAKE([foreign no-define]) + +dnl Checks for programs. +AC_PROG_AWK +AC_PROG_CC +AC_PROG_INSTALL +AC_PROG_LN_S +AC_PROG_LIBTOOL + +if test "$GCC" = "yes" +then + CFLAGS="$CFLAGS -Wall" +fi + +CFLAGS="-I.. -I${srcdir}/.. $CFLAGS" + +dnl Checks for libraries. + +dnl Checks for header files. + +AC_CHECK_HEADERS(unistd.h stdint.h) + +AC_CHECK_TYPE(int64_t, [ : ], + [ + AC_DEFINE_UNQUOTED(int64_t,long long,[default definition of int64_t]) + ]) + +dnl Checks for typedefs, structures, and compiler characteristics. +AC_TYPE_UID_T +AC_TYPE_PID_T +AC_SYS_LARGEFILE + +dnl Checks for library functions. + +AC_CHECK_FUNCS(setgroups initgroups) +AC_OUTPUT(Makefile) diff --git a/numlib/configure.in b/numlib/configure.in deleted file mode 100644 index 5291521..0000000 --- a/numlib/configure.in +++ /dev/null @@ -1,49 +0,0 @@ -dnl Process this file with autoconf to produce a configure script. -dnl -dnl Copyright 1998 - 2010 Double Precision, Inc. See COPYING for -dnl distribution information. - -AC_PREREQ(2.59) -AC_INIT(numlib, 0.10, courier-users@lists.sourceforge.net) - ->confdefs.h # Kill PACKAGE_ macros - -AC_CONFIG_SRCDIR([atotimet.c]) -AC_CONFIG_AUX_DIR(../..) -AM_CONFIG_HEADER([config.h]) -AM_INIT_AUTOMAKE([foreign no-define]) - -dnl Checks for programs. -AC_PROG_AWK -AC_PROG_CC -AC_PROG_INSTALL -AC_PROG_LN_S -AC_PROG_LIBTOOL - -if test "$GCC" = "yes" -then - CFLAGS="$CFLAGS -Wall" -fi - -CFLAGS="-I.. -I${srcdir}/.. $CFLAGS" - -dnl Checks for libraries. - -dnl Checks for header files. - -AC_CHECK_HEADERS(unistd.h stdint.h) - -AC_CHECK_TYPE(int64_t, [ : ], - [ - AC_DEFINE_UNQUOTED(int64_t,long long,[default definition of int64_t]) - ]) - -dnl Checks for typedefs, structures, and compiler characteristics. -AC_TYPE_UID_T -AC_TYPE_PID_T -AC_SYS_LARGEFILE - -dnl Checks for library functions. - -AC_CHECK_FUNCS(setgroups initgroups) -AC_OUTPUT(Makefile) -- cgit v1.2.3