forked from hasse69/rar2fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
619 lines (572 loc) · 17.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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_INIT([rar2fs],
[m4_esyscmd(./get-version.sh version.h)],
[https://hasse69.github.io/rar2fs])
AC_PREREQ([2.61])
AC_CONFIG_AUX_DIR(config)
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
AC_CONFIG_MACRO_DIR(m4)
AC_CONFIG_HEADERS([config.h])
AM_CONDITIONAL([LINUX],
[case $host_os in *linux*) true;; *) false;; esac])
# Save CFLAGS (if defined by user; othwerwise NONE)
USER_CFLAGS=${CFLAGS-NONE}
# Checks for programs.
AC_PROG_CC_STDC
if test x"$GCC" != x"yes"; then
AC_MSG_ERROR([
Sorry, but $PACKAGE currently supports only \
the GNU C/C++ compiler!]);
fi
AM_PROG_CC_C_O
AC_PROG_CXX
AC_USE_SYSTEM_EXTENSIONS
AX_C_BIGENDIAN_CROSS
# Checks for libraries.
# Checks for header files.
AC_FUNC_ALLOCA
AC_CHECK_HEADERS([errno.h arpa/inet.h fcntl.h limits.h locale.h malloc.h stddef.h sys/file.h sys/mount.h sys/param.h sys/statvfs.h syslog.h wchar.h])
AC_CHECK_HEADERS([execinfo.h ucontext.h sched.h])
AC_CHECK_HEADERS([sys/sysmacros.h])
AC_CHECK_HEADERS([sys/xattr.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_DIRENT
# Use C++ context when checking for <stdbool.h>.
# Some platforms seems to fail in detecting stdbool.h properly
# due to the IBM "xlc bug" when gcc is used!?
AC_LANG_PUSH([C++])
AC_HEADER_STDBOOL
AC_LANG_POP
AC_HEADER_ASSERT
AC_TYPE_UID_T
AC_C_INLINE
AC_TYPE_MODE_T
AC_TYPE_OFF_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_CHECK_MEMBERS([struct stat.st_blksize])
AC_CHECK_MEMBERS([struct stat.st_gen])
AC_CHECK_MEMBERS([struct stat.st_atim])
AC_CHECK_MEMBERS([struct stat.st_ctim])
AC_CHECK_MEMBERS([struct stat.st_mtim])
AC_STRUCT_ST_BLOCKS
AC_CHECK_MEMBERS([struct stat.st_rdev])
AC_TYPE_UINT64_T
need_priu64=no
AC_MSG_CHECKING([for a working PRIu64])
AC_LANG_PUSH([C])
AC_RUN_IFELSE(
[AC_LANG_PROGRAM([[
#include <stdio.h>
#ifdef HAVE_INTTYPES_H
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
#endif
]],
[[
char *x;
#if !defined(PRIu64)
return -1;
#else
x = PRIu64;
if( x[0] == '%' ) {
return -1;
} else {
return 0;
}
#endif
]])],
[
# program worked correctly
AC_MSG_RESULT([yes])
],
[
# program failed
AC_MSG_RESULT([no])
AC_DEFINE([NEED_PRI_MACRO], [1], [Defined when PRIu64 is missing or broken])
need_priu64=yes
],
[
# we are cross compiling
AC_MSG_RESULT([skipped])
AC_DEFINE([NEED_PRI_MACRO], [1], [Defined when PRIu64 is missing or broken])
need_priu64=yes
])
AC_LANG_POP([C])
AC_TYPE_SIGNAL
AC_CHECK_MEMBERS([struct sigaction.sa_sigaction],,,[[#include <signal.h>]])
# Checks for library functions.
AC_FUNC_CHOWN
AC_FUNC_FORK
AC_SYS_LARGEFILE
AC_FUNC_FSEEKO
AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
AC_CHECK_FUNCS([mktime atexit dup3 fs_stat_dev ftruncate getcwd getpass lchown memchr memmove memset mkdir realpath rmdir select setlocale strchr strdup strerror strpbrk strrchr strstr strtol strtoul utimensat fdatasync wcstombs umask])
########################################################
# Check for extended attribute support
AC_SEARCH_LIBS(getxattr, [attr])
AC_CHECK_FUNCS(getxattr,[
AC_CHECK_FUNCS(lgetxattr fgetxattr listxattr llistxattr flistxattr removexattr lremovexattr fremovexattr setxattr lsetxattr fsetxattr)
])
########################################################
# Do xattr functions take additional options like on Darwin?
if test x"$ac_cv_func_getxattr" = x"yes" ; then
AC_CACHE_CHECK([whether xattr interface takes additional options], attr_cv_xattr_add_opt, [
old_LIBS=$LIBS
LIBS="$LIBS $ACL_LIBS"
AC_TRY_COMPILE([
#include <sys/types.h>
#if HAVE_ATTR_XATTR_H
#include <attr/xattr.h>
#elif HAVE_SYS_XATTR_H
#include <sys/xattr.h>
#endif
],[
getxattr(0, 0, 0, 0, 0, 0);
],
[attr_cv_xattr_add_opt=yes],
[attr_cv_xattr_add_opt=no;LIBS=$old_LIBS])
])
if test x"$attr_cv_xattr_add_opt" = x"yes"; then
AC_DEFINE(XATTR_ADD_OPT, 1, [xattr functions have additional options])
fi
fi
# Check for GNU library extension fmemopen()
#
AC_CHECK_FUNCS(fmemopen)
# Check for lockf() and/or flock()
# On eg. OpenSolaris there is only a POSIX lockf() function.
#
AC_CHECK_FUNCS(lockf flock)
# Check for mmap() system call
#
if test x"$cross_compiling" = x"yes"; then
AC_CHECK_FUNCS([mmap munmap])
if test x"$ac_cv_func_mmap" = x"yes"; then
ac_cv_func_mmap_fixed_mapped=yes
AC_DEFINE([HAVE_MMAP], [1], [Define to 1 if you have a working `mmap' system call.])
fi
else
AC_FUNC_MMAP
AC_CHECK_FUNCS(munmap)
fi
########################################################
# Check if backtrace functions needs a lib
AC_SEARCH_LIBS([backtrace], [execinfo])
withval=
AC_ARG_WITH([fuse],
[AS_HELP_STRING([--with-fuse=PATH],
[search PATH to fuse header files]
)],
[], [])
if test x"$withval" != x; then
if test x"$withval" != x"no"; then
if test x"$withval" != x"yes"; then
FUSE_CPPFLAGS="-I"$withval
fi
fi
fi
withval=
AC_ARG_WITH([fuse-lib],
[AS_HELP_STRING([--with-fuse-lib=PATH],
[search PATH to fuse library]
)],
[], [])
if test x"$withval" != x; then
if test x"$withval" != x"no"; then
if test x"$withval" != x"yes"; then
FUSE_LDFLAGS="-L"$withval
fi
fi
fi
withval=
AC_ARG_WITH([unrar],
[AS_HELP_STRING([--with-unrar=PATH],
[search PATH to unrar source [PATH=./unrar]]
)],
[], [])
if test x"$withval" != x; then
if test x"$withval" != x"no"; then
if test x"$withval" != x"yes"; then
UNRAR_CPPFLAGS="-I"$with_unrar
fi
fi
else
with_unrar="./unrar"
UNRAR_CPPFLAGS="-I./unrar"
fi
withval=
AC_ARG_WITH([unrar-lib],
[AS_HELP_STRING([--with-unrar-lib=PATH],
[search PATH to unrar library]
)],
[], [])
if test x"$withval" != x; then
if test x"$withval" != x"no"; then
if test x"$withval" != x"yes"; then
UNRAR_LDFLAGS="-L"$withval
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH\:/"`cd $withval;pwd`
export DYLD_LIBRARY_PATH="$LD_LIBRARY_PATH\:/"`cd $withval;pwd`
fi
fi
fi
FUSE_CPPFLAGS="$FUSE_CPPFLAGS -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26"
UNRAR_CXXFLAGS="-DRARDLL"
AC_SUBST(FUSE_CPPFLAGS)
AC_SUBST(UNRAR_CPPFLAGS)
AC_SUBST(UNRAR_CXXFLAGS)
AC_SUBST(FUSE_LDFLAGS)
AC_SUBST(UNRAR_LDFLAGS)
enableval=
AC_ARG_ENABLE([debug],
[AS_HELP_STRING([--enable-debug[[=LEVEL]]],
[enable debug mode [LEVEL=4]])],
[], [])
if test x"$enableval" != x"no"; then
if test x"$enableval" = x"yes"; then
debug_level=4
else
debug_level=$enableval
fi
fi
if test "$debug_level" != ""; then
AC_DEFINE_UNQUOTED(DEBUG_, $debug_level, Define run-time debug level)
if test "$USER_CFLAGS" = "NONE"; then
CXXFLAGS="-g -O0"
CFLAGS="-g -O0"
fi
else
CPPFLAGS="$CPPFLAGS -DNDEBUG"
fi
AX_PTHREAD
AC_SUBST(PTHREAD_LIBS)
AC_SUBST(PTHREAD_CFLAGS)
# FUSE might need these later if eg. -static is set in LDFLAGS. Use a generic
# function like main() here since all we need is to verify if the library
# exists or not and then append it to LIBS.
AC_CHECK_LIB([rt], [main])
AC_CHECK_LIB([dl], [main])
save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $FUSE_CPPFLAGS"
AC_CHECK_HEADER(fuse.h,,
[AC_MSG_ERROR([
Can't find fuse.h - add alternative include search path using
--with-fuse and rerun configure. ])])
save_LDFLAGS="$LDFLAGS"
save_LIBS="$LIBS"
LDFLAGS="$LDFLAGS $FUSE_LDFLAGS $PTHREAD_CFLAGS"
LIBS="$PTHREAD_LIBS $LIBS"
AC_CHECK_LIB(fuse4x,fuse_new, [FUSE_LIBS="-lfuse4x"],
[ AC_CHECK_LIB(fuse_ino64,fuse_new, [FUSE_LIBS="-lfuse_ino64"],
[ AC_CHECK_LIB(fuse,fuse_new, [FUSE_LIBS="-lfuse"],
[ AC_CHECK_LIB(osxfuse,fuse_new, [FUSE_LIBS="-losxfuse"],
[AC_MSG_ERROR([
Can't find fuse library - add alternative library search path using
--with-fuse-lib and rerun configure. ])
],)
],)
],)
],)
LIBS="$FUSE_LIBS $LIBS"
# fuse_version() became available for the first time in fuse 2.7
AC_CHECK_FUNCS(fuse_version)
LIBS="$save_LIBS"
LDFLAGS="$save_LDFLAGS"
AC_SUBST(FUSE_LIBS)
########################################################
# Check for a supported FUSE_MAJOR_VERSION.
AC_MSG_CHECKING([for supported FUSE API version])
if test x"$cross_compiling" = x"no"; then
AC_RUN_IFELSE([
AC_LANG_PROGRAM([[
#include <fuse.h>]],
[[
if(FUSE_MAJOR_VERSION == 2 && FUSE_MINOR_VERSION >= 6)
return 0;
return -1;
]])],
[AC_MSG_RESULT([yes])],
[AC_MSG_RESULT([no])
AC_MSG_FAILURE([
$PACKAGE requires FUSE 2.6 or newer. Please check config.log for errors.
If you cannot determine the problem, mail the author of the package
and include the config.log file])
]
)
else
AC_MSG_RESULT([skipped])
fi
CPPFLAGS="$save_CPPFLAGS"
########################################################
save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $UNRAR_CPPFLAGS"
AC_LANG_PUSH([C++])
AC_CHECK_HEADER([rar.hpp],,
AC_MSG_ERROR([
Can't find unrar source - add alternative source search path using
--with-unrar and rerun configure. ])
)
AC_LANG_POP
CPPFLAGS="$save_CPPFLAGS"
save_LDFLAGS="$LDFLAGS"
save_LIBS="$LIBS"
save_CXXFLAGS="$CXXFLAGS"
LDFLAGS="$LDFLAGS $UNRAR_LDFLAGS"
LIBS="$PTHREAD_LIBS $LIBS"
CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS"
AC_LANG_PUSH([C++])
AC_CHECK_LIB(unrar, RARGetDllVersion, [UNRAR_LIBS="-lunrar"],
AC_MSG_ERROR([
Can't find unrar library - add alternative library search path using
--with-unrar-lib and rerun configure. ])
)
AC_LANG_POP
LDFLAGS="$save_LDFLAGS"
LIBS="$save_LIBS"
CXXFLAGS="$save_CXXFLAGS"
AC_SUBST(UNRAR_LIBS)
########################################################
# Check for matching unrar library- vs. source version
save_CPPFLAGS="$CPPFLAGS"
save_LDFLAGS="$LDFLAGS"
save_LIBS="$LIBS"
save_CXXFLAGS="$CXXFLAGS"
LDFLAGS="$LDFLAGS $UNRAR_LDFLAGS"
CPPFLAGS="$CPPFLAGS $UNRAR_CPPFLAGS"
LIBS="$UNRAR_LIBS $PTHREAD_LIBS $LIBS"
CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS"
AC_LANG_PUSH([C++])
AC_MSG_CHECKING([for matching UnRAR library and source version])
if test x"$cross_compiling" = x"no"; then
AC_RUN_IFELSE([
AC_LANG_PROGRAM([[
#define _UNIX
#include <dll.hpp>]],
[[
if (RARGetDllVersion() != RAR_DLL_VERSION)
return -1;
]])],
[AC_MSG_RESULT([yes])],
[AC_MSG_RESULT([no])
AC_MSG_FAILURE([
The version of UnRAR source pointed to by --with-unrar=$with_unrar
and the current shared library picked up at run time are incompatible.
Make sure the shared library is properly installed on the system or add
an alternative library search path using --with-unrar-lib and/or add
an alternative source search path using --with-unrar and rerun configure.])
]
)
else
AC_MSG_RESULT([skipped])
fi
AC_LANG_POP
CPPFLAGS="$save_CPPFLAGS"
LDFLAGS="$save_LDFLAGS"
LIBS="$save_LIBS"
CXXFLAGS="$save_CXXFLAGS"
########################################################
########################################################
# Check if we need to set -DRAR_SMP
if test x"$UNRAR_LIBS" != x; then
save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $UNRAR_CPPFLAGS"
save_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS $UNRAR_LDFLAGS"
save_LIBS=$LIBS
LIBS="$UNRAR_LIBS $LIBS"
save_CXXFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS"
AC_LANG_PUSH([C++])
AC_MSG_CHECKING([if unrar library needs -DRAR_SMP])
AC_LINK_IFELSE(
[AC_LANG_PROGRAM(
[
#define RAR_SMP
#include "rar.hpp"
],
[
GetNumberOfThreads();
])],
[AC_MSG_RESULT([yes])
UNRAR_CXXFLAGS="$UNRAR_CXXFLAGS -DRAR_SMP"
],
[AC_MSG_RESULT([no])
]
)
AC_LANG_POP
CPPFLAGS="$save_CPPFLAGS"
LDFLAGS="$save_LDFLAGS"
LIBS="$save_LIBS"
CXXFLAGS="$save_CXXFLAGS"
fi
########################################################
AM_ICONV
AC_MSG_CHECKING(for commit hash in git repo)
GITHEAD=.git/$(cat .git/HEAD 2>/dev/null | cut -d" " -f2)
GITREV=$(cut -c1-7 $GITHEAD 2>/dev/null)
if test x"$GITREV" != x; then
AC_SUBST([CONFIG_STATUS_DEPENDENCIES], [$GITHEAD])
CFLAGS="$CFLAGS -DGITREV_=0x$GITREV"
echo $GITREV
else
echo no
fi
# Check for the Linux functions for controlling processor affinity.
# LINUX: sched_setaffinity
AC_CHECK_FUNCS(sched_setaffinity)
if test "$ac_cv_func_sched_setaffinity" = "yes" ; then
# Test for the cpu process set type
AC_CACHE_CHECK([whether cpu_set_t available],pac_cv_have_cpu_set_t,[
AC_TRY_COMPILE( [
#include <sched.h>],[ cpu_set_t t; ],pac_cv_have_cpu_set_t=yes,pac_cv_have_cpu_set_t=no)])
if test "$pac_cv_have_cpu_set_t" = yes ; then
AC_DEFINE(HAVE_CPU_SET_T,1,[Define if cpu_set_t is defined in sched.h])
AC_CACHE_CHECK([whether the CPU_SET and CPU_ZERO macros are defined],
pac_cv_cpu_set_defined,[
AC_TRY_LINK( [
#include <sched.h>],[ cpu_set_t t; CPU_ZERO(&t); CPU_SET(1,&t); ],
pac_cv_cpu_set_defined=yes,pac_cv_cpu_set_defined=no)])
if test "$pac_cv_cpu_set_defined" = "yes" ; then
AC_DEFINE(HAVE_CPU_SET_MACROS,1,[Define if CPU_SET and CPU_ZERO defined])
fi
# FIXME: Some versions of sched_setaffinity return ENOSYS (!),
# so we should test for the unfriendly and useless behavior
fi
fi
AH_TEMPLATE([SCANDIR_ARG3], [Define the type of arg#3 to scandir()])
AX_PROTOTYPE_SCANDIR
# Check how linker handles -fno-omit-frame-pointer
# Note that AC_LANG_WERROR is not used here since it is more or less useless
# until its effect can be undone. Instead $ac_c_werror_flag is manipulated
# directly. Dirty but effective!
#
AC_LANG_PUSH(C)
ac_c_werror_flag=yes
save_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS -fno-omit-frame-pointer"
AC_MSG_CHECKING([if compiler supports -fno-omit-frame-pointer])
AC_TRY_COMPILE([],[],
[AC_MSG_RESULT([yes])
],
[AC_MSG_RESULT([no])
CFLAGS="$save_CFLAGS"
]
)
ac_c_werror_flag=
AC_LANG_POP
# Check how compiler handles -Wextra
# Note that AC_LANG_WERROR is not used here since it is more or less useless
# until its effect can be undone. Instead $ac_c_werror_flag is manipulated
# directly. Dirty but effective!
AC_LANG_PUSH(C)
ac_c_werror_flag=yes
save_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS -Wextra"
AC_MSG_CHECKING([if compiler supports -Wextra])
AC_TRY_COMPILE([#include<stdio.h>],[
],
[AC_MSG_RESULT([yes])
],
[AC_MSG_RESULT([no])
CFLAGS="$save_CFLAGS -W"
]
)
ac_c_werror_flag=
AC_LANG_POP
# Check how compiler handles -Wno-unused-result
# If HAVE_NO_UNUSED_RESULT is defined to 1 there is no need for
# a run-time workaround.
# The functions declared with attribute warn_unused_result can
# then be called like this:
# NO_UNUSED_RESULT fscanf(...)
# Note that AC_LANG_WERROR is not used here since it is more or less useless
# until its effect can be undone. Instead $ac_c_werror_flag is manipulated
# directly. Dirty but effective!
# Also, we check using -Wunused-result since GCC has a special treatment of
# the '-Wno-' form. If there is a -Wunused-result it is here assumed that
# there is also a -Wno-unused-result and vice versa.
#
AH_TEMPLATE([HAVE_NO_UNUSED_RESULT],
[Define to 1 if compiler can disable warning for functions declared
with attribute warn_unused_result])
AH_VERBATIM([HAVE_NO_UNUSED_RESULT_],[
/* Set return type for functions declared with attribute warn_unused_result
to avoid warning if it can not be switch off (bug!?). */
#ifndef HAVE_NO_UNUSED_RESULT
/* MAC OS X version of gcc does not handle this properly!? */
#if defined ( __GNUC__ ) && defined ( __APPLE__ )
#define NO_UNUSED_RESULT
#else
#define NO_UNUSED_RESULT \
void*ignore_result_ ## __LINE__ ## _;\
(void)ignore_result_ ## __LINE__ ## _; /* avoid GCC unused-but-set-variable warning */ \
ignore_result_ ## __LINE__ ## _=(void*)(uintptr_t)
#endif
#else
#define NO_UNUSED_RESULT
#endif
])
AC_LANG_PUSH(C)
ac_c_werror_flag=yes
save_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS -Wunused-result"
AC_MSG_CHECKING([if compiler supports -Wno-unused-result])
AC_TRY_COMPILE([#include<stdio.h>],[
],
[AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_NO_UNUSED_RESULT],[1])
CFLAGS="$save_CFLAGS -Wno-unused-result"
],
[AC_MSG_RESULT([no])
CFLAGS=$save_CFLAGS
]
)
ac_c_werror_flag=
AC_LANG_POP
# Check how linker handles -rdynamic
# Note that AC_LANG_WERROR is not used here since it is more or less useless
# until its effect can be undone. Instead $ac_c_werror_flag is manipulated
# directly. Dirty but effective!
#
AC_LANG_PUSH(C)
ac_c_werror_flag=yes
save_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS -rdynamic"
AC_MSG_CHECKING([if linker supports -rdynamic])
AC_TRY_LINK([],[return 0;],
[AC_MSG_RESULT([yes])
],
[AC_MSG_RESULT([no])
LDFLAGS="$save_LDFLAGS"
]
)
ac_c_werror_flag=
AC_LANG_POP
AC_LANG_PUSH(C)
ac_c_werror_flag=yes
AC_MSG_CHECKING([for __sync_synchronize])
AC_TRY_COMPILE([],[int main (int argc, char** argv) {__sync_synchronize();}],
[AC_MSG_RESULT([yes])
has_synchronize=yes
],
[AC_MSG_RESULT([no])
has_synchronize=no
]
)
ac_c_werror_flag=
AC_LANG_POP
if test x"$has_synchronize" = x"yes"; then
AC_DEFINE(HAVE_SYNC_SYNCHRONIZE, 1, [Define if __sync_synchronize() is available])
fi
AC_PROG_LN_S
AC_PROG_MKDIR_P
# Do some final preparations before we finish
#
CC="$PTHREAD_CC"
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS"
AC_CONFIG_FILES([Makefile])
AC_OUTPUT