summaryrefslogtreecommitdiff
path: root/configure
blob: b9dc50ee62292bda944e9afd38a3bd579e099795 (plain)
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
#!/bin/sh

. package/info

usage () {
  cat <<EOF
Usage: $0 [OPTION]... [TARGET]

Defaults for the options are specified in brackets.

System types:
  --target=TARGET               configure to run on target TARGET [detected]
  --host=TARGET                 same as --target

Installation directories:
  --prefix=PREFIX               main installation prefix [/]

Fine tuning of the installation directories:
  --dynlibdir=DIR               shared library files [PREFIX/lib]
  --libdir=DIR                  static library files [PREFIX/lib/$package]
  --includedir=DIR              include files for the C compiler [PREFIX/include]
  --datadir=DIR                 global configuration files [PREFIX/etc]
  --sysdepdir=DIR               sysdeps directory [PREFIX/lib/$package/sysdeps]

 If no --prefix option is given, by default libdir will be /usr/lib/$package,
 includedir will be /usr/include and sysdepdir will be /usr/lib/$package/sysdeps.

Dependencies:
  --with-sysdeps=DIR            use provided sysdeps in DIR [autodetected]
  --with-include=DIR            add DIR to the list of searched directories for headers
  --with-lib=DIR                add DIR to the list of searched directories for static libraries
  --with-dynlib=DIR             add DIR to the list of searched directories for shared libraries

Optional features:
  --disable-shared              do not build shared libraries [enabled]
  --disable-static              do not build static libraries [enabled]
  --disable-all-pic             do not build static libraries as PIC [enabled]
  --enable-slashpackage[=ROOT]  assume /package installation at ROOT [disabled]

$package options:
  --disable-ipv6                do not build IPv6 support [enabled]
  --enable-iopause-select       prefer select() over poll() for iopause implementation [disabled]
  --enable-tai-clock            assume the system clock is TAI-10 instead of UTC [disabled]
  --enable-clock                use clock_gettime() instead of gettimeofday() [disabled]
  --enable-monotonic            count time with CLOCK_MONOTONIC instead of CLOCK_REALTIME
  --with-default-path=PATH      default executable search path [/usr/bin:/bin]

EOF
  exit 0
}

# Helper functions

# If your system does not have printf, you can comment this, but it is
# generally not a good idea to use echo.
# See http://www.etalabs.net/sh_tricks.html
echo () {
  IFS=" "
  printf %s\\n "$*"
}

quote () {
  tr '\n' ' ' <<EOF | grep '^[-[:alnum:]_=,./:]* $' >/dev/null 2>&1 && { echo "$1" ; return 0 ; }
$1
EOF
  echo "$1" | sed -e "s/'/'\\\\''/g" -e "1s/^/'/" -e "\$s/\$/'/" -e "s#^'\([-[:alnum:]_,./:]*\)=\(.*\)\$#\1='\2#" -e "s|\*/|* /|g"
}

fail () {
  echo "$*"
  exit 1
}

fnmatch () {
  eval "case \"\$2\" in $1) return 0 ;; *) return 1 ;; esac"
}

cmdexists () {
  type "$1" >/dev/null 2>&1
}

trycc () {
  test -z "$CC_AUTO" && cmdexists "$1" && CC_AUTO="$*"
}

stripdir () {
  while eval "fnmatch '*/' \"\${$1}\"" ; do
    eval "$1=\${$1%/}"
  done
}

tryflag () {
  echo "Checking whether compiler accepts $2 ..."
  echo "typedef int x;" > "$tmpc"
  if $CC_AUTO "$2" -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
    echo "  ... yes"
    eval "$1=\"\${$1} \$2\""
    eval "$1=\${$1# }"
    return 0
  else
    echo "  ... no"
    return 1
  fi
}

tryldflag () {
  echo "Checking whether linker accepts $2 ..."
  echo "typedef int x;" > "$tmpc"
  if $CC_AUTO -nostdlib "$2" -o /dev/null "$tmpc" >/dev/null 2>&1 ; then
    echo "  ... yes"
    eval "$1=\"\${$1} \$2\""
    eval "$1=\${$1# }"
    return 0
  else
    echo "  ... no"
    return 1
  fi
}

