-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
680 lines (604 loc) · 20.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
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
dnl ##
dnl ## GNU Pth - The GNU Portable Threads
dnl ## Copyright (c) 1999-2006 Ralf S. Engelschall <[email protected]>
dnl ##
dnl ## This file is part of GNU Pth, a non-preemptive thread scheduling
dnl ## library which can be found at http://www.gnu.org/software/pth/.
dnl ##
dnl ## This library is free software; you can redistribute it and/or
dnl ## modify it under the terms of the GNU Lesser General Public
dnl ## License as published by the Free Software Foundation; either
dnl ## version 2.1 of the License, or (at your option) any later version.
dnl ##
dnl ## This library is distributed in the hope that it will be useful,
dnl ## but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
dnl ## Lesser General Public License for more details.
dnl ##
dnl ## You should have received a copy of the GNU Lesser General Public
dnl ## License along with this library; if not, write to the Free Software
dnl ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
dnl ## USA, or contact Ralf S. Engelschall <[email protected]>.
dnl ##
dnl ## configure.ac: Pth Autoconf specification
dnl ##
dnl # ``Programming in Bourne-Shell
dnl # is a higher form of masochism.''
dnl # -- Unknown
dnl ##
dnl ## PROLOG
dnl ##
dnl # standard Autoconf prolog
AC_PREREQ(2.52)dnl
AC_REVISION([1.0])
dnl # autoconf initialization
AC_INIT(pthsem,2.0.8)
AM_INIT_AUTOMAKE
AC_ENABLESUBDIR
AC_HEADLINE(dnl
pthsem, Portable Threads, dnl
PTH_VERSION, [$PACKAGE_VERSION], [0x200208], dnl
[Copyright (c) 2005-2009 Martin Koegler <[email protected]>]
[Copyright (c) 1999-2006 Ralf S. Engelschall <[email protected]>])
AC_CONFIG_PARAM(config.param)
AC_CONFIG_HEADER(pth_acdef.h)dnl
AC_PREFIX_DEFAULT(/usr/local)
AC_PLATFORM(PLATFORM)
dnl ##
dnl ## BUILD TOOLS
dnl ##
AC_MSG_PART(Build Tools)
AC_PROG_CC
AC_PROG_CPP
AC_PROG_EGREP
AC_SET_MAKE
AC_CHECK_DEBUGGING
case "$PLATFORM" in
# Solaris 2.7/x86 is slightly broken
*-pc-solaris2.[[78]] [)] enable_shared=no ;;
esac
AC_PROG_LIBTOOL
dnl ## Support for some special platform/compiler options
case "$PLATFORM:$CC" in
*-sun-solaris2*:cc )
# shut-up harmless warnings caused by do-while macros on Solaris
test ".$ac_cv_prog_gcc" = ".no" && CFLAGS="$CFLAGS -w"
;;
*-*-sysv*uw[[27]]*:cc )
# shut-up harmless warnings caused by do-while macros on UnixWare
CFLAGS="$CFLAGS -w"
;;
*-hp-hpux*:cc )
# HPUX needs a few special options to find its ANSI C brain
CFLAGS="$CFLAGS -Ae -O"
;;
*-hp-hpux*:CC )
# HPUX outputs useless warnings
CFLAGS="$CFLAGS -w"
;;
*-sgi-irix6.2:cc )
# shut-up warnings caused by IRIX brain-dead 32/64 bit stuff
LDFLAGS="$LDFLAGS -woff 85 -Wl,-woff,84 -Wl,-woff,85"
;;
*-sgi-irix6.5.[[2-9]]:cc )
# since IRIX 6.5.2 the C compiler is smart enough,
# but the linker is still complaining, of course
LDFLAGS="$LDFLAGS -woff 84,85,134"
;;
*-sgi-irix6.5:cc )
# shut-up warnings caused by IRIX brain-dead 32/64 bit stuff
CFLAGS="$CFLAGS -woff 1110,1048"
LDFLAGS="$LDFLAGS -woff 84,85,134"
;;
*-dec-osf4*:cc )
# make sure the standard compliant functions are used on Tru64/OSF1 4.x
CFLAGS="$CFLAGS -std"
;;
*-dec-osf5*:cc )
# make sure the standard compliant functions are used on Tru64/OSF1 5.x
CFLAGS="$CFLAGS -std -D_XOPEN_SOURCE_EXTENDED"
;;
*-*-isc*:* )
# ISC is brain-dead and needs a bunch of options to find its brain
CPPFLAGS="$CPPFLAGS -D_POSIX_SOURCE";
LIBS="$LIBS -lcposix -linet";
;;
*-*-aix4.1*:cc )
# AIX 4.1.x' cc complains about our use of "volatile"
CPPFLAGS="$CPPFLAGS '-Dvolatile=/**/'";
;;
esac
dnl ##
dnl ## MANDATORY PLATFORM ENVIRONMENT
dnl ##
AC_MSG_PART(Mandatory Platform Environment)
dnl # check for standard headers
AC_HEADER_STDC
AC_HAVE_HEADERS(dnl
stdio.h stdlib.h stdarg.h string.h signal.h unistd.h setjmp.h fcntl.h dnl
errno.h sys/types.h sys/time.h sys/wait.h sys/stat.h sys/socket.h)
AC_CHECK_FUNCS(dnl
gettimeofday select sigaction sigprocmask sigpending sigsuspend)
AC_BEGIN_DECISION([mandatory system headers and functions])
AC_IFALLYES(dnl
header:stdio.h header:stdlib.h header:stdarg.h header:string.h dnl
header:signal.h header:unistd.h header:setjmp.h header:fcntl.h header:errno.h dnl
header:sys/types.h header:sys/time.h header:sys/wait.h header:sys/stat.h header:sys/socket.h dnl
func:gettimeofday func:select func:sigaction func:sigprocmask dnl
func:sigpending func:sigsuspend,
AC_DECIDE(fine, [all fine]))
AC_END_DECISION
dnl ##
dnl ## OPTIONAL PLATFORM ENVIRONMENT
dnl ##
AC_MSG_PART(Optional Platform Environment)
dnl # check for the number of signals
AC_CHECK_NSIG(PTH_NSIG)
dnl # check for size of fd_set (FDSETSIZE)
AC_CHECK_FDSETSIZE(PTH_FDSETSIZE)
dnl # check whether poll(2)'s input stuff has to be faked
AC_CHECK_FUNCS(poll)
AC_CHECK_DEFINE(POLLIN, poll.h)
AC_MSG_CHECKING(whether poll(2) facility has to be faked)
AC_IFALLYES(func:poll define:POLLIN, PTH_FAKE_POLL=0, PTH_FAKE_POLL=1)
if test .$PTH_FAKE_POLL = .1; then
msg="yes"
else
msg="no"
fi
AC_SUBST(PTH_FAKE_POLL)
AC_MSG_RESULT([$msg])
dnl # check for clock_gettime
AC_CHECK_DEFINE(CLOCK_MONOTONIC, time.h)
AC_CHECK_DEFINE(__NR_clock_gettime, sys/syscall.h)
AC_SEARCH_LIBS(clock_gettime,[],[AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [have clock_gettime])])
dnl # check for readv/writev environment
AC_HAVE_HEADERS(sys/uio.h)
AC_CHECK_FUNCS(readv writev)
AC_MSG_CHECKING(whether readv(2)/writev(2) facility has to be faked)
AC_IFALLYES(func:readv func:writev header:sys/uio.h, PTH_FAKE_RWV=0, PTH_FAKE_RWV=1)
if test .$PTH_FAKE_RWV = .1; then
msg="yes"
else
msg="no"
fi
AC_SUBST(PTH_FAKE_RWV)
AC_MSG_RESULT([$msg])
dnl # check for various other functions which would be nice to have
AC_CHECK_FUNCS(usleep strerror)
dnl # check for various other headers which we might need
AC_HAVE_HEADERS(sys/resource.h net/errno.h paths.h)
dnl # at least the test programs need some socket stuff
AC_SEARCH_LIBS(gethostname, [nsl],,[AC_SEARCH_LIBS(gethostbyname, [nsl])])
AC_SEARCH_LIBS(accept, [socket])
dnl # check whether we've to use a non-standard #include <sys/select.h> to get
dnl # the definition for fd_set under AIX and other brain-dead platforms.
AC_HAVE_HEADERS(sys/select.h)
EXTRA_INCLUDE_SYS_SELECT_H="#include <sys/select.h>"
if test ".$ac_cv_header_sys_select_h" != .yes; then
EXTRA_INCLUDE_SYS_SELECT_H="/* $EXTRA_INCLUDE_SYS_SELECT_H */"
fi
AC_SUBST(EXTRA_INCLUDE_SYS_SELECT_H)
dnl # check whether we've to define sig_atomic_t
AC_CHECK_TYPEDEF(sig_atomic_t, signal.h)
FALLBACK_SIG_ATOMIC_T="typedef int sig_atomic_t;"
if test ".$ac_cv_typedef_sig_atomic_t" = .yes; then
FALLBACK_SIG_ATOMIC_T="/* $FALLBACK_SIG_ATOMIC_T */"
fi
AC_SUBST(FALLBACK_SIG_ATOMIC_T)
dnl # check whether we've to define pid_t
AC_CHECK_TYPEDEF(pid_t, sys/types.h)
FALLBACK_PID_T="typedef int pid_t;"
if test ".$ac_cv_typedef_pid_t" = .yes; then
FALLBACK_PID_T="/* $FALLBACK_PID_T */"
fi
AC_SUBST(FALLBACK_PID_T)
dnl # check whether we've to define size_t
AC_CHECK_TYPEDEF(size_t, stdlib.h)
FALLBACK_SIZE_T="typedef unsigned int size_t;"
if test ".$ac_cv_typedef_size_t" = .yes; then
FALLBACK_SIZE_T="/* $FALLBACK_SIZE_T */"
fi
AC_SUBST(FALLBACK_SIZE_T)
dnl # check whether we've to define ssize_t
AC_CHECK_TYPEDEF(ssize_t, sys/types.h)
FALLBACK_SSIZE_T="typedef unsigned int ssize_t;"
if test ".$ac_cv_typedef_ssize_t" = .yes; then
FALLBACK_SSIZE_T="/* $FALLBACK_SSIZE_T */"
fi
AC_SUBST(FALLBACK_SSIZE_T)
dnl # check whether we've to define off_t
AC_CHECK_TYPEDEF(off_t, sys/types.h)
FALLBACK_OFF_T="typedef int off_t;"
if test ".$ac_cv_typedef_off_t" = .yes; then
FALLBACK_OFF_T="/* $FALLBACK_OFF_T */"
fi
AC_SUBST(FALLBACK_OFF_T)
dnl # check whether stack_t exists instead of sigaltstack
AC_CHECK_TYPEDEF(stack_t, signal.h)
dnl # check whether ss_base instead of ss_sp attribute exists
AC_CHECK_STRUCTATTR(ss_base, sigaltstack, sys/signal.h)
AC_CHECK_STRUCTATTR(ss_sp, sigaltstack, sys/signal.h)
dnl # check for gettimeofday() variant
AC_MSG_CHECKING(for a single-argument based gettimeofday)
cross_compile=no
AC_TRY_COMPILE([
#include <sys/types.h>
#include <sys/time.h>
#include <unistd.h>
],[
struct timeval tv;
(void)gettimeofday(&tv);
],
msg="yes"
,
msg="no"
)
case $PLATFORM in
*-*-aix4* ) msg="no" ;; # on AIX the compiler test doesn't work
*-*-isc* ) msg="no" ;; # on ISC the compiler test doesn't work
esac
if test ".$msg" = .yes; then
AC_DEFINE(HAVE_GETTIMEOFDAY_ARGS1, 1, [define if gettimeofday(2) wants a single-argument only])
fi
AC_MSG_RESULT([$msg])
dnl # check for struct timespec
AC_MSG_CHECKING(for struct timespec)
cross_compile=no
AC_TRY_COMPILE([
#include <time.h>
#include <sys/time.h>
],[
struct timespec ts;
],
msg="yes"
,
msg="no"
)
if test ".$msg" = .yes; then
AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1, [define if exists "struct timespec"])
fi
AC_MSG_RESULT([$msg])
dnl # check for network/socket size type
AC_CHECK_SOCKLENTYPE([
FALLBACK_SOCKLEN_T="typedef ${ac_type} socklen_t;"
if test ".$ac_type" = ".socklen_t"; then
FALLBACK_SOCKLEN_T="/* $FALLBACK_SOCKLEN_T */"
fi
AC_SUBST(FALLBACK_SOCKLEN_T)
])
dnl # check for filedescriptor number type
AC_CHECK_NFDSTYPE([
FALLBACK_NFDS_T="typedef ${ac_type} nfds_t;"
if test ".$ac_type" = ".nfds_t"; then
FALLBACK_NFDS_T="/* $FALLBACK_NFDS_T */"
fi
AC_SUBST(FALLBACK_NFDS_T)
])
dnl # check for 64-bit types (for pth_snprintf.c)
AC_CHECK_LONGLONG
AC_CHECK_LONGDOUBLE
dnl ##
dnl ## MACHINE CONTEXT IMPLEMENTATION
dnl ##
AC_MSG_PART(Machine Context Implementation)
dnl #
dnl # 1. determine possibilities
dnl #
dnl # check for MCSC method
AC_CHECK_HEADER(ucontext.h,,, [#include <sys/types.h>])
AC_CHECK_FUNCS(makecontext swapcontext getcontext setcontext)
AC_CHECK_MCSC(mcsc=yes, mcsc=no)
dnl # check for SJLJ method
AC_CHECK_HEADERS(signal.h)
AC_CHECK_FUNCS(sigsetjmp siglongjmp setjmp longjmp _setjmp _longjmp)
AC_CHECK_FUNCS(sigaltstack sigstack)
AC_CHECK_SJLJ(sjlj=yes, sjlj=no, sjlj_type)
dnl #
dnl # 2. make a general decision
dnl #
if test ".$mcsc" = .yes; then
mctx_mth=mcsc
mctx_dsp=sc
mctx_stk=mc
elif test ".$sjlj" = .yes; then
mctx_mth=sjlj
mctx_dsp=$sjlj_type
mctx_stk=none
AC_IFALLYES(func:sigstack, mctx_stk=ss)
AC_IFALLYES(func:sigaltstack, mctx_stk=sas)
case $mctx_dsp in
sjljlx|sjljisc|sjljw32 ) mctx_stk=none
esac
else
AC_ERROR([no appropriate mctx method found])
fi
dnl #
dnl # 3. allow decision to be overridden by user
dnl #
AC_ARG_WITH(mctx-mth,dnl
[ --with-mctx-mth=ID force mctx method (mcsc,sjlj)],[
case $withval in
mcsc|sjlj ) mctx_mth=$withval ;;
* ) AC_ERROR([invalid mctx method -- allowed: mcsc,sjlj]) ;;
esac
])dnl
AC_ARG_WITH(mctx-dsp,dnl
[ --with-mctx-dsp=ID force mctx dispatching (sc,ssjlj,sjlj,usjlj,sjlje,...)],[
case $withval in
sc|ssjlj|sjlj|usjlj|sjlje|sjljlx|sjljisc|sjljw32 ) mctx_dsp=$withval ;;
* ) AC_ERROR([invalid mctx dispatching -- allowed: sc,ssjlj,sjlj,usjlj,sjlje,sjljlx,sjljisc,sjljw32]) ;;
esac
])dnl
AC_ARG_WITH(mctx-stk,dnl
[ --with-mctx-stk=ID force mctx stack setup (mc,ss,sas,...)],[
case $withval in
mc|ss|sas|none ) mctx_stk=$withval ;;
* ) AC_ERROR([invalid mctx stack setup -- allowed: mc,ss,sas,none]) ;;
esac
])dnl
dnl #
dnl # 4. determine a few additional details
dnl #
dnl # whether sigaltstack has to use stack_t instead of struct sigaltstack
AC_CHECK_TYPEDEF(stack_t, signal.h)
dnl # direction of stack grow
AC_CHECK_STACKGROWTH(PTH_STACKGROWTH)
if test ".$ac_cv_check_stackgrowth" = ".down"; then
PTH_STACK_GROWTH="down"
else
PTH_STACK_GROWTH="up"
fi
AC_SUBST(PTH_STACK_GROWTH)
dnl # GNU Hurd has a broken libc which has stubs for sigaltstack and
dnl # sigstack. When the following Autoconf checks for them are run, it
dnl # even crashes the system. So we have to disable these checks here.
case $PLATFORM in
*86-*-gnu0* ) ac_cv_func_sigaltstack="no"; ac_cv_func_sigstack="no" ;;
esac
dnl # how to specify stacks for the various functions
AC_CHECK_STACKSETUP(makecontext, pth_skaddr_makecontext, pth_sksize_makecontext)
AC_CHECK_STACKSETUP(sigaltstack, pth_skaddr_sigaltstack, pth_sksize_sigaltstack)
AC_CHECK_STACKSETUP(sigstack, pth_skaddr_sigstack, pth_sksize_sigstack)
dnl # how to implement POSIX compliant sig{set,long}jmp()
case $mctx_dsp in [
ssjlj )
pth_sigjmpbuf='sigjmp_buf'
pth_sigsetjmp='sigsetjmp(buf,1)'
pth_siglongjmp='siglongjmp(buf,val)'
;;
sjlj )
pth_sigjmpbuf='jmp_buf'
pth_sigsetjmp='setjmp(buf)'
pth_siglongjmp='longjmp(buf,val)'
;;
usjlj )
pth_sigjmpbuf='jmp_buf'
pth_sigsetjmp='_setjmp(buf)'
pth_siglongjmp='_longjmp(buf,val)'
;;
sjlje )
pth_sigjmpbuf='jmp_buf'
pth_sigsetjmp='setjmp(buf)'
pth_siglongjmp='longjmp(buf,val)'
;;
sjljlx|sjljisc|sjljw32 )
pth_sigjmpbuf='sigjmp_buf'
pth_sigsetjmp='sigsetjmp(buf,1)'
pth_siglongjmp='siglongjmp(buf,val)'
;;
] esac
pth_sigjmpbuf="#define pth_sigjmpbuf $pth_sigjmpbuf"
pth_sigsetjmp="#define pth_sigsetjmp(buf) $pth_sigsetjmp"
pth_siglongjmp="#define pth_siglongjmp(buf,val) $pth_siglongjmp"
AC_SUBST(pth_sigjmpbuf)
AC_SUBST(pth_sigsetjmp)
AC_SUBST(pth_siglongjmp)
dnl #
dnl # 5. export the results
dnl #
AC_DEFINE_UNQUOTED(PTH_MCTX_MTH_use, [PTH_MCTX_MTH_$mctx_mth], [define for machine context method])
AC_DEFINE_UNQUOTED(PTH_MCTX_DSP_use, [PTH_MCTX_DSP_$mctx_dsp], [define for machine context dispatching])
AC_DEFINE_UNQUOTED(PTH_MCTX_STK_use, [PTH_MCTX_STK_$mctx_stk], [define for machine context stack])
PTH_MCTX_ID="$mctx_mth/$mctx_dsp/$mctx_stk"
AC_MSG_RESULT([decision on mctx implementation... ${TB}${PTH_MCTX_ID}${TN}])
AC_SUBST(PTH_MCTX_ID)
AC_MSG_VERBOSE([decided mctx method: $mctx_mth])
AC_MSG_VERBOSE([decided mctx dispatching: $mctx_dsp])
AC_MSG_VERBOSE([decided mctx stack setup: $mctx_stk])
dnl ##
dnl ## SYSTEM CALL MAPPING
dnl ##
AC_MSG_PART(System Call Mapping)
dnl # check for syscall(2)
AC_CHECK_HEADERS(sys/syscall.h sys/socketcall.h)
AC_CHECK_FUNCS(syscall)
AC_CHECK_DEFINE(SYS_read, sys/syscall.h)
dnl # check for dlsym(3) with RTLD_NEXT
AC_CHECK_HEADERS(dlfcn.h)
AC_CHECK_DEFINE(RTLD_NEXT, dlfcn.h)
dnl # check for path to dynamic C library
AC_MSG_CHECKING([for syscall dynamic libraries])
pth_syscall_libs=""
dirs=`echo "$LDFLAGS" |\
sed -e 's;-L\([[^ ]]*\);<\1>;g' |\
sed -e 's;^[[^<]]*<;;' -e 's;>[[^<]]*<; ;g' -e 's;>.*$;;'`
dirs="$dirs /usr/lib /lib"
libs=`echo "$LIBS" |\
sed -e 's;-l\([[^ ]]*\);<\1>;g' |\
sed -e 's;^[[^<]]*<;;' -e 's;>[[^<]]*<; ;g' -e 's;>.*$;;'`
libs="$libs c"
for lib in $libs; do
for dir in $dirs; do
for ext in so sl; do
if test -f "${dir}/lib${lib}.${ext}"; then
if test ".$pth_syscall_libs" = .; then
pth_syscall_libs="${dir}/lib${lib}.${ext}"
else
pth_syscall_libs="${pth_syscall_libs}:${dir}/lib${lib}.${ext}"
fi
fi
done
done
done
AC_MSG_RESULT([$pth_syscall_libs])
AC_DEFINE_UNQUOTED(PTH_SYSCALL_LIBS,
["$pth_syscall_libs"],
[define for the paths to syscall dynamic libraries])
AC_MSG_CHECKING([whether soft system call mapping is used])
AC_ARG_ENABLE(syscall-soft,dnl
[ --enable-syscall-soft enable soft system call mapping (default=no)],
enable_syscall_soft="$enableval",
if test ".$enable_syscall_soft" = .; then
enable_syscall_soft=no
fi
)dnl
if test .$enable_syscall_soft = .yes; then
PTH_SYSCALL_SOFT=1
msg="yes"
else
PTH_SYSCALL_SOFT=0
msg="no"
fi
AC_MSG_RESULT([$msg])
AC_SUBST(PTH_SYSCALL_SOFT)
AC_MSG_CHECKING([whether hard system call mapping is used])
AC_ARG_ENABLE(syscall-hard,dnl
[ --enable-syscall-hard enable hard system call mapping (default=no)],
enable_syscall_hard="$enableval",[
if test ".$enable_syscall_hard" = .; then
enable_syscall_hard=no
fi
])dnl
if test ".$enable_syscall_hard" = .yes; then
AC_IFALLYES(func:syscall header:sys/syscall.h define:SYS_read,
enable_syscall_hard=yes, enable_syscall_hard=no)
fi
if test ".$enable_syscall_hard" = .yes; then
PTH_SYSCALL_HARD=1
msg="yes"
AC_SEARCH_LIBS(dlsym, [dl])
AC_CHECK_FUNCS(dlopen dlsym dlclose)
else
PTH_SYSCALL_HARD=0
msg="no"
fi
AC_MSG_RESULT([$msg])
AC_SUBST(PTH_SYSCALL_HARD)
if test ".$enable_syscall_hard" = .yes; then
echo "${TB}Warning: The hard system call mapping variant is an experimental feature.${TN}"
echo "${TB} It is not guaranteed to work if the mapped system calls on your${TN}"
echo "${TB} platform do not 100% comply to the POSIX.1-2001/SUSv3 prototypes.${TN}"
fi
dnl ##
dnl ## BUILD PARAMETERS
dnl ##
AC_MSG_PART(Build Parameters)
AC_ARG_ENABLE(compat,dnl
[ --enable-compat install GNU pth compat function (default=no)],
enable_compat="$enableval",
if test ".$enable_compat" = .; then
enable_compat=no
fi
)dnl
AC_MSG_RESULT([$enable_compat])
AM_CONDITIONAL(ENABLE_COMPAT, test x$enable_compat = xyes)
dnl # whether to build Pthread library
AC_MSG_CHECKING(whether to build Pthread library)
AC_ARG_ENABLE(pthread,dnl
[ --enable-pthread build Pthread library (default=no)],
enable_pthread="$enableval",
if test ".$enable_pthread" = .; then
enable_pthread=no
fi
)dnl
AC_MSG_RESULT([$enable_pthread])
AM_CONDITIONAL(ENABLE_PTHREAD, test x$enable_pthread = xyes)
if test ".$enable_pthread" = .yes; then
PTHREAD_O=pthread.o dnl # only for stripped down Pth source tree
LIBPTHREAD_A=libpthread.a dnl # only for stripped down Pth source tree
LIBPTHREAD_LA=libpthread.la
PTHREAD_CONFIG_1='$(S)pthread-config.1'
PTHREAD_3='$(S)pthread.3'
INSTALL_PTHREAD=install-pthread
UNINSTALL_PTHREAD=uninstall-pthread
TEST_PTHREAD=test_pthread
enable_syscall_soft=yes
PTH_SYSCALL_SOFT=1
AC_HAVE_HEADERS(pthread.h)
ac_warn=no
if test ".$ac_cv_header_pthread_h" = .yes; then
warn=yes
changequote(<<,>>)
case $PLATFORM in
*-*-freebsd* ) ac_warn=no ;;
*-*-linux* ) ac_warn=no ;;
*-*-solaris* ) ac_warn=no ;;
*-*-irix* ) ac_warn=no ;;
esac
changequote([,])
fi
if test ".$ac_warn" = .yes; then
echo "${TB}Warning: You seem to have a vendor Pthread library installed.${TN}"
echo "${TB} There might be conflicts with its pthread.h under compile-time!${TN}"
fi
else
PTHREAD_O="" dnl # only for stripped down Pth source tree
LIBPTHREAD_A="" dnl # only for stripped down Pth source tree
LIBPTHREAD_LA=""
PTHREAD_CONFIG_1=""
PTHREAD_3=""
INSTALL_PTHREAD=""
UNINSTALL_PTHREAD=""
TEST_PTHREAD=""
fi
AC_SUBST(PTHREAD_O)
AC_SUBST(LIBPTHREAD_A)
AC_SUBST(LIBPTHREAD_LA)
AC_SUBST(PTHREAD_CONFIG_1)
AC_SUBST(PTHREAD_3)
AC_SUBST(INSTALL_PTHREAD)
AC_SUBST(UNINSTALL_PTHREAD)
AC_SUBST(TEST_PTHREAD)
dnl # whether to build against OSSP ex library
AC_CHECK_EXTLIB(OSSP ex, ex, __ex_ctx, ex.h,
AC_DEFINE(PTH_EX, 1, [define if using OSSP ex in GNU pth]))
dnl # whether to build against Sfio library
PTH_EXT_SFIO=0
AC_CHECK_EXTLIB(Sfio, sfio, sfdisc, sfio.h, PTH_EXT_SFIO=1)
AC_SUBST(PTH_EXT_SFIO)
dnl # whether to build against Dmalloc library
AC_CHECK_EXTLIB(Dmalloc, dmalloc, dmalloc_debug, dmalloc.h,
AC_DEFINE(PTH_DMALLOC, 1, [define if using Dmalloc in GNU pth]))
dnl ##
dnl ## Valgrind support
dnl ##
AC_ARG_WITH(valgrind,[ --with-valgrind[[=DIR]] include annotation for valgrind (default=no)],[
if test -d "$with_valgrind"; then
CPPFLAGS="$CPPFLAGS -I$with_valgrind/include"
fi
AC_CHECK_DEFINE(VALGRIND_STACK_REGISTER, valgrind/valgrind.h)
])
dnl ##
dnl ## OUTPUT SUBSTITUTION
dnl ##
AC_MSG_PART(Output Substitution)
AC_OUTPUT(dnl
Makefile dnl
debian/Makefile dnl
compat/Makefile dnl
pthread-config dnl
pthread.h dnl
compat/pth-config dnl
pth-config dnl
pthsem.pc dnl
pth.h dnl
pth_acmac.h dnl
,dnl
chmod +rx pthread-config
chmod +rx pth-config
)dnl
if test ".$enable_pthread" = .no; then
rm -f pthread-config
rm -f pthread.h
fi