forked from jtv/libpqxx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
613 lines (532 loc) · 16.8 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
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
# Generate configure script for libpqxx. This needs the autoconf archive
# package installed. (The configure script itself does not require it though.)
AC_PREREQ(2.69)
AC_INIT(
libpqxx,
[m4_esyscmd_s([./tools/extract_version])],
[Jeroen T. Vermeulen])
AC_LANG(C++)
# Require C++17 at minimum.
# We need to specify this twice, so we can also pass it to clang-tidy.
AX_CXX_COMPILE_STDCXX_17([noext])
AC_SUBST(PQXX_CXX_VERSION, -std=c++17)
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 --abi])
AC_SUBST(PQXXVERSION, $PACKAGE_VERSION)
AC_SUBST(PQXX_ABI)
AC_CONFIG_HEADER([include/pqxx/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
AC_PROG_LIBTOOL
AC_PROG_MAKE_SET
AC_PATH_PROG([MKDIR], [mkdir])
# Documentation.
AC_ARG_ENABLE(
documentation,
[AS_HELP_STRING([--enable-documentation], [Generate documentation])],
[],
[enable_documentation=auto])
AC_ARG_VAR([DOXYGEN],
[Path to doxygen needed to build reference documentation])
AC_PATH_TOOL([DOXYGEN], [doxygen], [nodoxygen])
AC_ARG_VAR([HAVE_DOT],
[Variable used by doxygen to declare availibility of dot])
AC_CHECK_TOOL([HAVE_DOT], [dot], [YES], [NO])
AS_IF([test "$enable_documentation" = "yes" && test "$DOXYGEN" = "nodoxygen"],
[AC_MSG_ERROR([could not find tools necessary to build documentation])])
AM_CONDITIONAL([BUILD_REFERENCE],
[test "$enable_documentation" != "no" -a "$DOXYGEN" != "nodoxygen"])
AM_MAINTAINER_MODE
# See if we want verbose compiler warnings.
AC_MSG_CHECKING([maintainer mode])
AC_ARG_ENABLE(maintainer-mode)
AC_MSG_RESULT(${enable_maintainer_mode})
# See if we want "audit," with loads of runtime 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})
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() {
for option in $*
do
ACO_SAVE_CXXFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS $option"
AC_MSG_CHECKING([whether $CXX accepts $option])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([], [])],
has_option=yes,
has_option=no)
AC_MSG_RESULT($has_option)
AS_IF(
[test "$has_option" = "no" ],
[CXXFLAGS="$ACO_SAVE_CXXFLAGS"])
done
}
# 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; omit -Wunreachable-code because it isn't
# always right)
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.
add_compiler_opts \
-fstrict-enums \
-Werror \
-Wall \
-pedantic \
-Wcast-align \
-Wcast-qual \
-Wconversion \
-Wctor-dtor-privacy \
-Wendif-labels \
-Wextra \
-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
# "Iffy" g++ options. Some reasonably current g++-like
# compilers may not support these.
add_compiler_opts_if_ok \
-fnothrow-opt \
-Wattribute-alias=2 \
-Wextra-semi \
-Wlogical-op \
-Wmismatched-tags \
-Wnoexcept \
-Wredundant-tags \
-Wrestrict \
-Wstringop-overflow \
-Wzero-as-null-pointer-constant \
-Warray-bounds=2 \
-Wduplicated-branches \
-Wduplicated-cond \
-Wsuggest-attribute=noreturn \
-Wsuggest-override \
-Wtrampolines
fi
# In "audit," enable all runtime checks we can.
if test "$enable_audit" = "yes"
then
add_compiler_opts_if_ok \
-fsanitize=address \
-fsanitize-address-use-after-scope \
-fsanitize=alignment \
-fsanitize=bool \
-fsanitize=bounds \
-fsanitize=bounds-strict \
-fsanitize=builtin \
-fsanitize=enum \
-fsanitize=float-cast-overflow \
-fsanitize=float-divide-by-zero \
-fsanitize=integer-divide-by-zero \
-fsanitize=leak \
-fsanitize=nonnull-attribute \
-fsanitize=null \
-fsanitize=object-size \
-fsanitize=pointer-compare \
-fsanitize=pointer-overflow \
-fsanitize=pointer-subtract \
-fsanitize=return \
-fsanitize=returns-nonnull-attribute \
-fsanitize=shift \
-fsanitize=shift-base \
-fsanitize=shift-exponent \
-fsanitize=signed-integer-overflow \
-fsanitize=undefined \
-fsanitize=unreachable \
-fsanitize=vla-bound \
-fsanitize=vptr \
-fstack-protector-all
fi
# In "suggest" mode, enable a bunch of code suggestions.
if test "$enable_suggest" = "yes"
then
add_compiler_opts_if_ok \
-Wsuggest-attribute=cold \
-Wsuggest-attribute=const \
-Wsuggest-attribute=malloc \
-Wsuggest-attribute=pure \
-Wsuggest-final-types \
-Wsuggest-final-methods
fi
AC_MSG_CHECKING([g++ visibility attribute])
gcc_visibility=yes
SAVE_CXXFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS -Werror"
AC_COMPILE_IFELSE(
[read_test(gcc_visibility.cxx)],
AC_DEFINE(
[PQXX_HAVE_GCC_VISIBILITY],
1,
[Define if g++ supports visibility attribute.]),
gcc_visibility=no)
AC_MSG_RESULT($gcc_visibility)
CXXFLAGS="$SAVE_CXXFLAGS"
if test "$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
AC_MSG_CHECKING([g++ pure attribute])
gcc_pure=yes
AC_COMPILE_IFELSE(
[read_test(gcc_pure.cxx)],
AC_DEFINE(
[PQXX_HAVE_GCC_PURE],
1,
[Define if g++ supports pure attribute]),
gcc_pure=no)
AC_MSG_RESULT($gcc_pure)
fi # End of gcc-specific part.
# Check for __cxa_demangle.
AC_MSG_CHECKING([__cxa_demangle])
cxa_demangle=yes
AC_COMPILE_IFELSE(
[read_test(cxa_demangle.cxx)],
AC_DEFINE(
[PQXX_HAVE_CXA_DEMANGLE],
1,
[Define if compiler supports __cxa_demangle]),
cxa_demangle=no)
AC_MSG_RESULT($cxa_demangle)
# Check for sufficient Concepts support, introduced with C++20.
AC_MSG_CHECKING([concepts])
concepts=yes
AC_COMPILE_IFELSE(
[read_test(concepts.cxx)],
AC_DEFINE(
[PQXX_HAVE_CONCEPTS],
1,
[Define if compiler supports Concepts and <ranges> header.]),
concepts=no)
AC_MSG_RESULT($concepts)
# Check for strnlen_s.
AC_MSG_CHECKING([strnlen_s])
strnlen_s=yes
AC_COMPILE_IFELSE(
[read_test(strnlen_s.cxx)],
AC_DEFINE(
[PQXX_HAVE_STRNLEN_S],
1,
[Define if compiler provides strnlen_s]),
strnlen_s=no)
AC_MSG_RESULT($strnlen_s)
# Check for strnlen.
AC_MSG_CHECKING([strnlen])
strnlen=yes
AC_COMPILE_IFELSE(
[read_test(strnlen.cxx)],
AC_DEFINE(
[PQXX_HAVE_STRNLEN],
1,
[Define if compiler provides strnlen]),
strnlen=no)
AC_MSG_RESULT($strnlen)
# It's mid-2019, and gcc's charconv supports integers but not yet floats.
# So for now, we test for int and float conversion... separately.
#
# It's worse for older clang versions, which compile the integer conversions
# but then fail at link time because of a missing symbol "__muloti4" with the
# "long long" version. I couldn't resolve that symbol by adding -lm either.
# So don't just compile these tests; link them as well.
AC_MSG_CHECKING([for C++17 charconv integer conversion])
have_charconv_int=yes
AC_LINK_IFELSE(
[read_test(charconv_int.cxx)],
AC_DEFINE(
[PQXX_HAVE_CHARCONV_INT],
1,
[Define if <charconv> supports integer conversion.]),
have_charconv_int=no)
AC_MSG_RESULT($have_charconv_int)
AC_MSG_CHECKING([for C++17 charconv floating-point conversion])
have_charconv_float=yes
AC_LINK_IFELSE(
[read_test(charconv_float.cxx)],
AC_DEFINE(
[PQXX_HAVE_CHARCONV_FLOAT],
1,
[Define if <charconv> supports floating-point conversion.]),
have_charconv_float=no)
AC_MSG_RESULT($have_charconv_float)
# As per #262, clang with libcxxrt does not support thread_local on non-POD
# objects. Luckily we can live without those, it's just less efficient.
AC_MSG_CHECKING([for full thread_local support])
have_thread_local=yes
AC_LINK_IFELSE(
[read_test(thread_local.cxx)],
AC_DEFINE(
[PQXX_HAVE_THREAD_LOCAL],
1,
[Define if thread_local is fully supported.]),
have_thread_local=no)
AC_MSG_RESULT($have_thread_local)
# Still getting errors on std::visit() from clang 6, and on one of my systems,
# on gcc 7 as well.
AC_MSG_CHECKING([for full std::variant support])
have_variant=yes
AC_LINK_IFELSE(
[read_test(variant.cxx)],
AC_DEFINE(
[PQXX_HAVE_VARIANT],
1,
[Define if std::variant is fully supported.]),
have_variant=no)
AC_MSG_RESULT($have_variant)
# Doing my own test for poll() for now. The test built into autoconf-archive
# triggers stupid warnings.
# TODO: Try newer version of autoconf-archive.
#AX_HAVE_POLL(
# [AX_CONFIG_FEATURE_ENABLE(poll)],
# [AX_CONFIG_FEATURE_DISABLE(poll)])
#AX_CONFIG_FEATURE(
# [poll],
# [System supports poll().],
# [PQXX_HAVE_POLL],
# [System supports poll().])
AC_MSG_CHECKING([for poll()])
ax_cv_have_poll=yes
AC_LINK_IFELSE(
[read_test(poll.cxx)],
AC_DEFINE(
[PQXX_HAVE_POLL],
1,
[Define if poll() is available.]),
ax_cv_have_poll=no)
AC_MSG_RESULT($ax_cv_have_poll)
if test "$ax_cv_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()
# 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=""
# We have nothing to tell us where the libpq headers are. That's fine
# if the compiler can find it, but if not, fail here.
AC_CHECK_HEADER(
[libpq-fe.h],
[],
[AC_MSG_ERROR([
Can't find the main PostgreSQL client header, libpq-fe.h. Make sure that it
is installed, and either use the --with-postgres-include option or install
pkg-config.
])])
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})
# PQencryptPasswordConn was added in postgres 10.
AC_MSG_CHECKING([for PQencryptPasswordConn])
have_pqencryptpasswordconn=yes
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[#include<libpq-fe.h>],
[
extern PGconn *conn;
PQencryptPasswordConn(
conn, "pwd", "user", "scram-sha-256")
]
)],
AC_DEFINE(
[PQXX_HAVE_PQENCRYPTPASSWORDCONN],
1,
[Define if libpq has PQencryptPasswordConn (since pg 10).]),
[have_pqencryptpasswordconn=no])
AC_MSG_RESULT($have_pqencryptpasswordconn)
# Remove redundant occurrances of -lpq
LIBS=[$(echo "$LIBS" | sed -e 's/-lpq * -lpq\>/-lpq/g')]
AC_MSG_CHECKING([that type of libpq's Oid is as expected])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[
#include<libpq-fe.h>
#include"${srcdir}/include/pqxx/internal/libpq-forward.hxx"
extern void f(pqxx::oid&);
],
[Oid o;f(o)],
)],
[],
[AC_MSG_ERROR([
The Oid typedef in libpq has changed. Please notify the libpqxx authors of the
change!
])])
AC_MSG_RESULT(yes)
AC_PROG_MAKE_SET
AC_CONFIG_FILES([
Makefile config/Makefile doc/Makefile doc/Doxyfile src/Makefile
test/Makefile tools/Makefile include/Makefile include/pqxx/Makefile
libpqxx.pc])
AC_CONFIG_COMMANDS([configitems], ["${srcdir}/tools/splitconfig" "${srcdir}"])
AC_OUTPUT(compile_flags)