choose () {
  what="$1"
  name="$2"
  macro="$3"
  echo "Checking whether system has $4..."
  shift 4
  libs="$*"
  r=true
  case "$what" in
    *c*) $CC_AUTO $CPPFLAGS_AUTO $CPPFLAGS $CPPFLAGS_POST $CFLAGS_AUTO $CFLAGS $CFLAGS_POST -o try$name.o -c src/sysdeps/try$name.c 2>/dev/null || r=false ;;
  esac
  if $r ; then
    case "$what" in
      *l*) $CC_AUTO $CFLAGS_AUTO $CFLAGS $CFLAGS_POST $LDFLAGS_AUTO $LDFLAGS $LDFLAGS_POST -o try$name try$name.o $libs 2>/dev/null || r=false ;;
    esac
  fi
  if $r ; then
    case "$what" in
     *r*) ./try$name >/dev/null 2>&1 ; r=$?
          case "$r" in
           111) echo "  ... test crashed, aborting." ; exit 111 ;;
           0) r=true ;;
           *) r=false ;;
          esac
    esac
  fi
  rm -f try$name.o try$name
  echo "#undef ${package_macro_name}_HAS$macro" >> $sysdeps/sysdeps.h
  if $r ; then
    echo "$name: yes" >> $sysdeps/sysdeps
    echo "#define ${package_macro_name}_HAS$macro" >> $sysdeps/sysdeps.h
    echo "  ... yes"
  else
    echo "$name: no" >> $sysdeps/sysdeps
    echo "  ... no"
  fi
  echo >> $sysdeps/sysdeps.h
}

