-
-
Notifications
You must be signed in to change notification settings - Fork 292
Expand file tree
/
Copy pathconfigure.ac
More file actions
386 lines (321 loc) · 11.5 KB
/
Copy pathconfigure.ac
File metadata and controls
386 lines (321 loc) · 11.5 KB
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
# Generate configure script for libpqxx. This needs the autoconf archive
# package installed. (The configure script itself does not require it though.)
AC_PREREQ([2.71])
AC_INIT([libpqxx],[m4_esyscmd_s([./tools/extract_version.py])],
[Jeroen T. Vermeulen])
# Suppress checks for standard C headers. One, we're not doing C here; two,
# if you don't have these, chances are your system is in no shape to build
# libpqxx; and three, we require C++20. It's a bit pointless to guard against
# such specific shortcomings of 20th-century compilers.
m4_define([AC_INCLUDES_DEFAULT], [])
AC_LANG(C++)
AX_CXX_COMPILE_STDCXX([20])
AC_CONFIG_SRCDIR([src/connection.cxx])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR([config/m4])
AM_INIT_AUTOMAKE([subdir-objects])
PQXX_ABI=m4_esyscmd_s([./tools/extract_version.py --abi])
AC_SUBST(PQXXVERSION, $PACKAGE_VERSION)
AC_SUBST(PQXX_ABI)
AC_CONFIG_HEADERS([include/pqxx/internal/config.h])
# Default prefix for installs.
AC_PREFIX_DEFAULT(/usr/local)
# Read test programme from config-test.
AC_DEFUN([read_test], [AC_LANG_SOURCE(
esyscmd(tools/m4esc.py --input=config-tests/$1))])
# Checks for programs.
AC_PROG_CXX
AC_PROG_INSTALL
AC_DISABLE_SHARED
LT_INIT
AC_PROG_MAKE_SET
AC_PATH_PROG([MKDIR], [mkdir])
AC_ARG_ENABLE(
documentation,
[AS_HELP_STRING([--enable-documentation], [Generate documentation])],
[enable_documentation="${enableval}"])
AM_CONDITIONAL(
[BUILD_DOCS],
[test "$enable_documentation" = "yes"])
AM_MAINTAINER_MODE
# See if we want stricter compiler warnings.
AC_MSG_CHECKING([maintainer mode])
AC_ARG_ENABLE(maintainer-mode)
AC_MSG_RESULT(${enable_maintainer_mode})
# See if we want runtime debug checking.
AC_MSG_CHECKING([audit])
AC_ARG_ENABLE(audit)
AC_MSG_RESULT(${enable_audit})
# See if we want "suggestions," such as "this class could be final."
# (The suggestions are often useful, but can also easily be wrong.)
AC_MSG_CHECKING([suggest])
AC_ARG_ENABLE(suggest)
AC_MSG_RESULT(${enable_suggest:-no})
AC_ARG_ENABLE(shared)
AS_IF(
[test "${shared}" = "yes" ],
[CPPFLAGS="$CPPFLAGS -DPQXX_SHARED"])
# Add options to compiler command line, if compiler accepts them.
add_compiler_opts_if_ok() {
FLAGS_FILE="$1"
CXXFLAGS="$CXXFLAGS $(
${srcdir}/tools/compiler_flags.py \
-c "$CXX $CXXFLAGS" -f "$FLAGS_FILE" -s)"
}
# Add options to compiler command line, unconditionally.
add_compiler_opts() {
CXXFLAGS="$CXXFLAGS $*"
}
# Let's try to get the compiler to be helpful.
#
# (Omit options -Weffc++ and -Wabi because they currently yield too many
# warnings in gcc's standard headers.)
if test "$GCC" = "yes"
then
# In maintainer mode, enable all the warning options we can.
if test "$enable_maintainer_mode" = "yes"
then
# "Eternal" (FLW) g++ options. These have been around for
# ages, and both g++ and clang++ support them. Don't bother
# checking for support; just add them to the compiler options.
#
# We'd love to add -D_GLIBCXX_CONCEPT_CHECKS in 8.0 here, but
# it complains that the "reference" type in result iterators is
# not an actual reference.
add_compiler_opts \
-fstrict-enums \
-Werror \
-Wall \
-pedantic \
-Wcast-align \
-Wcast-qual \
-Wconversion \
-Wctor-dtor-privacy \
-Wendif-labels \
-Wextra \
-Wextra-semi \
-Wfloat-equal \
-Wformat=2 \
-Wformat-security \
-Wmissing-include-dirs \
-Wno-div-by-zero \
-Wnon-virtual-dtor \
-Wold-style-cast \
-Woverlength-strings \
-Woverloaded-virtual \
-Wpointer-arith \
-Wredundant-decls \
-Wshadow \
-Wsign-promo \
-Wundef \
-Wunused \
-Wwrite-strings \
-Wzero-as-null-pointer-constant \
# "Iffy" g++ options. Some reasonably current g++-like
# compilers may not support these.
#
# The -fanalyzer one is a macro option for many of the others,
# but we can't use it because as of gcc 13.2.0 we still see it
# generating errors for the standard library.
add_compiler_opts_if_ok \
"${srcdir}/config/flags/maintainer-mode.txt"
fi
# In "audit," enable all the run-time checks we can.
if test "$enable_audit" = "yes"
then
# These macros enable extra run-time checking in various
# standard library implementations.
#
# Some gcc builds pre-define _FORTIFY_SOURCE so we undefine it
# first just to avoid a warning (and we use -Werror) about the
# macro being redefined from the command line.
add_compiler_opts \
-U_FORTIFY_SOURCE \
-D_FORTIFY_SOURCE=3 \
-D_GLIBCXX_ASSERTIONS \
-D_GLIBCXX_DEBUG \
-D_GLIBCXX_DEBUG_PEDANTIC \
-D_GLIBCXX_SANITIZE_VECTOR \
-D_LIBCPP_DEBUG=1 \
-D_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_DEBUG
# Run-time sanitizers and such. These can differ from one
# compiler (or version) to the next.
add_compiler_opts_if_ok "${srcdir}/config/flags/audit-mode.txt"
fi
# In "suggest" mode, enable a bunch of code suggestions.
if test "$enable_suggest" = "yes"
then
add_compiler_opts_if_ok \
"${srcdir}/config/flags/suggest-mode.txt"
fi
fi # End of gcc-specific part.
# Do the feature checks now, *after* we add all the extra strictness options,
# so that we don't accidentally enable any features that become unacceptable
# under our chosen strictness.
m4_include([pqxx_cxx_feature_checks.ac])
# One of the generated checks sets this variable.
if test "$PQXX_HAVE_GCC_VISIBILITY" = "yes"
then
# Make internal definitions accessible only to the library itself.
# Only definitions marked PQXX_LIBEXPORT will be accessible.
add_compiler_opts -fvisibility=hidden
add_compiler_opts -fvisibility-inlines-hidden
fi
# One of the generated checks sets this variable.
if test "$PQXX_HAVE_POLL" != "yes"
then
# No poll(); we'll fall back to select().
# Some systems keep select() in a separate library which is not linked by
# default. See if we need one of those.
socklibok=no
AC_SEARCH_LIBS(select, socket nsl ws2_32 wsock32 winsock, [socklibok=yes])
# Microsoft proprietary libraries do not work with code that is generated with
# autoconf's SEARCH_LIBS macro, so we need to check manually and just use the
# first socket library available.
# We only do this if select() is not available by other means, to avoid picking
# up an unnecessary Windows compatibility library on a non-Windows system.
for l in ws2_32 wsock32 winsock
do
if test "${socklibok}" != "yes"
then
AC_CHECK_LIB($l,main,LIBS="$LIBS -l$l";[socklibok=yes])
fi
done
if test "${socklibok}" != "yes"
then
AC_MSG_ERROR([
Could not figure out how to link a simple sockets-based program. Please read
the config.log file for more clues as to why this failed.
])
fi
fi # No poll()
# Check for std::stacktrace support.
#
# We need to link this test because some compilers require an extra library to
# support std::stacktrace.
AC_MSG_CHECKING([for std::stacktrace support])
have_stacktrace=yes
AC_LINK_IFELSE(
[read_test(stacktrace_support.cxx)],
AC_DEFINE([PQXX_HAVE_STACKTRACE], 1, [Define if std::stacktrace works.]),
have_stacktrace=no)
AC_MSG_RESULT($have_stacktrace)
# Find PostgreSQL includes and libraries
AC_PATH_PROG([PKG_CONFIG], [pkg-config])
AC_PATH_PROGS(PG_CONFIG, pg_config)
AC_ARG_WITH(
[postgres-include],
[AS_HELP_STRING(
[--with-postgres-include=DIR],
[Use PostgreSQL includes from DIR. Defaults to querying pg_config or pkg-config, whichever is available.])],
AS_IF(
[test "x$with_postgres_include" = "xyes"],
[with_postgres_include=""]))
if test -n "$with_postgres_include"
then
POSTGRES_INCLUDE="-I$with_postgres_include"
else
if test -x "$PKG_CONFIG" || test -x "$PG_CONFIG"
then
# We should prefer pkg-config over pg_config, but there seems to be a
# problem in pkg-config 1.6.3. Until that's been resolved (#291), go
# with pg_config if we can.
if test -x "$PG_CONFIG"
then
# From pg_config we can either get the C compiler options used to
# compile postgres, which isn't quite what we want; or we can get
# the headers directory, without the full option. That's something
# we can work with. The compiler must support the "-I" option for
# that, but both scripts assume that anyway.
POSTGRES_INCLUDE="-I$($PG_CONFIG --includedir)"
else
# From pkg-config we can get the compiler options to extend the
# include path. We use that.
POSTGRES_INCLUDE=$($PKG_CONFIG libpq --cflags-only-I)
fi
AC_MSG_NOTICE([finding PostgreSQL headers using $POSTGRES_INCLUDE])
else
POSTGRES_INCLUDE=""
fi
fi
AC_SUBST(POSTGRES_INCLUDE)
# Add the compiler option so we can compile configure tests which rely on the
# libpq headers.
CPPFLAGS="$CPPFLAGS $POSTGRES_INCLUDE"
AC_ARG_WITH(
[postgres-lib],
[AS_HELP_STRING(
[--with-postgres-lib=DIR],
[Use PostgreSQL libraries from DIR. Defaults to querying pg_config.])],
AS_IF(
[test "x$with_postgres_lib" = "xyes"],
[with_postgres_lib=""]))
# If no --with-postgres-lib was given, and we have pkg-config, use that.
AS_IF(
[test -z "$with_postgres_lib" -a -x "$PKG_CONFIG"],
[with_postgres_lib=$($PKG_CONFIG libpq --libs-only-L | sed 's/^-L//')])
# pg_config is deprecated, but for some users it may still provide the only
# right answer. For instance, `pkg-config` may not know where `libpq` is
# installed.
AS_IF(
[test -z "$with_postgres_lib" -a -x "$PG_CONFIG"],
[with_postgres_lib=$($PG_CONFIG --libdir)])
AS_IF(
[test -n "$with_postgres_lib"],
[AC_MSG_NOTICE([using PostgreSQL libraries at $with_postgres_lib])],
[AC_MSG_NOTICE([using PostgreSQL libraries in default location])])
AC_SUBST(with_postgres_lib)
AC_CHECK_HEADER(
[libpq-fe.h],
[],
[AC_MSG_ERROR([
Can't find the main PostgreSQL client header, libpq-fe.h. Are you sure the
libpq headers are installed correctly, and that we've got the right path?
])])
AC_MSG_CHECKING([for ability to compile source files using libpq])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[[#include<libpq-fe.h>]],
[[PQexec(nullptr,"")]]
)],
[],
[AC_MSG_ERROR([
Could not compile a call to a basic libpq function. There must be something
seriously wrong with the headers that "pg_config --includedir" or "pkg-config
libpq --cflags" pointed to; the contents of config.log may give you a clue
about the nature of the failure.
Source including the libpq header libpq-fe.h can be compiled, but a call to the
most basic libpq function PQexec() failed to compile successfully. This is the
litmus test for a working libpq.
])])
AC_MSG_RESULT(yes)
if test "x${with_postgres_lib}" = "x"; then
with_postgres_libpath=""
else
with_postgres_libpath="-L${with_postgres_lib}"
fi
LDFLAGS="$LDFLAGS ${with_postgres_libpath}"
AC_CHECK_LIB(
[pq],
[PQexec],
[],
[AC_MSG_ERROR([
Did not find the PQexec() function in libpq. This is the litmus test for a
working libpq installation.
A source file using the PQexec() function did compile without problems, and the
libpq library is available for linking, but for some reason a call to PQexec()
failed to link properly to the libpq library. This may be because the libpq
library file is damaged, or in some incorrect format, or if your libpq is much
more recent than libpqxx version $PQXX_ABI, perhaps libpq has undergone a
radical ABI change.
The last parts of config.log may give you a clue as to what really went wrong,
but be warned that this is no easy reading. Look for the last error message
occurring in the file.
])],
${with_postgres_libpath})
# Remove redundant occurrences of -lpq
LIBS=[$(echo "$LIBS" | sed -e 's/-lpq * -lpq\>/-lpq/g')]
AC_PROG_MAKE_SET
AC_CONFIG_FILES([Makefile include/Makefile libpqxx.pc])
AC_CONFIG_FILES([compile_flags])
AC_OUTPUT