forked from pantoniou/libfyaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
570 lines (485 loc) · 19.2 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
AC_PREREQ(2.69)
AC_INIT([libfyaml],
m4_esyscmd([build-aux/git-version-gen .tarball-version]),
AC_CONFIG_AUX_DIR([build-aux])
AC_PATH_PROG([M4], [m4 gm4], [no])
if test "x$M4" = xno ; then
AC_MSG_ERROR([m4 missing])
fi
AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
AC_CANONICAL_TARGET
AC_CONFIG_SRCDIR([src/lib/fy-parse.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign 1.8.5 subdir-objects -Wno-portability])
m4_pattern_allow([^(AM_EXTRA_RECURSIVE_TARGETS|AM_PROG_AR)$])dnl
# supoort older versions of automake
# only define the recursive targets when it's defined
# note that the top level makefile rules will not
# include them
m4_ifdef([AM_EXTRA_RECURSIVE_TARGETS],
[AM_EXTRA_RECURSIVE_TARGETS([doc-help doc-html doc-latexpdf doc-man doc-clean doc-markdown])],
[AC_MSG_WARN([Old automake version without AM_EXTRA_RECURSIVE_TARGETS, doc-* rules won't be available at top level])])
m4_define(fyaml_major, `echo $VERSION | cut -d. -f1 | cut -d- -f1`)
m4_define(fyaml_minor, `echo $VERSION | cut -d. -f2 | cut -d- -f1`)
m4_define(fyaml_patch, `echo $VERSION | cut -d. -f3- | cut -d- -f1`)
m4_define(fyaml_extra, `echo $VERSION | cut -d- -f2- -s`)
AC_SUBST(MAJOR, fyaml_major)
AC_SUBST(MINOR, fyaml_minor)
AC_SUBST(PATCH, fyaml_patch)
AC_SUBST(EXTRA, fyaml_extra)
# libtool version is of the following format <current>:<revision>:<age>
# and it is the library ABI version
#
# - Increase current when an interface has been added removed or changed
# - Increase revision every time a release is made
# - Increase age when changes are backwards compatible
#
# examples of semantic versioning progression mapping to libtool abi versions
#
# v0.7.4 -> v0.7.5 - patch number changes, backwards compatible (1)
# increase revision, increase age (age must be <= current), current unchanged
#
# v0.7.5 -> v0.8.0 - minor number changes, backwards compatible (same as (1)) (2)
# increase revision, increase age (age must be <= current), current unchanged
#
# v0.8.0 -> v0.9.0 - minor number changes, but breaks backwards compatibility - should not happen (3)
# with semantic versioning for major version number >= 1, allowed for major == 0
# increase revision, increase current, age reset to 0
#
# v0.9.0 -> v1.0.0 - major number changes, first public release (4)
# increase current, set revision and age to 0
#
# v1.0.0 -> v1.0.1 - patch number changes, _must_ be backwards compatible (same as (1)) (5)
# increase revision, increase age (age must be <= current), current unchanged
#
# v1.0.1 -> v1.1.0 - minor number changes, backwards compatible (same as (5)) (6)
# increase revision, increase age (age must be <= current), current unchanged
#
# v1.1.0 -> v1.2.0 - minor number changes, breaking backwards compatibility (7)
# XXX illegal in semantic versioning and should not happen
#
# v1.1.0 -> v2.0.0 - major number changes, breaking backwards compatibility (same as (4)) (8)
# increase current, set revision and age to 0
m4_define(fyaml_libtool_version, m4_normalize(m4_include([.libtool-version])))
AC_SUBST(LIBTOOL_VERSION, fyaml_libtool_version)
dnl AX_* requires 2.64
m4_version_prereq(2.64, [AX_CHECK_ENABLE_DEBUG()], [true])
AC_PROG_MKDIR_P
AC_PROG_CC
AM_PROG_CC_C_O
AM_PROG_AS
AC_PROG_GCC_TRADITIONAL
AC_USE_SYSTEM_EXTENSIONS
m4_ifdef([AM_PROG_AR], [AM_PROG_AR],
[AC_MSG_WARN([Old automake version without AM_PROG_AR, library versioning will not be available])])
AC_PROG_CXX
AC_PROG_AWK
AC_PROG_LN_S
AX_PTHREAD([], [AC_MSG_ERROR("Missing required pthread support")])
# in some cases PTHREAD_LIBS is empty - force -lpthread */
if test "x$PTHREAD_LIBS" = "x"; then
PTHREAD_LIBS="-lpthread"
fi
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
LIBS="$LIBS $PTHREAD_LIBS"
# pkg-config
PKG_PROG_PKG_CONFIG
AC_LTDL_ENABLE_INSTALL
LT_INIT([dlopen win32-dll])
AC_SUBST(LTDLINCL)
AC_SUBST(LIBLTDL)
AC_CONFIG_SUBDIRS(libltdl)
AC_C_CONST
AC_C_BIGENDIAN
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_CHECK_TYPES(ssize_t, , [AC_DEFINE([ssize_t], [signed long],
[Define ssize_t if it is not done by the standard libs.])])
AC_TYPE_OFF_T
AC_TYPE_UID_T
AC_CHECK_DECLS(environ)
AC_CHECK_HEADERS([byteswap.h])
AC_CHECK_FUNCS([__builtin_bswap16 __builtin_bswap32 __builtin_bswap64])
dnl for old autoconf version AX_APPEND_COMPILE_FLAGS does not work
m4_version_prereq(2.64,
[AX_APPEND_COMPILE_FLAGS([-Wall -Wsign-compare -Wno-stringop-overflow -fvisibility=hidden],
[CFLAGS], [-pedantic -Werror])],
[CFLAGS="$CFLAGS -Wall -Wsign-compare"])
dnl -O2 is universal no need for AX_APPEND_COMPILE_FLAGS
if test "x$ax_enable_debug" != "xyes" ; then
CFLAGS="$CFLAGS -O2"
fi
# need that as conditional because some internal tools compile as static
# to have access to internal libfyaml APIs
if test "x$enable_static" = "xyes" ; then
HAVE_STATIC=1
else
HAVE_STATIC=0
fi
AC_SUBST(HAVE_STATIC)
AC_DEFINE_UNQUOTED([HAVE_STATIC], [$HAVE_STATIC], [Define to 1 if static linking is available])
AM_CONDITIONAL([HAVE_STATIC], [ test x$HAVE_STATIC = x1 ])
dnl check whether warning flags are supported
AX_CHECK_COMPILE_FLAG([-Wstringop-overread], , , [-Werror])
AS_IF([test "x$ax_cv_check_cflags__Werror__wstringop_overread" = x"yes"],
[HAVE_WSTRINGOP_OVERREAD=1], [HAVE_WSTRINGOP_OVERREAD=0])
AC_DEFINE_UNQUOTED([HAVE_WSTRINGOP_OVERREAD], [$HAVE_WSTRINGOP_OVERREAD], [Define to 1 if -Wstringop-overread is supported])
dnl Per target optimizations
AC_ARG_ENABLE([portable-target],
AS_HELP_STRING([--enable-portable-target],
[Enable portable mode (disable per-target optimizations)]))
HAVE_PORTABLE_TARGET=0
if test "x$enable_portable_target" == "xyes"; then
HAVE_PORTABLE_TARGET=1
fi
AC_SUBST(HAVE_PORTABLE_TARGET)
AC_DEFINE_UNQUOTED([HAVE_PORTABLE_TARGET], [$HAVE_PORTABLE_TARGET], [Define to 1 if PORTABLE_TARGET is enabled])
AM_CONDITIONAL([HAVE_PORTABLE_TARGET], [ test x$HAVE_PORTABLE_TARGET == x1 ])
AM_CONDITIONAL([TARGET_CPU_X86], [ test x$target_cpu = xx86 ])
AM_CONDITIONAL([TARGET_CPU_X86_64], [ test x$target_cpu = xx86_64 ])
AM_CONDITIONAL([TARGET_CPU_ANY_X86], [ test x$target_cpu = xx86 -o x$target_cpu = xx86_64 ])
AM_CONDITIONAL([TARGET_CPU_ARM], [ test x$target_cpu = xarm ])
AM_CONDITIONAL([TARGET_CPU_ARM64], [ test x$target_cpu = xaarch64 ])
AM_CONDITIONAL([TARGET_CPU_ANY_ARM], [ test x$target_cpu = xarm -o x$target_cpu = xaarch64 ])
AM_COND_IF([TARGET_CPU_ANY_X86], [m4_version_prereq(2.64, [
AX_CHECK_COMPILE_FLAG([-msse2], , , [-Werror])
AX_CHECK_COMPILE_FLAG([-msse4.1], , , [-Werror])
AX_CHECK_COMPILE_FLAG([-mavx2], , , [-Werror])
AX_CHECK_COMPILE_FLAG([-mavx512f -mavx512vl], , , [-Werror])
], [true])
])
AM_COND_IF([TARGET_CPU_ARM], [m4_version_prereq(2.64, [
AX_CHECK_COMPILE_FLAG([-mfpu=neon], , , [-Werror])
], [true])
])
AM_CONDITIONAL([TARGET_HAS_SSE2], [ test "x$ax_cv_check_cflags__Werror__msse2" = x"yes" -a "x$enable_portable_target" != "xyes" ])
AM_CONDITIONAL([TARGET_HAS_SSE41], [ test "x$ax_cv_check_cflags__Werror__msse4_1" = x"yes" -a "x$enable_portable_target" != "xyes" ])
AM_CONDITIONAL([TARGET_HAS_AVX2], [ test "x$ax_cv_check_cflags__Werror__mavx2" = x"yes" -a "x$enable_portable_target" != "xyes" ])
AM_CONDITIONAL([TARGET_HAS_AVX512], [ test "x$ax_cv_check_cflags__Werror__mavx512f__mavx512vl" = x"yes" -a "x$enable_portable_target" != "xyes" ])
AM_CONDITIONAL([TARGET_HAS_NEON], [ test \( x$target_cpu = xaarch64 -o "x$ax_cv_check_cflags__Werror__mcpu_neon" = x"yes" \) -a "x$enable_portable_target" != "xyes" ])
AM_COND_IF([TARGET_HAS_SSE2], AC_DEFINE([TARGET_HAS_SSE2], [1], [SSE2 target support]))
AM_COND_IF([TARGET_HAS_SSE41], AC_DEFINE([TARGET_HAS_SSE41], [1], [SSE41 target support]))
AM_COND_IF([TARGET_HAS_AVX2], AC_DEFINE([TARGET_HAS_AVX2], [1], [AVX2 target support]))
AM_COND_IF([TARGET_HAS_AVX512], AC_DEFINE([TARGET_HAS_AVX512], [1], [AVX512 target support]))
AM_COND_IF([TARGET_HAS_NEON], AC_DEFINE([TARGET_HAS_NEON], [1], [NEON target support]))
dnl ASAN enable switch
AC_ARG_ENABLE([asan],
AS_HELP_STRING([--enable-asan],
[Enable ASAN support]))
HAVE_ASAN=0
ASAN_CFLAGS=""
ASAN_LIBS=""
if test "x$enable_asan" == "xyes" ; then
AC_MSG_CHECKING([location of ASAN library])
ASANLIB1=`${CC} -print-file-name=libasan.so`
ASANLIB=`readlink -f "${ASANLIB1}"`
if test -f "$ASANLIB" ; then
HAVE_ASAN=1
ASAN_CFLAGS="-fsanitize=address -fno-omit-frame-pointer"
ASAN_LIBS="-fsanitize=address"
AC_MSG_RESULT([$ASANLIB])
m4_version_prereq(2.64,
AX_APPEND_COMPILE_FLAGS([-fsanitize=address -fno-omit-frame-pointer], [CFLAGS]),
[CFLAGS="$CFLAGS -fsanitize=address -fno-omit-frame-pointer"])
else
AC_MSG_RESULT([Not found; disabling ASAN])
fi
fi
AC_SUBST(HAVE_ASAN)
AC_SUBST(ASAN_CFLAGS)
AC_SUBST(ASAN_LIBS)
AM_CONDITIONAL([HAVE_ASAN],
[ test x$HAVE_ASAN = x1 ])
AC_DEFINE_UNQUOTED([HAVE_ASAN], [$HAVE_ASAN], [Define to 1 if ASAN is enabled])
# check if there's a qsort_r available (musl does not have it)
AC_CHECK_FUNC([qsort_r],
HAVE_QSORT_R=1,
HAVE_QSORT_R=0)
AC_SUBST(HAVE_QSORT_R)
AC_DEFINE_UNQUOTED([HAVE_QSORT_R], [$HAVE_QSORT_R], [Define to 1 if you have qsort_r available])
AM_CONDITIONAL([HAVE_QSORT_R], [ test x$HAVE_QSORT_R = x1 ])
PKG_CHECK_MODULES(LIBYAML, [ yaml-0.1 ], HAVE_LIBYAML=1, HAVE_LIBYAML=0)
# update with pkg-config's flags
if test "x$HAVE_LIBYAML" != "x1" ; then
AC_MSG_WARN([failed to find libyaml; compatibility disabled])
fi
AC_SUBST(HAVE_LIBYAML)
AC_SUBST(LIBYAML_CFLAGS)
AC_SUBST(LIBYAML_LIBS)
AC_DEFINE_UNQUOTED([HAVE_LIBYAML], [$HAVE_LIBYAML], [Define to 1 if you have libyaml available])
AM_CONDITIONAL([HAVE_LIBYAML], [ test x$HAVE_LIBYAML = x1 ])
PKG_CHECK_MODULES(CHECK, [ check ], HAVE_CHECK=1, HAVE_CHECK=0)
AC_SUBST(HAVE_CHECK)
AC_SUBST(CHECK_CFLAGS)
AC_SUBST(CHECK_LDFLAGS)
AC_SUBST(CHECK_LIBS)
AC_DEFINE_UNQUOTED([HAVE_CHECK], [$HAVE_CHECK], [Define to 1 if you have check available])
AM_CONDITIONAL([HAVE_CHECK], [ test x$HAVE_CHECK = x1 ])
HAVE_COMPATIBLE_CHECK=0
if test "x$HAVE_CHECK" = "x1" ; then
save_LIBS="$LIBS"
save_CFLAGS="$CFLAGS"
LIBS="$LIBS $CHECK_LIBS"
CFLAGS="$CFLAGS $CHECK_CFLAGS"
# check if libcheck has srunner_set_tap (jessie has outdated libcheck)
AC_CHECK_FUNC([srunner_set_tap],
HAVE_COMPATIBLE_CHECK=1,
HAVE_COMPATIBLE_CHECK=0)
LIBS="$save_LIBS"
CFLAGS="$save_CFLAGS"
fi
AC_SUBST(HAVE_COMPATIBLE_CHECK)
AC_DEFINE_UNQUOTED([HAVE_COMPATIBLE_CHECK], [$HAVE_COMPATIBLE_CHECK], [Define to 1 if you have a compatible version of check available])
AM_CONDITIONAL([HAVE_COMPATIBLE_CHECK], [ test x$HAVE_COMPATIBLE_CHECK = x1 ])
dnl enable internet available when checking
AC_ARG_ENABLE([network],
AS_HELP_STRING([--disable-network],
[Disable tests requiring network access]))
if test "x$enable_network" != "xno" ; then
HAVE_NETWORK=1
else
HAVE_NETWORK=0
fi
AC_SUBST(HAVE_NETWORK)
AM_CONDITIONAL([HAVE_NETWORK],
[ test x$HAVE_NETWORK = x1 ])
dnl enable internet available when checking
AC_ARG_ENABLE([devmode],
AS_HELP_STRING([--enable-devmode],
[Enable development mode only debugging]))
if test "x$enable_devmode" != "xno" ; then
HAVE_DEVMODE=1
else
HAVE_DEVMODE=0
fi
AC_SUBST(HAVE_DEVMODE)
AM_CONDITIONAL([HAVE_DEVMODE],
[ test x$HAVE_DEVMODE = x1 ])
AC_DEFINE_UNQUOTED([HAVE_DEVMODE], [$HAVE_DEVMODE], [Define to 1 if developer mode is enabled])
# check for sphinx
AC_PATH_PROG([SPHINX], [sphinx-build])
HAVE_SPHINX=0
if test "x$SPHINX" != "x" ; then
AC_PATH_PROG([PIP3], [pip3])
# if both pip3 and sphinx-build are available check for versions
if test "x$PIP3" != "x" ; then
AC_MSG_CHECKING([sphinx version])
SPHINX_VERSION=`pip3 2>/dev/null show sphinx | grep -i Version: | cut -d: -f2 | sed -e 's/ //g'`
if test "x$SPHINX_VERSION" != "x" ; then
AC_MSG_RESULT([$SPHINX_VERSION])
else
AC_MSG_RESULT([N/A])
fi
AC_MSG_CHECKING([sphinx RTD theme version])
SPHINX_RTD_THEME_VERSION=`pip3 2>/dev/null show sphinx_rtd_theme | grep -i Version: | cut -d: -f2 | sed -e 's/ //g'`
if test "x$SPHINX_VERSION" != "x" ; then
AC_MSG_RESULT([$SPHINX_RTD_THEME_VERSION])
else
AC_MSG_RESULT([N/A])
fi
AC_MSG_CHECKING([sphinx markdown builder version])
SPHINX_MARKDOWN_BUILDER_VERSION=`pip3 2>/dev/null show sphinx-markdown-builder | grep -i Version: | cut -d: -f2 | sed -e 's/ //g'`
if test "x$SPHINX_MARKDOWN_BUILDER_VERSION" != "x" ; then
AC_MSG_RESULT([$SPHINX_MARKDOWN_BUILDER_VERSION])
else
AC_MSG_RESULT([N/A])
fi
AC_MSG_CHECKING([sphinx linuxdoc version])
SPHINX_LINUXDOC_VERSION=`pip3 2>/dev/null show linuxdoc | grep -i Version: | cut -d: -f2 | sed -e 's/ //g'`
if test "x$SPHINX_LINUXDOC_VERSION" != "x" ; then
AC_MSG_RESULT([$SPHINX_LINUXDOC_VERSION])
else
AC_MSG_RESULT([N/A])
fi
if test "x$SPHINX_VERSION" != "x" -a "x$SPHINX_RTD_THEME_VERSION" != "x" -a "x$SPHINX_MARKDOWN_BUILDER_VERSION" != "x" -a "x$SPHINX_LINUXDOC_VERSION" != "x" ; then
HAVE_SPHINX=1
fi
fi
AC_MSG_CHECKING([whether sphinx installation works])
if test "x$HAVE_SPHINX" = "x1" ; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
fi
AC_DEFINE_UNQUOTED([HAVE_SPHINX], [$HAVE_SPHINX], [Define to 1 if you have sphinx (and all required packages) available])
AM_CONDITIONAL([HAVE_SPHINX], [ test x$HAVE_SPHINX = x1 ])
# check for git
AC_PATH_PROG([GIT], [git])
if test "x$GIT" != "x" ; then
HAVE_GIT=1
else
HAVE_GIT=0
fi
AC_DEFINE_UNQUOTED([HAVE_GIT], [$HAVE_GIT], [Define to 1 if you have git available])
AM_CONDITIONAL([HAVE_GIT], [ test x$HAVE_GIT = x1 ])
AC_ARG_VAR(TESTSUITEURL, [Testsuite git repo URL (default: https://github.com/yaml/yaml-test-suite)])
if test "x$TESTSUITEURL" = "x" ; then
TESTSUITEURL="https://github.com/yaml/yaml-test-suite"
fi
AC_ARG_VAR(TESTSUITECHECKOUT, [Testsuite checkout (default: 6e6c296ae9c9d2d5c4134b4b64d01b29ac19ff6f)])
if test "x$TESTSUITECHECKOUT" = "x" ; then
TESTSUITECHECKOUT="6e6c296ae9c9d2d5c4134b4b64d01b29ac19ff6f"
fi
AC_ARG_VAR(JSONTESTSUITEURL, [JSON Testsuite git repo URL (default: https://github.com/nst/JSONTestSuite)])
if test "x$JSONTESTSUITEURL" = "x" ; then
JSONTESTSUITEURL="https://github.com/nst/JSONTestSuite"
fi
AC_ARG_VAR(JSONTESTSUITECHECKOUT, [JSON Testsuite checkout (default: d64aefb55228d9584d3e5b2433f720ea8fd00c82)])
if test "x$JSONTESTSUITECHECKOUT" = "x" ; then
JSONTESTSUITECHECKOUT="d64aefb55228d9584d3e5b2433f720ea8fd00c82"
fi
# check for docker
AC_PATH_PROG([DOCKER], [docker])
if test "x$DOCKER" != "x" ; then
HAVE_DOCKER=1
else
HAVE_DOCKER=0
fi
AM_CONDITIONAL([HAVE_DOCKER], [ test x$HAVE_DOCKER = x1 ])
# check for jq
AC_PATH_PROG([JQ], [jq])
if test "x$JQ" != "x" ; then
HAVE_JQ=1
else
HAVE_JQ=0
fi
AC_DEFINE_UNQUOTED([HAVE_JQ], [$HAVE_JQ], [Define to 1 if you have jq available])
AM_CONDITIONAL([HAVE_JQ], [ test x$HAVE_JQ = x1 ])
AC_SUBST(JQ, "$JQ")
# check for libclang
AC_ARG_WITH([libclang],
dnl enable internet available when checking
AC_ARG_ENABLE([network],
AS_HELP_STRING([--disable-network],
[Disable tests requiring network access]))
[AS_HELP_STRING([--with-libclang=[<version>]],
[Enable support for libclang @<:@default=auto@:>@])],
[with_libclang="$withval"],
[with_libclang=auto])
HAVE_LIBCLANG=0
LIBCLANG_CFLAGS=""
LIBCLANG_CPPFLAGS=""
LIBCLANG_LDFLAGS=""
LIBCLANG_LIBS=""
dnl TODO think about cross compilation
if test "x$with_libclang" != "xno"; then
if test "x$with_libclang" == "xauto"; then
# try to auto detect (llvm 15 down to 8)
check="llvm-config llvm-config-15 llvm-config-14 llvm-config-13 llvm-config-12 llvm-config-11 llvm-config-10"
else
if test "x$with_libclang" == "xlatest"; then
check="llvm-config"
else
check="llvm-config-$with_libclang"
fi
fi
orig_CFLAGS="$CFLAGS"
orig_CPPFLAGS="$CPPFLAGS"
orig_LDFLAGS="$LDFLAGS"
orig_LIBS="$LIBS"
for cfg in $check ; do
# no caching
AC_PATH_PROG([LLVM_CONFIG], [$cfg])
if test "x$LLVM_CONFIG" != "x" ; then
LIBCLANG_CFLAGS=`$LLVM_CONFIG --cflags`
LIBCLANG_CPPFLAGS=`$LLVM_CONFIG --cppflags`
LIBCLANG_LDFLAGS=`$LLVM_CONFIG --ldflags`
LIBCLANG_LIBS="-lclang"
CPPFLAGS="$CPPFLAGS $LIBCLANG_CPPFLAGS"
CFLAGS="$CFLAGS $LIBCLANG_CFLAGS"
LDFLAGS="$LDFLAGS $LIBCLANG_LDFLAGS"
LIBS="$LIBS $LIBCLANG_LIBS"
AC_CHECK_LIB([clang], [clang_createIndex],
[HAVE_LIBCLANG_LIB=1], [HAVE_LIBCLANG_LIB=0])
AC_CHECK_HEADER([clang-c/Index.h],
[HAVE_LIBCLANG_HDR=1], [HAVE_LIBCLANG_HDR=0])
# if we found it, break out
if test "x$HAVE_LIBCLANG_LIB" = "x1" -a "x$HAVE_LIBCLANG_HDR" = "x1" ; then
HAVE_LIBCLANG=1
break
fi
$as_unset ac_cv_lib_clang_clang_createIndex $as_unset ac_cv_header_clang_c_Index_h \
LIBCLANG_CFLAGS LIBCLANG_CPPFLAGS LIBCLANG_LIBS HAVE_LIBCLANG_LIB HAVE_LIBCLANG_HDR
fi
CFLAGS=$orig_CFLAGS
LDFLAGS=$orig_LDFLAGS
LIBS=$orig_LIBS
if test "x$HAVE_LIBCLANG" = "x1"; then
break
fi
$as_unset ac_cv_path_LLVM_CONFIG LLVM_CONFIG
done
CFLAGS=$orig_CFLAGS
CPPFLAGS=$orig_CPPFLAGS
LDFLAGS=$orig_LDFLAGS
LIBS=$orig_LIBS
fi
dnl it is safe to update CFLAGS, CPPFLAGS and LDFLAGS from clang
dnl we will only link against libclang when we have to
AC_SUBST(HAVE_LIBCLANG)
AC_SUBST(LIBCLANG_CFLAGS)
AC_SUBST(LIBCLANG_CPPFLAGS)
AC_SUBST(LIBCLANG_LDFLAGS)
AC_SUBST(LIBCLANG_LIBS)
AC_DEFINE_UNQUOTED([HAVE_LIBCLANG], [$HAVE_LIBCLANG], [Define to 1 if libclang is available])
AM_CONDITIONAL([HAVE_LIBCLANG], [ test x$HAVE_LIBCLANG = x1 ])
dnl AS_IF([test "x$with_libclang" != xno],
dnl [AC_CHECK_LIB([libclang], [main],
dnl [AC_SUBST([LIBREADLINE], ["-lreadline -lncurses"])
dnl AC_DEFINE([HAVE_LIBREADLINE], [1],
dnl [Define if you have libreadline])
dnl ],
dnl [if test "x$with_readline" != xcheck; then
dnl AC_MSG_FAILURE(
dnl [--with-readline was given, but test for readline failed])
dnl fi
dnl ], -lncurses)])
dnl trim cflags, cppflags, ldflags
CFLAGS=`echo $CFLAGS | sed -e 's/^[ ]*//'`
CPPFLAGS=`echo $CPPFLAGS | sed -e 's/^[ ]*//'`
LDFLAGS=`echo $LDFLAGS | sed -e 's/^[ ]*//'`
# Shave by default on supported autoconf versions
dnl m4_version_prereq(2.64, SHAVE_INIT([build-aux], [enable]), [true])
m4_ifdef([SHAVE_INIT], [SHAVE_INIT([build-aux], [enable])])
AC_CONFIG_FILES([
build-aux/shave
build-aux/shave-libtool
Makefile
src/Makefile
test/Makefile
doc/Makefile
libfyaml.pc
])
AC_REQUIRE_AUX_FILE([tap-driver.sh])
AC_OUTPUT
echo "
---{ $PACKAGE_NAME $VERSION }---
VERSION: ${VERSION}
MAJOR.MINOR: ${MAJOR}.${MINOR}
PATCH: ${PATCH}
EXTRA: ${EXTRA}
LIBTOOL_VERSION: ${LIBTOOL_VERSION}
prefix: ${prefix}
C compiler: ${CC}
Linker: ${LD}
CFLAGS: ${CFLAGS}
LDFLAGS: ${LDFLAGS}
LIBS: ${LIBS}
HAVE_ASAN: ${HAVE_ASAN}
HAVE_CHECK: ${HAVE_CHECK}
HAVE_COMPATIBLE_CHECK: ${HAVE_COMPATIBLE_CHECK}
HAVE_NETWORK: ${HAVE_NETWORK}
HAVE_DEVMODE: ${HAVE_DEVMODE}
HAVE_SPHINX: ${HAVE_SPHINX}
GIT: ${GIT}
DOCKER: ${DOCKER}
HAVE_LIBCLANG: ${HAVE_LIBCLANG}
LIBCLANG_LIBS: ${LIBCLANG_LIBS}
TESTSUITEURL: $TESTSUITEURL
TESTSUITECHECKOUT: $TESTSUITECHECKOUT
JSONTESTSUITEURL: $JSONTESTSUITEURL
JSONTESTSUITECHECKOUT: $JSONTESTSUITECHECKOUT
"