-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure.ac
251 lines (210 loc) · 7.51 KB
/
configure.ac
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
# Copyright 2016, Chris Leishman (http://github.com/cleishm)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
dnl Process this file with autoconf to produce a configure script
AC_PREREQ([2.69])
AC_INIT([libneo4j-client],[5.0.4])
AC_CONFIG_SRCDIR([lib/src/neo4j-client.h.in])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([build-aux/m4])
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_HEADER([config.h])
AM_MAINTAINER_MODE([enable])
DECLARE_VERSIONS
WITH_LIBS
GCC_CFLAGS="-fvisibility=hidden -pipe -DHAVE_BIO_METH_NEW \
-Wall -W -Wno-unused-parameter \
-Wno-missing-field-initializers -Wpointer-arith -Wstrict-prototypes \
-Wcast-qual -Wcast-align -Wno-error=unused-function \
-Wno-error=unused-variable -Wno-error=deprecated-declarations \
-Wno-error=stringop-truncation -Wno-unknown-warning-option"
AC_ARG_ENABLE([werror],
AS_HELP_STRING([--disable-werror],
[Do not make warnings into errors even if the compiler supports -Werror.]),
[werror_flag=$enableval], [werror_flag=yes])
AS_IF([test "X$werror_flag" = "Xyes"], [GCC_CFLAGS="$GCC_CFLAGS -Werror"])
LT_INIT
AC_LANG([C])
AC_PROG_CC
PROG_CC_C11
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_C_CONST
AC_C_INLINE
AC_C_BIGENDIAN
AC_C_VARARRAYS
AS_IF([test "X$ac_cv_c_vararrays" != "Xyes"],
[AC_MSG_ERROR([compiler support for variable-length arrays is required])])
AC_HEADER_ASSERT
AC_HEADER_STDC
AC_HEADER_STDBOOL
AC_CHECK_HEADERS([endian.h sys/endian.h libkern/OSByteOrder.h])
AC_CHECK_HEADERS([stdatomic.h])
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_FUNC_STRERROR_R
STATIC_ASSERT
LT_LIB_M
AM_LANGINFO_CODESET
AC_CHECK_TYPE([socklen_t],[],
[AC_DEFINE([socklen_t],[int],[Substitute for socklen_t.])],
[
#include <sys/types.h>
#include <sys/socket.h>
])
AC_CHECK_DECL([AI_ADDRCONFIG],[AC_DEFINE([HAVE_AI_ADDRCONFIG],[1],
[Define to 1 if you have AI_ADDRCONFIG in the <netdb.h> header file.])],
[],
[
#include <netdb.h>
])
AC_CHECK_DECL([htonll],[AC_DEFINE([HAVE_HTONLL],[1],
[Define to 1 if you have htonll.])])
AC_CHECK_DECL([ntohll],[AC_DEFINE([HAVE_NTOHLL],[1],
[Define to 1 if you have ntohll.])])
AC_CHECK_DECL([htobe64],[AC_DEFINE([HAVE_HTOBE64],[1],
[Define to 1 if you have htobe64.])],
[],
[
#ifdef HAVE_ENDIAN_H
#include <endian.h>
#endif
#ifdef HAVE_SYS_ENDIAN_H
#include <sys/endian.h>
#endif
])
AC_CHECK_DECL([be64toh],[AC_DEFINE([HAVE_BE64TOH],[1],
[Define to 1 if you have be64toh.])],
[],
[
#ifdef HAVE_ENDIAN_H
#include <endian.h>
#endif
#ifdef HAVE_SYS_ENDIAN_H
#include <sys/endian.h>
#endif
])
AC_CHECK_DECL([OSSwapHostToBigInt64],[AC_DEFINE([HAVE_OSSWAPHOSTTOBIGINT64],[1],
[Define to 1 if you have OSSwapHostToBigInt64 in the <libkern/OSByteOrder.h> header file.])],
[],
[
#ifdef HAVE_LIBKERN_OSBYTEORDER_H
#include <libkern/OSByteOrder.h>
#endif
])
AC_CHECK_DECL([OSSwapBigToHostInt64],[AC_DEFINE([HAVE_OSSWAPBIGTOHOSTINT64],[1],
[Define to 1 if you have OSSwapBigToHostInt64 in the <libkern/OSByteOrder.h> header file.])],
[],
[
#ifdef HAVE_LIBKERN_OSBYTEORDER_H
#include <libkern/OSByteOrder.h>
#endif
])
AC_CHECK_DECL([bswap_64],[AC_DEFINE([HAVE_BSWAP_64],[1],
[Define to 1 if you have bswap_64.])])
AC_CHECK_FUNCS([mkstemp],[],[AC_MSG_ERROR([A working mkstemp is required])])
AC_CHECK_FUNCS([open_memstream],[],[])
AC_CHECK_HEADERS([readpassphrase.h bsd/readpassphrase.h])
AC_SEARCH_LIBS([readpassphrase],[bsd])
AC_CHECK_FUNCS([readpassphrase],[],[])
AC_CHECK_FUNCS([memset_s],[],[])
AC_CHECK_DECL([SO_NOSIGPIPE],[AC_DEFINE([HAVE_SO_NOSIGPIPE],[1],
[Define to 1 if you have SO_NOSIGPIPE in the <sys/socket.h> header file.])],
[],
[
#include <sys/socket.h>
])
AC_CHECK_DECL([MSG_NOSIGNAL],[AC_DEFINE([HAVE_MSG_NOSIGNAL],[1],
[Define to 1 if you have MSG_NOSIGNAL in the <sys/socket.h> header file.])],
[],
[
#include <sys/socket.h>
])
dnl Threading
AX_THREAD_LOCAL()
AX_PTHREAD([has_pthreads=yes])
AS_IF([test "X$has_pthreads" = "Xyes"],
[AC_DEFINE([HAVE_PTHREADS], [1], [Define to 1 if you have pthreads.])])
AC_ARG_ENABLE([thread_local_iovectors], AS_HELP_STRING([--disable-thread-local-iovectors], [Disable thread local IO vectors]))
AS_IF([test "X$enable_thread_local_iovectors" = "Xno"],
[AC_DEFINE([NO_THREAD_LOCAL_IOV], [1], [Define to 1 to disable thread local IO vectors.])])
dnl Check for TLS support
AC_ARG_WITH([tls],
[AS_HELP_STRING([--without-tls], [Build without TLS support])],
[], [with_tls=yes])
AS_IF([test "X$with_tls" = "Xyes" -o "X$with_tls" = "Xopenssl"],
[PKG_CHECK_MODULES([OPENSSL], [openssl >= 0.9.7],
[has_openssl=yes; has_tls=yes],
[AC_MSG_ERROR([openssl >= 0.9.7 not found (specify --without-tls to ignore)])])])
AS_IF([test "X$has_openssl" = "Xyes"],
[AC_DEFINE([HAVE_OPENSSL], [1], [Define to 1 if you have openssl.])
REQUIRES="$REQUIRES, openssl >= 0.9.7"
save_LIBS="$LIBS"
LIBS="$OPENSSL_LIBS $LIBS"
AC_CHECK_FUNCS([CRYPTO_set_locking_callback BIO_meth_new ASN1_STRING_get0_data],[],[])
LIBS="$save_LIBS"
])
AM_CONDITIONAL([HAVE_OPENSSL], [test "X$has_openssl" = "Xyes"])
AS_IF([test "X$has_tls" = "Xyes"],
[AC_DEFINE([HAVE_TLS], [1], [Define to 1 if tls support is enabled.])],
[test "X$with_tls" != "Xno"],
[AC_MSG_ERROR([TLS library "$with_tls" not found])])
AM_CONDITIONAL([WITH_TLS], [test "X$has_tls" != "Xno"])
dnl Check for check test support
PKG_CHECK_MODULES([CHECK], [check >= 0.9.4], [has_check=yes], [has_check=no])
AM_CONDITIONAL([HAVE_CHECK], [test "X$has_check" = "Xyes"])
dnl Check if command line tools should be built
AC_ARG_ENABLE([tools],
AS_HELP_STRING([--disable-tools], [Do not build command line tools]))
AM_CONDITIONAL([WANT_TOOLS], [test "X$enable_tools" != "Xno"])
dnl Check for required libraries for tools
PKG_CHECK_MODULES([LIBEDIT], [libedit], [has_libedit=yes], [has_libedit=no])
AS_IF([test "X$enable_tools" != "Xno" -a "X$has_libedit" != "Xyes"],
[AC_MSG_ERROR([libedit is required for building command line tools (specify --disable-tools to ignore)])])
PKG_CHECK_MODULES([CYPHER_PARSER], [cypher-parser >= 0.5.1], [has_cypher_parser=yes], [has_cypher_parser=no])
AS_IF([test "X$enable_tools" != "Xno" -a "X$has_cypher_parser" != "Xyes"],
[AC_MSG_ERROR([libcypher-parser (>= 0.5.1) is required for building command line tools (specify --disable-tools to ignore)])])
dnl Check if assertions should be disabled
AC_ARG_ENABLE([debug], AS_HELP_STRING([--disable-debug], [Disable debug]))
AS_IF([test "X$enable_debug" = "Xno"],
[AC_DEFINE([NDEBUG], [1], [Define to 1 to disable assertions.])])
dnl Add GCC flags
AS_IF([test "X$GCC" = "Xyes"], [CFLAGS="$CFLAGS $GCC_CFLAGS"])
dnl Check for doxygen support
DX_HTML_FEATURE(ON)
DX_CHM_FEATURE(OFF)
DX_CHI_FEATURE(OFF)
DX_MAN_FEATURE(ON)
DX_RTF_FEATURE(OFF)
DX_XML_FEATURE(OFF)
DX_PDF_FEATURE(ON)
DX_PS_FEATURE(OFF)
DX_INIT_DOXYGEN(libneo4j-client, doxygen.cfg, .)
AC_SUBST([REQUIRES], [`echo "$REQUIRES" | cut -c3-`])
AC_CONFIG_FILES([
Makefile \
lib/Makefile \
lib/neo4j-client.pc \
lib/doc/Makefile
lib/src/Makefile \
lib/src/neo4j-client.h \
lib/test/Makefile \
shell/Makefile \
shell/doc/Makefile \
shell/doc/neo4j-client.1 \
shell/src/Makefile
])
AC_OUTPUT