trytypes () {
  echo "Checking size and signedness of standard types..."
  $CC_AUTO $CPPFLAGS_AUTO $CPPFLAGS $CPPFLAGS_POST $CFLAGS_AUTO $CFLAGS $CFLAGS_POST $LDFLAGS_AUTO $LDFLAGS $LDFLAGS_POST -o output-types src/sysdeps/output-types.c
  ./output-types >> $sysdeps/sysdeps
  ./output-types | grep -F sizeof | while read key value ; do
    caps=$(echo $key | sed s/:\$// | tr a-z A-Z)
    echo "#undef ${package_macro_name}_${caps}"
    echo "#define ${package_macro_name}_${caps} $value"
    echo
  done >> $sysdeps/sysdeps.h
  ./output-types | grep -F signed | while read key value ; do
    caps=$(echo $key | sed s/:\$// | tr a-z A-Z)
    echo "#undef ${package_macro_name}_HASUN${caps}"
    echo "#undef ${package_macro_name}_HAS${caps}"
    if test $value = yes ; then
      echo "#define ${package_macro_name}_HAS${caps}"
    else
      echo "#define ${package_macro_name}_HASUN${caps}"
    fi
    echo
  done >> $sysdeps/sysdeps.h
  rm -f output-types
  echo "  ... done"
}

trylibs () {
  args=
  name=$1
  echo "Checking whether system has $2..." >&3
  shift 2
  if $CC_AUTO $CPPFLAGS_AUTO $CPPFLAGS $CPPFLAGS_POST $CFLAGS_AUTO $CFLAGS $CFLAGS_POST -c -o try$name.o src/sysdeps/try$name.c 2>/dev/null ; then
    until $CC_AUTO $CFLAGS_AUTO $CFLAGS $CFLAGS_POST $LDFLAGS_AUTO $LDFLAGS $LDFLAGS_POST -o /dev/null try$name.o $args 2>/dev/null ; do
      if test -z "$*" ; then
        rm -f try$name.o
        echo
        echo "  ... no" >&3
        return 1
      fi
      args="$args $1"
      shift
    done
    echo ${args# }
    if test -z "$args" ; then
      echo "  ... yes" >&3
    else
      echo "  ... yes, with$args" >&3
    fi
    rm -f try$name.o
    return 0
  else
    echo
    echo "  ... no" >&3
    return 1
  fi
}

# Actual script

CC_AUTO=
CPPFLAGS_AUTO="-D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -Isrc/include"
CPPFLAGS_POST="$CPPFLAGS"
CPPFLAGS=
CFLAGS_AUTO="-pipe -Wall"
CFLAGS_POST="$CFLAGS"
CFLAGS="-O2"
LDFLAGS_AUTO=
LDFLAGS_POST="$LDFLAGS"
LDFLAGS=
LDFLAGS_NOSHARED=
LDFLAGS_SHARED=-shared
prefix=
dynlibdir='$prefix/lib'
libdir='$prefix/lib/$package'
includedir='$prefix/include'
datadir='$prefix/etc'
sysdepdir='$prefix/lib/$package/sysdeps'
sysdeps=
shared=true
static=true
allpic=true
slashpackage=false
ipv6=true
select=false
taiclock=false
clockrt=false
clockmon=false
ddefaultpath=/usr/bin:/bin
defaultpath=$ddefaultpath
dpathorig=true
sproot=
home=
exthome=
addincpath=''
addlibspath=''
addlibdpath=''
vpaths=''
vpathd=''
build=

for arg ; do
  case "$arg" in
    --help) usage ;;
    --prefix=*) prefix=${arg#*=} ;;
    --dynlibdir=*) dynlibdir=${arg#*=} ;;
    --libdir=*) libdir=${arg#*=} ;;
    --includedir=*) includedir=${arg#*=} ;;
    --datadir=*) datadir=${arg#*=} ;;
    --sysdepdir=*) sysdepdir=${arg#*=} ;;
    --with-sysdeps=*) sysdeps=${arg#*=} ;;
    --with-include=*) var=${arg#*=} ; stripdir var ; addincpath="$addincpath -I$var" ;;
    --with-lib=*) var=${arg#*=} ; stripdir var ; addlibspath="$addlibspath -L$var" ; vpaths="$vpaths $var" ;;
    --with-dynlib=*) var=${arg#*=} ; stripdir var ; addlibdpath="$addlibdpath -L$var" ; vpathd="$vpathd $var" ;;
    --enable-shared|--enable-shared=yes) shared=true ;;
    --disable-shared|--enable-shared=no) shared=false ;;
    --enable-static|--enable-static=yes) static=true ;;
    --disable-static|--enable-static=no) static=false ;;
    --enable-all-pic|--enable-all-pic=yes) allpic=true ;;
    --disable-all-pic|--enable-all-pic=no) allpic=false ;;
    --enable-slashpackage=*) sproot=${arg#*=} ; slashpackage=true ; ;;
    --enable-slashpackage) sproot= ; slashpackage=true ;;
    --disable-slashpackage) sproot= ; slashpackage=false ;;
    --enable-ipv6|--enable-ipv6=yes) ipv6=true ;;
    --disable-ipv6|--enable-ipv6=no) ipv6=false ;;
    --enable-iopause-select|--enable-iopause-select=yes) select=true ;;
    --disable-iopause-select|--enable-iopause-select=no) select=false ;;
    --enable-tai-clock|--enable-tai-clock=yes) taiclock=true ;;
    --disable-tai-clock|--enable-tai-clock=no) taiclock=false ;;
    --enable-clock|--enable-clock=yes) clockrt=true ;;
    --disable-clock|--enable-clock=no) clockrt=false ;;
    --enable-monotonic|--enable-monotonic=yes) clockmon=true ;;
    --disable-monotonic|--enable-monotonic=no) clockmon=false ;;
    --with-default-path=*) defaultpath=${arg#*=} ; dpathorig=false ;;
    --without-default-path) defaultpath=$ddefaultpath ; dpathorig=true ;;
    --enable-*|--disable-*|--with-*|--without-*|--*dir=*) ;;
    --host=*|--target=*) target=${arg#*=} ;;
    --build=*) build=${arg#*=} ;;
    -* ) echo "$0: unknown option $arg" ;;
    *=*) ;;
    *) target=$arg ;;
  esac
