Annotation of sql/oracle/configure.in, revision 1.16
1.1 parser 1: dnl Process this file with autoconf to produce a configure script.
2: AC_INIT(parser3oracle.C)
1.14 paf 3: AM_INIT_AUTOMAKE(parser3oracle, 3.1.HEAD, 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 Configure libtool
1.7 paf 47: AC_DISABLE_STATIC
1.9 paf 48: AC_LIBTOOL_WIN32_DLL
1.13 paf 49: AC_PROG_LIBTOOL
1.1 parser 50: dnl Configure libltdl
51: AC_CONFIG_SUBDIRS(libltdl)
52:
53: dnl Checks for libraries.
54:
55: dnl Checks for header files.
56:
57: AC_CHECK_HEADERS(
58: stdio.h \
59: stdlib.h \
60: string.h \
61: setjmp.h \
1.4 paf 62: ctype.h \
63: setjmp.h
1.1 parser 64: )
65:
1.6 paf 66: AC_MSG_CHECKING(for BSD setenv/getenv/unsetenv)
67: AC_TRY_COMPILE(
68: #ifdef HAVE_STDLIB_H
69: # include <stdlib.h>
70: #endif
71: #ifdef HAVE_STRING_H
72: # include <string.h>
73: #endif
74: ,
75: #define TEST_NAME "oracle-configure-test-var"
76: #define TEST_VALUE "oracle-configure-test-value"
77: int result=setenv(TEST_NAME, TEST_VALUE, 1/*overwrite*/);
78: char *getenv_value=getenv(TEST_NAME);
79: if(!getenv_value)
80: return 1;
81: if(strcmp(getenv_value, TEST_VALUE)!=0)
82: return 2;
83: unsetenv(TEST_NAME);
84: ,[
85: AC_MSG_RESULT(yes)
86: AC_DEFINE(HAVE_SETENV,,library has BSD setenv/unsetenv)
87: ],
88: AC_MSG_RESULT(no)
89:
90: AC_MSG_CHECKING(for POSIX putenv/getenv)
91: AC_TRY_COMPILE(
92: #ifdef HAVE_STDLIB_H
93: # include <stdlib.h>
94: #endif
95: #ifdef HAVE_STRING_H
96: # include <string.h>
97: #endif
98: ,
99: #define TEST_NAME "oracle-configure-test-var"
100: #define TEST_VALUE "oracle-configure-test-value"
101: int result=putenv(TEST_NAME"="TEST_VALUE);
102: char *getenv_value=getenv(TEST_NAME);
103: if(!getenv_value)
104: return 1;
105: if(strcmp(getenv_value, TEST_NAME)!=0)
106: return 2;
107: ,[
108: AC_MSG_RESULT(yes)
109: AC_DEFINE(HAVE_PUTENV,,library has POSIX putenv)
110: ],
111: AC_MSG_RESULT(no)
112: AC_MSG_ERROR("there must be some function to modify environment")
113: )
114: )
115:
1.1 parser 116: dnl Checks for typedefs, structures, and compiler characteristics.
117:
118: AC_TYPE_SIZE_T
119:
120: dnl Checks for library functions.
121:
122: dnl Output makefiles
123:
1.11 paf 124: AC_OUTPUT(Makefile)
E-mail: