source: main/branches/64_bit_Greenstone/greenstone2/common-src/packages/gdbm/gdbm-1.8.3/configure.in@ 23508

Last change on this file since 23508 was 23508, checked in by sjm84, 13 years ago

Committing 64 bit changes into the branch

File size: 823 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2AC_INIT([gdbm], [1.8.3])
3AC_PREREQ(2.54)
4AC_CONFIG_SRCDIR([gdbmdefs.h])
5AC_CONFIG_HEADERS([autoconf.h])
6
7dnl get $target_cpu, $target_vendor, and $target_os
8dnl (as well as host_*)
9AC_CANONICAL_SYSTEM
10
11AC_PROG_CC
12AC_PROG_CPP
13AC_PROG_INSTALL
14AM_PROG_LIBTOOL
15dnl AC_PROG_RANLIB
16dnl AC_C_BIGENDIAN([])
17
18dnl AC_MSG_CHECKING(to see if architecture is 64-bit)
19dnl arch_64bit=no
20dnl case "$host_cpu" in
21dnl x86_64) arch_64bit=yes ;;
22dnl esac
23
24AC_C_CONST
25AC_CHECK_HEADERS([stdlib.h string.h sys/file.h unistd.h fcntl.h sys/types.h memory.y])
26AC_CHECK_LIB(dbm, main)
27AC_CHECK_LIB(ndbm, main)
28AC_CHECK_FUNCS([rename ftruncate flock bcopy fsync])
29AC_REPLACE_FUNCS(getopt)
30AC_TYPE_OFF_T
31AC_CHECK_MEMBERS([struct stat.st_blksize])
32AC_CONFIG_FILES([Makefile])
33AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.