-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkconfigure.pl
executable file
·2268 lines (2081 loc) · 47.3 KB
/
mkconfigure.pl
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
#!%PERL% -I%PREFIX%/share/bsdbuild
#
# Copyright (c) 2001-2024 Julien Nadeau Carriere <vedge@csoft.net>
# 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. Redistribution 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 AUTHOR 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.
#
use BSDBuild::Core;
use BSDBuild::Builtins;
use Getopt::Long;
my $Verbose = 0;
my %Fns = (
'package' => \&package,
'version' => \&version,
'release' => \&release,
'register' => \®ister,
'register_env_var' => \®ister_env_var,
'register_section' => \®ister_section,
'test' => \&test,
'check' => \&test,
'require' => \&test_require,
'test_dir' => \&test_dir,
'disable' => \&disable,
'mdefine' => \&mdefine,
'mappend' => \&mappend,
'hdefine' => \&hdefine,
'hdefine_unquoted' => \&hdefine_unquoted,
'hundef' => \&hundef,
'hdefine_if' => \&hdefine_if,
'hundef_if' => \&hundef_if,
'ada_option' => \&ada_option,
'ada_bflag' => \&ada_bflag,
'c_define' => \&c_define,
'cxx_define' => \&cxx_define,
'c_incdir' => \&c_incdir,
'cxx_incdir' => \&cxx_incdir,
'c_incprep' => \&c_incprep,
'c_libdir' => \&c_libdir,
'c_option' => \&c_option,
'cxx_option' => \&cxx_option,
'ld_option' => \&ld_option,
'c_extra_warnings' => \&c_extra_warnings, # Deprecated
'c_no_secure_warnings' => \&c_no_secure_warnings, # Deprecated
'c_incdir_config' => \&c_incdir_config,
'c_include_config' => \&c_include_config,
'config_cache' => \&config_cache,
'config_script' => \&config_script,
'pkgconfig_module' => \&pkgconfig_module,
'pkgconfig_mod' => \&pkgconfig_module,
'config_guess' => \&config_guess,
'success_fn' => \&success_fn,
'check_header' => \&check_c_header,
'check_header_opts' => \&check_c_header_opts,
'check_c_header' => \&check_c_header,
'check_c_header_opts' => \&check_c_header_opts,
'check_cxx_header' => \&check_cxx_header,
'check_cxx_header_opts' => \&check_cxx_header_opts,
'check_func' => \&check_c_func,
'check_func_opts' => \&check_c_func_opts,
'check_c_func' => \&check_c_func,
'check_c_func_opts' => \&check_c_func_opts,
'check_cxx_func' => \&check_cxx_func,
'check_cxx_func_opts' => \&check_cxx_func_opts,
'check_perl_module' => \&check_perl_module,
'require_perl_module' => \&require_perl_module,
'default_dir' => \&default_dir,
);
$INSTALLDIR = '%PREFIX%/share/bsdbuild';
my @Help = ();
my $ConfigGuess = 'mk/config.guess';
my @TestDirs = ("$INSTALLDIR/BSDBuild");
my $SuccessFn = '';
my $ParserError = '';
my $lineNo = 1;
$SIG{__WARN__} = sub {
print STDERR 'warning: configure.in:' . $lineNo . ': ' . @_, "\n";
};
$SIG{__DIE__} = sub {
print STDERR 'configure.in:' . $lineNo . ': ' . shift . " (near \"$_\")\n";
exit(1);
};
my $StartCMAKE = << 'EOF';
# Public domain
#
# Do not edit!
# This file was generated from configure.in by BSDBuild %VERSION%.
#
# To regenerate this file, get the latest BSDBuild release from
# https://bsdbuild.hypertriton.com/, and use the command:
#
# $ mkconfigure --output-cmake=CMakeChecks.cmake < configure.in > /dev/null
#
# or alternatively:
#
# $ make configure
#
# Save a C definition (boolean) to ${CONFIG_DIR}.
macro(BB_Save_Define arg)
string(TOLOWER "${arg}" arg_lower)
file(WRITE "${CONFIG_DIR}/${arg_lower}.h" "#ifndef ${arg}
#define ${arg} \"yes\"
#endif
")
file(APPEND "${CMAKE_CURRENT_BINARY_DIR}/Makefile.config" "${arg}=yes
")
endmacro()
# Save a C definition (with a string literal value) to ${CONFIG_DIR}.
macro(BB_Save_Define_Value arg val)
string(TOLOWER "${arg}" arg_lower)
file(WRITE "${CONFIG_DIR}/${arg_lower}.h" "#ifndef ${arg}
#define ${arg} \"${val}\"
#endif
")
file(APPEND "${CMAKE_CURRENT_BINARY_DIR}/Makefile.config" "${arg}=\"${val}\"
")
endmacro()
# Save a C definition (with an unquoted literal value) to ${CONFIG_DIR}.
macro(BB_Save_Define_Value_Bare arg val)
string(TOLOWER "${arg}" arg_lower)
file(WRITE "${CONFIG_DIR}/${arg_lower}.h" "#ifndef ${arg}
#define ${arg} ${val}
#endif
")
file(APPEND "${CMAKE_CURRENT_BINARY_DIR}/Makefile.config" "${arg}=\"${val}\"
")
endmacro()
# Save a C undefinition to ${CONFIG_DIR}.
macro(BB_Save_Undef arg)
string(TOLOWER "${arg}" arg_lower)
file(WRITE "${CONFIG_DIR}/${arg_lower}.h" "#undef ${arg}
")
file(APPEND "${CMAKE_CURRENT_BINARY_DIR}/Makefile.config" "${arg}=no
")
endmacro()
# Save the value of a make variable to Makefile.config.
macro(BB_Save_MakeVar arg val)
file(APPEND "${CMAKE_CURRENT_BINARY_DIR}/Makefile.config" "${arg}=${val}
")
endmacro()
# Set the per-platform definition expected by BSDBuild modules.
macro(BB_Detect_Platform)
if(WIN32)
if(NOT WINDOWS)
set(WINDOWS TRUE)
endif()
elseif(UNIX AND NOT APPLE)
if(CMAKE_SYSTEM_NAME MATCHES ".*Linux")
set(LINUX TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES "kFreeBSD.*")
set(FREEBSD TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES "kNetBSD.*|NetBSD.*")
set(NETBSD TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES "kOpenBSD.*|OpenBSD.*")
set(OPENBSD TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES ".*GNU.*")
set(GNU TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES ".*BSDI.*")
set(BSDI TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES "DragonFly.*|FreeBSD")
set(FREEBSD TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES "SYSV5.*")
set(SYSV5 TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES "Solaris.*")
set(SOLARIS TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES "HP-UX.*")
set(HPUX TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES "AIX.*")
set(AIX TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES "Minix.*")
set(MINIX TRUE)
endif()
elseif(APPLE)
if(CMAKE_SYSTEM_NAME MATCHES ".*Darwin.*")
set(DARWIN TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES ".*MacOS.*")
set(MACOSX TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES ".*tvOS.*")
set(TVOS TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES ".*iOS.*")
set(IOS TRUE)
endif()
elseif(CMAKE_SYSTEM_NAME MATCHES "BeOS.*")
set(BEOS TRUE)
elseif(CMAKE_SYSTEM_NAME MATCHES "Haiku.*")
set(HAIKU TRUE)
endif()
if(UNIX AND NOT APPLE AND NOT RISCOS)
set(UNIX_SYS ON)
else()
set(UNIX_SYS OFF)
endif()
if(UNIX OR APPLE)
set(UNIX_OR_MAC_SYS ON)
else()
set(UNIX_OR_MAC_SYS OFF)
endif()
endmacro()
EOF
#
# Specify the name of the project.
#
sub package
{
my ($val) = @_;
if ($val =~ /^"(.+)"$/) {
$val = $1;
}
my $valUC = uc($val);
my $valLC = lc($val);
MkDefine('PACKAGE', $val);
MkSaveDefine('PACKAGE');
MkSave('PACKAGE');
return (0);
}
#
# Specify the version of the project.
#
sub version
{
my ($val) = @_;
if ($val =~ /^"(.+)"$/) {
$val = $1;
}
MkDefine('VERSION', $val);
MkSaveDefine('VERSION');
MkSave('VERSION');
return (0);
}
#
# Specify a release codename for the project.
#
sub release
{
my ($val) = @_;
if ($val =~ /^"(.+)"$/) {
$val = $1;
}
MkDefine('RELEASE', $val);
MkSaveDefine('RELEASE');
MkSave('RELEASE');
return (0);
}
#
# Enable/disable support for the ./configure --cache option.
#
sub config_cache
{
my ($val) = @_;
if (lc($val) eq 'yes' || lc($val) eq 'on') {
$Cache = 1;
} elsif (lc($val) eq 'no' || lc($val) eq 'off') {
$Cache = 0;
} else {
$ParserError = 'Syntax error: "'.$val.'" (should be yes or no)';
return (-1);
}
return (0);
}
#
# Set a function to call when configure succeeds.
#
sub success_fn
{
my ($val) = @_;
$SuccessFn = $val;
return (0);
}
#
# Directives used in first pass; no-ops as script directives
#
sub register { }
sub register_env_var { }
sub register_section { }
sub config_guess { }
sub c_incdir_config { }
sub c_include_config { }
#
# Check for the existence of a C header file.
#
sub check_c_header
{
foreach my $hdrFile (@_) {
$hdrDef = uc($hdrFile);
$hdrDef =~ s/[\\\/\.]/_/g;
$hdrDef = 'HAVE_'.$hdrDef;
MkPrintSN("checking for <$hdrFile> ($hdrDef)...");
MkCompileC $hdrDef, '', '', << "EOF";
#include <$hdrFile>
int main (int argc, char *argv[]) { return (0); }
EOF
}
return (0);
}
#
# Check for the existence of a C++ header file.
#
sub check_cxx_header
{
foreach my $hdrFile (@_) {
$hdrDef = uc($hdrFile);
$hdrDef =~ s/[\\\/\.]/_/g;
$hdrDef = 'HAVE_'.$hdrDef;
MkPrintSN("checking for <$hdrFile> ($hdrDef)...");
MkCompileCXX $hdrDef, '', '', << "EOF";
#include <$hdrFile>
int main (void) { return 0; }
EOF
}
return (0);
}
#
# Check for the existence of a C header file (and specify alternate CFLAGS).
#
sub check_c_header_opts
{
my $cflags = shift;
my $libs = shift;
foreach my $hdrFile (@_) {
$hdrDef = uc($hdrFile);
$hdrDef =~ s/[\\\/\.]/_/g;
$hdrDef = 'HAVE_'.$hdrDef;
MkPrintSN("checking for <$hdrFile>...");
MkCompileC $hdrDef, $cflags, $libs, << "EOF";
#include <$hdrFile>
int main (int argc, char *argv[]) { return (0); }
EOF
}
return (0);
}
#
# Check for the existence of a C++ header file (and specify alternate CXXFLAGS).
#
sub check_cxx_header_opts
{
my $cxxflags = shift;
my $libs = shift;
foreach my $hdrFile (@_) {
$hdrDef = uc($hdrFile);
$hdrDef =~ s/[\\\/\.]/_/g;
$hdrDef = 'HAVE_'.$hdrDef;
MkPrintSN("checking for <$hdrFile>...");
MkCompileCXX $hdrDef, $cxxflags, $libs, << "EOF";
#include <$hdrFile>
int main (void) { return 0; }
EOF
}
return (0);
}
#
# Check for the existence of a C function.
#
sub check_c_func
{
foreach my $funcList (@_) {
$funcDef = uc($funcList);
$funcDef =~ s/[\\\/\.]/_/g;
$funcDef = 'HAVE_'.$funcDef;
MkPrintSN("checking for $funcList()...");
MkDefine('TEST_CFLAGS', '-Wall');
MkCompileC $funcDef, '', '', << "EOF";
#ifdef __STDC__
# include <limits.h>
#else
# include <assert.h>
#endif
#undef $funcList
#ifdef __cplusplus
extern "C"
#endif
char $funcList();
#if defined __stub_$funcList || defined __stub___$funcList
choke me
#endif
int main() {
return $funcList();
}
EOF
}
return (0);
}
#
# Check for the existence of a C++ function.
#
sub check_cxx_func
{
foreach my $funcList (@_) {
$funcDef = uc($funcList);
$funcDef =~ s/[\\\/\.]/_/g;
$funcDef = 'HAVE_'.$funcDef;
MkPrintSN("checking for $funcList()...");
MkDefine('TEST_CXXFLAGS', '-Wall');
MkCompileCXX $funcDef, '', '', << "EOF";
#ifdef __STDC__
# include <limits.h>
#else
# include <assert.h>
#endif
#undef $funcList
extern "C"
char $funcList();
#if defined __stub_$funcList || defined __stub___$funcList
choke me
#endif
int main() {
return $funcList();
}
EOF
}
return (0);
}
# Check for a Perl module.
sub check_perl_module
{
my $modname = shift;
my $define = 'HAVE_'.uc($modname);
$define =~ s/::/_/;
MkPrintSN("checking for Perl module $modname...");
if ($Cache) {
print << "EOF";
$define='No'
MK_CACHED='No'
if [ "\${cache}" != '' ]; then
if [ -e "\${cache}/perltest-$define" ]; then
$define=`cat \${cache}/perltest-$define`
MK_CACHED='Yes'
fi
fi
if [ "\${MK_CACHED}" = "No" ]; then
cat /dev/null | \${PERL} -M$modname 2>/dev/null
if [ \$? != 0 ]; then
echo ": not found, code \$?" >>config.log
$define='no'
echo 'no'
else
echo ': found' >>config.log
$define='yes'
echo 'yes'
fi
fi
EOF
} else {
print << "EOF";
$define='No'
cat /dev/null | \${PERL} -M$modname 2>/dev/null
if [ \$? != 0 ]; then
echo ": not found, code \$?" >>config.log
$define='no'
echo 'no'
else
echo ': found' >>config.log
$define='yes'
echo 'yes'
fi
EOF
}
return (0);
}
# Check for a Perl module and fail if not found.
sub require_perl_module
{
my $modname = shift;
my $define = 'HAVE_'.uc($modname);
$define =~ s/::/_/;
check_perl_module($modname);
MkIf "\"\$\{$define\}\" != \"yes\"";
MkPrintS('* ');
MkPrintS("* This software requires the $modname module.");
MkPrintS("* Get it from CPAN (http://cpan.org/).");
MkPrintS('* ');
MkFail('Required Perl module not found');
MkEndif;
return (0);
}
# Specify an alternate installation directory default.
sub default_dir
{
my $dir = shift;
my $default = shift;
if ($dir =~ /^"(.*)"$/) { $dir = $1; }
if ($default =~ /^"(.*)"$/) { $default = $1; }
MkIf "\"\$\{${dir}_SPECIFIED\}\" != 'yes'";
MkDefine($dir, $default);
MkSaveDefine($dir);
MkSave($dir);
MkEndif;
return (0);
}
#
# Check for the existence of a C function (with specified CFLAGS and LIBS).
#
sub check_c_func_opts
{
my $cflags = shift;
my $libs = shift;
foreach my $funcList (@_) {
$funcDef = uc($funcList);
$funcDef =~ s/[\\\/\.]/_/g;
$funcDef = 'HAVE_'.$funcDef;
MkPrintSN("checking for $funcList()...");
MkDefine('TEST_CFLAGS', '-Wall'); # Avoid failing on "conflicting types blah"
MkCompileC $funcDef, $cflags, $libs, << "EOF";
#ifdef __STDC__
# include <limits.h>
#else
# include <assert.h>
#endif
#undef $funcList
#ifdef __cplusplus
extern "C"
#endif
char $funcList();
#if defined __stub_$funcList || defined __stub___$funcList
choke me
#endif
int main() {
return $funcList();
}
EOF
}
return (0);
}
#
# Check for the existence of a C++ function (with specified CXXFLAGS and LIBS).
#
sub check_cxx_func_opts
{
my $cxxflags = shift;
my $libs = shift;
foreach my $funcList (@_) {
$funcDef = uc($funcList);
$funcDef =~ s/[\\\/\.]/_/g;
$funcDef = 'HAVE_'.$funcDef;
MkPrintSN("checking for $funcList()...");
MkDefine('TEST_CXXFLAGS', '-Wall'); # Avoid failing on "conflicting types blah"
MkCompileCXX $funcDef, $cxxflags, $libs, << "EOF";
#ifdef __STDC__
# include <limits.h>
#else
# include <assert.h>
#endif
#undef $funcList
extern "C"
char $funcList();
#if defined __stub_$funcList || defined __stub___$funcList
choke me
#endif
int main() {
return $funcList();
}
EOF
}
return (0);
}
#
# Register a directory containing extra BSDBuild test modules.
#
sub test_dir
{
foreach my $dir (@_) {
unless (-e $dir) {
print STDERR "TEST_DIR $dir: $!; ignoring\n";
next;
}
push @TestDirs, $dir;
}
return (0);
}
# Execute one of the standard BSDBuild tests.
sub test
{
my @args = @_;
my ($t) = shift(@args);
my $mod = undef;
if (!exists($TESTS{$t})) {
foreach my $dir (@TestDirs) {
my $path = $dir.'/'.$t.'.pm';
if (-e $path) {
$mod = $path;
last;
}
}
if (!defined($mod)) {
$ParserError = 'No such module: '.$t;
return (-1);
}
do($mod);
if ($@) {
$ParserError = $t.' module: '.$@;
return (-1);
}
}
if (exists($DEPS{$t})) {
foreach my $dep (split(',', $DEPS{$t})) {
if (!exists($done{$dep})) {
$ParserError = $t.' depends on: '.$dep;
return (-1);
}
}
}
my $c = $TESTS{$t};
if ($c) {
MkPrintSN("checking for $DESCR{$t}...");
if (@args) {
MkComment("BEGIN $t(@args)");
} else {
MkComment("BEGIN $t");
}
&$c(@args);
if ($SAVED{$t}) {
MkSave(split(' ', $SAVED{$t}));
}
MkComment("END $t");
} else {
MkFail("$t: not in TESTS table");
}
$done{$t} = 1;
return (0);
}
# Execute one of the standard BSDBuild tests, abort if the test fails.
sub test_require
{
my ($t, $ver) = @_;
my $def = 'HAVE_'.uc($t);
$def =~ tr/-./_/;
test(@_);
MkIf "\"\$\{$def\}\" != \"yes\"";
MkPrintS('* ');
if ($ver) {
MkPrint('* $PACKAGE requires ' . $DESCR{$t} .
" (version $ver or newer).");
} else {
MkPrintS('* This software requires ' . $DESCR{$t});
}
if (exists($URL{$t}) && defined($URL{$t})) {
MkPrintS("* WWW: $URL{$t}");
}
MkPrintS('* ');
MkFail("Required dependency $t not found");
MkEndif;
if ($ver) {
MkIfNE('${MK_VERSION_OK}', 'yes');
MkPrintS('* ');
MkPrintS("* This software requires $t version >= $ver,");
MkPrintS("* please update that package and try again.");
if (exists($URL{$t}) && defined($URL{$t})) {
MkPrintS("* WWW: $URL{$t}");
}
MkPrintS('* ');
MkFail("Required dependency $t version mismatch");
MkEndif;
}
return (0);
}
# Call the "disable" function to short-circuit a test module. It should
# emulate the results of a failed test without actually running any tests.
sub disable
{
my ($t) = @_;
my $mod = undef;
if (!exists($TESTS{$t})) {
foreach my $dir (@TestDirs) {
my $path = $dir.'/'.$t.'.pm';
if (-e $path) {
$mod = $path;
last;
}
}
if (!defined($mod)) {
$ParserError = 'No such module: '.$t;
return (-1);
}
do($mod);
if ($@) {
$ParserError = $t.' module: '.$@;
return (-1);
}
}
my $c = $DISABLE{$t};
if ($c) {
&$c();
}
if ($SAVED{$t}) {
MkSave(split(' ', $SAVED{$t}));
}
return (0);
}
# Make environment define
sub mdefine
{
my ($def, $val) = @_;
if ($val =~ /^"(.*)"$/) { $val = $1; }
MkDefine($def, $val);
MkSave($def);
return (0);
}
# Append to make environment define
sub mappend
{
my ($def, $val) = @_;
if ($val =~ /^"(.*)"$/) { $val = $1; }
MkDefine($def, "\${$def} $val");
MkSave($def);
return (0);
}
# Header define
sub hdefine
{
my ($def, $val) = @_;
if ($val =~ /^"(.*)"$/) { $val = $1; }
MkDefine($def, $val);
MkSaveDefine($def);
return (0);
}
# Header define unquoted
sub hdefine_unquoted
{
my ($def, $val) = @_;
if ($val =~ /^"(.+)"$/) { $val = $1; }
MkDefine($def, $val);
MkSaveDefineUnquoted($def);
return (0);
}
# Conditional header define
sub hdefine_if
{
my ($cond, $def) = @_;
MkIf($cond);
MkDefine($def, "yes");
MkSaveDefine($def);
MkElse;
MkSaveUndef($def);
MkEndif;
return (0);
}
# Header undef
sub hundef
{
MkSaveUndef(@_);
return (0);
}
# Conditional header undef
sub hundef_if
{
my ($cond, $def) = @_;
MkIf($cond);
MkSaveUndef($def);
MkEndif;
return (0);
}
# C preprocessor definition
sub c_define
{
my $def = shift;
MkDefine('CFLAGS', '$CFLAGS -D'.$def);
MkSave('CFLAGS');
if ($OutputLUA) {
print << "EOF";
echo "table.insert(package.defines,{"$def"})" >>$OutputLUA
EOF
}
return (0);
}
# C++ preprocessor definition
sub cxx_define
{
my $def = shift;
MkDefine('CXXFLAGS', '$CXXFLAGS -D'.$def);
MkSave('CXXFLAGS');
if ($OutputLUA) {
print << "EOF";
echo "table.insert(package.defines,{"$def"})" >>$OutputLUA
EOF
}
return (0);
}
# C include directory
sub c_incdir
{
my $dir = shift;
my $qdir = $dir;
# if ($dir =~ /^\$/) { $qdir = '\"'.$dir.'\"'; }
MkDefine('CFLAGS', '$CFLAGS -I'.$qdir);
MkSave('CFLAGS');
if ($OutputLUA) {
print << "EOF";
echo "table.insert(package.includepaths,{"$dir"})" >>$OutputLUA
EOF
}
return (0);
}
# C++ include directory
sub cxx_incdir
{
my $dir = shift;
my $qdir = $dir;
# if ($dir =~ /^\$/) { $qdir = '\"'.$dir.'\"'; }
MkDefine('CXXFLAGS', '$CXXFLAGS -I'.$qdir);
MkSave('CXXFLAGS');
if ($OutputLUA) {
print << "EOF";
echo "table.insert(package.includepaths,{"$dir"})" >>$OutputLUA
EOF
}
return (0);
}
# Include file preprocessing
sub c_incprep
{
my $dir = shift;
print << "EOF";
if [ ! -e "$dir" ]; then
mkdir -p "$dir"
fi
if [ "\${includes}" = "link" ]; then
\$ECHO_N "linking header files..."
if [ "\${SRCDIR}" != "\${BLDDIR}" ]; then
(cd \${SRCDIR} && \${PERL} mk/gen-includelinks.pl "\${SRCDIR}" "$dir" 1>>\${BLDDIR}/config.log 2>&1)
else
\${PERL} mk/gen-includelinks.pl "\${SRCDIR}" "$dir" 1>>config.log 2>&1
fi
if [ \$? != 0 ]; then
echo "\${PERL} mk/gen-includelinks.pl failed"
exit 1
fi
echo 'done'
else
if [ "\${PERL}" = '' ]; then
echo '*'
echo '* The --includes=yes option requires perl, but no perl'
echo '* interpreter was found. If perl is unavailable, please'
echo '* please rerun configure with --includes=link'
echo '*'
exit 1
fi
\$ECHO_N "preprocessing header files..."
if [ "\${SRCDIR}" != "\${BLDDIR}" ]; then
(cd \${SRCDIR} && \${PERL} mk/gen-includes.pl "$dir" 1>>\${BLDDIR}/config.log 2>&1)
else
\${PERL} mk/gen-includes.pl "$dir" 1>>config.log 2>&1
fi
if [ \$? != 0 ]; then
echo "\${PERL} mk/gen-includes.pl failed"
exit 1
fi
echo 'done'
fi
EOF
return (0);
}
# C/C++ library directory
sub c_libdir
{
my $dir = shift;
# if ($dir =~ /^\$/) { $qdir = '\"'.$dir.'\"'; }
MkDefine('LIBS', '$LIBS -L'.$dir);
MkSave('LIBS');
$dir =~ s/\$SRC/\./g;
if ($OutputLUA) {
print << "EOF";
echo "table.insert(package.libpaths,{"$dir"})" >>$OutputLUA
EOF
}
return (0);
}
# Extra compiler warnings
sub c_extra_warnings
{
if ($OutputLUA) {
print << "EOF";
echo 'table.insert(package.buildflags,{"extra-warnings"})' >>$OutputLUA
EOF
}
return (0);
}
# Disable _CRT_SECURE warnings (win32)
sub c_no_secure_warnings
{
if ($OutputLUA) {
print << "EOF";
echo 'if (windows) then' >>$OutputLUA
echo ' table.insert(package.defines,{"_CRT_SECURE_NO_WARNINGS"})' >>$OutputLUA
echo ' table.insert(package.defines,{"_CRT_SECURE_NO_DEPRECATE"})' >>$OutputLUA
echo 'end' >>$OutputLUA
EOF
}