done

# Add /usr in the default default case
if test -z "$prefix" ; then
  if test "$libdir" = '$prefix/lib/$package' ; then
    libdir=/usr/lib/$package
  fi
  if test "$includedir" = '$prefix/include' ; then
    includedir=/usr/include
  fi
  if test "$sysdepdir" = '$prefix/lib/$package/sysdeps' ; then
    sysdepdir=/usr/lib/$package/sysdeps
  fi
fi

# Expand installation directories
stripdir prefix
for i in exec_prefix dynlibdir libdir includedir datadir sysdepdir sysdeps sproot ; do
  eval tmp=\${$i}
  eval $i=$tmp
  stripdir $i
done


# Get usable temp filenames
i=0
set -C
while : ; do
  i=$(($i+1))
  tmpc="./tmp-configure-$$-$PPID-$i.c"
  tmpe="./tmp-configure-$$-$PPID-$i.tmp"
  2>|/dev/null > "$tmpc" && break
  2>|/dev/null > "$tmpe" && break
  test "$i" -gt 50 && fail "$0: cannot create temporary files"
done
set +C
trap 'rm -f "$tmpc" "$tmpe"' EXIT ABRT INT QUIT TERM HUP

# Set slashpackage values
if $slashpackage ; then
  home=${sproot}/package/${category}/${package}-${version}
  exthome=${sproot}/package/${category}/${package}
  sysdepdir=${home}/sysdeps
  binprefix=${home}/command
  extbinprefix=${exthome}/command
  dynlibdir=${home}/library.so
  libdir=${home}/library
  includedir=${home}/include
  if $dpathorig ; then
    if echo $defaultpath | tr : '\n' | grep -q '^/command$' ; then : ; else
      defaultpath="/command:$defaultpath"
    fi
  fi
fi

# Find a C compiler to use
if test -n "$target" && test x${build} != x${target} ; then
  cross=${target}-
else
  cross=
fi
echo "Checking for C compiler..."
trycc ${cross}${CC}
trycc ${cross}gcc
trycc ${cross}clang
trycc ${cross}cc
test -n "$CC_AUTO" || { echo "$0: cannot find a C compiler" ; exit 1 ; }
echo "  ... $CC_AUTO"
echo "Checking whether C compiler works... "
echo "typedef int x;" > "$tmpc"
if $CC_AUTO $CPPFLAGS_AUTO $CPPFLAGS $CPPFLAGS_POST $CFLAGS_AUTO $CFLAGS $CFLAGS_POST -c -o /dev/null "$tmpc" 2>"$tmpe" ; then
  echo "  ... yes"
else
  echo "  ... no. Compiler output follows:"
  cat < "$tmpe"
  exit 1
fi

echo "Checking target system type..."
if test -z "$target" ; then
  if test -n "$build" ; then
    target=$build ;
  else
    target=$($CC_AUTO -dumpmachine 2>/dev/null) || target=unknown
  fi
fi
echo "  ... $target"

if $allpic ; then
  tryflag CPPFLAGS_AUTO -fPIC
fi
tryflag CFLAGS_AUTO -std=c99
tryflag CFLAGS -fomit-frame-pointer
tryflag CFLAGS_AUTO -fno-exceptions
tryflag CFLAGS_AUTO -fno-unwind-tables
tryflag CFLAGS_AUTO -fno-asynchronous-unwind-tables
tryflag CFLAGS_AUTO -Wa,--noexecstack
tryflag CFLAGS -fno-stack-protector
tryflag CPPFLAGS_AUTO -Werror=implicit-function-declaration
tryflag CPPFLAGS_AUTO -Werror=implicit-int
tryflag CPPFLAGS_AUTO -Werror=pointer-sign
tryflag CPPFLAGS_AUTO -Werror=pointer-arith
tryflag CPPFLAGS_AUTO -Wno-unused-value
tryflag CPPFLAGS_AUTO -Wno-parentheses
tryflag CFLAGS_AUTO -ffunction-sections
tryflag CFLAGS_AUTO -fdata-sections

