source: other-projects/trunk/search4j/configure.ac@ 18237

Last change on this file since 18237 was 17496, checked in by oranfry, 16 years ago

GNU style build files for search4j

File size: 600 bytes
Line 
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.59)
5AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
6AC_CONFIG_SRCDIR([search4j.cpp])
7AC_CONFIG_HEADER([config.h])
8
9# Checks for programs.
10AC_PROG_CXX
11AC_PROG_CC
12AC_PROG_CPP
13AC_PROG_INSTALL
14
15# Checks for libraries.
16
17# Checks for header files.
18
19# Checks for typedefs, structures, and compiler characteristics.
20AC_HEADER_STDBOOL
21AC_C_CONST
22
23# Checks for library functions.
24AC_HEADER_STDC
25AC_CHECK_FUNCS([memset])
26
27AC_CONFIG_FILES([Makefile])
28AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.