-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.ac
766 lines (674 loc) · 21.3 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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
#
# CAUTION: THE configure.ac FILE IS AUTOMATICALLY GENERATED! DO NOT EDIT IT.
#
# If you want to make changes to configure.ac, edit configure.ac.in instead.
#
# Process configure.ac.in with autoconf to produce a configure script.
# All text in libpqxx is pure ASCII, so we can afford the "C" locale which is
# likely to be faster than any other.
LC_ALL=C
AC_PREREQ(2.59)
AC_INIT(libpqxx, 5.0, [Jeroen T. Vermeulen <[email protected]>])
AC_LANG(C++)
AC_CONFIG_SRCDIR([src/connection.cxx])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR([config/m4])
AM_INIT_AUTOMAKE
PQXXVERSION=5.0
PQXX_ABI=5.0
PQXX_MAJOR=5
PQXX_MINOR=0
AC_SUBST(PQXXVERSION)
AC_SUBST(PQXX_ABI)
AC_SUBST(PQXX_MAJOR)
AC_SUBST(PQXX_MINOR)
AC_CONFIG_HEADER([include/pqxx/config.h])
# default prefix for installs
AC_PREFIX_DEFAULT(/usr/local)
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
AC_PROG_INSTALL
AC_DISABLE_SHARED
AC_PROG_LIBTOOL
AC_PROG_MAKE_SET
AC_PATH_PROG([MKDIR], [mkdir])
AC_PATH_PROG([PKG_CONFIG], [pkg-config])
# Documentation.
AC_ARG_ENABLE(
documentation,
[AS_HELP_STRING([--enable-documentation], [Generate documentation])],
[],
[enable_documentation=yes])
if test "$enable_documentation" = "yes"
then
AC_PATH_PROG([DOXYGEN], [doxygen])
AM_CONDITIONAL([BUILD_REFERENCE], [/bin/true])
AC_CHECK_PROG(HAVE_DOT, dot, YES, NO)
AC_PATH_PROG([XMLTO], [xmlto])
AM_CONDITIONAL([BUILD_TUTORIAL], [/bin/true])
else
AM_CONDITIONAL(BUILD_REFERENCE, [/bin/false])
AM_CONDITIONAL(BUILD_TUTORIAL, [/bin/false])
fi
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})
AC_ARG_ENABLE(shared)
AS_IF(
[test "${shared}" = "yes" ],
[CPPFLAGS="$CPPFLAGS -DPQXX_SHARED"])
# Add options to compiler command line, if compiler accepts it
add_compiler_opts() {
for option in $* ; do
ACO_SAVE_CXXFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS $option"
AC_MSG_CHECKING([whether $CXX accepts $option])
AC_TRY_COMPILE([], [], has_option=yes, has_option=no,)
AC_MSG_RESULT($has_option)
AS_IF(
[test "$has_option" = "no" ],
[CXXFLAGS="$ACO_SAVE_CXXFLAGS"])
done
}
# 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
add_compiler_opts \
-Werror \
-Wno-div-by-zero \
-fnothrow-opt \
-fstrict-enums \
-pedantic \
-fno-nonansi-builtins \
-Wall \
-Wextra \
-Wfloat-equal \
-Wundef \
-Wshadow \
-Wpointer-arith \
-Wcast-qual \
-Wcast-align \
-Wconversion \
-Wctor-dtor-privacy \
-Wendif-labels \
-Wlogical-op \
-Woverlength-strings \
-Wredundant-decls \
-Wwrite-strings \
-Wnon-virtual-dtor \
-Wold-style-cast \
-Woverloaded-virtual \
-Wsign-promo \
-Wstrict-null-sentinel \
-Wformat-security \
-Winit-self \
-Wmissing-include-dirs \
-Wunused
fi
# The PostgreSQL headers now require "long long".
add_compiler_opts -Wno-long-long
AC_MSG_CHECKING([g++ visibility attribute])
gcc_visibility=yes
SAVE_CXXFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS -Werror"
AC_TRY_COMPILE([
struct __attribute__ ((visibility("hidden"))) d { d() {} void f() {} };
],
[d D;D.f()],
AC_DEFINE([PQXX_HAVE_GCC_VISIBILITY],1,
[Define if g++ supports visibility attribute, as in g++ 4.0]),
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++ const attribute])
gcc_const_attr=yes
AC_TRY_COMPILE([void __attribute__ ((const)) f();],
[],
AC_DEFINE([PQXX_HAVE_GCC_CONST], 1,
[Define if g++ supports const attribute]),
gcc_const_attr=yes)
AC_MSG_RESULT($gcc_const_attr)
AC_MSG_CHECKING([C++14 deprecation attribute])
deprecated=yes
AC_TRY_COMPILE([[[deprecated]] void f();],
[],
AC_DEFINE([PQXX_HAVE_DEPRECATED],1,
[Define if compiler supports [[deprecated]] attribute]),
deprecated=no)
AC_MSG_RESULT($deprecated)
AC_MSG_CHECKING([g++ deprecation attribute])
gcc_deprecated=yes
AC_TRY_COMPILE([__attribute__ ((deprecated)) void f();],
[],
AC_DEFINE([PQXX_HAVE_GCC_DEPRECATED],1,
[Define if g++ supports deprecated attribute, as in g++ 4.0]),
gcc_deprecated=no)
AC_MSG_RESULT($gcc_deprecated)
AC_MSG_CHECKING([C++11 noreturn attribute])
noreturn=yes
AC_TRY_COMPILE([
[[noreturn]] void f();
void f(){throw 1;}
], [],
AC_DEFINE([PQXX_HAVE_NORETURN],1,
[Define if compiler supports [[noreturn]] attribute]),
noreturn=no)
AC_MSG_RESULT($noreturn)
AC_MSG_CHECKING([g++ noreturn attribute])
gcc_noreturn=yes
AC_TRY_COMPILE([
__attribute__ ((noreturn)) void f();
void f(){throw 1;}
], [],
AC_DEFINE([PQXX_HAVE_GCC_NORETURN],1,
[Define if g++ supports noreturn attribute]),
gcc_noreturn=no)
AC_MSG_RESULT($gcc_noreturn)
AC_MSG_CHECKING([g++ pure attribute])
gcc_pure=yes
AC_TRY_COMPILE([void __attribute__ ((pure)) f();],
[],
AC_DEFINE([PQXX_HAVE_GCC_PURE], 1,
[Define if g++ supports pure attribute]),
gcc_pure=yes)
AC_MSG_RESULT($gcc_pure)
fi
AC_MSG_CHECKING([for C++11 noexcept support])
noexcept_keyword=yes
AC_TRY_COMPILE(
[void foo() noexcept {}],
[],
AC_DEFINE(
[PQXX_HAVE_NOEXCEPT],
1,
[Define if the compiler supports the noexcept keyword.]),
noexcept_keyword=no)
AC_MSG_RESULT($noexcept_keyword)
AC_MSG_CHECKING([for C++14 override support])
override_keyword=yes
AC_TRY_COMPILE(
[
struct Parent {virtual ~Parent(); virtual void f();};
struct Child : Parent { virtual void f() override;};
],
[],
AC_DEFINE(
[PQXX_HAVE_OVERRIDE],
1,
[Define if the compiler supports the override keyword.]),
override_keyword=no)
AC_MSG_RESULT($override_keyword)
AC_MSG_CHECKING([for C++14 "=delete" support])
deleted_op=yes
AC_TRY_COMPILE(
[struct Foo { Foo() = delete;};],
[],
AC_DEFINE(
[PQXX_HAVE_DELETED_OP],
1,
[Define if the compiler supports "= delete" member functions.]),
deleted_op=no)
AC_MSG_RESULT($deleted_op)
AC_MSG_CHECKING([for C++14 final support])
final_keyword=yes
AC_TRY_COMPILE(
[struct Foo final {};],
[],
AC_DEFINE(
[PQXX_HAVE_FINAL],
1,
[Define if the compiler supports the final keyword.]),
final_keyword=no)
AC_MSG_RESULT($final_keyword)
boost_smart_ptr=yes
AC_CHECK_HEADER(boost/smart_ptr.hpp, AC_DEFINE(PQXX_HAVE_BOOST_SMART_PTR, 1,
[Define if you have the <boost/smart_ptr.hpp> header]),
boost_smart_ptr=no)
usestd="namespace std {} using namespace std;"
AC_MSG_CHECKING(["warning" preprocessor directive])
cpp_warning=yes
AC_TRY_COMPILE([#warning cpp supports warning directive], [], AC_DEFINE(PQXX_HAVE_CPP_WARNING, 1,
[Define if preprocessor supports nonstandard "warning" directive]),
cpp_warning=no)
AC_MSG_RESULT($cpp_warning)
AC_MSG_CHECKING(["message" preprocessor pragma])
cpp_pragma_message=yes
AC_TRY_COMPILE([#pragma message("cpp supports message pragma")], [], AC_DEFINE(PQXX_HAVE_CPP_PRAGMA_MESSAGE, 1,
[Define if preprocessor supports pragma "message"]),
cpp_pragma_message=no)
AC_MSG_RESULT($cpp_pragma_message)
# Find PostgreSQL includes and libraries
AC_PATH_PROGS(PG_CONFIG, pg_config)
if test -z "$PG_CONFIG" || test ! -r "$PG_CONFIG"; then
AC_MSG_ERROR([
PostgreSQL configuration script pg_config not found. Make sure this is in your
command path before configuring. Without it, the configure script has no way to
find the right location for the libpq library and its headers.
])
fi
AC_ARG_WITH(
[postgres-include],
[AS_HELP_STRING(
[--with-postgres-include=DIR],
[Use PostgreSQL includes from DIR. Defaults to querying pg_config.])],
AS_IF(
[test "x$with_postgres_include" == "xyes"],
[with_postgres_include=""]))
AS_IF(
[test -z "$with_postgres_include"],
[with_postgres_include=$($PG_CONFIG --includedir)])
AC_MSG_NOTICE([using PostgreSQL headers at $with_postgres_include])
AC_SUBST(with_postgres_include)
POSTGRES_INCLUDE="-I${with_postgres_include}"
AC_SUBST(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=""]))
AS_IF(
[test -z "$with_postgres_lib"],
[with_postgres_lib=$($PG_CONFIG --libdir)])
AC_MSG_NOTICE([using PostgreSQL libraries at $with_postgres_lib])
AC_SUBST(with_postgres_lib)
#POSTGRES_LIB="-R${with_postgres_lib}"
AC_SUBST(POSTGRES_LIB)
AC_HEADER_STDC
AC_MSG_CHECKING([ability to compile programs using the standard C library])
AC_TRY_COMPILE([#include <string.h>
namespace std {} // In case string.h does not define it.
${usestd}
extern void f(size_t);],
[f(strlen(""))],[],
[AC_MSG_ERROR([
Could not build even a tiny test program using the standard C library.
Something very basic has gone wrong; try reading config.log to find out what.
You'll probably want to go straight to the end of that file and read backwards
until you find an error message. Then identify the problem, try to fix it, and
run this script again.
The configure script's --help option may provide useful tips on how to influence
what compiler and command line options are used, what additional libraries are
linked in, and so on.
])])
AC_MSG_RESULT(yes)
# After this check, we should be able to link socket-based programs.
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
AC_CHECK_HEADER([${with_postgres_include}/libpq-fe.h],[],[AC_MSG_ERROR([
Can't find libpq-fe.h in ${with_postgres_include}. Are you sure the libpq
headers are installed correctly? They should be in the directory returned by
"pg_config --includedir".
If you do have libpq (the C-language client library for PostgreSQL) installed,
make sure you have the related development materials--mainly its header files--
as well as the library binary. Some system distributions keep the two in
seperate packages with names like "alibrary" and "alibrary-dev", respectively.
In that case, make sure you have the latter installed as well.
])])
AC_MSG_CHECKING([for ability to compile source files using libpq])
AC_TRY_COMPILE([#include<${with_postgres_include}/libpq-fe.h>],[PQexec(0,"")],
[],
[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" 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)
# Perform this check in C; autoconf's AC_HAVE_LIBRARY breaks in C++ because it
# tries to call main()
AC_LANG_PUSH(C)
LDFLAGS="$LDFLAGS -L${with_postgres_lib}"
AC_HAVE_LIBRARY(pq, [], [AC_MSG_ERROR([
Could not link to libpq. Make sure you have the PostgreSQL client library
installed, and that the library binary can be found in the location returned by
"pg_config --libdir".
])], -L${with_postgres_lib})
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 5.0, 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.
])], -L${with_postgres_lib})
# Remove redundant occurrances of -lpq
LIBS="$(echo "$LIBS" | sed -e 's/-lpq[[:space:]]*[[:space:]]-lpq\>/-lpq/g')"
AC_LANG_POP(C)
AC_MSG_CHECKING([for correct C++ linkage of basic libpq functions])
if test "$enable_maintainer_mode" = "yes"; then
AC_LINK_IFELSE([
AC_LANG_SOURCE([[
#include <${with_postgres_include}/libpq-fe.h>
int main(){return !PQexec(0,0);}
]])],
[],
[AC_MSG_ERROR([
Linking a call to libpq failed in C++, even though it succeeded in C. If your
C and C++ compilers are very different beasts, this may mean that we do not have
the right options for linking with it after all. Alternatively, this may be
caused by a bug in autoconf or automake.
Since you are configuring libpqxx using the --enable-maintainer-mode option, any
compiler warnings for autoconf test programs will be treated as errors. The
problem may just go away if you run the configure script again but with the
maintainer mode option omitted. Please report such cases (including the
config.log produced by the failed attempt) so future versions can attempt to
work around the problem.
Should this error occur even while not in maintainer mode, read the config.log
file for more detailed information. Look for the last error message, which may
be several pages up from the end of the file.
])])
else
AC_LINK_IFELSE([
AC_LANG_SOURCE([[
#include <${with_postgres_include}/libpq-fe.h>
int main(){return !PQexec(0,0);}
]])],
[],
[AC_MSG_ERROR([
Linking a call to libpq failed in C++, even though it succeeded in C. If your
C and C++ compilers are very different beasts, this may mean that we do not have
the right options for linking with it after all.
Read the config.log file for more detailed information. Look for the last error
message, which may be several pages up from the end of the file.
])])
fi
AC_MSG_RESULT(yes)
AC_MSG_CHECKING([that type of libpq's Oid is as expected])
AC_TRY_COMPILE([#include<${with_postgres_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_MSG_CHECKING([for strerror_r])
strerror_r=yes
AC_TRY_COMPILE(
[#include <cstring>
${usestd}
bool f(char x[]) { return strerror_r(0,x,10) != 0; }],
[],
[AC_DEFINE(PQXX_HAVE_STRERROR_R,1,[Define if strerror_r exists])],
[strerror_r=no])
AC_MSG_RESULT($strerror_r)
if test "$strerror_r" != "yes" ; then
AC_MSG_WARN([
No definition of strerror_r, the thread-safe version of strerror(), was found in
your <cstring> header.
This may be because your implementation strerror() is threadsafe, in which case
there is nothing to worry about.
])
else
AC_MSG_CHECKING([for GNU-style strerror_r])
gnu_strerror_r=yes
AC_TRY_COMPILE(
[#include <cstring>
${usestd}
const char *it_is_a_string(char *x) { return strerror_r(0,x,10); }],
[],
[AC_DEFINE(
PQXX_HAVE_STRERROR_R_GNU,1,[Define for GNU-style strerror_r])],
[gnu_strerror_r=no])
AC_MSG_RESULT($gnu_strerror_r)
fi # strerror_r
AC_MSG_CHECKING([for strlcpy])
strlcpy=yes
AC_TRY_COMPILE(
[#include <cstring>
${usestd}],
[char buf[2];return strlcpy(buf,"",1)],
[AC_DEFINE(PQXX_HAVE_STRLCPY,1,[Define if strlcpy exists])],
strlcpy=no)
AC_MSG_RESULT($strlcpy)
AC_MSG_CHECKING([for working <sys/select.h>])
select_h=yes
AC_TRY_COMPILE(
[#include <cstring>
#include <sys/select.h>
${usestd}]
, [select(0,0,0,0,0)]
, AC_DEFINE(PQXX_HAVE_SYS_SELECT_H,1,
[Define if the sys/select.h header defines a working select() and friends, as per POSIX 1003.1-2001])
,select_h=no
)
AC_MSG_RESULT($select_h)
AC_MSG_CHECKING([for poll()])
poll=yes
AC_TRY_COMPILE(
[#include <poll.h>
${usestd}],
[pollfd p = { 0,0,0 }; poll(&p,1,0)],
AC_DEFINE(PQXX_HAVE_POLL,1,
[Define if the system has the poll() function (mainly GNU/Linux)]),
poll=no
)
AC_MSG_RESULT($poll)
# Long-standing annoyance in glibc: the definition for FD_SET includes an
# unnecessary C-style cast that the compiler may warn for. If the compiler is
# configured to treat warnings as errors, that may be a problem for us.
AC_MSG_CHECKING([for working fd_set])
if test "$enable_maintainer_mode" = "yes"; then
AC_TRY_COMPILE(
[#include <cstring>
#ifdef PQXX_HAVE_SYS_SELECT_H
#include <sys/select.h>
#else
#include <ctime>
#include <sys/types.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef _WIN32
#include <winsock2.h>
#endif
${usestd}
extern "C" void f() { fd_set s; FD_ZERO(&s); FD_SET(1, &s); }],
[],
[],
[AC_MSG_ERROR([
Could not compile code using fd_set. This may be a known problem with GNU libc
and the extremely strict compiler options used in libpqxx's maintainer mode; try
configuring again, this time omitting the --enable-maintainer-mode option.
])])
else
AC_TRY_COMPILE(
[#include <cstring>
#ifdef PQXX_HAVE_SYS_SELECT_H
#include <sys/select.h>
#else
#include <ctime>
#include <sys/types.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef _WIN32
#include <winsock2.h>
#endif
${usestd}],
[fd_set s;FD_ZERO(&s);FD_SET(1,&s)],
[],
[AC_MSG_ERROR([
Could not compile code using fd_set. There is something seriously wrong, or
maybe your warning options are too strict. If you are using GNU libc (as will
be the case on a GNU/Linux system) and are telling the compiler to treat
warnings as errors, the cause may be an old-style cast in the definition of
FD_SET that triggers a compiler warning.
See config.log for more details; look for the last error message in the file.
])])
fi
AC_MSG_RESULT(yes)
AC_MSG_CHECKING([if select() accepts NULL fdsets])
select_accepts_null=yes
AC_RUN_IFELSE([
AC_LANG_SOURCE([[
#ifdef PQXX_HAVE_SYS_SELECT_H
#include <sys/select.h>
#else
#include <ctime>
#include <sys/types.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef _WIN32
#include <winsock2.h>
#endif
${usestd}
extern "C" int foo(){fd_set f; FD_SET(1,&f); return select(2,0,&f,&f,0)<0;}
int main() { return foo(); }
]])],
AC_DEFINE(PQXX_SELECT_ACCEPTS_NULL,1,
[Define if select() accepts NULL fd_set arguments]),
select_accepts_null=no,
select_accepts_null=no
)
AC_MSG_RESULT($select_accepts_null)
AC_MSG_CHECKING([sleep()])
sleep=yes
AC_TRY_COMPILE([#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
${usestd}],[sleep(0x01)],
AC_DEFINE(PQXX_HAVE_SLEEP, 1, [Define if POSIX sleep() exists]),
[sleep=no]
)
AC_MSG_RESULT($sleep)
AC_MSG_CHECKING([for std::isnan()])
std_isnan=yes
AC_TRY_COMPILE(
[
#include <cmath>
extern double f();
],
[if(std::isnan(f())) f()],
AC_DEFINE(PQXX_HAVE_STD_ISNAN,1,[Define if std::isnan() is available]),
[std_isnan=no]
)
AC_MSG_RESULT($std_isnan)
AC_MSG_CHECKING([for isnan()])
isnan=yes
AC_TRY_COMPILE(
[
#include <cmath>
extern double f();
],
[if(isnan(f())) f()],
AC_DEFINE(PQXX_HAVE_ISNAN,1,[Define if C99 isnan() is available]),
[isnan=no]
)
AC_MSG_RESULT($isnan)
AC_MSG_CHECKING([for std::isinf()])
std_isinf=yes
AC_TRY_COMPILE(
[
#include <cmath>
extern double f();
],
[if(std::isinf(f())) f()],
AC_DEFINE(PQXX_HAVE_STD_ISINF,1,[Define if std::isinf() is available]),
[std_isinf=no]
)
AC_MSG_RESULT($isinf)
AC_MSG_CHECKING([for isinf()])
isinf=yes
AC_TRY_COMPILE([#include <cmath>
extern double f();
${usestd}],
[if(isinf(f())) f()],
AC_DEFINE(PQXX_HAVE_ISINF,1,[Define if C99 isinf() is available]),
[isinf=no]
)
AC_MSG_RESULT($isinf)
AC_MSG_CHECKING([for standard distance()])
distance=yes
AC_TRY_COMPILE([#include <iterator>
${usestd}],
[int i[1]; return distance(i, i+1)],
[AC_DEFINE(PQXX_HAVE_DISTANCE,
1,
[Define if distance() works according to the standard])],
[distance='no'])
AC_MSG_RESULT($distance)
AC_MSG_CHECKING([for shared_ptr])
sharedptr='yes'
AC_TRY_COMPILE([#include <memory>],
[std::shared_ptr<int> i(new int(1)); return *i;],
[AC_DEFINE(PQXX_HAVE_SHARED_PTR,
1,
[Define if compiler has shared_ptr])],
[sharedptr='no'])
AC_MSG_RESULT($sharedptr)
AC_MSG_CHECKING([for unique_ptr])
unique_ptr='yes'
AC_TRY_COMPILE([
#include <memory>
${usestd}
int *get_ptr();],
[unique_ptr<int> i(get_ptr())],
[AC_DEFINE(PQXX_HAVE_UNIQUE_PTR,
1,
[Define if compiler has unique_ptr])],
[unique_ptr='no'])
AC_MSG_RESULT($unique_ptr)
AC_MSG_CHECKING([for move()])
move='yes'
AC_TRY_COMPILE([
#include <utility>
${usestd}
int foo(int &i) { return move(i); }],
[int i = 0; return foo(i);],
[AC_DEFINE(PQXX_HAVE_MOVE,
1,
[Define if compiler has move().])],
[move='no'])
AC_MSG_RESULT($move)
AC_PROG_MAKE_SET
AC_CONFIG_FILES([Makefile config/Makefile doc/Makefile
doc/Doxyfile src/Makefile test/Makefile test/unit/Makefile tools/Makefile
win32/Makefile include/Makefile include/pqxx/Makefile libpqxx.pc pqxx-config])
AC_CONFIG_COMMANDS([configitems], ["${srcdir}/tools/splitconfig" "${srcdir}"])
AC_OUTPUT