tryldflag LDFLAGS_AUTO -Wl,--sort-section=alignment
tryldflag LDFLAGS_AUTO -Wl,--sort-common
if $shared ; then
  tryldflag LDFLAGS -Wl,--hash-style=both
fi

if test -n "$sysdeps" ; then
  if test ! -d $sysdeps || test ! -f $sysdeps/target ; then
    echo "$0: error: $sysdeps is not a valid sysdeps directory"
    exit 1
  fi
  if [ "x$target" != "x$(cat $sysdeps/target)" ] ; then
    echo "$0: error: target $target does not match the contents of $sysdeps/target"
    exit 1
  fi
  echo "Using pre-computed sysdeps in $sysdeps."
  spawn_lib=$(cat $sysdeps/spawn.lib)
  socket_lib=$(cat $sysdeps/socket.lib)
  sysclock_lib=$(cat $sysdeps/sysclock.lib)
  tainnow_lib=$(cat $sysdeps/tainnow.lib)
  timer_lib=$(cat $sysdeps/timer.lib)
  util_lib=$(cat $sysdeps/util.lib)
else
  sysdeps=sysdeps.cfg
  mkdir -p $sysdeps
  echo "$target" > $sysdeps/target
  echo "target: $target" > $sysdeps/sysdeps
  cat <<EOF > $sysdeps/sysdeps.h
/* ISC license. */

#ifndef SYSDEPS_H
#define SYSDEPS_H

#undef SKALIBS_TARGET
#define SKALIBS_TARGET "$target"

#undef SKALIBS_BSD_SUCKS
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__bsdi__) || defined(__DragonFly__)
# define SKALIBS_BSD_SUCKS
#endif

EOF

  exec 3>&1
  util_lib=
  echo > $sysdeps/util.lib

  socket_lib=`trylibs lsock 'accessible socket functions' -lsocket -lnsl` || fail "$0: unable to determine socket.lib sysdep"
  echo "$socket_lib" > $sysdeps/socket.lib

  hasclock=true
  sysclock_lib=`trylibs clockrt 'clock_gettime()' -lrt` || hasclock=false
  if $clockrt ; then
    tainnow_lib=$sysclock_lib
  else
    tainnow_lib=
  fi
  echo "$sysclock_lib" > $sysdeps/sysclock.lib
  echo "$tainnow_lib" > $sysdeps/tainnow.lib
  echo "#undef ${package_macro_name}_HASCLOCKRT" >> $sysdeps/sysdeps.h
  if $hasclock ; then
    echo 'clockrt: yes' >> $sysdeps/sysdeps
    echo "#define ${package_macro_name}_HASCLOCKRT" >> $sysdeps/sysdeps.h
    echo >> $sysdeps/sysdeps.h
    choose cl clockmon CLOCKMON CLOCK_MONOTONIC $sysclock_lib
  else
    echo 'clockrt: no' >> $sysdeps/sysdeps
    echo >> $sysdeps/sysdeps.h
  fi

  hasspawn=true
  spawn_lib=`trylibs posixspawn 'posix_spawn()' -lrt` || hasspawn=false
  echo "$spawn_lib" > $sysdeps/spawn.lib
  echo "#undef ${package_macro_name}_HASPOSIXSPAWN" >> $sysdeps/sysdeps.h
  if $hasspawn ; then
    echo 'posixspawn: yes' >> $sysdeps/sysdeps
    echo "#define ${package_macro_name}_HASPOSIXSPAWN" >> $sysdeps/sysdeps.h
  else
    echo 'posixspawn: no' >> $sysdeps/sysdeps
  fi
  echo >> $sysdeps/sysdeps.h

  hastimer=true
  timer_lib=`trylibs timer 'timer_create()' -lrt` || hastimer=false
  echo "$timer_lib" > $sysdeps/timer.lib
  echo "#undef ${package_macro_name}_HASTIMER" >> $sysdeps/sysdeps.h
  if $hastimer ; then
    echo 'timer: yes' >> $sysdeps/sysdeps
    echo "#define ${package_macro_name}_HASTIMER" >> $sysdeps/sysdeps.h
  else
    echo 'timer: no' >> $sysdeps/sysdeps
  fi
  echo >> $sysdeps/sysdeps.h
  exec 3>&-

  echo "Checking system endianness..."
  $CC_AUTO $CPPFLAGS_AUTO $CPPFLAGS $CPPFLAGS_POST $CFLAGS_AUTO $CFLAGS $CFLAGS_POST $LDFLAGS_AUTO $LDFLAGS $LDFLAGS_POST -o tryendianness src/sysdeps/tryendianness.c
  endianness=$(./tryendianness) || fail "$0: unable to determine endianness"
  echo "endianness: $endianness" >> $sysdeps/sysdeps
  {
    echo "#undef ${package_macro_name}_ENDIANNESS"
    echo "#define ${package_macro_name}_ENDIANNESS \"$endianness\""
    echo
  } >> $sysdeps/sysdeps.h
  echo "  ... $endianness"
  rm -f tryendianness

  trytypes
  choose clr nullispointer NULLISPOINTER 'a pointer-typed NULL'
  choose clr accept4 ACCEPT4 'accept4()'
  choose c cmsgcloexec CMSGCLOEXEC 'MSG_CMSG_CLOEXEC'
  choose clr devurandom DEVURANDOM '/dev/urandom'
  choose cl dirfd DIRFD 'dirfd()'
  choose cl eventfd EVENTFD 'eventfd()'
  choose cl flock FLOCK 'flock()'
  choose cl getpeereid GETPEEREID 'getpeereid()'
  choose cl sopeercred SOPEERCRED 'SO_PEERCRED'
  choose cl getpeerucred GETPEERUCRED 'getpeerucred()'
  choose cl ipv6 IPV6 'IPv6 support' $socket_lib
  choose clr malloc0 MALLOC0 'non-NULL malloc(0)'
  choose c msgdontwait MSGDONTWAIT 'MSG_DONTWAIT'
  choose c odirectory ODIRECTORY 'O_DIRECTORY'
  choose cl openat OPENAT 'openat()'
  choose cl linkat LINKAT 'linkat()'
  choose cl memmem MEMMEM 'memmem()'
  choose clr pipe2 PIPE2 'pipe2()'
  choose clr ppoll PPOLL 'ppoll()'
  choose cl revoke REVOKE 'revoke()'
  choose cl sendfile SENDFILE 'sendfile()'
  choose cl setgroups SETGROUPS 'setgroups()'
  choose cl settimeofday SETTIMEOFDAY 'settimeofday()'
  choose clr signalfd SIGNALFD 'signalfd()'
  choose clr splice SPLICE 'splice()'
  choose cl strcasestr STRCASESTR 'strcasestr()'
  choose c strnlen STRNLEN 'strnlen()'
  choose c uint64t UINT64T 'uint64_t'
  choose cl futimens FUTIMENS 'futimens()'
  choose cl futimes FUTIMES 'futimes()'
  choose cl arc4random ARC4RANDOM 'arc4random()'
  choose cl arc4random_addrandom ARC4RANDOM_ADDRANDOM 'arc4random_addrandom()'
  choose clr getrandom GETRANDOM 'getrandom()'
  choose cl itimer ITIMER 'setitimer()'
  choose cl namespaces NAMESPACES 'namespaces'
  choose cl nsgetparent NSGETPARENT 'NS_GET_PARENT'
  choose cl explicit_bzero EXPLICIT_BZERO 'explicit_bzero()'
  choose clr emptyregex EMPTYREGEX 'regcomp() accept empty regexes'

  echo '#endif' >> $sysdeps/sysdeps.h
fi

echo "Copying $sysdeps/sysdeps.h to src/include/${package}/sysdeps.h ..."
cat < $sysdeps/sysdeps.h > src/include/${package}/sysdeps.h
echo "  ... done"

