source: main/trunk/search4j/configure.ac

Last change on this file was 35457, checked in by davidb, 3 years ago

Addition of java-based solution to more cleanly determine Java version and bitness, rather than relying of it's 'version' minus argument and inspecting with 'file' the 'java' program. This commit for Unix OS. A later phase of work will be the updated win32.mak file for Windows. Then a final phase of work will be for the 'search4j' source code to be tied in with the generated jar files

File size: 614 bytes
RevLine 
[17496]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
[35457]14AC_PROG_JAVAC
[17496]15
16# Checks for libraries.
17
18# Checks for header files.
19
20# Checks for typedefs, structures, and compiler characteristics.
21AC_HEADER_STDBOOL
22AC_C_CONST
23
24# Checks for library functions.
25AC_HEADER_STDC
26AC_CHECK_FUNCS([memset])
27
28AC_CONFIG_FILES([Makefile])
29AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.