source: main/trunk/greenstone2/runtime-src/packages/d2m/configure.in@ 24901

Last change on this file since 24901 was 10365, checked in by kjdon, 19 years ago

changed my mind, now adding these all individually instead of in a tar file

  • Property svn:keywords set to Author Date Id Revision
File size: 726 bytes
Line 
1# Process this file with autoconf to produce a configure script.
2
3AC_PREREQ(2.59)
4AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
5AC_CONFIG_SRCDIR([danMARC.c])
6AC_CONFIG_HEADER([config.h])
7
8# Checks for programs.
9AC_PROG_CC
10AC_PROG_RANLIB
11
12# Checks for libraries.
13
14# Checks for header files.
15AC_HEADER_STDC
16AC_CHECK_HEADERS([fcntl.h malloc.h netdb.h netinet/in.h stdlib.h string.h sys/socket.h unistd.h])
17
18# Checks for typedefs, structures, and compiler characteristics.
19AC_C_CONST
20AC_TYPE_SIZE_T
21AC_STRUCT_TM
22
23# Checks for library functions.
24AC_FUNC_MALLOC
25AC_TYPE_SIGNAL
26AC_FUNC_STRFTIME
27AC_CHECK_FUNCS([alarm gethostbyname putenv socket strcasecmp strdup strncasecmp strstr])
28
29AC_CONFIG_FILES([Makefile])
30AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.