echo "Creating config.mak..."
cmdline=$(quote "$0")
for i ; do cmdline="$cmdline $(quote "$i")" ; done
exec 3>&1 1>config.mak
cat << EOF
# This file was generated by:
# $cmdline
# Any changes made here will be lost if configure is re-run.

target := $target
package := $package
prefix := $prefix
datadir := $datadir
sysdepdir := $sysdepdir
dynlibdir := $dynlibdir
libdir := $libdir
includedir := $includedir
sysdeps := $sysdeps
version := $version
sproot := $sproot
home := $home
exthome := ${exthome}
ipv6 := ${ipv6}
SPAWN_LIB := ${spawn_lib}
SOCKET_LIB := ${socket_lib}
SYSCLOCK_LIB := ${sysclock_lib}
TAINNOW_LIB := ${tainnow_lib}
TIMER_LIB := ${timer_lib}
UTIL_LIB := ${util_lib}
CC := ${CC_AUTO##${cross}}
CPPFLAGS_AUTO := $CPPFLAGS_AUTO
CPPFLAGS := $CPPFLAGS $CPPFLAGS_POST
CFLAGS_AUTO := $CFLAGS_AUTO
CFLAGS := $CFLAGS $CFLAGS_POST
LDFLAGS_AUTO := $LDFLAGS_AUTO
LDFLAGS := $LDFLAGS $LDFLAGS_POST
LDFLAGS_NOSHARED := $LDFLAGS_NOSHARED
LDFLAGS_SHARED := $LDFLAGS_SHARED
CROSS_COMPILE := ${cross}
EOF
if test -n "$vpaths" ; then
  echo "vpath lib%a$vpaths"
fi
if test -n "$vpathd" ; then
  echo "vpath lib%.so$vpathd"
fi

if $static ; then
  echo "STATIC_LIBS := libskarnet.a.xyzzy"
else
  echo "STATIC_LIBS :="
fi
if $shared ; then
  echo "SHARED_LIBS := libskarnet.so.xyzzy"
else
  echo "SHARED_LIBS :="
fi
if $allpic ; then
  echo "STATIC_LIBS_ARE_PIC := 1"
else
  echo "STATIC_LIBS_ARE_PIC :="
fi

exec 1>&3 3>&-
echo "  ... done."

echo "Creating src/include/${package}/config.h..."
mkdir -p -m 0755 src/include/${package}
exec 3>&1 1> src/include/${package}/config.h
cat <<EOF
/* ISC license. */

/* Generated by: $cmdline */

#ifndef ${package_macro_name}_CONFIG_H
#define ${package_macro_name}_CONFIG_H

#define ${package_macro_name}_VERSION "$version"
#define ${package_macro_name}_DEFAULTPATH "$defaultpath"
#define ${package_macro_name}_ETC "$datadir"
#define ${package_macro_name}_SPROOT "$sproot"
#define ${package_macro_name}_HOME "$home"
EOF
if $taiclock ; then
  echo "#define ${package_macro_name}_FLAG_CLOCKISTAI"
else
  echo "#undef ${package_macro_name}_FLAG_CLOCKISTAI"
fi
if $clockrt ; then
  echo "#define ${package_macro_name}_FLAG_USERT"
else
  echo "#undef ${package_macro_name}_FLAG_USERT"
fi
if $clockmon ; then
  echo "#define ${package_macro_name}_FLAG_USEMON"
else
  echo "#undef ${package_macro_name}_FLAG_USEMON"
fi
if $ipv6 ; then
  echo "#define ${package_macro_name}_FLAG_WANTIPV6"
else
  echo "#undef ${package_macro_name}_FLAG_WANTIPV6"
fi
if $select ; then
  echo "#define ${package_macro_name}_FLAG_PREFERSELECT"
else
  echo "#undef ${package_macro_name}_FLAG_PREFERSELECT"
fi

echo
echo "#endif"
exec 1>&3 3>&-
echo "  ... done."