Annotation of sql/oracle/configure.in, revision 1.8
1.1 parser 1: dnl Process this file with autoconf to produce a configure script.
2: AC_INIT(parser3oracle.C)
1.8 ! paf 3: AM_INIT_AUTOMAKE(parser3oracle, 3.0b, nodefine)
1.1 parser 4:
5: AM_CONFIG_HEADER(config_auto.h)
6:
7: dnl Arguments
8:
1.2 parser 9: AC_ARG_WITH(oracleoci-inc,[ --with-oracleoci-inc[=DIR] DIR is the Oracle OCI includes directory],,
1.1 parser 10: withval="$ORACLE_HOME/rdbms/demo"
11: )
1.2 parser 12: ORACLE_OCI_INC=$withval
13: AC_SUBST(ORACLE_OCI_INC)
1.1 parser 14:
1.2 parser 15: if test \! -f "$ORACLE_OCI_INC/oci.h"; then
16: AC_MSG_ERROR($ORACLE_OCI_INC does not seem to be valid Oracle OCI includes directory)
17: fi
18:
19:
20: AC_ARG_WITH(oraclepublic-inc,[ --with-oraclepublic-inc[=DIR] DIR is the Oracle public includes directory],,
1.1 parser 21: withval="$ORACLE_HOME/network/public"
22: )
1.2 parser 23: ORACLE_PUBLIC_INC=$withval
24: AC_SUBST(ORACLE_PUBLIC_INC)
25:
26: if test \! -f "$ORACLE_PUBLIC_INC/nzt.h"; then
27: AC_MSG_ERROR($ORACLE_PUBLIC_INC does not seem to be valid Oracle public includes directory)
28: fi
1.1 parser 29:
30:
31: dnl Checks for programs.
32: AC_PROG_INSTALL
33: AC_PROG_MAKE_SET
34: AC_PROG_AWK
35:
36: AC_LANG_CPLUSPLUS
37: AC_PROG_CXX
38:
39: dnl Enable building of the convenience library
40: dnl and set LIBLTDL accordingly
41: AC_LIBLTDL_CONVENIENCE
42: dnl Substitute INCLTDL and LIBLTDL in the Makefiles
43: AC_SUBST(INCLTDL)
44: AC_SUBST(LIBLTDL)
45: AC_SUBST(LIBADD_DL)
46: dnl Check for dlopen support
47: AC_LIBTOOL_DLOPEN
48: dnl Configure libtool
1.7 paf 49: AC_DISABLE_STATIC
1.1 parser 50: AM_PROG_LIBTOOL
51: dnl Configure libltdl
52: AC_CONFIG_SUBDIRS(libltdl)
53:
54: dnl Checks for libraries.
55:
56: dnl Checks for header files.
57:
58: AC_CHECK_HEADERS(
59: stdio.h \
60: stdlib.h \
61: string.h \
62: setjmp.h \
1.4 paf 63: ctype.h \
64: setjmp.h
1.1 parser 65: )
66:
1.6 paf 67: AC_MSG_CHECKING(for BSD setenv/getenv/unsetenv)
68: AC_TRY_COMPILE(
69: #ifdef HAVE_STDLIB_H
70: # include <stdlib.h>
71: #endif
72: #ifdef HAVE_STRING_H
73: # include <string.h>
74: #endif
75: ,
76: #define TEST_NAME "oracle-configure-test-var"
77: #define TEST_VALUE "oracle-configure-test-value"
78: int result=setenv(TEST_NAME, TEST_VALUE, 1/*overwrite*/);
79: char *getenv_value=getenv(TEST_NAME);
80: if(!getenv_value)
81: return 1;
82: if(strcmp(getenv_value, TEST_VALUE)!=0)
83: return 2;
84: unsetenv(TEST_NAME);
85: ,[
86: AC_MSG_RESULT(yes)
87: AC_DEFINE(HAVE_SETENV,,library has BSD setenv/unsetenv)
88: ],
89: AC_MSG_RESULT(no)
90:
91: AC_MSG_CHECKING(for POSIX putenv/getenv)
92: AC_TRY_COMPILE(
93: #ifdef HAVE_STDLIB_H
94: # include <stdlib.h>
95: #endif
96: #ifdef HAVE_STRING_H
97: # include <string.h>
98: #endif
99: ,
100: #define TEST_NAME "oracle-configure-test-var"
101: #define TEST_VALUE "oracle-configure-test-value"
102: int result=putenv(TEST_NAME"="TEST_VALUE);
103: char *getenv_value=getenv(TEST_NAME);
104: if(!getenv_value)
105: return 1;
106: if(strcmp(getenv_value, TEST_NAME)!=0)
107: return 2;
108: ,[
109: AC_MSG_RESULT(yes)
110: AC_DEFINE(HAVE_PUTENV,,library has POSIX putenv)
111: ],
112: AC_MSG_RESULT(no)
113: AC_MSG_ERROR("there must be some function to modify environment")
114: )
115: )
116:
1.1 parser 117: dnl Checks for typedefs, structures, and compiler characteristics.
118:
119: AC_TYPE_SIZE_T
120:
121: dnl Checks for library functions.
122:
123: dnl Output makefiles
124:
125: AC_OUTPUT(libltdl/Makefile Makefile)
E-mail: