-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure
executable file
·1058 lines (929 loc) · 27.6 KB
/
configure
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
#! /bin/sh
#
# Copyright (c) 2014, 2015, 2016 Ingo Schwarze <[email protected]>
# Copyright (c) 2017, 2018 Kristaps Dzonsons <[email protected]>
# Copyright (c) 2022, 2023, 2024 Omar Polo <[email protected]>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
OCONFIGURE_VERSION="0.3.8"
#
# This script outputs two files: config.h and config.mk.
# It tries to read from configure.local, which contains predefined
# values we won't autoconfigure.
#
# If you want to use configure with your project, have your GNUmakefile
# or BSDmakefile---whichever---try to import/include config.mk
# at the beginning of the file.
#
# Like so (note no quotes, no period, etc.):
#
# include config.mk
#
# If it exists, configure was run; otherwise, it wasn't.
#
# You'll probably want to change parts of this file. I've noted the
# parts that you'll probably change in the section documentation.
#
# See https://github.com/kristapsdz/oconfigure for more.
set -e
# try to be helpful
case "$1" in
--help|-h)
cat <<EOF
\`configure' configures amused to adapt to many kinds of systems.
Usage: $0 [-h] [--prefix=path] [VAR=VALUE]...
The options are as follows:
--backend=name equivalent to specify the BACKEND variable, can be
"sndio", "ao", "oss", "oboe" or "alsa".
-h, --help print this help message
--prefix=path equivalent to specify the PREFIX variable, supported
for compatibility with other common "configure" scripts.
--with-Werror build with -Werror
--with-songmeta enable building the songmeta cli
--without-web disable the building of amused-web
Variables available:
BACKEND audio backend to use; can be "sndio", "ao" or "alsa"
CC C compiler
CFLAGS generic C compiler flags
CPPFLAGS C preprocessors flags
LDADD generic linker flags
LDADD_LIB_AO linker flags for libao
LDADD_LIB_ASOUND linker flags for libasound
LDADD_LIB_GLIB linker flags for glib
LDADD_LIB_FLAC linker flags for libflac
LDADD_LIB_IMSG linker flags for libimsg
LDADD_LIB_MD linker flags for libmd
LDADD_LIB_MPG123 linker flags for libmpg123
LDADD_LIB_PTHREAD linker flags for pthread
LDADD_LIB_OPUSFILE linker flags for libopusfile
LDADD_LIB_SNDIO linker flags for libsndio
LDADD_LIB_SOCKET linker flags for libsocket
LDADD_LIB_VORBISFILE linker flags for libvorbisfile
LDFLAGS extra linker flags
DESTDIR destination directory
PREFIX where to install files
MANDIR where to install man pages (PREFIX/man)
LIBDIR where to install libraries (PREFIX/lib)
BINDIR where to install executables (PREFIX/bin)
SHAREDIR where to install misc files (PREFIX/share)
SBINDIR where to install system executables (PREFIX/sbin)
INCLUDEDIR where to install header files (PREFIX/include)
PKG_CONFIG pkg-config program, \`false' to disable (pkg-config)
Additionally, the following environment variables are used if set:
CC the C compiler to use (defaults to cc, clang or gcc)
CFLAGS generic C compiler flags
EOF
exit 0 ;;
esac
#----------------------------------------------------------------------
# Prepare for running: move aside previous configure runs.
# Output file descriptor usage:
# 1 (stdout): config.h or config.mk
# 2 (stderr): original stderr, usually to the console
# 3: config.log
# You DO NOT want to change this.
#----------------------------------------------------------------------
[ -w config.log ] && mv config.log config.log.old
[ -w config.h ] && mv config.h config.h.old
exec 3> config.log
echo "config.log: writing..."
echo "running as ./configure $@" >&3
echo "on $(uname -a)" >&3
echo "" >&3
# GNU submake prints different output if invoked recursively, which
# messes up CC and CFLAGS detection. Pass --no-print-directory if
# we have a MAKELEVEL (GNU and FreeBSD make) and the argument is
# allowed.
MAKE_FLAGS=""
if [ -n "${MAKELEVEL}" ]; then
if [ "${MAKELEVEL}" -gt 0 ] ; then
MAKE_FLAGS="--no-print-directory"
echo "all:" | make ${MAKE_FLAGS} -sf - 2>/dev/null || MAKE_FLAGS=""
fi
fi
if [ -n "$MAKE_FLAGS" ]; then
echo "GNU submake detected: using --no-print-directory" 1>&2
echo "GNU submake detected: using --no-print-directory" 1>&3
fi
#----------------------------------------------------------------------
# Initialize all variables here such that nothing can leak in from the
# environment except for CC and CFLAGS, which we might have passed in.
#----------------------------------------------------------------------
BACKEND=auto
CC=`printf "all:\\n\\t@echo \\\$(CC)\\n" | make ${MAKE_FLAGS} -sf -`
CXX=`printf "all:\\n\\t@echo \\\$(CXX)\\n" | make ${MAKE_FLAGS} -sf -`
CFLAGS=`printf "all:\\n\\t@echo \\\$(CFLAGS)\\n" | make ${MAKE_FLAGS} -sf -`
CFLAGS="${CFLAGS} -g -W -Wall -Wextra -Wmissing-prototypes"
CFLAGS="${CFLAGS} -Wstrict-prototypes -Wmissing-declarations"
CFLAGS="${CFLAGS} -Wno-unused-parameter -Wno-sign-compare -Wno-pointer-sign"
CFLAGS="${CFLAGS} -Wno-unused-result"
CXXFLAGS=`printf "all:\\n\\t@echo \\\$(CXXFLAGS)\\n" | make ${MAKE_FLAGS} -sf -`
CXXFLAGS="${CXXFLAGS} -g -W -Wall -Wextra -Wno-unused-parameter"
LDADD=
LDADD_LIB_AO=
LDADD_LIB_ASOUND=
LDADD_LIB_GLIB=
LDADD_LIB_FLAC=
LDADD_LIB_IMSG=
LDADD_LIB_MD=
LDADD_LIB_MPG123=
LDADD_LIB_PTHREAD=
LDADD_LIB_OPUSFILE=
LDADD_LIB_SNDIO=
LDADD_LIB_SOCKET=
LDADD_LIB_VORBISFILE=
LDADD_STATIC=
CPPFLAGS=
LDFLAGS=
DESTDIR=
PREFIX="/usr/local"
BINDIR=
SBINDIR=
INCLUDEDIR=
LIBDIR=
MANDIR=
SHAREDIR=
INSTALL="install"
INSTALL_PROGRAM=
INSTALL_LIB=
INSTALL_MAN=
INSTALL_DATA=
PKG_CONFIG=
WITH_WEB=1
WITH_WERROR=0
WITH_SONGMETA=0
WITH_MPRIS2=0
# SunOS sets "cc", but this doesn't exist.
# It does have gcc, so try that instead.
# Prefer clang, though.
command -v ${CC} 2>/dev/null 1>&2 || {
echo "${CC} not found: trying clang" 1>&2
echo "${CC} not found: trying clang" 1>&3
CC=clang
command -v ${CC} 2>/dev/null 1>&2 || {
echo "${CC} not found: trying gcc" 1>&2
echo "${CC} not found: trying gcc" 1>&3
CC=gcc
command -v ${CC} 2>/dev/null 1>&2 || {
echo "gcc not found: giving up" 1>&2
echo "gcc not found: giving up" 1>&3
exit 1
}
}
}
command -v pkg-config 2>/dev/null 1>&2 && {
PKG_CONFIG=pkg-config
echo "pkg-config found" 1>&2
echo "pkg-config found" 1>&3
} || {
echo "pkg-config not found" 1>&2
echo "pkg-config not found" 1>&3
}
#----------------------------------------------------------------------
# These are the values that will be pushed into config.h after we test
# for whether they're supported or not.
# Each of these must have a runtest(), below.
# Please sort by alpha, for clarity.
# You WANT to change this.
#----------------------------------------------------------------------
HAVE_CAPSICUM=
HAVE_ENDIAN_H=
HAVE_EXPLICIT_BZERO=
HAVE_FLOCK=
HAVE_FREEZERO=
HAVE_GETDTABLECOUNT=
HAVE_GETDTABLESIZE=
HAVE_GETEXECNAME=
HAVE_GETPROGNAME=
HAVE_INFTIM=
HAVE_LANDLOCK=
HAVE_LIB_ASOUND=
HAVE_LIB_DUBS=
HAVE_LIB_FLAC=
HAVE_LIB_IMSG=
HAVE_LIB_MD=
HAVE_LIB_MPG123=
HAVE_LIB_OPUSFILE=
HAVE_LIB_SNDIO=
HAVE_LIB_SOCKET=
HAVE_LIB_VORBISFILE=
HAVE_MEMMEM=
HAVE_MEMSET_S=
HAVE_OPTRESET=
HAVE_PATH_MAX=
HAVE_PLEDGE=
HAVE_PROGRAM_INVOCATION_SHORT_NAME=
HAVE_PR_SET_NAME=
HAVE_RECALLOCARRAY=
HAVE_SANDBOX_INIT=
HAVE_SETPROCTITLE=
HAVE_SIO_FLUSH=
HAVE_SOCK_NONBLOCK=
HAVE_STRLCAT=
HAVE_STRLCPY=
HAVE_STRTONUM=
HAVE_SYS_ENDIAN_H=
HAVE_SYS_FILE=
HAVE_SYS_QUEUE=
HAVE_TIMESPECSUB=
HAVE___PROGNAME=
#----------------------------------------------------------------------
# Allow certain variables to be overridden on the command line.
#----------------------------------------------------------------------
while [ $# -gt 0 ]; do
key=${1%%=*}
val=${1#*=}
if [ "$key" = "--with-Werror" ]; then
WITH_WERROR=1
shift
continue
fi
if [ "$key" = "--with-web" ]; then
WITH_WEB=1
shift
continue
fi
if [ "$key" = "--without-web" ]; then
WITH_WEB=0
shift
continue
fi
if [ "$key" = "--with-mpris2" ]; then
WITH_MPRIS2=1
shift
continue
fi
if [ "$key" = "--with-songmeta" ]; then
WITH_SONGMETA=1
shift
continue
fi
if [ "$key" = "--without-songmeta" ]; then
WITH_SONGMETA=0
shift
continue
fi
if [ "$key" = "--prefix" ]; then
key=PREFIX
if [ "$1" = "--prefix" ]; then
if ! shift 2>&1 >/dev/null; then
echo "$0: missing value for --prefix" 1>&2
exit 1
fi
val="$1"
fi
fi
if [ "$key" = "--backend" ]; then
key=BACKEND
if [ "$1" = "--backend" ]; then
if ! shift 2>&1 >/dev/null; then
echo "$0 missing value for --backend" 1>&2
exit 1
fi
val="$1"
fi
fi
if [ "$1" = "$key" ]; then
echo "$0: invalid key-value: $1" 1>&2
exit 1
fi
shift
case "$key" in
BACKEND)
case "$val" in
alsa) BACKEND=alsa ;;
ao) BACKEND=ao ;;
oboe) BACKEND=oboe ;;
oss) BACKEND=oss ;;
sndio) BACKEND=sndio ;;
*)
echo "unknown audio backend: $val" 1>&2
exit 1
esac ;;
CC)
CC="$val" ;;
CFLAGS)
CFLAGS="$val" ;;
CXXFLAGS)
CXXFLAGS="$val" ;;
LDADD)
LDADD="$val" ;;
LDADD_LIB_AO)
LDADD_LIB_AO="$val"
HAVE_LIB_AO=1
BACKEND=ao
;;
LDADD_LIB_ASOUND)
LDADD_LIB_ASOUND="$val"
HAVE_LIB_ASOUND=1
BACKEND=alsa
;;
LDADD_LIB_GLIB)
LDADD_LIB_GLIB="$val"
HAVE_LIB_GLIB=1
;;
LDADD_LIB_FLAC)
LDADD_LIB_FLAC="$val"
HAVE_LIB_FLAC=1
;;
LDADD_LIB_IMSG)
LDADD_LIB_IMSG="$val"
HAVE_LIB_IMSG=1
;;
LDADD_LIB_MD)
LDADD_LIB_MD="$val"
HAVE_LIB_MD=1
;;
LDADD_LIB_MPG123)
LDADD_LIB_MPG123="$val"
HAVE_LIB_MPG123=1
;;
LDADD_LIB_PTHREAD)
LDADD_LIB_PTHREAD="$val"
HAVE_LIB_PTHREAD=1
;;
LDADD_LIB_OPUSFILE)
LDADD_LIB_OPUSFILE="$val"
HAVE_LIB_OPUSFILE=1
;;
LDADD_LIB_SNDIO)
LDADD_LIB_SNDIO="$val"
HAVE_LIB_SNDIO=1
BACKEND=sndio
;;
LDADD_LIB_SOCKET)
LDADD_LIB_SOCKET="$val"
HAVE_LIB_SOCKET=1
;;
LDADD_LIB_VORBISFILE)
LDADD_LIB_VORBISFILE="$val"
HAVE_LIB_VORBISFILE=1
;;
LDFLAGS)
LDFLAGS="$val" ;;
CPPFLAGS)
CPPFLAGS="$val" ;;
DESTDIR)
DESTDIR="$val" ;;
PREFIX)
PREFIX="$val" ;;
MANDIR)
MANDIR="$val" ;;
LIBDIR)
LIBDIR="$val" ;;
BINDIR)
BINDIR="$val" ;;
SHAREDIR)
SHAREDIR="$val" ;;
SBINDIR)
SBINDIR="$val" ;;
INCLUDEDIR)
INCLUDEDIR="$val" ;;
PKG_CONFIG)
PKG_CONFIG="$val" ;;
*)
echo "$0: invalid key: $key" 1>&2
exit 1
esac
done
#----------------------------------------------------------------------
# Allow configure.local to override all variables, default settings,
# command-line arguments, and tested features, above.
# You PROBABLY DO NOT want to change this.
#----------------------------------------------------------------------
if [ -r ./configure.local ]; then
echo "configure.local: reading..." 1>&2
echo "configure.local: reading..." 1>&3
cat ./configure.local 1>&3
. ./configure.local
else
echo "configure.local: no (fully automatic configuration)" 1>&2
echo "configure.local: no (fully automatic configuration)" 1>&3
fi
echo 1>&3
#----------------------------------------------------------------------
# Infrastructure for running tests.
# These consists of a series of functions that will attempt to run the
# given test file and record its exit into a HAVE_xxx variable.
# You DO NOT want to change this.
#----------------------------------------------------------------------
COMP="${CC} ${CFLAGS} ${CPPFLAGS} -Wno-unused -Werror"
# Check whether this HAVE_ setting is manually overridden.
# If yes, use the override, if no, do not decide anything yet.
# Arguments: lower-case test name, manual value
ismanual() {
eval _manual=\${LDADD_${2}}
if [ -z "$_manual" ]; then
eval _manual=\${HAVE_${2}}
fi
[ -z "${_manual}" ] && return 1
echo "${1}: manual (${_manual})" 1>&2
echo "${1}: manual (${_manual})" 1>&3
echo 1>&3
return 0
}
# Run a single autoconfiguration test.
# In case of success, enable the feature.
# In case of failure, do not decide anything yet.
# Arguments: lower-case test name, upper-case test name, additional
# CFLAGS, additional LIBS.
singletest() {
extralib=""
pkgcfs=""
pkglib=""
cat 1>&3 << __HEREDOC__
${1}: testing...
${COMP} -DTEST_${2} ${3} -o test-${1} tests.c ${LDFLAGS} ${4}
__HEREDOC__
if ${COMP} -DTEST_${2} ${3} -o "test-${1}" tests.c ${LDFLAGS} ${4} 1>&3 2>&3; then
echo "${1}: ${CC} succeeded" 1>&3
else
if [ -n "${5}" ] ; then
echo "${1}: ${CC} failed with $? (retrying)" 1>&3
cat 1>&3 << __HEREDOC__
${1}: testing...
${COMP} -DTEST_${2} ${3} -o test-${1} tests.c ${LDFLAGS} ${5}
__HEREDOC__
if ${COMP} -DTEST_${2} ${3} -o "test-${1}" tests.c ${LDFLAGS} ${5} 1>&3 2>&3; then
echo "${1}: ${CC} succeeded" 1>&3
extralib="(with ${5})"
else
test -n "${PKG_CONFIG}" -a -n "${6}" && ${PKG_CONFIG} "$6"
if [ $? -eq 0 ]; then
echo "${1}: ${CC} failed with $? (retrying)" 1>&3
pkgcfs=$($PKG_CONFIG --cflags "${6}")
pkglib=$($PKG_CONFIG --libs "${6}")
cat 1>&3 << __HEREDOC__
${1}: testing...
${COMP} -DTEST_${2} ${3} ${pkgcfs} -o test-${1} tests.c ${LDFLAGS} ${pkglib}
__HEREDOC__
if ${COMP} -DTEST_${2} ${3} ${pkgcfs} -o test-${1} tests.c ${LDFLAGS} ${pkglib} 1>&3 2>&3; then
echo "${1}: ${CC} succeeded" 1>&3
extralib="(with ${pkgcfs} ${pkglib})"
else
echo "${1}: ${CC} failed with $?" 1>&3
echo 1>&3
return 1
fi
else
echo "${1}: ${CC} failed with $?" 1>&3
echo 1>&3
return 1
fi
fi
else
echo "${1}: ${CC} failed with $?" 1>&3
echo 1>&3
return 1
fi
fi
rm -f test-${1}.d
if [ -n "${pkgcfs}" -o -n "${pkglib}" ]; then
CFLAGS="${CFLAGS} ${pkgcfs}"
eval "LDADD_${2}=\"${pkglib}\""
elif [ -n "${extralib}" ]; then
eval "LDADD_${2}=\"${5}\""
elif [ -n "${4}" ]; then
eval "LDADD_${2}=\"${4}\""
fi
echo "${1}: yes ${extralib}" 1>&2
echo "${1}: yes ${extralib}" 1>&3
echo 1>&3
eval HAVE_${2}=1
rm "test-${1}"
return 0
}
# Run a complete autoconfiguration test, including the check for
# a manual override and disabling the feature on failure.
# Arguments: lower case name, upper case name, additional CFLAGS,
# additional LDADD, alternative LDADD, pkg-config name.
runtest() {
ismanual "${1}" "${2}" && return 0
singletest "${1}" "${2}" "${3}" "${4}" "${5}" "${6}" && return 0
echo "${1}: no" 1>&2
eval HAVE_${2}=0
return 1
}
#----------------------------------------------------------------------
# Begin running the tests themselves.
# All of your tests must be defined here.
# Please sort as the HAVE_xxxx values were defined.
# You WANT to change this.
# It consists of the following columns:
# runtest
# (1) test file
# (2) macro to set
# (3) argument to cc *before* -o
# (4) argument to cc *after*
# (5) alternative argument to cc *after*
# (6) name for pkg-config auto-discovery
#----------------------------------------------------------------------
if runtest -MMD _MMD -MMD; then
CFLAGS="${CFLAGS} -MMD"
CXXFLAGS="${CXXFLAGS} -MMD"
echo "adding -MMD to CFLAGS and CXXFLAGS" 1>&2
echo "adding -MMD to CFLAGS and CXXFLAGS" 1>&3
fi
cobj=""
runtest capsicum CAPSICUM || true
runtest endian_h ENDIAN_H || true
runtest explicit_bzero EXPLICIT_BZERO || cobj="$cojb explicit_bzero.o"
runtest flock FLOCK || cobj="$cobj flock.o"
runtest freezero FREEZERO || cobj="$cobj freezero.o"
runtest getdtablecount GETDTABLECOUNT || true
runtest getdtablesize GETDTABLESIZE || true
runtest getexecname GETEXECNAME || true
runtest getprogname GETPROGNAME || cobj="$cobj getprogname.o"
runtest INFTIM INFTIM || true
runtest landlock LANDLOCK || true
runtest lib_imsg LIB_IMSG "" "" "-lutil" || {
cobj="$cobj imsg-buffer.o imsg.o"
}
runtest lib_md LIB_MD "" "" "-lmd" "libmd" || {
cobj="$cobj sha1.o"
}
runtest lib_imsg LIB_IMSG "" "" "-lutil" || true
runtest lib_glib LIB_GLIB "" "" "-lgio-2.0 -lgobject-2.0 -lglib-2.0" "gio-2.0" || true
runtest lib_socket LIB_SOCKET "" "" "-lsocket -lnsl" || true
runtest lib_flac LIB_FLAC "" "" "-lFLAC" "flac" || true
runtest lib_mpg123 LIB_MPG123 "" "" "-lmpg123" "libmpg123" || true
runtest lib_opusfile LIB_OPUSFILE "" "" "-lopusfile" "opusfile" || true
runtest lib_vorbisfile LIB_VORBISFILE "" "" "-lvorbisfile" "vorbisfile" || true
runtest memmem MEMMEM || cobj="$cobj memmem.o"
runtest memset_s MEMSET_S || true
runtest optreset OPTRESET || cobj="$cobj getopt.o"
runtest PATH_MAX PATH_MAX || true
runtest pledge PLEDGE || true
runtest program_invocation_short_name PROGRAM_INVOCATION_SHORT_NAME || true
runtest PR_SET_NAME PR_SET_NAME || true
runtest recallocarray RECALLOCARRAY || cobj="$cobj recallocarray.o"
runtest sandbox_init SANDBOX_INIT "-Wno-deprecated" || true
runtest setproctitle SETPROCTITLE || cobj="$cobj setproctitle.o"
runtest SOCK_NONBLOCK SOCK_NONBLOCK || true
runtest static STATIC "" "-static" || true
runtest strlcat STRLCAT || cobj="$cobj strlcat.o"
runtest strlcpy STRLCPY || cobj="$cobj strlcpy.o"
runtest strtonum STRTONUM || cobj="$cobj strtonum.o"
runtest sys_queue SYS_QUEUE || true
runtest sys_endian_h SYS_ENDIAN_H || true
runtest sys_file SYS_FILE || true
runtest timespecsub TIMESPECSUB || cobj="$cobj timespecsub.o"
runtest __progname __PROGNAME || true
if [ $HAVE_LIB_IMSG = 0 ]; then
CFLAGS="${CFLAGS} -I\${TOPDIR}/compat/imsg"
fi
if [ $HAVE_LIB_MD -eq 0 ]; then
CFLAGS="${CFLAGS} -I\${TOPDIR}/compat/sha1"
fi
if [ $HAVE_SYS_QUEUE -eq 0 ]; then
CFLAGS="${CFLAGS} -I\${TOPDIR}/compat/queue"
fi
if [ $BACKEND = auto -o $BACKEND = sndio ]; then
runtest lib_sndio LIB_SNDIO "" "" "-lsndio" "sndio" || true
runtest sio_flush SIO_FLUSH "" "" "${LDADD_LIB_SNDIO}" || true
if [ "${HAVE_LIB_SNDIO}" -eq 0 ]; then
if [ $BACKEND = sndio ]; then
echo "Fatal: missing libsndio" 1>&2
echo "Fatal: missing libsndio" 1>&3
exit 1
fi
else
BACKEND=sndio
fi
else
HAVE_SIO_FLUSH=0
fi
if [ $BACKEND = auto -o $BACKEND = alsa ]; then
runtest lib_asound LIB_ASOUND "" "" "-lasound" "alsa" || true
if [ "${HAVE_LIB_ASOUND}" -eq 0 ]; then
if [ $BACKEND = alsa ]; then
echo "Fatal: missing libasound" 1>&2
echo "Fatal: missing libasound" 1>&3
exit 1
fi
fi
BACKEND=alsa
fi
if [ $BACKEND = auto -o $BACKEND = oss ]; then
if ! runtest oss OSS "" "" "" ""; then
if [ $BACKEND = oss ]; then
echo "Fatal: oss unavailable" 1>&2
echo "Fatal: oss unavailable" 1>&3
exit 1
fi
else
BACKEND=oss
fi
fi
if [ $BACKEND = auto -o $BACKEND = ao ]; then
runtest lib_ao LIB_AO "" "" "-lao" "ao" || true
if [ "${HAVE_LIB_AO}" -eq 0 ]; then
if [ $BACKEND = ao ]; then
echo "Fatal: missing libao" 1>&2
echo "Fatal: missing libao" 1>&3
else
echo "Fatal: missing libasound, libao or libsndio" 1>&2
echo "Fatal: missing libasound, libao or libsndio" 1>&3
fi
exit 1
fi
BACKEND=ao
runtest pthread LIB_PTHREAD "" "-pthread" || true
if [ "${HAVE_LIB_PTHREAD}" -eq 0 ]; then
echo "Fatal: missing pthread" 1>&2
echo "Fatal: missing pthread" 1>&3
exit 1
fi
CFLAGS="${CFLAGS} -pthread"
fi
if [ $BACKEND = auto -o $BACKEND = oboe ]; then
runtest pthread LIB_PTHREAD "" "-pthread" || true
if [ "${HAVE_LIB_PTHREAD}" -eq 0 ]; then
echo "Fatal: missing pthread" 1>&2
echo "Fatal: missing pthread" 1>&3
exit 1
fi
CFLAGS="${CFLAGS} -pthread"
LDADD="${LDADD} -lstdc++ -lm -llog -lOpenSLES"
fi
if [ "${HAVE_LIB_FLAC}" -eq 0 -o \
"${HAVE_LIB_MPG123}" -eq 0 -o \
"${HAVE_LIB_OPUSFILE}" -eq 0 -o \
"${HAVE_LIB_VORBISFILE}" -eq 0 ]; then
echo "Fatal: missing required audio libraries" 1>&2
echo "Fatal: missing required audio libraries" 1>&3
exit 1
fi
#----------------------------------------------------------------------
# Output writing: generate the config.h file.
# This file contains all of the HAVE_xxxx variables necessary for
# compiling your source.
# You must include "config.h" BEFORE any other variables.
# You WANT to change this.
#----------------------------------------------------------------------
exec > config.h
# Start with prologue.
cat << __HEREDOC__
#ifndef OCONFIGURE_CONFIG_H
#define OCONFIGURE_CONFIG_H
/* the oboe (android) backend uses c++ */
#ifndef __ANDROID__
#ifdef __cplusplus
# error "Do not use C++: this is a C application."
#endif
#endif /* __ANDROID__ */
#if !defined(__GNUC__) || (__GNUC__ < 4)
# define __attribute__(x)
#endif
#if defined(__linux__) || defined(__MINT__)
# ifndef __ANDROID__
# define _GNU_SOURCE /* memmem, memrchr, setresuid... */
# endif
# ifndef _DEFAULT_SOURCE
# define _DEFAULT_SOURCE /* le32toh, crypt, ... */
# endif
# ifndef _XOPEN_SOURCE
# define _XOPEN_SOURCE
# endif
#endif
#if defined(__NetBSD__)
# define _OPENBSD_SOURCE /* reallocarray, etc. */
#endif
#if defined(__sun)
# ifndef _XOPEN_SOURCE /* SunOS already defines */
# define _XOPEN_SOURCE /* XPGx */
# endif
# define _XOPEN_SOURCE_EXTENDED 1 /* XPG4v2 */
# ifndef __EXTENSIONS__ /* SunOS already defines */
# define __EXTENSIONS__ /* reallocarray, etc. */
# endif
#endif
#if !defined(__BEGIN_DECLS)
# define __BEGIN_DECLS
#endif
#if !defined(__END_DECLS)
# define __END_DECLS
#endif
__HEREDOC__
cat << __HEREDOC__
/*
* Results of configuration feature-testing.
*/
#define HAVE_CAPSICUM ${HAVE_CAPSICUM}
#define HAVE_ENDIAN_H ${HAVE_ENDIAN_H}
#define HAVE_EXPLICIT_BZERO ${HAVE_EXPLICIT_BZERO}
#define HAVE_FLOCK ${HAVE_FLOCK}
#define HAVE_FREEZERO ${HAVE_FREEZERO}
#define HAVE_GETDTABLECOUNT ${HAVE_GETDTABLECOUNT}
#define HAVE_GETDTABLESIZE ${HAVE_GETDTABLESIZE}
#define HAVE_GETEXECNAME ${HAVE_GETEXECNAME}
#define HAVE_GETPROGNAME ${HAVE_GETPROGNAME}
#define HAVE_LIB_IMSG ${HAVE_LIB_IMSG}
#define HAVE_INFTIM ${HAVE_INFTIM}
#define HAVE_LANDLOCK ${HAVE_LANDLOCK}
#define HAVE_MEMMEM ${HAVE_MEMMEM}
#define HAVE_MEMSET_S ${HAVE_MEMSET_S}
#define HAVE_OPTRESET ${HAVE_OPTRESET}
#define HAVE_PATH_MAX ${HAVE_PATH_MAX}
#define HAVE_PLEDGE ${HAVE_PLEDGE}
#define HAVE_PROGRAM_INVOCATION_SHORT_NAME ${HAVE_PROGRAM_INVOCATION_SHORT_NAME}
#define HAVE_PR_SET_NAME ${HAVE_PR_SET_NAME}
#define HAVE_RECALLOCARRAY ${HAVE_RECALLOCARRAY}
#define HAVE_SANDBOX_INIT ${HAVE_SANDBOX_INIT}
#define HAVE_SETPROCTITLE ${HAVE_SETPROCTITLE}
#define HAVE_SIO_FLUSH ${HAVE_SIO_FLUSH}
#define HAVE_SOCK_NONBLOCK ${HAVE_SOCK_NONBLOCK}
#define HAVE_STRLCAT ${HAVE_STRLCAT}
#define HAVE_STRLCPY ${HAVE_STRLCPY}
#define HAVE_STRTONUM ${HAVE_STRTONUM}
#define HAVE_SYS_ENDIAN_H ${HAVE_SYS_ENDIAN_H}
#define HAVE_SYS_FILE ${HAVE_SYS_FILE}
#define HAVE_SYS_QUEUE ${HAVE_SYS_QUEUE}
#define HAVE_TIMESPECSUB ${HAVE_TIMESPECSUB}
#define HAVE___PROGNAME ${HAVE___PROGNAME}
__HEREDOC__
# This is just for size_t, mode_t, and dev_t.
# Most of these functions, in the real world, pull in <string.h> or
# something that pulls in support for size_t.
# Our function declarations are standalone, so specify them here.
if [ ${HAVE_MEMMEM} -eq 0 -o \
${HAVE_RECALLOCARRAY} -eq 0 -o \
${HAVE_STRLCAT} -eq 0 -o \
${HAVE_STRLCPY} -eq 0 ]
then
echo "#include <sys/types.h> /* size_t, mode_t, dev_t */ "
echo
fi
if [ ${HAVE_FLOCK} -eq 0 ]; then
if [ ${HAVE_SYS_FILE} -eq 0 ]; then
HAVE_FLOCK=1
echo "#include <sys/file.h>"
echo
else
echo "int flock(int, int);"
echo "#define LOCK_SH 0x1"
echo "#define LOCK_EX 0x2"
echo "#define LOCK_NB 0x4"
echo
fi
fi
if [ ${HAVE_PLEDGE} -eq 0 ]; then
echo "#define pledge(p, e) (0)"
echo
else
echo "#include <unistd.h>"
echo
fi
if [ ${HAVE_PATH_MAX} -eq 0 ]
then
echo "#define PATH_MAX 4096"
echo
fi
if [ ${HAVE_INFTIM} -eq 0 ]
then
echo "#define INFTIM (-1) /* poll.h */"
echo
fi
# Now we do our function declarations for missing functions.
[ ${HAVE_EXPLICIT_BZERO} -eq 0 ] && \
cat << __HEREDOC__
/*
* Compatibility for explicit_bzero(3).
*/
extern void explicit_bzero(void *, size_t);
__HEREDOC__
[ ${HAVE_FREEZERO} -eq 0 ] && \
cat << __HEREDOC__
/*
* Compatibility for freezero(3).
*/
extern void freezero(void *, size_t);
__HEREDOC__
[ ${HAVE_MEMMEM} -eq 0 ] && \
cat << __HEREDOC__
/*
* Compatibility for memmem(3).
*/
void *memmem(const void *, size_t, const void *, size_t);
__HEREDOC__
[ ${HAVE_GETPROGNAME} -eq 0 ] && \
cat << __HEREDOC__
/*
* Compatibility for getprogname(3).
*/
extern const char *getprogname(void);
__HEREDOC__
[ ${HAVE_RECALLOCARRAY} -eq 0 ] && \
cat << __HEREDOC__
/*
* Compatibility for recallocarray(3).
*/
extern void *recallocarray(void *, size_t, size_t, size_t);
__HEREDOC__
[ ${HAVE_SETPROCTITLE} -eq 0 ] && \
cat << __HEREDOC__
/*
* Compatibility for setproctitle(3).
*/
extern void setproctitle(const char *, ...);
__HEREDOC__
[ ${HAVE_STRLCAT} -eq 0 ] && \
cat << __HEREDOC__
/*
* Compatibility for strlcat(3).
*/
extern size_t strlcat(char *, const char *, size_t);
__HEREDOC__
[ ${HAVE_STRLCPY} -eq 0 ] && \
cat << __HEREDOC__
/*
* Compatibility for strlcpy(3).
*/
extern size_t strlcpy(char *, const char *, size_t);
__HEREDOC__
[ ${HAVE_STRTONUM} -eq 0 ] && \
cat << __HEREDOC__
/*
* Compatibility for strotnum(3).
*/
extern long long strtonum(const char *, long long, long long, const char **);
__HEREDOC__
cat << __HEREDOC__
#ifndef __dead
# define __dead __attribute__((noreturn))
#endif
#if !HAVE_SIO_FLUSH
#define sio_flush(hdl) (sio_stop(hdl))
#endif
#endif /*!OCONFIGURE_CONFIG_H*/
__HEREDOC__
echo "config.h: written" 1>&2
echo "config.h: written" 1>&3
#----------------------------------------------------------------------
# Now we go to generate our config.mk.
# This file is simply a bunch of Makefile variables.
# They'll work in both GNUmakefile and BSDmakefile.
# You MIGHT want to change this.
#----------------------------------------------------------------------
exec > config.mk