-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure
executable file
·4260 lines (3565 loc) · 85.4 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 2009-2024
# Kaz Kylheku <kaz@kylheku.com>
# Vancouver, Canada
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# The #!/bin/sh might be some legacy piece of junk, not even up to 1990 POSIX.2
# spec. So the first step is to look for a better shell in some known places
# and re-execute ourselves with that interpreter, unless there is evidence we
# are already running in a usable shell.
#
while true ; do
# we have already recursed into a desired shell
if test "x$txr_shell" != x ; then
break
fi
# If PS4 is set to "+ ", we are probably running on a good shell: GNU
# Bash sets it like this, as does late-model Ash, Dash, Korn Shell 93,
# and the XPG shell on Solaris 10. Zsh sets PS4 to "+ " this in its
# POSIX mode, which handles our script, but to some other value in its
# regular mode which doesn't handle our script.
if test "x$PS4" = "x+ " ; then
break
fi
# Slow path: find a suitable shell.
# First choice is $CONFIG_SHELL, a convention from GNU Autoconf.
for shell in "$CONFIG_SHELL" \
/bin/bash /usr/bin/bash /usr/local/bin/bash \
/bin/dash /usr/bin/dash /usr/local/bin/dash \
/bin/ksh /usr/bin/ksh /usr/local/bin/ksh \
/usr/xpg4/bin/sh
do
if test -x "$shell" ; then
txr_shell=$shell
break
fi
done
if test "x$txr_shell" = x ; then
echo "No known modern shell found; sticking with this one."
break;
fi
# we export txr_shell because it acts as a flag indicating the recursed case
export txr_shell
echo "Re-executing using $txr_shell"
exec "$txr_shell" $0 ${@+"$@"}
break
done
set -u
if [ -n "${txr_shell+y}" ] ; then
printf "Now running in %s shell\n" $txr_shell
else
printf "Running in original shell.\n"
fi
#
# Save command line in a way that can be re-run.
#
cmdline=
for arg in "$0" ${@+"$@"} ; do
[ -n "$cmdline" ] && cmdline="$cmdline "
case $arg in
*"'"* )
case $arg in
*[\"\$\\]* )
cmdline="$cmdline'$(printf "%s" "$arg" | sed -e "s/'/'\\\\''/g")'"
;;
* )
cmdline="$cmdline\"$arg\""
;;
esac
;;
*'"'* | *['$*?[(){};&|<>#']* | '~'* )
cmdline="$cmdline'$arg'"
;;
*' '* | *' '* )
cmdline="$cmdline\"$arg\""
;;
* )
cmdline="$cmdline$arg"
;;
esac
done
#
# Use the POSIX locale to suppress monkey business in the utilities
#
export LC_ALL="C"
export LANG="C"
#
# Establish default values for any variables that are not specified
# on the command line. The default derivations from prefix are in
# Make syntax. They go verbatim into the generated config.make.
# This way they can be overridden more flexibly at make time.
#
#
# non-config
#
help=
#
# config
#
build_in_srcdir=
prefix='/usr/local'
install_prefix=
bindir='bin'
datadir='share/txr'
mandir='share/man'
maintainer=
parallelmake=
parallelmake_given=
make=
cross=
compiler_prefix=
ccname='$(CC)'
cc='$(cross)$(compiler_prefix)$(ccname)'
gcc_version=
broken128=
do_nopie=y
cplusplus=
intptr=
exe=
tool_prefix=
lexname_given=
lexname=
lex_given=
lex='$(cross)$(tool_prefix)$(lexname)'
yaccname_given=
yaccname='' # test tries $(YACC) first
yacc='$(cross)$(tool_prefix)$(yaccname)'
yacc_given=
nm='$(cross)$(tool_prefix)nm'
opt_flags='-O2 -fno-stack-protector'
lang_flags='-D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200112 -D_GNU_SOURCE'
diag_flags="-Wall -Wextra -Werror=implicit-function-declaration \
-Werror=missing-prototypes -Werror=strict-prototypes \
-Werror=old-style-definition"
diag_flags_given=
debug_flags=-g
debug_only_flags=-DTXR_DEBUG
debug_also=
inline=
platform_cflags=
remove_flags=
lex_dbg_flags=
conf_ldflags=
conf_ldlibs=
platform_ldflags=
platform_ldlibs=
txr_dbg_opts=--gc-debug
valgrind=
extra_debugging=
debug_support=y
have_zlib=
big_time=
big_time_given=
gen_gc=y
small_mem=
full_repl=y
have_dbl_decimal_dig=
have_unistd=
have_sys_stat=
have_sys_types=
have_sys_time=
have_strerror_r=
have_makedev=
have_syslog=
have_glob=
have_ftw=
have_windows_h=
have_windres=
have_posix_sigs=
have_sockets=
have_git=
have_ubsan=
have_pwuid=
have_grgid=
have_alloca=
have_termios=
have_winsize=
termios_define=
have_pkgconfig=
have_malloc_usable_size=
libffi_cflags=
darwin_target=
solaris_target=
build_id=
android_target=
nan_boxing=
nan_boxing_given=
#
# Parse configuration variables
#
while [ $# -gt 0 ] ; do
case $1 in
--no-* | --no_* )
var=${1#--no?}
val=
;;
--*=* )
var=${1%%=*}
var=${var#--}
val=${1#*=}
;;
--*= )
var=${1%%=*}
var=${var#--}
val=
;; --* )
var=${1#--}
val=y
;;
*=* )
var=${1%%=*}
val=${1#*=}
;;
*= )
var=${1%%=*}
val=
;;
* )
printf "$0: '$1' doesn't look like a configuration variable assignment\n"
printf "$0: use --help to get help\n"
exit 1
esac
var=$(echo "$var" | tr - _)
if ! echo $var | grep -q -E '^[A-Za-z_][A-Za-z0-9_]*$' ; then
printf "$0: '$var' isn't a proper configuration variable name\n"
exit 1
fi
eval "var_exists=\${$var+y}"
if [ "$var_exists" != y ] ; then
printf "$0: nonexistent option: '%s'\n" "$1"
exit 1
fi
eval "$var='$(printf "%s" "$val" | sed -e "s/'/'\\\\''/g")'"
eval "var_given_exists=\${${var}_given+y}"
if [ "$var_given_exists" = y ] ; then
eval "${var}_given=y"
fi
shift
done
#
# If --help was given (or --help=<nonempty> or help=<nonempty>) then
# print help and exit. The termination status is failed, to indicate
# that configuration was not done.
#
if [ -n "$help" ] ; then
cat <<!
usage: $0 { variable=value }*
The configure script prepares txr program for compilation and installation.
To configure a program means to establish the values of make variables
which influence how the software is built, where it is installed.
These variables can also influence what features are present in the
software, and can determine various defaults for those behaviors which are
dynamically configurable when the software is run.
Configuration variables are recorded in a file called config.make.
This is a GNU makefile, and consequently uses the GNU make syntax. It is
included in the main Makefile by an include statement.
The configuration command line is recorded in a script called reconfigure.
To re-run the configure script again with the same parameters, without
repeating those parameters, run the ./reconfigure script.
The configure script is flexible. It allows variables to be entered in any
of these forms:
Canonical:
variable=value Defines the given variable as having the given value.
variable= Defines the variable as having an empty value.
An empty value serves as Boolean false.
Long-option style:
--variable=value Same as 'variable=value', but resembles a GNU-style
long option.
--variable Same as 'variable=y'.
--no-variable Same as 'variable='.
No variables are required. The configure script establishes default values
for any variables which are needed by the build, but which are not specified
on the command line.
After running $0, check that the config.make contents are sane.
The following variables are supported. Note that make variable syntax may
be used in paths. Default values are shown in [square brackets].
Variables are case-sensitive, but underscores and dashes are interchangeable.
maintainer [$maintainer]
This a Boolean variable. If set to 'y', then it it specifies maintainer
mode, otherwise the build is configured for user mode. In maintainer mode,
the scanner and parser generator tools are expected to be available.
In user mode, the shipped parser and scanner are used. Changes to
the parser.l and parser.y files will have no effect. In maintainer mode,
also, c90 is used if compiling the code as C.
parallelmake [$parallelmake]
Boolean. If set to 'y', it specifies that parallel building with make -j
is permitted. Otherwise the Makefile asserts no parallelism with
a .NOTOPARALLEL: directive. The above maintainer mode also implies
parallel building being permited.
prefix [$prefix]
Specifies root directory where the software will ultimately be installed and
run from.
install-prefix [$install_prefix]
Specifies an extra path prefix that will be prepended to all paths during
installation, which allows the software to be installed in a temporary
directory for packaging. This variable becomes the \$(DESTDIR)
variable in the config.make makefile.
bindir [$bindir]
Specifies where the program executable will be installed, as a relative
path from the prefix.
datadir [$datadir]
Specifies where read-only program data is to be stored, as a relative
path from the prefix.
mandir [$mandir]
Specifies the directory where to install man pages, as a relative
path from the prefix.
cross [$cross]
Specifies the root of a cross-compiling toolchain.
This becomes the \$(cross) variable in the config.make makefile, and by
default will be added as a prefix to all of the toolchain commands.
It should include the trailing slash, unless the \$compiler_prefix
and \$tool_prefix variables take care of this by providing a leading slash.
If this variable is set, ccname should also be set; the default
ccname doesn't make sense in that case.
compiler-prefix [$compiler_prefix]
Specifies a prefix to be added to the compiler command.
This is added to the \$(cross) prefix. This can include some path name
components, and a name fragment. For instance, if
\$cross is "/cross/toolchain/" and \$compiler_prefix is
"bin/mips-linux-" then the compiler command, unless otherwise
specified, will be "/cross/toolchain/bin/mips-linux-gcc".
If this variable is set, ccname should also be set; the default
ccname doesn't make sense in that case.
ccname [$ccname]
Specifies just the name of the compiler front-end program, without the path.
The following variable, cc, specifies the full name.
The default value is the \$(CC) predefined make variable.
cc [$cc]
Specifies the name of the toolchain front-end driver command to use for
compiling C sources to object files, and for linking object files to
executables. This becomes the TXR_CC variable in config.make.
Note that cross and compiler_prefix are empty by default and
and so this expands to just ccname. Note also that if cc is specified in a
way that doesn't include \$(ccname), then that variable is not used,
even though it continues to be defined in config.make.
intptr [$intptr]
Specifies the name of the C integer type wide enough such that a pointer
value can be converted to it. If this is blank, the configure script
will try to auto detect it.
inline [$inline]
Specifies the syntax for defining an inline function, in such
a way that the function definition can be included into multiple
translation units without clashes.
If blank, an attempt is made to auto-detect this which
falls back on "static".
tool-prefix [$tool_prefix]
Specifies a prefix to be added to tool commands other than the
compiler, like lex and yacc, in addition to \$cross.
lexname [$lexname]
Specifies just the name of the lex program without the path.
The following variable, lex, specifies the full name.
If blank, the choice lex program will be auto-detected.
lex [$lex]
Specifies the program to use for compiling lex scanners to C.
This must be compatible with GNU flex, since flex extensions are used.
yaccname [$yaccname]
Specifies just the name of the yacc program without the path.
The following variable, yacc, specifies the full name.
If blank, the choice yacc program will be auto-detected.
yacc [$yacc]
Specifies the program to use for compiling yacc scanners to C.
nm [$nm]
Specifies the nm program for dumping symbols from an object file.
opt-flags [$opt_flags]
Specifies optimization flags to use for compiling and linking
C sources. Note that these are in addition to any CFLAGS
passed in the environment or on the make command line.
lang-flags [$lang_flags]
Specifies compiler flags which control the C language dialect and standard
conformance in the language and header files. The txr program is written
in C90, and requires POSIX and possibly other extensions.
diag-flags [$diag_flags]
Specifies compiler flags for obtaining extra diagnostics.
debug-flags [$debug_flags]
Specifies flags for requesting that debugging information be
retained in the compile and link. These flags are applied
to optimized and debugging targets.
debug-only-flags [$debug_only_flags]
Specifies compiler flags which only apply to debugging
targets.
debug-also [$debug_also]
Specifies that a debugging version of TXR is to be built at the
same time. This means that "make" will always update two sets
of object files compiled with different optimization flags,
and produce two binaries: txr and txr-dbg.
platform-cflags [$platform_cflags]
Specify additional compiler flags for anything else, such as CPU tuning,
target ABI selection, code generation options, et cetera.
platform-ldflags [$platform_ldflags]
Specify additional linker flags for anything else, such as hardening,
linking as needed, et cetera. Flags specifying libraries (-l options)
should be specified using platform-ldlibs instead. Note that these are in
addition to any LDFLAGS from the environment or make command line.
platform-ldlibs [$platform_ldlibs]
Specify additional linker flags for just libraries (-l options)
linking as needed, et cetera. Note that these are in addition to
any LDLIBS from the environment or make command line.
remove-flags [$remove_flags]
This is a negative otpion. Any flags mentioned in this variable
will be removed from any of the other compiler flags options above.
The flags may contain GNU Make patterns.
lex-dbg-flags [$lex_dbg_flags]
Specifies debug flags to be passed to lex, perhaps to generate a debugging
scanner.
txr-dbg-opts [$txr_dbg_opts]
Specifies debug flags to pass to the txr program during the execution
of "make tests".
valgrind [$valgrind]
Use --valgrind to to build txr with valgrind integration.
Valgrind integration means that when the program is running under valgrind,
it advises valgrind about stack memory locations accessed by the garbage
collector, to suppress diagnostics about uninitialized accesses.
extra-debugging [$extra_debugging]
Use --extra_debugging to configure some additional debugging features,
which incur a run-time penalty.
big-time [$big_time]
Systems whose time_t type is 32 bits wide have a Y2038 problem.
On some of these systems, it is possible to specify some compiler option
to make time_t 64 bits wide. If this configure script detects this
situation: that time is 32 bits, but may be switched to 64, it
refuses to run. You must explicitly choose what will happen. Use
--big-time to choose the 64 bit time, or else --no-big-time.
If time_t is 64 bits by default then specifying --no-big-time is
erroneous. Downgrading from a 64 bit default is not supported by
this script, even if it is possible; if that is necessary, use external
options vial EXTRA_FLAGS or CFLAGS.
Specifying --big-time is erroneous if time_t is 32 bits, and there is no way
to enable 64.
gen-gc [$gen_gc]
Use --no-gen-gc to disable the generational garbage collector which
is now enabled by default.
When disabled, the garbage collector performs a full object traversal and
sweep on each garbage collection.
small-mem [$small_mem]
Use --small-mem to make the memory management use less memory,
for embedded systems with less RAM, at the possible cost of some
run-time penalty. Objects are allocated in smaller blocks,
and certain global book-keeping arrays in the generational garbage
collector are smaller, resulting in more frequent collections.
full-repl [$full_repl]
Support the full listener with editing features. If this is disabled,
only the plain-mode listener is available. Failure to detect the
presence of termios at build configuration time time also disables it.
build-id [$build_id]
This option specifies the value of the build_id make variable.
The argument is GNU make syntax which calculates a string
that is inserted into the TXR executable. The string is reproduced
by reproduced using the txr --build-id. The default is that there
no build-id, and the --build-id option produces empty output.
If the argument value "git" is given, then the value is replaced
by syntax which takes the value of the output of the command
"git describe --tags --dirty",
executed in the source directory. This is recalculated each time
the txr.c source file is compiled.
The build_id variable can be overridden from the make command line.
nan-boxing [$nan_boxing]
This option specifies whether NaN-boxing representation is used
for Lisp values. This is good for floating-point work because
floating-point values do not require heap allocation.
It is enabled automatically on targets with 64 bit pointers,
and is not supported on targets with 32 bit pointers.
Disable it to select the regular tagged pointer representation.
!
exit 1
fi
#
# Tentatively save configuration in config.log
#
rm -rf reconfigure
cat > reconfigure <<!
#!/bin/sh
#
# Configured on $(date) using:
$cmdline "\$@"
# The above did not complete.
!
chmod a+x reconfigure
#
# Variables are read, --help wasn't given, so let's configure!
#
txr_ver=296
#
# The all important banner.
#
if [ $txr_ver ] ; then
banner_text=$(printf " Configuring txr %s " "$txr_ver")
else
banner_text=" Configuring txr (unknown version) "
fi
banner_box=$(printf "%.${#banner_text}s\n" \
"-------------------------------------------")
printf "+%s+\n|%s|\n+%s+\n" $banner_box "$banner_text" $banner_box
#
# From here on in, we bail if any command fails.
#
set -e
#
# Check for GNU make
#
printf "Checking for GNU Make ... "
if [ -z "$make" ] ; then
for make in make gmake ; do
output=$($make --version 2> /dev/null) || true
set -- $output
if [ $# -lt 3 ] || [ $1 != "GNU" -o $2 != "Make" ] ; then
continue
fi
break
done
fi
if [ $# -lt 3 ] ; then
printf "missing\n"
exit 1
fi
make_version=$3
save_ifs=$IFS ; IFS=. ; set -- $make_version ; IFS=$save_ifs
if [ $1 -lt 3 -o \( $1 -eq 3 -a $2 -lt 81 \) ] ; then
printf "too old (%s found, 3.81 or newer needed)\n" $make_version
exit 1
else
printf "yes (%s found)\n" $make_version
fi
#
# Verify sanity of --prefix and other directories.
#
printf "Checking installation paths:\n"
for name in bindir datadir mandir; do
eval path="\$install_prefix\$prefix/\${$name}"
printf "\$(install_prefix)\$(prefix)/\$%s=%s ... " $name "$path"
test_access=y
case "$path" in
" "* | *" "* | *" " )
printf "incorrect (contains spaces)\n"
exit 1
;;
-* )
printf "incorrect (resembles a command option)\n"
exit 1
;;
*'$('* )
# It's a make expression; can't test it
test_access=
;;
/* )
;;
* )
printf "incorrect (must be absolute path)\n"
exit 1
;;
esac
if [ $test_access ] ; then
test_prefix=$path
while true ; do
if [ -e $test_prefix ] ; then
if [ ! -d $test_prefix ] ; then
printf "incorrect ('%s' is not a directory)!\n" $test_prefix
exit 1
fi
if [ ! -w $test_prefix ] ; then
printf "okay\n (but no write access to '%s'\n" $test_prefix
printf " so '$make install' will require root privileges)\n"
else
printf "okay\n"
fi
break
fi
test_prefix=$(dirname $test_prefix)
done
else
printf "okay\n (make variable derivation)\n"
fi
done
#
# First, we have to figure out whether we are configured straight
# in the source directory, or whether we are in a separate build directory.
# In the latter case, we set up a symbolic link to the Makefile.
#
source_dir="$(dirname $0)"
#
# If building in a separate directory, establish top_srcdir as
# an absolute path to the source directory, with a trailing slash.
# Otherwise top_srcdir is blank.
#
if [ "$source_dir" = "." ] ; then
top_srcdir=""
else
top_srcdir="$(cd "$source_dir" ; pwd -P)"/
fi
printf "Checking source directory \"%s\" ... " "$top_srcdir"
lndir()
{
fromdir=$1
todir=${2%/}
abs=${fromdir%${fromdir#/}}
find "$fromdir" \( -type f -o -type d \) | while read frompath ; do
topath=${frompath#$fromdir}
topath=${topath#/}
[ -n "$topath" ] || topath="."
if [ -f "$frompath" ] ; then
if [ $abs ] ; then
ln -sf "$frompath" "$todir/$topath"
else
old_IFS=$IFS
IFS=/
set -- $todir/$topath
IFS=$old_IFS
dots=""
while [ $# -gt 0 ] ; do
[ $1 = "." ] || dots="$dots../"
shift
done
rm -f "$todir/$topath"
ln -sf "$dots$frompath" "$todir/$topath"
fi
else
mkdir -p "$todir/$topath"
fi
done
}
inode()
{
set -- $(ls -idL "$1")
printf "%s\n" "$1"
}
case "$top_srcdir" in
" "* | *" "* | *" " )
printf "bad (contains spaces)\n"
exit 1
;;
* )
printf "okay\n"
;;
esac
if [ $(inode "$source_dir") != $(inode ".") ] ; then
for x in Makefile ; do
printf "Symlinking %s -> $source_dir/%s\n" $x $x
ln -sf "$source_dir/$x" .
done
for x in stdlib tests; do
printf "Tree symlinking %s -> $source_dir/%s\n" $x $x
lndir $source_dir/$x $x
done
else
printf "** Note: it's recommended to build in a separate directory\n"
build_in_srcdir=y
fi
printf "Are we using a C++ compiler ... "
case $ccname in
*'++' | *'$(CXX)' )
cplusplus=y
;;
esac
case $cc in
*'++' | '$(CXX)' )
cplusplus=y
;;
esac
if [ $cplusplus ] ; then
printf "yes\n"
set -- $diag_flags
diag_flags=''
for flag in "$@" ; do
case $flag in
*=declaration-after-statement | \
*=implicit-function-declaration | \
*=missing-prototypes | \
*=old-style-* | \
*=strict-prototypes )
continue
;;
esac
diag_flags="$diag_flags $flag"
done
diag_flags=${diag_flags# }
lang_flags="-std=c++98 $lang_flags"
else
printf "no\n"
if [ $maintainer ] ; then
lang_flags="-ansi $lang_flags"
else
lang_flags="-std=c99 $lang_flags"
fi
fi
gen_config_make()
{
cat > config.make <<!
#
# Make include file automatically generated by $0.
# Changes to this file are lost when the above is re-run.
#
${txr_shell:+# Shell used by make for running recipes; this
# is the as the shell we chose for the configure script,
# derived from the txr_shell variable.
SHELL := $txr_shell}
txr_ver := $txr_ver
# is this configuration in maintainer mode
maintainer := $maintainer
# absolute path to source code directory or blank if
# not building in a separate directory
top_srcdir := $top_srcdir
# build directory is top_srcdir
build_in_srcdir = $build_in_srcdir
# ultimate installation prefix, where the
# application will be run.
prefix := $prefix
# packaging installation prefix, where the
# application may be temporarily installed
# for creating pre-compiled packages,
# e.g. for an operating system distro.
DESTDIR := $install_prefix
# relative path from prefix to datadir
bindir_rel := $bindir
# executable directory
bindir = \$(prefix)/\$(bindir_rel)
# read-only data directory
datadir = \$(prefix)/$datadir
# man page directory
mandir = \$(prefix)/$mandir
# cross compiler toolchain root directory
cross := $cross
# compiler name
ccname = $ccname
# name of lex program
lexname = $lexname
# name of yacc program
yaccname = $yaccname
# prefix for compiler command
compiler_prefix := $compiler_prefix
# prefix for non-compiler toolchain commands
tool_prefix := $tool_prefix
# build_id
$(gitcmd='git describe --tags --dirty';
if [ "$build_id" = "git" ] ; then
if [ $build_in_srcdir ] ; then
printf 'build_id ?= $(shell %s)\n' "$gitcmd"
else
printf 'build_id ?= $(shell cd $(top_srcdir); %s)\n' "$gitcmd"
fi
else
printf 'build_id = %s\n' "$build_id"
fi)
build_id_exp := \$(build_id)
# do we compile in syslog support?
have_syslog := $have_syslog
# do we compile in glob support?
have_glob := $have_glob
# do we compile in ftwsupport?
have_ftw := $have_ftw
# do we modern posix signal handling?
have_posix_sigs := $have_posix_sigs
have_sockets := $have_sockets
have_termios := $have_termios
termios_define := $termios_define
# do we compile in debug support?
debug_support := $debug_support
# do we compile in zlib?
have_zlib := $have_zlib
# allow parallel make?
parallelmake := $parallelmake
# EXE suffix
EXE := $exe
have_git := $have_git
have_ubsan := $have_ubsan
add_win_res := $([ -n "$have_windows_h" -a -n "$have_windres" ] && echo "y")
TXR_CC := $cc
TXR_LEX := $lex
TXR_YACC := $yacc
TXR_NM := $nm
PROG := txr
OPT_FLAGS := $opt_flags
LANG_FLAGS := $lang_flags
DIAG_FLAGS := $diag_flags
DBG_FLAGS := $debug_flags
DBG_ONLY_FLAGS := $debug_only_flags
BUILD_TARGETS := $(if [ $debug_also ] ; then
echo '$(PROG) $(PROG)-dbg'
else
echo '$(PROG)'; fi)
PLATFORM_CFLAGS := $platform_cflags
PLATFORM_LDFLAGS := $platform_ldflags
PLATFORM_LDLIBS := $platform_ldlibs
CONF_LDFLAGS := $conf_ldflags