-
Notifications
You must be signed in to change notification settings - Fork 0
/
ax_oracle_oci.m4
286 lines (248 loc) · 9.09 KB
/
ax_oracle_oci.m4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
dnl $Id: ax_oracle_oci.m4,v 1.11 2008/04/28 19:58:54 mloskot Exp $
dnl
dnl @synopsis AX_LIB_ORACLE_OCI([MINIMUM-VERSION])
dnl
dnl This macro provides tests of availability of Oracle OCI API
dnl of particular version or newer.
dnl This macros checks for Oracle OCI headers and libraries
dnl and defines compilation flags
dnl
dnl Macro supports following options and their values:
dnl 1) Single-option usage:
dnl --with-oracle - path to ORACLE_HOME directory
dnl 2) Two-options usage (both options are required):
dnl --with-oracle-include - path to directory with OCI headers
dnl --with-oracle-lib - path to directory with OCI libraries
dnl
dnl NOTE: These options described above does not take yes|no values.
dnl If 'yes' value is passed, then WARNING message will be displayed,
dnl 'no' value, as well as the --without-oracle* variations will cause
dnl the macro won't check enything.
dnl
dnl This macro calls:
dnl
dnl AC_SUBST(ORACLE_OCI_CFLAGS)
dnl AC_SUBST(ORACLE_OCI_LDFLAGS)
dnl AC_SUBST(ORACLE_OCI_VERSION)
dnl
dnl And sets:
dnl
dnl HAVE_ORACLE
dnl
dnl @category InstalledPackages
dnl @category Cxx
dnl @author Mateusz Loskot <[email protected]>
dnl @version $Date: 2008/04/28 19:58:54 $
dnl @license AllPermissive
dnl
dnl $Id: ax_oracle_oci.m4,v 1.11 2008/04/28 19:58:54 mloskot Exp $
dnl
AC_DEFUN([AX_LIB_ORACLE_OCI],
[
AC_REQUIRE([AC_CANONICAL_HOST])
AC_ARG_WITH([oracle],
AC_HELP_STRING([--with-oracle=@<:@DIR@:>@],
[use Oracle OCI API from given path to Oracle home directory]
),
[
if test "$withval" = "yes"; then
if test -n "$ORACLE_HOME"; then
oracle_home_dir="$ORACLE_HOME"
else
oracle_home_dir=""
fi
fi
],
[
if test -n "$ORACLE_HOME"; then
oracle_home_dir="$ORACLE_HOME"
else
oracle_home_dir=""
fi
]
)
AC_ARG_WITH([oracle-include],
AC_HELP_STRING([--with-oracle-include=@<:@DIR@:>@],
[use Oracle OCI API headers from given path]
),
[oracle_home_include_dir="$withval"],
[oracle_home_include_dir=""]
)
AC_ARG_WITH([oracle-lib],
AC_HELP_STRING([--with-oracle-lib=@<:@DIR@:>@],
[use Oracle OCI API libraries from given path]
),
[oracle_home_lib_dir="$withval"],
[oracle_home_lib_dir=""]
)
ORACLE_OCI_CFLAGS=""
ORACLE_OCI_LDFLAGS=""
ORACLE_OCI_VERSION=""
dnl
dnl Collect include/lib paths
dnl
want_oracle_but_no_path="no"
if test -n "$oracle_home_dir"; then
if test "$oracle_home_dir" != "no" -a "$oracle_home_dir" != "yes"; then
dnl ORACLE_HOME path provided
dnl Primary path to OCI headers, available in Oracle>=10
oracle_include_dir="$oracle_home_dir/rdbms/public"
dnl Secondary path to OCI headers used by older versions
oracle_include_dir2="$oracle_home_dir/rdbms/demo"
dnl Library path
oracle_lib_dir="$oracle_home_dir/lib"
elif test "$oracle_home_dir" = "yes"; then
want_oracle_but_no_path="yes"
fi
elif test -n "$oracle_home_include_dir" -o -n "$oracle_home_lib_dir"; then
if test "$oracle_home_include_dir" != "no" -a "$oracle_home_include_dir" != "yes"; then
oracle_include_dir="$oracle_home_include_dir"
elif test "$oracle_home_include_dir" = "yes"; then
want_oracle_but_no_path="yes"
fi
if test "$oracle_home_lib_dir" != "no" -a "$oracle_home_lib_dir" != "yes"; then
oracle_lib_dir="$oracle_home_lib_dir"
elif test "$oracle_home_lib_dir" = "yes"; then
want_oracle_but_no_path="yes"
fi
fi
if test "$want_oracle_but_no_path" = "yes"; then
AC_MSG_WARN([Oracle support is requested but no Oracle paths have been provided. \
Please, locate Oracle directories using --with-oracle or \
--with-oracle-include and --with-oracle-lib options.])
fi
dnl
dnl Check OCI files
dnl
if test -n "$oracle_include_dir" -a -n "$oracle_lib_dir"; then
saved_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -I$oracle_include_dir"
dnl Additional path for older Oracle installations
if test -n "$oracle_include_dir2"; then
CPPFLAGS="$CPPFLAGS -I$oracle_include_dir2"
fi
# Figure out if we are building on win32.
case $host_os in
*mingw32* ) WIN32=yes ;;
*cygwin* ) WIN32=yes ;;
*) WIN32=no ;;
esac
if test "$WIN32" = "no"
then
oci_libs="-lclntsh -lnnz11"
else
oci_libs="-loci"
fi
saved_LDFLAGS="$LDFLAGS"
saved_LIBS="$LIBS"
oci_ldflags="-L$oracle_lib_dir"
LDFLAGS="$LDFLAGS $oci_ldflags"
LIBS="$LIBS $oci_libs"
dnl
dnl Check OCI headers
dnl
AC_MSG_CHECKING([for Oracle OCI headers in $oracle_include_dir])
AC_LANG_PUSH(C++)
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([[@%:@include <oci.h>]],
[[
#if defined(OCI_MAJOR_VERSION)
#if OCI_MAJOR_VERSION == 10 && OCI_MINOR_VERSION == 2
// Oracle 10.2 detected
#endif
#elif defined(OCI_V7_SYNTAX)
// OK, older Oracle detected
// TODO - mloskot: find better macro to check for older versions;
#else
# error Oracle oci.h header not found
#endif
]]
)],
[
ORACLE_OCI_CFLAGS="-I$oracle_include_dir"
if test -n "$oracle_include_dir2"; then
ORACLE_OCI_CFLAGS="$ORACLE_OCI_CFLAGS -I$oracle_include_dir2"
fi
oci_header_found="yes"
AC_MSG_RESULT([yes])
],
[
oci_header_found="no"
AC_MSG_RESULT([not found])
]
)
AC_LANG_POP([C++])
dnl
dnl Check OCI libraries
dnl
if test "$oci_header_found" = "yes"; then
AC_MSG_CHECKING([for Oracle OCI libraries in $oracle_lib_dir])
AC_LANG_PUSH(C++)
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([[@%:@include <oci.h>]],
[[
OCIEnv* envh = 0;
OCIEnvCreate(&envh, OCI_DEFAULT, 0, 0, 0, 0, 0, 0);
if (envh) OCIHandleFree(envh, OCI_HTYPE_ENV);
]]
)],
[
ORACLE_OCI_LDFLAGS="$oci_ldflags $oci_libs"
oci_lib_found="yes"
AC_MSG_RESULT([yes])
],
[
oci_lib_found="no"
AC_MSG_RESULT([not found])
]
)
AC_LANG_POP([C++])
fi
CPPFLAGS="$saved_CPPFLAGS"
LDFLAGS="$saved_LDFLAGS"
LIBS="$saved_LIBS"
fi
dnl
dnl Check required version of Oracle is available
dnl
oracle_version_req=ifelse([$1], [], [], [$1])
if test "$oci_header_found" = "yes" -a "$oci_lib_found" = "yes" -a \
-n "$oracle_version_req"; then
oracle_version_major=`cat $oracle_include_dir/oci.h \
| grep '#define.*OCI_MAJOR_VERSION.*' \
| sed -e 's/#define OCI_MAJOR_VERSION *//' \
| sed -e 's/ *\/\*.*\*\///'`
oracle_version_minor=`cat $oracle_include_dir/oci.h \
| grep '#define.*OCI_MINOR_VERSION.*' \
| sed -e 's/#define OCI_MINOR_VERSION *//' \
| sed -e 's/ *\/\*.*\*\///'`
AC_MSG_CHECKING([if Oracle OCI version is >= $oracle_version_req])
if test -n "$oracle_version_major" -a -n $"oracle_version_minor"; then
ORACLE_OCI_VERSION="$oracle_version_major.$oracle_version_minor"
dnl Decompose required version string of Oracle
dnl and calculate its number representation
oracle_version_req_major=`expr $oracle_version_req : '\([[0-9]]*\)'`
oracle_version_req_minor=`expr $oracle_version_req : '[[0-9]]*\.\([[0-9]]*\)'`
oracle_version_req_number=`expr $oracle_version_req_major \* 1000000 \
\+ $oracle_version_req_minor \* 1000`
dnl Calculate its number representation
oracle_version_number=`expr $oracle_version_major \* 1000000 \
\+ $oracle_version_minor \* 1000`
oracle_version_check=`expr $oracle_version_number \>\= $oracle_version_req_number`
if test "$oracle_version_check" = "1"; then
AC_MSG_RESULT([yes])
AC_DEFINE(HAVE_ORACLE, [1], [Define to 1 if the Oracle OCI library is available])
else
AC_MSG_RESULT([no])
AC_MSG_ERROR([Oracle $ORACLE_OCI_VERSION found, but required version is $oracle_version_req])
fi
else
ORACLE_OCI_VERSION="UNKNOWN"
AC_MSG_RESULT([no])
AC_MSG_WARN([Oracle version unknown, probably OCI older than 10.2 is available])
fi
fi
AC_SUBST([ORACLE_OCI_VERSION])
AC_SUBST([ORACLE_OCI_CFLAGS])
AC_SUBST([ORACLE_OCI_LDFLAGS])
])