-
Notifications
You must be signed in to change notification settings - Fork 28
/
configure.ac
1296 lines (1072 loc) · 38 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 - top level autoconf file for Redland librdf
dnl (Process this file with autoconf to produce a configure script.)
dnl
dnl Copyright (C) 2000-2012 David Beckett http://www.dajobe.org/
dnl Copyright (C) 2000-2005 University of Bristol, UK http://www.bristol.ac.uk/
dnl
dnl This package is Free Software and part of Redland http://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
dnl
AC_INIT([Redland librdf RDF API Library],[1.0.18],[http://bugs.librdf.org/],[redland])
AC_PREREQ([2.62])
AC_CONFIG_SRCDIR(src/rdf_node.c)
AC_REVISION($Revision$)dnl
AC_CONFIG_HEADERS([src/rdf_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
AC_CANONICAL_HOST
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(LIBRDF_VERSION_MAJOR, $version_major, [Major version number])
AC_DEFINE_UNQUOTED(LIBRDF_VERSION_MINOR, $version_minor, [Minor version number])
AC_DEFINE_UNQUOTED(LIBRDF_VERSION_RELEASE, $version_release, [Release version number])
AC_DEFINE_UNQUOTED(LIBRDF_VERSION_DECIMAL, $version_decimal, [Release version as a decimal])
# for redland-config.in
LIBRDF_VERSION_MAJOR=$version_major
LIBRDF_VERSION_MINOR=$version_minor
LIBRDF_VERSION_RELEASE=$version_release
LIBRDF_VERSION_DECIMAL=$version_decimal
AC_SUBST(LIBRDF_VERSION_MAJOR)
AC_SUBST(LIBRDF_VERSION_MINOR)
AC_SUBST(LIBRDF_VERSION_RELEASE)
AC_SUBST(LIBRDF_VERSION_DECIMAL)
# 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]]
LIBRDF_LIBTOOL_VERSION=0:0:0
AC_SUBST(LIBRDF_LIBTOOL_VERSION)
dnl Checks for programs.
AM_SANITY_CHECK
AM_PROG_AR
AC_PROG_CC
AM_PROG_CC_C_O
AC_MSG_CHECKING(whether $CC is clang)
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
m4_undefine([AC_PROG_CXX])
m4_defun([AC_PROG_CXX],[])
m4_undefine([AC_PROG_F77])
m4_defun([AC_PROG_F77],[])
# Libtool and LTDL initialising
LT_CONFIG_LTDL_DIR([libltdl])
LT_INIT([dlopen])
LTDL_INIT([convenience])
# Find a tar command for 'make dist'
AC_CHECK_PROGS(TAR, gnutar gtar tar)
AC_CHECK_PROGS(PERL, perl)
# Gnome
PKG_PROG_PKG_CONFIG
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
release_version=no
AC_ARG_ENABLE(release, [ --enable-release Turn on optimizations (for maintainer). ], \
if test "$enableval" = "yes"; then \
release_version=yes
fi;)
modular=yes
AC_ARG_ENABLE(modular, [ --disable-modular Build storage backends into librdf library. ], \
if test "$enableval" = "no"; then \
modular=no
fi;)
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
# http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
#
# Too noisy:
# -Wconversion:
# -Wformat-nonliteral : variables for format strings
# -Wno-system-headers : not debugging system
# -Wunused-parameter : variables can be marked __attribute__('unused')
#
# Apple gcc specific (probably): -Wshorten-64-to-32
possible_warnings="\
-Wall \
-Wc++-compat \
-Wextra \
-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-security \
-Wframe-larger-than=4096 \
-Winit-self \
-Winline \
-Wmissing-declarations \
-Wmissing-field-initializers \
-Wmissing-format-attribute \
-Wmissing-noreturn \
-Wmissing-prototypes \
-Wnested-externs \
-Wold-style-definition \
-Wpacked \
-Wpointer-arith \
-Wredundant-decls \
-Wshadow \
-Wsign-compare \
-Wsign-conversion \
-Wstrict-prototypes \
-Wswitch-enum \
-Wundef \
-Wunreachable-code \
-Wunsafe-loop-optimizations \
-Wwrite-strings \
\
-Wshorten-64-to-32
\
-Wno-conversion \
-Wno-format-nonliteral \
-Wno-system-headers \
-Wno-unused-parameter \
"
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
MAINTAINER_CPPFLAGS="$warning_cflags"
# Externally linked libraries - appear in redland-config
# -Dfoo -Idir
LIBRDF_CPPFLAGS=$CPPFLAGS
# -Ldir
LIBRDF_LDFLAGS=$LDFLAGS
# -llib
LIBRDF_LIBS=$LIBS
# Internally linked libraries - never given to users
# -Dfoo -Idir
LIBRDF_INTERNAL_CPPFLAGS=
# -Ldir -llib
LIBRDF_INTERNAL_LIBS=
# Internal dependencies like libltdl when built locally
LIBRDF_INTERNAL_DEPS=
# Libraries linked externally also may be internal - presently just
# raptor and rasqal but in future may include others
# Currently only substituted into redland-src-config.
# -Dfoo -Idir
LIBRDF_EXTERNAL_CPPFLAGS=
# -Ldir -llib
LIBRDF_EXTERNAL_LIBS=
# do these first because somehow they get messed up by bdb checks
AC_CHECK_TYPES([byte])
AC_CHECK_TYPES([u32])
AC_CHECK_TYPES([u64])
AC_CHECK_SIZEOF(unsigned char, 1)
AC_CHECK_SIZEOF(unsigned int, 4)
AC_CHECK_SIZEOF(unsigned long, 4)
AC_CHECK_SIZEOF(unsigned long long, 8)
dnl Checks for libraries.
dnl Oracle Berkeley DB
AC_ARG_WITH(bdb, [ --with-bdb=DIR Oracle Berkeley DB install area (default=/usr)], bdb_prefix="$withval", bdb_prefix="none")
AC_ARG_WITH(bdb_lib, [ --with-bdb-lib=DIR Oracle Berkeley DB lib directory (default=/usr/lib)], bdb_lib_dir="$withval", bdb_lib_dir="none")
AC_ARG_WITH(bdb_include, [ --with-bdb-include=DIR Oracle Berkeley DB include directory (default=/usr/include)], bdb_include_dir="$withval", bdb_include_dir="none")
AC_ARG_WITH(bdb_dbname, [ --with-bdb-dbname=NAME Oracle Berkeley DB library name (auto)], bdb_dbname="$withval", bdb_dbname="none")
bdb_version=unknown
bdb_available=Missing
# debian multiarch
multiarch=`dpkg-architecture -qDEB_HOST_MULTIARCH 2>/dev/null`
if test "x$bdb_prefix" != "xno" ; then
if test "x$bdb_prefix" = "xyes" ; then
bdb_prefix="none"
fi
# Only prefix given - set lib and include
if test "X$bdb_prefix" != "Xnone" -a "X$bdb_lib_dir" = "Xnone" -a "X$bdb_include_dir" = "Xnone" ; then
bdb_lib_dir="$bdb_prefix/lib"
bdb_include_dir="$bdb_prefix/include"
fi
# Nothing given - search
if test "X$bdb_prefix" = "Xnone" -a "X$bdb_lib_dir" = "Xnone" -a "X$bdb_include_dir" = "Xnone" -a "X$bdb_dbname" = "Xnone" ; then
bdb_prefix="/usr"
bdb_lib_dir="/usr/lib"
bdb_include_dir="/usr/include"
extraprefix=
# OSX fink area added if found and /sw/bin is in the PATH
if test -d /sw/include -a -d /sw/lib ; then
if echo $PATH |grep /sw/bin >/dev/null; then
extraprefix=/sw
fi
fi
# Sigh! And this still might not be good enough.
for bdbc_version in 5.3 5.2 5.1 5.0 4.9 4.8 4.7 4.6 4.5 4.4 4.3 4.2 4.1 4.0 4 3.3 3.2 3.1 3 2; do
bdbc_major=`echo $bdbc_version | sed -e 's/^\(.\).*$/\1/'`;
bdbc_version2=`echo $bdbc_version | sed -e 's/^\(.\).\(.\)$/\1\2/'`
for bdbc_prefix in $extraprefix /usr/local/BerkeleyDB.$bdbc_version /usr/local /opt/local /usr; do
bdbc_libdir=$bdbc_prefix/lib
for bdbc_incdir in $bdbc_prefix/include/db$bdbc_version $bdbc_prefix/include/db$bdbc_version2 $bdbc_prefix/include/db$bdbc_major $bdbc_prefix/include ; do
if test -r $bdbc_incdir/db.h ; then
header_bdbc_version=`sed -ne 's/^.*DB_VERSION_STRING.*Berkeley DB \(...\).*/\1/p' $bdbc_incdir/db.h`
if test "X$header_bdbc_version" = "X$bdbc_version" ; then
for bdbc_name in db-$bdbc_version db$bdbc_version db-$bdbc_version2 db$bdbc_version2; do
bdbc_libdir_multiarch=
if test "X$multiarch" != X; then
bdbc_libdir_multiarch=$bdbc_libdir/$multiarch
fi
for bdbc_libdir2 in $bdbc_libdir_multiarch $bdbc_libdir $bdbc_libdir/db$bdbc_version $bdbc_libdir/db$bdbc_version2; do
if test -r $bdbc_libdir2/lib$bdbc_name.a -o -r $bdbc_libdir2/lib$bdbc_name.so -o -r $bdbc_libdir2/lib$bdbc_name.dylib; then
bdb_version=$bdbc_version
bdb_prefix=$bdbc_prefix
bdb_include_dir=$bdbc_incdir
bdb_lib_dir=$bdbc_libdir2
bdb_dbname=$bdbc_name
break 5
fi
done
done
fi
fi
done
done
done
fi
AC_MSG_CHECKING([Oracle Berkeley DB (BDB) version])
AC_MSG_RESULT($bdb_version)
AC_MSG_CHECKING(location of BDB libs)
AC_MSG_RESULT($bdb_lib_dir)
AC_MSG_CHECKING(location of BDB includes)
AC_MSG_RESULT($bdb_include_dir)
if test "$bdb_prefix" != no; then
nLDFLAGS=$LDFLAGS
nCPPFLAGS=
if test "$bdb_lib_dir" != /usr/lib; then
nLDFLAGS="-L$bdb_lib_dir";
fi
if test "$bdb_dbname" = none; then
# Yuck, yuck, yuck - can't they create a bdb-config program like GNOME?
dnl need to change quotes to allow square brackets
changequote(<<, >>)dnl
bdb_dbname=`cd $bdb_lib_dir; ls -1 libdb[-0-9.]*.a libdb[-0-9.]*.{so,dylib}* 2>/dev/null | sed -e 's/^lib//' -e 's/\.a$//' -e 's/\.so.*$//' -e 's/\.dylib.*$//' | head -1`
changequote([, ])dnl
if test "X$bdb_dbname" = X; then
AC_MSG_WARN(Cannot find the BDB library name from the files in $bdb_lib_dir)
AC_MSG_WARN(Assuming it is 'db' and will link like -ldb)
AC_MSG_WARN(Use --with-bdb-dbname=NAME if this is wrong)
bdb_dbname=db
fi
fi
AC_MSG_CHECKING(name of BDB library)
AC_MSG_RESULT($bdb_dbname)
if test "$bdb_include_dir" != /usr/include; then
nCPPFLAGS="-I$bdb_include_dir";
fi
LDFLAGS="$nLDFLAGS $LDFLAGS"
CPPFLAGS="$nCPPFLAGS $CPPFLAGS"
LIBS="-l$bdb_dbname $LIBS"
AC_CHECK_HEADERS(db.h)
have_libdb=no
if test "$ac_cv_header_db_h" = yes ; then
AC_MSG_CHECKING(for BDB V1 dbopen)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#include <db.h>]], [[dbopen(NULL, 0, 0, DB_BTREE, NULL);]])],[AC_DEFINE(HAVE_DBOPEN, 1, BDB has dbopen method)
if test $have_libdb = no; then
bdb_available="Version 1.x - not supported"
have_libdb=no
fi
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
AC_MSG_CHECKING(for BDB V2 db_open)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#include <db.h>]], [[db_open(NULL, DB_BTREE, 0, 0, NULL, NULL, NULL);]])],[AC_DEFINE(HAVE_DB_OPEN, 1, BDB has db_open method)
have_libdb=yes
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
AC_MSG_CHECKING(for BDB V3/V4.x db_create)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#include <db.h>]], [[db_create(NULL, NULL, 0);]])],[AC_DEFINE(HAVE_DB_CREATE, 1, BDB has db_create method)
have_libdb=yes
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
have_bdb_open_7_args=no
AC_MSG_CHECKING(for BDB V4.1+ DB->open with 7 arguments)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#include <db.h>]], [[DB *bdb; bdb->open(bdb, NULL, NULL, NULL, DB_BTREE, 0, 0);]])],[AC_DEFINE(HAVE_BDB_OPEN_7_ARGS, 1, BDB has open method with 7 args)
have_libdb=yes
have_bdb_open_7_args=yes
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
if test "X$have_bdb_open_7_args" = Xno; then
# Cannot have 6 args if 7 args worked
AC_MSG_CHECKING(for BDB V4.0 DB->open with 6 arguments)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#include <db.h>]], [[DB *bdb; bdb->open(bdb, NULL, NULL, DB_BTREE, 0, 0);]])],[AC_DEFINE(HAVE_BDB_OPEN_6_ARGS, 1, BDB has open method with 6 args)
have_libdb=yes
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
fi
AC_MSG_CHECKING(for BDB DB->close with 2 arguments)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#include <db.h>]], [[DB *bdb; bdb->close(bdb, 0);]])],[AC_DEFINE(HAVE_BDB_CLOSE_2_ARGS, 1, BDB has close method with 2 args)
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
AC_MSG_CHECKING(for BDB DB->fd with 2 arguments)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#include <db.h>]], [[DB *bdb; bdb->fd(bdb, 0);]])],[AC_DEFINE(HAVE_BDB_FD_2_ARGS, 1, BDB has fd method with 2 args)
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
AC_MSG_CHECKING(for BDB DB->set_flags)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#include <db.h>]], [[DB *bdb; bdb->set_flags(bdb, 0);]])],[AC_DEFINE(HAVE_BDB_SET_FLAGS, 1, BDB has set_flags method)
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
AC_MSG_CHECKING(whether DB_TXN defined in db.h)
dnl In BDB, DB_TXN is a pointer to a structure never defined
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#include <db.h>]], [[DB_TXN* ptr=(DB_TXN*)NULL]])],[AC_DEFINE(HAVE_BDB_DB_TXN, 1, BDB defines DB_TXN)
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
AC_MSG_CHECKING(whether DBC defined in db.h)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <db.h>]], [[size_t len=sizeof(DBC)]])],[AC_DEFINE(HAVE_BDB_CURSOR, 1, BDB defines DBC)
AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
AC_MSG_CHECKING(number of arguments to db_cursor)
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#include <db.h>]], [[DB* db; db->cursor(db, NULL, NULL, 0);]])],[AC_DEFINE(HAVE_BDB_CURSOR_4_ARGS, 1, BDB cursor method has 4 arguments)
AC_MSG_RESULT(4)],[AC_MSG_RESULT(3)])
fi
if test "X$have_libdb" = Xyes; then
bdb_available="Version $bdb_version (library $bdb_dbname in $bdb_lib_dir)"
LIBRDF_LIBS="$LIBRDF_LIBS $nLDFLAGS -l$bdb_dbname"
LIBRDF_CPPFLAGS="$LIBRDF_CPPFLAGS $nCPPFLAGS"
fi
fi
fi
CPPFLAGS="$LIBRDF_CPPFLAGS"
LDFLAGS="$LIBRDF_LDFLAGS"
LIBS="$LIBRDF_LIBS"
dnl Checks for header files.
AC_CHECK_HEADERS(ctype.h errno.h fcntl.h getopt.h limits.h stdarg.h stddef.h stdlib.h string.h time.h sys/time.h sys/stat.h sys/types.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_BIGENDIAN
dnl Checks for library functions.
AC_CHECK_FUNCS(getopt getopt_long memcmp mkstemp mktemp tmpnam gettimeofday getenv)
AM_CONDITIONAL(MEMCMP, test $ac_cv_func_memcmp = no)
AM_CONDITIONAL(GETOPT, test $ac_cv_func_getopt = no -a $ac_cv_func_getopt_long = no)
dnl Checks for URI resolvers
CPPFLAGS="$LIBRDF_CPPFLAGS"
LDFLAGS="$LIBRDF_LDFLAGS"
LIBS="$LIBRDF_LIBS"
dnl Checks for RDF parsers
parser_modules=raptor
rdf_parsers_available=
# Check for rasqal before raptor so that we can see if rasqal was already
# built with raptor2 and can then enforce raptor2 is required
RASQAL_MIN_VERSION=0.9.26
RASQAL_MAX_VERSION=0.9.99
AC_SUBST(RASQAL_MIN_VERSION)
AC_SUBST(RASQAL_MAX_VERSION)
PKG_CHECK_MODULES([RASQAL],[rasqal >= $RASQAL_MIN_VERSION rasqal <= $RASQAL_MAX_VERSION],[
RASQAL_VERSION=`$PKG_CONFIG rasqal --modversion 2>/dev/null`
],[
AC_MSG_ERROR(Rasqal is not installed or too old - see http://librdf.org/rasqal/ to get a version in range $RASQAL_MIN_VERSION to $RASQAL_MAX_VERSION)
])
LIBRDF_EXTERNAL_CPPFLAGS="$RASQAL_CFLAGS $LIBRDF_EXTERNAL_CPPFLAGS"
LIBRDF_EXTERNAL_LIBS="$RASQAL_LIBS $LIBRDF_EXTERNAL_LIBS"
rdf_query="rasqal(system $RASQAL_VERSION)"
# Check for raptor
RAPTOR_MIN_VERSION=2.0.7
PKG_CHECK_MODULES([RAPTOR2],[raptor2 >= $RAPTOR_MIN_VERSION],[
RAPTOR_VERSION=`$PKG_CONFIG raptor2 --modversion 2>/dev/null`
],[
AC_MSG_ERROR(Raptor2 is not installed or too old - see http://librdf.org/raptor/ to get version $RAPTOR_MIN_VERSION or newer)
])
LIBRDF_DIRECT_LIBS="$LIBRDF_DIRECT_LIBS $RAPTOR2_LIBS"
LIBRDF_DIRECT_LIBS="$LIBRDF_DIRECT_LIBS $RASQAL_LIBS"
LIBRDF_EXTERNAL_CPPFLAGS="$RAPTOR2_CFLAGS $LIBRDF_EXTERNAL_CPPFLAGS"
LIBRDF_EXTERNAL_LIBS="$LIBRDF_DIRECT_LIBS $LIBRDF_EXTERNAL_LIBS"
rdf_parsers_available="$parser_available raptor(system $RAPTOR_VERSION)"
AC_SUBST(RAPTOR_MIN_VERSION)
dnl for redland.pc.in mostly
HAVE_RAPTOR2_API=1
AC_SUBST(HAVE_RAPTOR2_API)
dnl Checks for modules
digest_modules="md5 sha1 ripemd160"
AC_MSG_CHECKING(digests wanted)
AC_ARG_ENABLE(digests, [ --enable-digests=LIST Use digests (default=md5 sha1 ripemd160)], digest_modules="$enableval")
AC_MSG_RESULT($digest_modules)
DIGEST_OBJS=
DIGEST_SRCS=
digest_modules_available=
dnl hashes
HASH_OBJS=
HASH_SRCS=
AC_MSG_CHECKING(for bdb hash support)
if test "$have_libdb" = yes; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_BDB_HASH, 1, [Have BDB hash support])
HASH_OBJS="$HASH_OBJS rdf_hash_bdb.lo"
HASH_SRCS="$HASH_SRCS rdf_hash_bdb.c"
else
AC_MSG_RESULT(no)
fi
AC_SUBST(HASH_OBJS)
AC_SUBST(HASH_SRCS)
dnl Storages
persistent_storages="/file/tstore/mysql/sqlite/"
persistent_store=no
all_storages="memory file hashes trees mysql sqlite tstore postgresql virtuoso"
always_available_storages="memory file hashes trees"
dnl default availabilities and enablements
for storage in $all_storages; do
eval $storage'_storage_available=no'
eval $storage'_storage=no'
done
for storage in $always_available_storages; do
eval $storage'_storage_available=yes'
eval $storage'_storage=yes'
done
REDLAND_MODULE_PATH=""
AC_ARG_WITH(module-path, [ --with-module-path=PATH Default search path for modules (default=/usr/local/lib/redland:${libdir}/redland], REDLAND_MODULE_PATH="$witheval")
if test "x$REDLAND_MODULE_PATH" = "x"; then
REDLAND_MODULE_PATH=$libdir"/redland"
if test "x$prefix" != "xNONE"; then
REDLAND_MODULE_PATH="/usr/local/lib/redland:"$REDLAND_MODULE_PATH
fi
fi
AC_SUBST(REDLAND_MODULE_PATH)
storages_available="memory file hashes(memory) trees"
if test "x$have_libdb" = xyes; then
storages_available="$storages_available hashes(bdb $bdb_version)"
fi
AC_ARG_WITH(threestore, [ --with-threestore(=CONFIG|yes|no) Location of 3store-config (default=auto)], tstore_config="$withval", tstore_config="")
if test "X$tstore_config" != "Xno"; then
if test "X$tstore_config" != "Xyes" ; then
TSTORE_CONFIG=$tstore_config
fi
tstore_config=yes
fi
if test $tstore_config = yes -a "X$TSTORE_CONFIG" = "X" ; then
AC_CHECK_PROGS(TSTORE_CONFIG, 3store-config)
fi
AC_MSG_CHECKING(for 3store library)
if test "X$TSTORE_CONFIG" != X -a "X$PKG_CONFIG" != X ; then
tstore_version=`$TSTORE_CONFIG --version`
storages_available="$storages_available 3store($tstore_version)"
tstore_storage_available=yes
AC_MSG_RESULT(yes - version $tstore_version)
else
AC_MSG_RESULT(no)
fi
AC_ARG_WITH(mysql, [ --with-mysql(=CONFIG|yes|no) Location of MySQL 3/4 mysql_config (default=auto)], mysql_config="$withval", mysql_config="")
if test "X$mysql_config" != "Xno"; then
if test "X$mysql_config" != "Xyes" ; then
MYSQL_CONFIG=$mysql_config
fi
mysql_config=yes
fi
if test $mysql_config = yes -a "X$MYSQL_CONFIG" = "X" ; then
AC_CHECK_PROGS(MYSQL_CONFIG, mysql_config)
fi
libmysql_min_version=3.23.56
# Also tested on 4.0.14
mysql_cflags=
mysql_libs=
if test "X$MYSQL_CONFIG" != X; then
dnl need to change quotes to allow square brackets
changequote(<<, >>)dnl
mysql_libs=`$MYSQL_CONFIG --libs | sed -e "s/'//g"`
# Stop the MySQL config program adding -Os or -O<n> options to CFLAGS
mysql_cflags=`$MYSQL_CONFIG --cflags | sed -e "s/'//g" -e "s/[ \t]-O[A-Za-z0-9]*/ /" `
changequote([, ])dnl
LIBS="$LIBRDF_LIBS $mysql_libs"
CPPFLAGS="$LIBRDF_CPPFLAGS $mysql_cflags"
AC_MSG_CHECKING(for mysql library)
LIBMYSQL_VERSION=`$MYSQL_CONFIG --version`
libmysql_version_dec=`echo $LIBMYSQL_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
libmysql_min_version_dec=`echo $libmysql_min_version | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'`
AC_MSG_RESULT(yes - version $LIBMYSQL_VERSION)
if test $libmysql_version_dec -lt $libmysql_min_version_dec; then
AC_MSG_WARN(Using libmysql $LIBMYSQL_VERSION is unsupported - $libmysql_min_version or newer recommended.)
else
storages_available="$storages_available mysql($LIBMYSQL_VERSION)"
mysql_storage_available=yes
fi
AC_MSG_CHECKING(whether MYSQL_OPT_RECONNECT is declared)
AC_COMPILE_IFELSE([AC_LANG_SOURCE([#include <mysql.h>
int x=MYSQL_OPT_RECONNECT;])],
AC_DEFINE(HAVE_MYSQL_OPT_RECONNECT, 1, [have MYSQL_OPT_RECONNECT declared])
AC_MSG_RESULT(yes),
AC_MSG_RESULT(no))
LIBS="$LIBRDF_LIBS"
CPPFLAGS="$LIBRDF_CPPFLAGS"
fi
AC_ARG_WITH(sqlite, [ --with-sqlite(=yes|no) Enable SQLite store (default=auto)], with_sqlite="$withval", with_sqlite="auto")
if test "X$with_sqlite" != Xno; then
PKG_CHECK_MODULES([SQLITE],[sqlite3],[
SQLITE_VERSION=`$PKG_CONFIG sqlite3 --modversion`
with_sqlite=yes
],[with_sqlite=no])
fi
AC_MSG_CHECKING(using sqlite library)
if test "X$with_sqlite" != Xno ; then
storages_available="$storages_available sqlite($SQLITE_VERSION)"
sqlite_storage_available=yes
AC_MSG_RESULT(yes - version $SQLITE_VERSION)
CPPFLAGS="$LIBRDF_CPPFLAGS $SQLITE_CFLAGS"
AC_CHECK_HEADERS(sqlite3.h sqlite.h)
CPPFLAGS="$LIBRDF_CPPFLAGS"
else
AC_MSG_RESULT(no)
fi
AC_ARG_WITH(postgresql, [ --with-postgresql(=CONFIG|yes|no) Location of pg_config (default=auto)], pg_config="$withval", postgresql_config="")
if test "X$pg_config" != "Xno"; then
if test "X$pg_config" != "Xyes" ; then
PG_CONFIG=$pg_config
fi
pg_config=yes
fi
if test $pg_config = yes -a "X$PG_CONFIG" = "X" ; then
AC_CHECK_PROGS(PG_CONFIG, pg_config)
fi
AC_MSG_CHECKING(for postgresql library)
if test "X$PG_CONFIG" != X ; then
postgresql_version=`$PG_CONFIG --version | sed -e 's/^.* //'`
storages_available="$storages_available postgresql($postgresql_version)"
postgresql_storage_available=yes
AC_MSG_RESULT(yes - version $postgresql_version)
CPPFLAGS="$LIBRDF_CPPFLAGS -I`$PG_CONFIG --includedir`"
AC_CHECK_HEADERS(libpq-fe.h)
CPPFLAGS="$LIBRDF_CPPFLAGS"
LIBS="$LIBRDF_LIBS -L`$PG_CONFIG --libdir` -lpq"
else
AC_MSG_RESULT(no)
fi
##########################################################################
# #
# OpenLink Virtuoso storage support #
# #
##########################################################################
AC_ARG_WITH(virtuoso, [ --with-virtuoso(=yes|no) Enable Virtuoso RDF store (default=auto)], with_virtuoso="$withval", with_virtuoso="auto")
##
## Checkout ODBC situation
##
#
# Initialize variables
#
found_odbc=no
ODBC_CFLAGS=
ODBC_LIBS=
#
# Check for iODBC support
#
if test "$found_odbc" = "no"
then
AC_ARG_WITH(iodbc, [dnl
AS_HELP_STRING([--with-iodbc(=DIR)],[Select iODBC support])
AS_HELP_STRING([],[DIR is the iODBC base install directory])
AS_HELP_STRING([],[(default=/usr/local)])
] , [
if test "$withval" = "yes"
then
withval=/usr/local
fi
PATH_IODBC="$withval/bin:$PATH"
AC_PATH_PROG(IODBC_CONFIG, iodbc-config, no, [$PATH_IODBC])
AC_MSG_CHECKING([for iODBC support])
if test -f "$withval/lib/libiodbc.dylib"
then
found_odbc=iODBC # Mac OS X
ODBC_CFLAGS="-I$withval/include"
ODBC_LIBS="-L$withval/lib -liodbc"
AC_MSG_RESULT(yes)
elif test -x "$IODBC_CONFIG"
then
found_odbc=iODBC
ODBC_CFLAGS=`$IODBC_CONFIG --cflags`
ODBC_LIBS=`$IODBC_CONFIG --libs`
AC_MSG_RESULT(yes)
elif test -f "$withval/lib/libiodbc.a"
then
found_odbc=iODBC
ODBC_CFLAGS="-I$withval/include"
ODBC_LIBS="-L$withval/lib -liodbc"
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
])
fi
#
# Check for UnixODBC support
#
if test "$found_odbc" = "no"
then
AC_ARG_WITH(unixodbc, [dnl
AS_HELP_STRING([--with-unixodbc(=DIR)],[Select UnixODBC support])
AS_HELP_STRING([],[DIR is the UnixODBC base install directory])
AS_HELP_STRING([],[(default=/usr/local)])
], [
if test "$withval" = "yes"
then
withval=/usr/local
fi
AC_MSG_CHECKING([for UnixODBC support])
if test -f "$withval/lib/libodbc.a"
then
found_odbc=unixODBC
ODBC_CFLAGS="-I$withval/include"
ODBC_LIBS="-L$withval/lib -lodbc"
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
])
fi
#
# Check for DataDirect support
#
if test "$found_odbc" = "no"
then
AC_ARG_WITH(datadirect, [dnl
AS_HELP_STRING([--with-datadirect(=DIR)],[Select DataDirect support])
AS_HELP_STRING([],[DIR is the DataDirect base install directory])
AS_HELP_STRING([],[(default=/usr/local)])
], [
if test "$withval" = "yes"
then
withval=/usr/local
fi
AC_MSG_CHECKING([for DataDirect support])
if test -f "$withval/lib/libodbc.a"
then
found_odbc=DataDirect
ODBC_CFLAGS="-I$withval/include"
ODBC_LIBS="-L$withval/lib -lodbc"
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
])
fi
#
# Check for custom ODBC support
#
if test "$found_odbc" = "no"
then
AC_ARG_WITH(odbc-include, [dnl
AS_HELP_STRING([--with-odbc-inc=DIR],[Specify custom ODBC include directory])
AS_HELP_STRING([],[(default=/usr/local/include)])
], [
if test "$withval" = "yes"
then
withval=/usr/local/include
fi
AC_MSG_CHECKING([for sql.h])
if test -f "$withval/sql.h"
then
ODBC_CFLAGS="-I$withval"
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
])
AC_ARG_WITH(odbc-lib, [dnl
AS_HELP_STRING([--with-odbc-lib=DIR],[Specify custom ODBC lib directory])
AS_HELP_STRING([],[(default=/usr/local/lib)])dnl
], [
if test "$withval" = "yes"
then
withval=/usr/local/lib
fi
ac_save_LDFLAGS=$LDFLAGS
test -n "$withval" && LDFLAGS="$LDFLAGS -L$withval"
AC_CHECK_LIB(iodbc, SQLConnect,
[
ODBC_LIBS="-L$withval -liodbc"; found_odbc=iODBC
],
[
AC_CHECK_LIB(odbc, SQLConnect,
[
ODBC_LIBS="-L$withval -lodbc"; found_odbc=ODBC
])
])
LDFLAGS=$ac_save_LDFLAGS
])
fi
#
# Maybe the libraries are in some default directory
#
if test "$found_odbc" = "no"
then
AC_PATH_PROG(IODBC_CONFIG, iodbc-config, no)
AC_MSG_CHECKING([for iODBC support])
if test -x "$IODBC_CONFIG"
then
found_odbc=iODBC
ODBC_CFLAGS=`$IODBC_CONFIG --cflags`
ODBC_LIBS=`$IODBC_CONFIG --libs`
AC_MSG_RESULT(yes)
fi
fi
#
# Maybe the libraries are in some default directory
#
if test "$found_odbc" = "no"
then
AC_CHECK_LIB(iodbc, SQLConnect,
[
ODBC_LIBS="-liodbc"; found_odbc=iODBC
],
[
AC_CHECK_LIB(odbc, SQLConnect,
[
ODBC_LIBS="-lodbc"; found_odbc=ODBC
])
])
fi
#
# Expand our compile flags
#
AC_SUBST(ODBC_CFLAGS)
AC_SUBST(ODBC_LIBS)
#
# Check if SQLLEN, SQLULEN, SQLBIGINT, SQLUBIGINT are defined
#
save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $ODBC_CFLAGS"
AC_CHECK_TYPE(SQLLEN, ,
AC_DEFINE(SQLLEN, SQLINTEGER,
[define to SQLINTEGER if not defined in the ODBC headers])
AC_DEFINE(SQLULEN, SQLUINTEGER,
[define to SQLUINTEGER if not defined in the ODBC headers]),
[
#include <sql.h>
#include <sqlext.h>
#include <sqltypes.h>
])
if test "x$with_virtuoso" != "xno"
then
AC_MSG_CHECKING([virtuoso storage dependencies])
if test "$found_odbc" = "no"
then
AC_MSG_RESULT(no)
AC_MSG_WARN([Disabled virtuoso storage:])
AC_MSG_WARN([ could not find ODBC header files and/or libraries])
virtuoso_storage_available=no
else
AC_MSG_RESULT(yes)
storages_available="$storages_available virtuoso"
virtuoso_storage_available=yes
fi