-
Notifications
You must be signed in to change notification settings - Fork 25
/
configure.ac
1555 lines (1307 loc) · 42.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
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
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
dnl -*- Mode: autoconf -*-
dnl
dnl configure.ac - autoconf file for rasqal
dnl (Process this file with autoconf to produce a configure script.)
dnl
dnl Copyright (C) 2003-2011, David Beckett https://www.dajobe.org/
dnl Copyright (C) 2003-2005, University of Bristol, UK https://www.bristol.ac.uk/
dnl
dnl This package is Free Software and part of Redland https://librdf.org/
dnl
dnl It is licensed under the following three licenses as alternatives:
dnl 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version
dnl 2. GNU General Public License (GPL) V2 or any newer version
dnl 3. Apache License, V2.0 or any newer version
dnl
dnl You may not use this file except in compliance with at least one of
dnl the above three licenses.
dnl
dnl See LICENSE.html or LICENSE.txt at the top of this package for the
dnl complete terms and further detail along with the license texts for
dnl the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively.
dnl
AC_PREREQ([2.62])
AC_INIT([Rasqal RDF Query Library],[0.9.34],[https://bugs.librdf.org/],[rasqal])
AC_CONFIG_SRCDIR([src/rasqal_general.c])
AC_CONFIG_HEADERS([src/rasqal_config.h])
AC_CONFIG_AUX_DIR(build)
AC_CONFIG_MACRO_DIR(build)
AM_INIT_AUTOMAKE([1.11 check-news std-options -Wobsolete -Wportability -Wsyntax -Wunsupported -Wextra-portability])
AM_MAINTAINER_MODE
release_version=no
AC_ARG_ENABLE(release, [ --enable-release Turn on optimizations (for maintainer). ], \
if test "$enableval" = "yes"; then \
release_version=yes
fi;)
if test "$USE_MAINTAINER_MODE" = yes -a $release_version = no; then
CFLAGS=`echo $CFLAGS | sed -e "s/-O[A-Za-z0-9]*//"`
CXXFLAGS=`echo $CXXFLAGS | sed -e "s/-O[A-Za-z0-9]*//"`
CPPFLAGS=`echo $CPPFLAGS | sed -e "s/-O[A-Za-z0-9]*//"`
fi
dnl Checks for programs.
AC_CANONICAL_HOST
AM_SANITY_CHECK
AM_PROG_AR
AC_PROG_CC
AM_PROG_CC_C_O
AC_MSG_CHECKING(whether $CC is clang)
CC_IS_CLANG=no
if $CC 2>&1 | grep clang >/dev/null 2>&1; then
CC_IS_CLANG=yes
else
:
fi
AC_MSG_RESULT($CC_IS_CLANG)
dnl Initialize libtool
LT_INIT
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
FLEX_MIN_VERSION=2.5.19
FLEX_REC_VERSION=2.5.36
# Do not want AM_PROG_LEX which adds 'missing' to LEX if it's not around
AC_PROG_LEX(noyywrap)
AC_MSG_CHECKING(flex)
if test "$USE_MAINTAINER_MODE" = yes; then
# maintainer mode - flex is required
if test "X$LEX" = "X:" ; then
AC_MSG_RESULT(not present)
AC_MSG_WARN(Please get flex from https://github.com/westes/flex)
AC_MSG_WARN(version $FLEX_MIN_VERSION ($FLEX_REC_VERSION recommended))
AC_MSG_FAILURE(flex not present)
fi
# some kind of lexer is present
if echo "$LEX" | grep flex >/dev/null 2>&1; then
# flex is present
FLEX_VERSION=`$LEX -V 2>&1 | $AWK '{print $2}'`
FLEX_VERSION_DEC=`echo $FLEX_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
FLEX_MIN_VERSION_DEC=`echo $FLEX_MIN_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
if test $FLEX_VERSION_DEC -ge $FLEX_MIN_VERSION_DEC; then
AC_MSG_RESULT($FLEX_VERSION - OK)
else
AC_MSG_RESULT(version $FLEX_VERSION - too old)
AC_MSG_WARN(Please get flex from https://github.com/westes/flex)
AC_MSG_WARN(version $FLEX_MIN_VERSION ($FLEX_REC_VERSION recommended))
AC_MSG_FAILURE(flex is too old)
fi
else
AC_MSG_RESULT(present - but is not flex)
AC_MSG_WARN(Please get flex from https://github.com/westes/flex)
AC_MSG_WARN(version $FLEX_MIN_VERSION ($FLEX_REC_VERSION recommended))
AC_MSG_FAILURE($LEX is not not flex)
fi
else
# not maintainer mode; flex is not required
AC_MSG_RESULT(not present - not required for non maintainer builds)
LEX="$SHELL $missing_dir/missing flex"
AC_SUBST(LEX_OUTPUT_ROOT, lex.yy)
AC_SUBST(LEXLIB, '')
FLEX_VERSION_DEC=00000
fi
AC_DEFINE_UNQUOTED(FLEX_VERSION_DECIMAL, $FLEX_VERSION_DEC, [Flex version as a decimal])
BISON_MIN_VERSION=3.4.0
BISON_REC_VERSION=3.7.2
AC_CHECK_PROGS(BISON, bison3 bison)
if test "$USE_MAINTAINER_MODE" = yes; then
AC_MSG_CHECKING(for GNU bison)
# Match these styles of versions
# GNU Bison version 1.28
# bison (GNU Bison) 1.875
dnl need to change quotes to allow square brackets
changequote(<<, >>)dnl
BISON_VERSION=`$BISON --version 2>&1 | sed -ne 's/^.*GNU Bison[^0-9]*//p'`
changequote([, ])dnl
if test "X$BISON_VERSION" != X; then
BISON_VERSION_DEC=`echo $BISON_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
BISON_MIN_VERSION_DEC=`echo $BISON_MIN_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
if test $BISON_VERSION_DEC -ge $BISON_MIN_VERSION_DEC; then
AC_MSG_RESULT($BISON_VERSION - OK)
else
AC_MSG_RESULT(version $BISON_VERSION is too old)
AC_MSG_WARN(Please get GNU Bison from https://www.gnu.org/software/bison/)
AC_MSG_WARN(version $BISON_MIN_VERSION or newer)
AC_MSG_FAILURE(GNU Bison too old)
fi
else
AC_MSG_FAILURE($BISON is not GNU bison)
fi
fi
AC_SUBST(BISON)
AC_CHECK_PROGS(AWK, awk gawk nawk)
# Find a tar command for 'make dist'
AC_CHECK_PROGS(TAR, gnutar gtar tar)
AC_CHECK_PROGS(PERL, perl)
AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
AC_CHECK_PROGS(RECHO, echo)
RECHO_C=
RECHO_N=
case `$RECHO -n x` in
-n*)
case `$RECHO 'xy\c'` in
*c*)
;;
xy)
RECHO_C='\c'
;;
esac;;
*)
RECHO_N='-n'
;;
esac
dnl compiler checks
AC_DEFUN([REDLAND_CC_TRY_FLAG], [
AC_MSG_CHECKING([whether $CC supports $1])
## backup CFLAGS and werror status
redland_save_CFLAGS="$CFLAGS"
redland_save_ac_c_werror_flag="${ac_c_werror_flag}"
AC_LANG_WERROR
CFLAGS="$CFLAGS $1"
AC_COMPILE_IFELSE([AC_LANG_SOURCE([ ])], [redland_cc_flag=yes], [redland_cc_flag=no])
## restore CFLAGS and werror status
CFLAGS="$redland_save_CFLAGS"
ac_c_werror_flag="${redland_save_ac_c_werror_flag}"
if test "X$redland_cc_flag" = "Xyes"; then
ifelse([$2], , :, [$2])
else
ifelse([$3], , :, [$3])
fi
AC_MSG_RESULT($redland_cc_flag)
])
# GCC warning options
# https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
#
# Too noisy:
#
# -Wconversion : cases that need RASQAL_GOOD/BAD_CAST etc.
# -Wcast-qual : cases that need RASQAL_GOOD/BAD_CAST etc.
# -Wswitch-default : noisy cases in flex output
# -Wsystem-headers : not debugging system
# -Wunused-parameter : variables can be marked __attribute__('unused')
#
# Apple gcc specific (probably): -Wshorten-64-to-32
possible_warnings="\
-std=c11 \
-Wall \
-Wc++-compat \
-Wextra \
-Wpedantic \
-Wunused \
\
-Waggregate-return \
-Wbad-function-cast \
-Wcast-align \
-Wdeclaration-after-statement \
-Wdisabled-optimization \
-Wdiv-by-zero \
-Wendif-labels \
-Werror-implicit-function-declaration \
-Wfloat-equal \
-Wformat=2 \
-Wframe-larger-than=4096 \
-Winit-self \
-Winline \
-Wmissing-declarations \
-Wmissing-format-attribute \
-Wmissing-noreturn \
-Wmissing-prototypes \
-Wnested-externs \
-Wold-style-definition \
-Wpacked \
-Wpointer-arith \
-Wredundant-decls \
-Wshadow \
-Wsign-compare \
-Wstrict-overflow \
-Wstrict-prototypes \
-Wswitch-enum \
-Wunreachable-code \
-Wunsafe-loop-optimizations \
-Wwrite-strings \
\
-Wno-missing-field-initializers \
-Wno-system-headers \
-Wno-unused-parameter \
-Wswitch-bool \
-Wlogical-not-parentheses \
-Wsizeof-array-argument \
-Wbool-compare \
-Wc90-c99-compat \
-Wc99-c11-compat \
"
extra_compiler_cflags=""
# compiler specific warnings
if test $CC_IS_CLANG = yes; then
# Always enable this for Clang
# -Wno-nullability-completeness : too noisy on OSX reporting
# warnings in stdio.h
extra_compiler_cflags="$extra_compiler_cflags \
-Wno-nullability-completeness \
"
fi
# OS specific warnings
case "${host_os}" in
darwin*)
# Apple gcc/clang specific:
# -Wshorten-64-to-32
possible_warnings="$possible_warnings \
-Wshorten-64-to-32 \
"
;;
*)
# -Wundef : too noisy on OSX 10.12+ e.g. stdio.h fails
possible_warnings="$possible_warnings \
-Wundef \
"
;;
esac
warning_cflags=
if test "$USE_MAINTAINER_MODE" = yes; then
AC_MSG_CHECKING(for supported $CC warning flags)
AC_MSG_RESULT($warning_cflags)
for warning in $possible_warnings; do
REDLAND_CC_TRY_FLAG([$warning], [warning_cflags="$warning_cflags $warning"])
done
AC_MSG_CHECKING($CC supports warning flags)
AC_MSG_RESULT($warning_cflags)
fi
if test "$USE_MAINTAINER_MODE" = yes; then
AC_DEFINE([MAINTAINER_MODE], [1], [Define to 1 if maintainer mode is enabled.])
CPPFLAGS="$warning_cflags $CPPFLAGS"
fi
# Extra compiler flags to always add
CPPFLAGS="$extra_compiler_cflags $CPPFLAGS"
# Externally linked libraries - appear in rasqal-config
# -Dfoo -Idir
RASQAL_CPPFLAGS=$CPPFLAGS
# -Ldir
RASQAL_LDFLAGS=$LDFLAGS
# -llib
RASQAL_LIBS=$LIBS
# Internally linked libraries - never given to users
# -Dfoo -Idir
RASQAL_INTERNAL_CPPFLAGS=
# -Ldir -llib
RASQAL_INTERNAL_LIBS=
# Libraries linked externally also may be internal - just raptor
# -Ldir -llib
RASQAL_EXTERNAL_LIBS=
# Extra pkgconfig requires
PKGCONFIG_REQUIRES=
PKGCONFIG_LIBS=
PKGCONFIG_CFLAGS=
dnl Checks for header files.
AC_CHECK_HEADERS(errno.h float.h getopt.h limits.h math.h regex.h stddef.h stdint.h stdio.h stdlib.h string.h strings.h sys/stath.h sys/time.h sys/types.h time.h unistd.h)
# for src/rasqal.h.in to include correct header(s)
if test "$ac_cv_header_sys_time_h" = "yes"; then
HAVE_SYS_TIME_H=1
else
HAVE_SYS_TIME_H=0
fi
AC_SUBST(HAVE_SYS_TIME_H)
if test "$ac_cv_header_time_h" = "yes"; then
HAVE_TIME_H=1
else
HAVE_TIME_H=0
fi
AC_SUBST(HAVE_TIME_H)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_BIGENDIAN
AC_MSG_CHECKING(whether __FUNCTION__ is available)
AC_COMPILE_IFELSE([AC_LANG_SOURCE([#include <stdio.h>
int main(void) { printf(__FUNCTION__); }])],
[AC_DEFINE([HAVE___FUNCTION__], [1], [Is __FUNCTION__ available])
AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)])
# Libtool versioning
#
# CURRENT
# The most recent interface number that this library implements.
#
# REVISION
# The implementation number of the CURRENT interface.
#
# AGE
# The difference between the newest and oldest interfaces that this
# library implements. In other words, the library implements all the
# interface numbers in the range from number `CURRENT - AGE' to
# `CURRENT'.
#
# Rules:
# 1. Start with version information of `0:0:0' for each libtool library.
#
# 2. Update the version information only immediately before a public
# release of your software. More frequent updates are unnecessary,
# and only guarantee that the current interface number gets larger
# faster.
#
# 3. If the library source code has changed at all since the last
# update, then increment REVISION (`C:R:A' becomes `C:r+1:A').
#
# 4. If any interfaces have been added, removed, or changed since the
# last update, increment CURRENT, and set REVISION to 0.
#
# 5. If any interfaces have been added since the last public release,
# then increment AGE.
#
# 6. If any interfaces have been removed since the last public release,
# then set AGE to 0.
#
# syntax: CURRENT[:REVISION[:AGE]]
RASQAL_LIBTOOL_VERSION=3:0:0
AC_SUBST(RASQAL_LIBTOOL_VERSION)
dnl need to change quotes to allow square brackets
changequote(<<, >>)dnl
version_major=`echo $VERSION | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\1/'`
version_minor=`echo $VERSION | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\2/'`
version_release=`echo $VERSION | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\3/'`
changequote([, ])dnl
version_decimal=`expr $version_major \* 10000 + $version_minor \* 100 + $version_release`
AC_DEFINE_UNQUOTED(RASQAL_VERSION_MAJOR, $version_major, [Major version number])
AC_DEFINE_UNQUOTED(RASQAL_VERSION_MINOR, $version_minor, [Minor version number])
AC_DEFINE_UNQUOTED(RASQAL_VERSION_RELEASE, $version_release, [Release version number])
AC_DEFINE_UNQUOTED(RASQAL_VERSION_DECIMAL, $version_decimal, [Release version as a decimal])
# for rasqal-config.in
RASQAL_VERSION_MAJOR=$version_major
RASQAL_VERSION_MINOR=$version_minor
RASQAL_VERSION_RELEASE=$version_release
RASQAL_VERSION_DECIMAL=$version_decimal
AC_SUBST(RASQAL_VERSION)
AC_SUBST(RASQAL_VERSION_MAJOR)
AC_SUBST(RASQAL_VERSION_MINOR)
AC_SUBST(RASQAL_VERSION_RELEASE)
AC_SUBST(RASQAL_VERSION_DECIMAL)
dnl Checks for library functions.
AC_CHECK_FUNCS(getopt getopt_long stricmp strcasecmp vsnprintf initstate_r initstate random_r random rand_r rand srand gettimeofday)
AC_MSG_CHECKING(whether gmtime_r is available)
have_gmtime_r=no
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifdef HAVE_TIME_H
#include <time.h>
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
]], [[gmtime_r();]])],
[AC_MSG_RESULT(yes)
have_gmtime_r=yes
AC_DEFINE([HAVE_GMTIME_R], [1], [Have the gmtime_r function])],
[AC_MSG_RESULT(no)])
AC_MSG_CHECKING(whether timegm is available)
have_timegm=no
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifdef HAVE_TIME_H
#include <time.h>
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
]], [[timegm();]])],
[AC_MSG_RESULT(yes)]
have_timegm=yes
AC_DEFINE([HAVE_GMTIME_R], [1], [Have the timegm function])],
[AC_MSG_RESULT(no)])
AM_CONDITIONAL(STRCASECMP, test $ac_cv_func_stricmp = no -a $ac_cv_func_strcasecmp = no)
AM_CONDITIONAL(GETOPT, test $ac_cv_func_getopt = no -a $ac_cv_func_getopt_long = no)
AM_CONDITIONAL(TIMEGM, test $have_timegm = no)
dnl Windows only version
AM_CONDITIONAL(GETTIMEOFDAY, test $ac_cv_func_gettimeofday = no)
AC_MSG_CHECKING(whether need to declare optind)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#ifdef HAVE_GETOPT_H
#include <getopt.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
]], [[int x=optind;]])],[AC_MSG_RESULT(no)],[AC_DEFINE(NEED_OPTIND_DECLARATION, 1, need 'extern int optind' declaration?)
AC_MSG_RESULT(yes)])
AC_MSG_CHECKING(whether struct tm has tm_gmtoff field)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifdef HAVE_TIME_H
#include <time.h>
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
]], [[struct tm my_time; my_time.tm_gmtoff = 0;]])],[have_tm_gmtoff="yes"],[have_tm_gmtoff="no"])
AC_MSG_RESULT($have_tm_gmtoff)
if test $have_tm_gmtoff = "yes" ; then
AC_DEFINE(HAVE_TM_GMTOFF, 1, [struct tm has tm_gmtoff field])
fi
AC_MSG_CHECKING(whether struct tm has __tm_gmtoff field)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifdef HAVE_TIME_H
#include <time.h>
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
]], [[struct tm my_time; my_time.__tm_gmtoff = 0;]])],[have_tm_gmtoff="yes"],[have_tm_gmtoff="no"])
AC_MSG_RESULT($have_tm_gmtoff)
if test $have_tm_gmtoff = "yes" ; then
AC_DEFINE(HAVE_TM___GMTOFF, 1, [struct tm has __tm_gmtoff field])
fi
# raptor V2 is REQUIRED; --enable-raptor2 option was removed
RAPTOR2_MIN_VERSION=2.0.7
RAPTOR2_REC_VERSION=2.0.15
# used in this file to substitute a variable
RAPTOR_MIN_VERSION="$RAPTOR2_MIN_VERSION"
PKG_PROG_PKG_CONFIG
PKG_CHECK_MODULES([RAPTOR2],[raptor2],[
RAPTOR_VERSION=`$PKG_CONFIG raptor2 --modversion 2>/dev/null`
raptor_too_old=0
AS_VERSION_COMPARE([$RAPTOR_VERSION], $RAPTOR_MIN_VERSION, raptor_too_old="1")
if test $raptor_too_old = 1; then
AC_MSG_ERROR(Raptor $RAPTOR_VERSION is too old - see https://librdf.org/raptor/ to get a $RAPTOR_MIN_VERSION or newer)
fi
],[
AC_MSG_ERROR(Raptor is not installed - see https://librdf.org/raptor/ to get $RAPTOR_MIN_VERSION or newer)
])
AC_SUBST(RAPTOR2_CFLAGS)
AC_SUBST(RAPTOR2_LIBS)
RAPTOR_VERSION_DEC=`echo $RAPTOR_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
AC_SUBST(RAPTOR_VERSION_DEC)
AC_SUBST(RAPTOR_MIN_VERSION)
# String comparison: -lt is portable (ksh, bash) but '<' is bash
AM_CONDITIONAL(RASQAL_SORT, test $RAPTOR_VERSION_DEC -lt '20015')
dnl Checks for regex libraries
have_regex_pcre2=0
have_regex_pcre=0
have_regex_posix=0
need_regex_pcre2=0
need_regex_pcre=0
need_regex_posix=0
AC_ARG_ENABLE(pcre,
[ --disable-pcre Disable PCRE support (default auto)],
[enable_pcre=$enableval], [enable_pcre="auto"])
if test "x$enable_pcre" != "xno" ; then
AC_ARG_WITH(pcre-config, [ --with-pcre-config=PATH Location of PCRE pcre-config (auto)], pcre_config="$withval", pcre_config="")
if test "X$pcre_config" != "Xno" ; then
if test "X$pcre_config" != "X" ; then
AC_MSG_CHECKING(for $pcre_config)
if test -x $pcre_config ; then
PCRE_CONFIG=$pcre_config
AC_MSG_RESULT(yes)
else
AC_MSG_ERROR([pcre-config not found at specified path $pcre_config])
fi
fi
if test "X$PCRE_CONFIG" = "X" ; then
AC_CHECK_PROGS(PCRE_CONFIG, pcre-config)
fi
fi
AC_MSG_CHECKING(for pcre)
PCRE_VERSION=`$PCRE_CONFIG --version 2>/dev/null`
PCRE_MIN_VERSION=3.9
PCRE_VERSION_DEC=`echo $PCRE_VERSION | $AWK -F. '{printf("%d\n", 100*$1 + $2)};'`
PCRE_MIN_VERSION_DEC=`echo $PCRE_MIN_VERSION | $AWK -F. '{printf("%d\n", 100*$1 + $2)};'`
if test "X$PCRE_VERSION" = X; then
AC_MSG_RESULT(not present)
elif test "X$PCRE_VERSION" -a $PCRE_VERSION_DEC -ge $PCRE_MIN_VERSION_DEC; then
have_regex_pcre=1
AC_MSG_RESULT($PCRE_VERSION)
else
AC_MSG_WARN($PCRE_VERSION - too old - need $PCRE_MIN_VERSION)
fi
if test $have_regex_pcre = 1; then
AC_DEFINE(HAVE_REGEX_PCRE, 1, [have PCRE regex - Perl Compatible Regular Expressions])
elif test "x$enable_pcre" = "xyes"; then
AC_MSG_ERROR(PCRE requested but not found)
fi
fi
AC_ARG_WITH(pcre2-config, [ --with-pcre2-config=PATH Location of PCRE2 pcre2-config (auto)], pcre2_config="$withval", pcre2_config="")
if test "X$pcre2_config" != "Xno" ; then
if test "X$pcre2_config" != "X" ; then
AC_MSG_CHECKING(for $pcre2_config)
if test -x $pcre2_config ; then
PCRE2_CONFIG=$pcre2_config
AC_MSG_RESULT(yes)
else
AC_MSG_ERROR([pcre2-config not found at specified path $pcre2_config])
fi
fi
if test "X$PCRE2_CONFIG" = "X" ; then
AC_CHECK_PROGS(PCRE2_CONFIG, pcre2-config)
fi
fi
AC_MSG_CHECKING(for pcre2)
PCRE2_VERSION=`$PCRE2_CONFIG --version 2>/dev/null`
PCRE2_MIN_VERSION=10.37
PCRE2_VERSION_DEC=`echo $PCRE2_VERSION | $AWK -F. '{printf("%d\n", 100*$1 + $2)};'`
PCRE2_MIN_VERSION_DEC=`echo $PCRE2_MIN_VERSION | $AWK -F. '{printf("%d\n", 100*$1 + $2)};'`
if test "X$PCRE2_VERSION" = X; then
AC_MSG_RESULT(not present)
elif test "X$PCRE2_VERSION" -a $PCRE2_VERSION_DEC -ge $PCRE2_MIN_VERSION_DEC; then
have_regex_pcre2=1
AC_MSG_RESULT($PCRE2_VERSION)
else
AC_MSG_WARN($PCRE2_VERSION - too old - need $PCRE2_MIN_VERSION)
fi
if test $have_regex_pcre2 = 1; then
AC_DEFINE(HAVE_REGEX_PCRE2, 1, [have PCRE2 regex - Perl Compatible Regular Expressions V2])
fi
AC_MSG_CHECKING(for posix regex library)
oLIBS="$LIBS"
if test $ac_cv_header_regex_h = yes; then
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
#include <regex.h>]], [[regex_t reg; char *pat="abc"; regcomp(®, pat, 0);]])],[worked=yes],[worked=no])
if test $worked = yes; then
have_regex_posix=1
fi
fi
LIBS="$oLIBS"
if test $have_regex_posix = 1; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_REGEX_POSIX, 1, [have POSIX regex library])
else
AC_MSG_RESULT(no)
fi
AC_ARG_WITH(regex-library, [ --with-regex-library=NAME Use regex library - posix, pcre2, pcre (auto)], regex_library="$withval", regex_library="")
for regex_library_name in $regex_library pcre2 pcre posix; do
case $regex_library_name in
pcre2)
if test $have_regex_pcre2 = 1; then
need_regex_pcre2=1
AC_DEFINE(RASQAL_REGEX_PCRE2, 1, [Use PCRE2 regex library])
break
fi
;;
pcre)
if test $have_regex_pcre = 1; then
need_regex_pcre=1
AC_DEFINE(RASQAL_REGEX_PCRE, 1, [Use PCRE regex library])
break
fi
;;
posix)
if test $have_regex_posix = 1; then
need_regex_posix=1
AC_DEFINE(RASQAL_REGEX_POSIX, 1, [Use POSIX regex library])
break
fi
;;
*)
AC_MSG_ERROR(No such regex library $regex_library_name)
;;
esac
done
AC_MSG_CHECKING(regex library to use)
regex_library=
if test $need_regex_pcre2 = 1; then
regex_library=pcre2
elif test $need_regex_pcre = 1; then
regex_library=pcre
elif test $need_regex_posix = 1; then
regex_library=posix
else
regex_library=none
AC_DEFINE(RASQAL_REGEX_NONE, 1, [Use no regex library])
AC_MSG_WARN(No regex library available - please install pcre or a POSIX regex library)
fi
AC_MSG_RESULT($regex_library)
dnl Checks for message digest libraries
have_digest_mhash=no
have_digest_gcrypt=no
dnl always available
have_digest_internal=yes
need_digest_mhash=no
need_digest_gcrypt=no
need_digest_internal=no
AC_ARG_WITH(mhash,
[ --with-mhash=DIR mhash installation prefix (no default)],
[mhash_dir=$withval], [mhash_dir=""])
oCPPFLAGS="$CPPFLAGS"
oLIBS="$LIBS"
if test "X$mhash_dir" != "X" ; then
CPPFLAGS="$CPPFLAGS -I$mhash_dir/include"
LIBS="$LIBS -L$mhash_dir/lib"
fi
LIBS="$LIBS -lmhash"
AC_CHECK_HEADERS(mhash.h)
AC_MSG_CHECKING(for mhash)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#undef PACKAGE
#undef PACKAGE_BUGREPORT
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_VERSION
#undef VERSION
#include <mhash.h>]], [[ MHASH m; mhash_init(MHASH_MD5); ]])],[have_digest_mhash=yes],[have_digest_mhash=no])
AC_MSG_RESULT($have_digest_mhash)
CPPFLAGS="$oCPPFLAGS"
LIBS="$oLIBS"
AC_ARG_WITH(libgcrypt-config, [ --with-libgcrypt-config=PATH Location of GCRYPT libgcrypt-config (auto)], libgcrypt_config="$withval", libgcrypt_config="")
if test "X$libgcrypt_config" != "Xno" ; then
if test "X$libgcrypt_config" != "X" ; then
AC_MSG_CHECKING(for $libgcrypt_config)
if test -x $libgcrypt_config ; then
LIBGCRYPT_CONFIG=$libgcrypt_config
AC_MSG_RESULT(yes)
else
AC_MSG_ERROR([libgcrypt-config not found at specified path $libgcrypt_config])
fi
fi
if test "X$LIBGCRYPT_CONFIG" = "X" ; then
AC_CHECK_PROGS(LIBGCRYPT_CONFIG, libgcrypt-config)
fi
fi
AC_CHECK_HEADERS(gcrypt.h)
AC_MSG_CHECKING(for gcrypt)
GCRYPT_VERSION=`$LIBGCRYPT_CONFIG --version 2>/dev/null`
if test "X$GCRYPT_VERSION" = X; then
have_digest_gcrypt=no
elif test "$ac_cv_header_gcrypt_h" = "yes"; then
oCPPFLAGS="$CPPFLAGS"
oLIBS="$LIBS"
CPPFLAGS="$CPPFLAGS `$LIBGCRYPT_CONFIG --cflags`"
LIBS="$LIBS `$LIBGCRYPT_CONFIG --libs`"
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <gcrypt.h>]], [[ gcry_md_hd_t hash; gcry_md_open(&hash, GCRY_MD_MD5, 0); ]])],[have_digest_gcrypt=yes],[have_digest_gcrypt=no])
CPPFLAGS="$oCPPFLAGS"
LIBS="$oLIBS"
else
have_digest_gcrypt=no
fi
AC_MSG_RESULT($have_digest_gcrypt)
AC_ARG_WITH(digest-library, [ --with-digest-library=NAME Use message digest library - mhash, gcrypt, internal (auto)], digest_library="$withval", digest_library="")
for digest_library_name in $digest_library mhash gcrypt internal; do
case $digest_library_name in
mhash)
if test $have_digest_mhash = yes; then
need_digest_mhash=yes
AC_DEFINE(RASQAL_DIGEST_MHASH, 1, [Use mhash library for message digests])
break
fi
;;
gcrypt)
if test $have_digest_gcrypt = yes; then
need_digest_gcrypt=yes
AC_DEFINE(RASQAL_DIGEST_GCRYPT, 1, [Use gcrypt library for message digests])
break
fi
;;
internal)
need_digest_internal=yes
AC_DEFINE(RASQAL_DIGEST_INTERNAL, 1, [Use internal routines for message digests])
break
;;
*)
AC_MSG_ERROR(No such message digest library $digest_library_name)
;;
esac
done
AC_MSG_CHECKING(message digest library to use)
digest_library=
if test $need_digest_mhash = yes; then
digest_library=mhash
elif test $need_digest_gcrypt = yes; then
digest_library=gcrypt
elif test $need_digest_internal = yes; then
digest_library=internal
else
digest_library=none
AC_DEFINE(RASQAL_DIGEST_NONE, 1, [Use no message digest library])
AC_MSG_WARN(No message digest library selected - no message digest support will work)
fi
AC_MSG_RESULT($digest_library)
AM_CONDITIONAL(RASQAL_DIGEST_INTERNAL, test $digest_library = internal)
dnl Check for uuid libraries
have_uuid_libuuid=no
have_uuid_libc=no
have_uuid_ossp=no
need_uuid_libuuid=no
need_uuid_libc=no
need_uuid_internal=no
need_uuid_ossp=no
PKG_CHECK_MODULES(UUID, uuid, [
LIBUUID_VERSION=`$PKG_CONFIG uuid --modversion 2>/dev/null`
oCPPFLAGS="$CPPFLAGS"
oLIBS="$LIBS"
CPPFLAGS="$CPPFLAGS `$PKG_CONFIG uuid --cflags`"
LIBS="$LIBS `$PKG_CONFIG uuid --libs`"
dnl check for OSSP uuid defines and error out so we only get linux libuuid
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <uuid.h>]], [[
#if defined(UUID_LEN_BIN) && defined(UUID_VERSION)
FAIL
#endif
uuid_t data; uuid_clear(&data); ]])],[have_uuid_libuuid=yes],[have_uuid_libuuid=no])
CPPFLAGS="$oCPPFLAGS"
LIBS="$oLIBS"
], [have_uuid_libuuid=no])
AC_MSG_CHECKING(for libuuid)
AC_MSG_RESULT($have_uuid_libuuid)
AC_CHECK_PROGS(UUID_CONFIG, uuid-config)
AC_MSG_CHECKING(for ossp libuuid)
if test "X$UUID_CONFIG" != X; then
OSSP_UUID_VERSION=`$UUID_CONFIG --version 2>/dev/null`
oCPPFLAGS="$CPPFLAGS"
oLIBS="$LIBS"
CPPFLAGS="$CPPFLAGS `$UUID_CONFIG --cflags`"
LIBS="$LIBS `$UUID_CONFIG --ldflags --libs`"
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <uuid.h>]], [[ uuid_t *data; uuid_create(&data); ]])],[have_uuid_ossp=yes],[have_uuid_ossp=no])
CPPFLAGS="$oCPPFLAGS"
LIBS="$oLIBS"
fi
AC_MSG_RESULT($have_uuid_ossp)
AC_CHECK_HEADERS(uuid/uuid.h)
AC_MSG_CHECKING(for UUID in libc)
if test "$ac_cv_header_uuid_uuid_h" = "yes"; then
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <uuid/uuid.h>]], [[ uuid_t data; uuid_clear(&data); ]])],[have_uuid_libc=yes],[have_uuid_libc=no])
fi
AC_MSG_RESULT($have_uuid_libc)
AC_ARG_WITH(uuid-library, [ --with-uuid-library=NAME Use UUID library - libuuid, libc (auto)], uuid_library="$withval", uuid_library="")
for uuid_library_name in $uuid_library libuuid ossp libc internal; do
case $uuid_library_name in
libuuid)
if test $have_uuid_libuuid = yes; then
need_uuid_libuuid=yes
AC_DEFINE(RASQAL_UUID_LIBUUID, 1, [Use libuuid library for UUID])
break
fi
;;
ossp)
if test $have_uuid_ossp = yes; then
need_uuid_ossp=yes
AC_DEFINE(RASQAL_UUID_OSSP, 1, [Use OSSP library for UUID])
break
fi
;;
libc)
if test $have_uuid_libc = yes; then
need_uuid_libc=yes
AC_DEFINE(RASQAL_UUID_LIBC, 1, [Use UUID in libc library for UUID])
break
fi
;;
internal)
need_uuid_internal=yes
AC_DEFINE(RASQAL_UUID_INTERNAL, 1, [Use internal routines for UUID])
break
;;
*)
AC_MSG_ERROR(No such UUID library $uuid_library_name)
;;
esac
done
AC_MSG_CHECKING(UUID library to use)
uuid_library=
if test $need_uuid_libuuid = yes; then
uuid_library="libuuid $LIBUUID_VERSION"
elif test $need_uuid_ossp = yes; then
uuid_library="ossp $OSSP_UUID_VERSION"
elif test $need_uuid_libc = yes; then
uuid_library=libc
elif test $need_uuid_internal = yes; then
uuid_library=internal
else
uuid_library=none
AC_DEFINE(RASQAL_UUID_NONE, 1, [Use no UUID library])
AC_MSG_WARN(No UUID library selected - no UUID support will work)
fi
AC_MSG_RESULT($uuid_library)
have_libxml=0
need_libxml=0
AC_ARG_ENABLE(xml2,
[ --disable-xml2 Disable XML2 support (default auto)],
[enable_xml2=$enableval], [enable_xml2="auto"])
if test "x$enable_xml2" != "xno" ; then
AC_ARG_WITH(xml2-config, [ --with-xml2-config=PATH Location of libxml xml2-config ()], xml2_config="$withval", xml2_config="")
if test "X$xml2_config" != "X" ; then
AC_MSG_CHECKING(for $xml2_config)
if test -x $xml2_config ; then
XML_CONFIG=$xml2_config
AC_MSG_RESULT(yes)
else
AC_MSG_ERROR([xml2-config not found at specified path $xml2_config])
fi
fi
if test "X$XML_CONFIG" = "X"; then
AC_CHECK_PROGS(XML_CONFIG, xml2-config)
fi
LIBXML_MIN_VERSION=2.6.8
AC_MSG_CHECKING(for libxml2 library)
oCPPFLAGS="$CPPFLAGS"
oLIBS="$LIBS"
if test "X$XML_CONFIG" != X; then
LIBS="$LIBS `$XML_CONFIG --libs`"
CPPFLAGS="`$XML_CONFIG --cflags` $CPPFLAGS"
LIBXML_VERSION=`$XML_CONFIG --version`
libxml_version_dec=`echo $LIBXML_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
LIBXML_MIN_VERSION_dec=`echo $LIBXML_MIN_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
AC_MSG_RESULT(yes - version $LIBXML_VERSION)
if test $libxml_version_dec -lt $LIBXML_MIN_VERSION_dec; then
AC_MSG_WARN(Using libxml $LIBXML_VERSION is unsupported - $LIBXML_MIN_VERSION or newer required.)
else
AC_CHECK_HEADERS(libxml/xmlschemas.h libxml/xmlschemastypes.h libxml/schemasInternals.h)
if test "$ac_cv_header_libxml_xmlschemas_h" = no; then
AC_MSG_WARN(libxml library found but not xml schema headers - disabling)
else
have_libxml=1
fi
fi
else