-
Notifications
You must be signed in to change notification settings - Fork 1
/
makeconfig.pm
857 lines (695 loc) · 22.3 KB
/
makeconfig.pm
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
# $Id: makeconfig.pm,v 1.3 2022/06/20 14:13:23 cvsuser Exp $
# Makefile generation under Win32.
# -*- perl; tabs: 8; indent-width: 4; -*-
# Automake emulation for non-unix environments.
#
#
# Copyright (c) 2020 - 2022, Adam Young.
# All rights reserved.
#
# The applications are free software: you can redistribute it
# and/or modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation, version 3.
#
# Redistributions of source code must retain the above copyright
# notice, and must be distributed with the license document above.
#
# Redistributions in binary form must reproduce the above copyright
# notice, and must include the license document above in
# the documentation and/or other materials provided with the
# distribution.
#
# The applications are distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# ==end==
#
#
use strict;
use warnings;
package MakeConfig;
my $x_env = undef;
my $x_tokens = undef;
my $o_verbose = undef;
our $PACKAGE = undef;
our $PACKAGE_NAME = '';
our $PACKAGE_VERSION = '';
our $PACKAGE_BUGREPORT = '';
our $PACKAGE_TARNAME = '';
our $PACKAGE_URL = '';
our $PACKAGE_PATH = undef;
our $PACKAGE_H = undef; # defunct, use PACKAGE_FILE
our $PACKAGE_FILE = 'package.h';
our $CONFIG_PATH = undef;
our $CONFIG_FILE = 'w32config.h';
our $TOOLCHAIN = undef;
our @MAKEFILES = (); # local makefiles; build order
our @LIBRARIES = (); # local libraries -l<xxx> lib<xxx>.lib
our @LIBRARIES2 = (); # local libraries -l<xxx> xxx.lib
our @TESTLIBRARIES = (); # external libraries, tested whether linkable
our @OPTLIBRARIES = (); # optional libraries
my $CC = '';
my $CCVER = '';
my $CXX = '';
my $CXXVER = '';
my $RTLIBRARY = '';
my $WINSDKLIB = '';
my %DEFS = ();
my %CDEFS = ();
my %CXXDEFS = ();
my %CFLAGS = ();
my %CXXFLAGS = ();
my @INCLUDE = ();
my @XINCLUDE = ();
my @CINCLUDE = ();
my @CXXINCLUDE = ();
my %LDFLAGS = ();
my @LDFLAGS = ();
my $LDMAPFILE = '';
my @LDLIBS = ();
my @LIBS = ();
my @EXTRALIBS = ();
use constant {
ALL => 'ALL',
RELEASE => 'RELEASE',
DEBUG => 'DEBUG'
};
my @__target_configurations = (ALL, RELEASE, DEBUG);
# Function:
# Constructor
sub New()
{
my ($class) = shift;
my $self = {};
bless $self, $class;
return $self;
}
# Function:
# Import the build profile.
#
# Returns:
# nothing
#
sub LoadProfile($$)
{
my ($self, $makelib) = @_;
print "loading: ${makelib}\n";
require $makelib or
die "${makelib}: error processsing\n";
die "${makelib}: PACKAGE not defined\n"
if (! $PACKAGE);
}
# Function:
# Import the full configuration profile.
#
# Returns:
# nothing
#
sub LoadConfigure($$$$$$)
{
my ($self, $makelib, $type_, $env_, $tokens_, $verbose_) = @_;
$x_env = $env_;
$x_tokens = $tokens_;
$o_verbose = $verbose_;
$self->__ImportConfigurations($makelib);
print "loading: ${makelib}, <${TOOLCHAIN}>\n";
require $makelib or
die "${makelib}: error processsing\n";
Configure();
die "${makelib}: PACKAGE not defined\n"
if (! $PACKAGE);
if (defined $PACKAGE_H) {
print "\n";
print "WARNING: importing legacy PACKAGE_H from <${makelib}>, replace with PACKAGE_FILE\n";
print "\n";
$PACKAGE_FILE = $PACKAGE_H;
}
$self->__ExportConfigurations();
$x_tokens = undef;
$x_env = undef;
}
sub __ImportConfigurations
{
my ($self, $makelib) = @_;
$TOOLCHAIN = $$x_tokens{TOOLCHAIN};
$TOOLCHAIN = '' if (!$TOOLCHAIN);
$CC = $$x_tokens{CC} # Program for compiling C programs.
if (defined $$x_tokens{CC});
$CCVER = $$x_tokens{CCVER} # C standard
if (defined $$x_tokens{CCVER});
$CXX = $$x_tokens{CXX} # Program for compiling C++ programs.
if (defined $$x_tokens{CXX});
$CXXVER = $$x_tokens{CXXVER} # C++ standard
if (defined $$x_tokens{CXXVER});
$RTLIBRARY = $$x_tokens{RTLIBRARY} # Default Run-Time library.
if (defined $$x_tokens{RTLIBRARY});
$WINSDKLIB = $$x_tokens{WINSDKLIB} # SDK library path.
if (defined $$x_tokens{WINSDKLIB});
push @{$DEFS{ALL}}, split(/ /, $$x_tokens{DEFS}) # Common definitions
if (defined $$x_tokens{DEFS});
push @{$CFLAGS{ALL}}, split(/ /, $$x_tokens{CFLAGS}) # Extra flags to give to the C++ compiler.
if (defined $$x_tokens{CFLAGS});
push @{$CFLAGS{RELEASE}}, split(/ /, $$x_tokens{CRELEASE})
if (defined $$x_tokens{CRELEASE});
push @{$CFLAGS{DEBUG}}, split(/ /, $$x_tokens{CDEBUG})
if (defined $$x_tokens{CDEBUG});
push @{$CXXFLAGS{ALL}}, split(/ /, $$x_tokens{CXXFLAGS}) # Extra flags to give to the C++ compiler.
if (defined $$x_tokens{CXXFLAGS});
push @{$CXXFLAGS{RELEASE}}, split(/ /, $$x_tokens{CXXDEBUG})
if (defined $$x_tokens{CXXDEBUG});
push @{$CXXFLAGS{DEBUG}}, split(/ /, $$x_tokens{CXXRELEASE})
if (defined $$x_tokens{CXXRELEASE});
push @INCLUDE, split(/;/, $$x_tokens{INCLUDE}) # Compiler system includes; semicolon seperated.
if (defined $$x_tokens{INCLUDE});
push @XINCLUDE, split(/;/, $$x_tokens{XINCLUDE}) # Extra compiler system includes; semicolon seperated.
if (defined $$x_tokens{XINCLUDE});
if (defined $$x_tokens{CINCLUDE}) {
my @incs = split(/ /, $$x_tokens{CINCLUDE});
for (my $i = 0; $i < scalar @incs; ++$i) {
my $inc = $incs[$i];
if ($inc =~ /^[-\/][Ii]=(.+)$/) { # -I=xxxx or -i=xxxx
push @CINCLUDE, $1;
} elsif ($inc =~ /^[-\/]I(.+)$/) { # -Ixxxx
push @CINCLUDE, $1;
} elsif ($inc =~ /^[-\/]I$/ && ++$i < scalar @incs) { # -I xxxx
push @CINCLUDE, $incs[$i];
} else {
die "${makelib}: illformed CINCLUDE <${inc}>\n";
}
}
}
if (defined $$x_tokens{CXXINCLUDE}) {
my @incs = split(/ /, $$x_tokens{CXXINCLUDE});
for (my $i = 0; $i < scalar @incs; ++$i) {
my $inc = $incs[$i];
if ($inc =~ /^[-\/][Ii]=(.+)$/) { # -I=xxxx or -i=xxxx
push @CXXINCLUDE, $1;
} elsif ($inc =~ /^[-\/]I(.+)$/) { # -Ixxxx
push @CXXINCLUDE, $1;
} elsif ($inc =~ /^[-\/]I$/ && ++$i < scalar @incs) { # -I xxxx
push @CXXINCLUDE, $incs[$i];
} else {
die "${makelib}: illformed CXXINCLUDE <${inc}>\n";
}
}
}
push @{$LDFLAGS{ALL}}, split(/ /, $$x_tokens{LDFLAGS}) # Extra flags to the linker.
if (defined $$x_tokens{LDFLAGS});
push @{$LDFLAGS{RELEASE}}, split(/ /, $$x_tokens{LDRELEASE}) # Extra flags to the linker; release builds.
if (defined $$x_tokens{LDRELEASE});
push @{$LDFLAGS{DEBUG}}, split(/ /, $$x_tokens{LDDEBUG}) # Extra flags to the linker; debug builds.
if (defined $$x_tokens{LDDEBUG});
$LDMAPFILE = $$x_tokens{LDMAPFILE}
if (defined $$x_tokens{LDMAPFILE});
push @LDLIBS, split(/ /, $$x_tokens{LDLIBS}) # Library flags or names given when invoking the linker; this includes the -L path(s).
if (defined $$x_tokens{LDLIBS});
push @LIBS, split(/ /, $$x_tokens{LIBS}) # Application libraries
if (defined $$x_tokens{LIBS});
push @EXTRALIBS, split(/ /, $$x_tokens{EXTRALIBS}) # Extra system libraries
if (defined $$x_tokens{EXTRALIBS});
}
sub __ExportConfigurations
{
my ($self) = shift;
if ($o_verbose >= 3) {
print "Raw configuration:\n";
foreach my $type (@__target_configurations) {
print "\n";
print " $type:\n";
print " DEFS ".__PrintArray($DEFS{$type})."\n";
print " CDEFS ".__PrintArray($CDEFS{$type})."\n";
print " CXXDEFS ".__PrintArray($CXXDEFS{$type})."\n";
print " CFLAGS ".__PrintArray($CFLAGS{$type})."\n";
print " CXXFLAGS ".__PrintArray($CXXFLAGS{$type})."\n";
print " LDFLAGS ".__PrintArray($LDFLAGS{$type})."\n";
}
}
$self->{PACKAGE} = $PACKAGE if (defined $PACKAGE);
$self->{PACKAGE_NAME} = $PACKAGE_NAME;
$self->{PACKAGE_PATH} = $PACKAGE_PATH if ($PACKAGE_PATH);
$self->{PACKAGE_H} = $PACKAGE_H if ($PACKAGE_H);
$self->{PACKAGE_FILE} = $PACKAGE_FILE if ($PACKAGE_FILE);
$self->{CONFIG_PATH} = $CONFIG_PATH if ($CONFIG_PATH);
$self->{CONFIG_FILE} = $CONFIG_FILE if ($CONFIG_FILE);
$self->{MAKEFILES} = \@MAKEFILES;
$self->{LIBRARIES} = \@LIBRARIES;
$self->{LIBRARIES2} = \@LIBRARIES2;
$self->{TESTLIBRARIES} = \@TESTLIBRARIES;
$self->{OPTLIBRARIES} = \@OPTLIBRARIES;
$$x_tokens{PACKAGE_VERSION} = $PACKAGE_VERSION;
$$x_tokens{PACKAGE_STRING} = $PACKAGE_NAME . ' ' . $PACKAGE_VERSION;
$$x_tokens{PACKAGE_URL} = $ PACKAGE_URL;
$$x_tokens{PACKAGE_BUGREPORT} = $PACKAGE_BUGREPORT;
$$x_tokens{PACKAGE_TARNAME} = $PACKAGE_TARNAME;
$$x_tokens{CC} = $CC;
$$x_tokens{CCVER} = $CCVER;
$$x_tokens{CXX} = $CXX;
$$x_tokens{CXXVER} = $CXXVER;
$$x_tokens{RTLIBRARY} = $RTLIBRARY;
$$x_tokens{WINSDKLIB} = $WINSDKLIB;
$$x_tokens{INCLUDE} = __PrintArrayX('', ';', \@INCLUDE);
$$x_tokens{XINCLUDE} = __PrintArrayX('', ';', \@XINCLUDE);
$$x_tokens{CINCLUDE} = __PrintArrayX('-I', ' ', \@CINCLUDE);
$$x_tokens{CXXINCLUDE} = __PrintArrayX('-I', ' ', \@CXXINCLUDE);
$$x_tokens{DEFS} = __PrintArray($DEFS{ALL});
$$x_tokens{CFLAGS} = __PrintArray($CDEFS{ALL}, $CFLAGS{ALL});
$$x_tokens{CRELEASE} = __PrintArray($CDEFS{RELEASE}, $CFLAGS{RELEASE});
$$x_tokens{CDEBUG} = __PrintArray($CDEFS{DEBUG}, $CFLAGS{DEBUG});
$$x_tokens{CXXFLAGS} = __PrintArray($CXXDEFS{ALL}, $CXXFLAGS{ALL});
$$x_tokens{CXXDEBUG} = __PrintArray($CXXDEFS{RELEASE}, $CXXFLAGS{RELEASE});
$$x_tokens{CXXRELEASE} = __PrintArray($CXXDEFS{DEBUG}, $CXXFLAGS{DEBUG});
$$x_tokens{LDFLAGS} = __PrintArray($LDFLAGS{ALL});
$$x_tokens{LDRELEASE} = __PrintArray($LDFLAGS{RELEASE});
$$x_tokens{LDDEBUG} = __PrintArray($LDFLAGS{DEBUG});
$$x_tokens{LDMAPFILE} = $LDMAPFILE;
$$x_tokens{LDLIBS} = __PrintArray(\@LDLIBS);
$$x_tokens{LIBS} = __PrintArray(\@LIBS);
$$x_tokens{EXTRALIBS} = __PrintArray(\@EXTRALIBS);
if ($o_verbose) {
print "Configuration:\n";
print "\n";
print " CC ${CC}\n";
print " CXX ${CXX}\n" if ($CXX);
print " INCLUDE $$x_tokens{INCLUDE}\n";
print "\n";
print " CINCLUDE $$x_tokens{CINCLUDE}\n";
print " CXXINCLUDE $$x_tokens{CXXINCLUDE}\n";
print "\n";
print " DEFS $$x_tokens{DEFS}\n";
print " RTLIBRARY ${RTLIBRARY}\n" if ($RTLIBRARY);
print " WINSDKLIB ${WINSDKLIB}\n" if ($WINSDKLIB);
print " CFLAGS $$x_tokens{CFLAGS}\n";
print " CRELEASE $$x_tokens{CRELEASE}\n";
print " CDEBUG $$x_tokens{CDEBUG}\n";
print "\n";
print " CXXFLAGS $$x_tokens{CXXFLAGS}\n";
print " CXXRELEASE $$x_tokens{CXXRELEASE}\n";
print " CXXDEBUG $$x_tokens{CXXDEBUG}\n";
print "\n";
print " LDFLAGS $$x_tokens{LDFLAGS}\n";
print " LDRELEASE $$x_tokens{LDRELEASE}\n";
print " LDDEBUG $$x_tokens{LDDEBUG}\n";
print " LDMAPFILE $$x_tokens{LDMAPFILE}\n";
print "\n";
print " LDLIBS $$x_tokens{LDLIBS}\n";
print " LIBS $$x_tokens{LIBS}\n";
print " EXTRALIBS $$x_tokens{EXTRALIBS}\n";
print "\n";
}
}
sub __PrintArray
{
my $s = '';
for (my $i = 0; $i < scalar @_; ++$i) {
my $value = $_[$i];
if (defined $value && scalar @$value) {
foreach my $val (@$value) {
if ($val) {
$s .= ' ' if (length($s));
$s .= $val;
}
}
}
}
return $s;
}
sub __PrintArrayX
{
my $prefix = shift || '';
my $suffix = shift || '';
my $s = '';
for (my $i = 0; $i < scalar @_; ++$i) {
my $value = $_[$i];
if (defined $value && scalar @$value) {
foreach my $val (@$value) {
if ($val) {
$s .= $suffix if (length($s));
$s .= $prefix;
$s .= $val;
}
}
}
}
return $s;
}
# Function:
# set_c_standard
# Parameters:
# standard - C standad, 90, 99, 11, 17, 23
#
sub
set_c_standard($)
{
my ($standard) = @_;
my $version = int($standard);
($version == 98 || $version == 99 || $version == 11 || $version == 17) or
die "set_C_standard: invalid standard <${standard}>\n";
if ('gcc' eq $CC || 'g++' eq $CC) {
$CCVER = "-std=c${version}";
} else {
die "set_c_standard: unsupport toolchain <${CC}>\n";
}
}
# Function:
# set_cxx_standard
# Parameters:
# standard - C++ standad, 98, 11, 14, or 17.
#
sub
set_cxx_standard($)
{
my ($standard) = @_;
my $version = int($standard);
($version == 98 || $version == 11 || $version == 14 || $version == 17) or
die "set_CXX_standard: invalid standard <${standard}>\n";
if ('gcc' eq $CC || 'g++' eq $CC) {
$CXXVER = "-std=c++${version}";
} else {
die "set_cxx_standard: unsupport toolchain <${CC}>\n";
}
}
# Function:
# set_msvc_runtime - Set the default MSVC run-time library.
# Parameters:
# type - either dynamic or static.
# Returns:
# nothing
# Notes:
# MD Causes the application to use the multithread-specific and DLL-specific version of the run-time library.
# Defines _MT and _DLL and causes the compiler to place the library name MSVCRT.lib into the .obj file.
#
# Applications compiled with this option are statically linked to MSVCRT.lib.
# This library provides a layer of code that enables the linker to resolve external references.
# The actual working code is contained in MSVCRversionnumber.DLL, which must be available at run time
# to applications linked with MSVCRT.lib.
#
# /MDd Defines _DEBUG, _MT, and _DLL and causes the application to use the debug multithread-specific and
# DLL-specific version of the run-time library.
#
# It also causes the compiler to place the library name MSVCRTD.lib into the .obj file.
#
# /MT Causes the application to use the multithread, static version of the run-time library.
#
# Defines _MT and causes the compiler to place the library name LIBCMT.lib
# into the .obj file so that the linker will use LIBCMT.lib to resolve external symbols.
#
# /MTd Defines _DEBUG and _MT. This option also causes the compiler to place the library name LIBCMTD.lib
# into the .obj file so that the linker will use LIBCMTD.lib to resolve external symbols.
#
sub
set_msvc_runtime($;$)
{
my ($type, $suffix) = @_;
$suffix = '$(BUILD_TYPE)'
if (! defined $suffix);
die "set_msvc_runtime: invalid toolchain <$TOOLCHAIN>\n"
if ($TOOLCHAIN !~ /^vs/);
# Select
if ($type eq 'dynamic') {
$RTLIBRARY = "-MD${suffix}";
} elsif ($type eq 'static') {
$RTLIBRARY = "-MT${suffix}";
} else {
die "set_msvc_runtime: invalid type <${type}>\n";
}
# CFLAGS
if (defined $CFLAGS{ALL}) {
my $defs = $CFLAGS{ALL};
for (my $i = 0; $i < scalar @$defs; ++$i) {
if ($$defs[$i] =~ /[-\/](MT|MD)/) {
$$defs[$i] = '@RTLIBRARY@';
last;
}
}
}
# CXXFLAGS
if (defined $CXXFLAGS{ALL}) {
my $defs = $CXXFLAGS{ALL};
for (my $i = 0; $i < scalar @$defs; ++$i) {
if ($$defs[$i] =~ /[-\/](MT|MD)/) {
$$defs[$i] = '@RTLIBRARY@';
last;
}
}
}
# LDFLAGS
if (defined $LDFLAGS{ALL}) {
my $defs = $LDFLAGS{ALL};
for (my $i = 0; $i < scalar @$defs; ++$i) {
if ($$defs[$i] =~ /[-\/](MT|MD)/) {
$$defs[$i] = '@RTLIBRARY@';
last;
}
}
}
verbose("set_msvc_runtime: <${RTLIBRARY}>");
}
# Function:
# set_winsdk - Windows SDK configuration.
# Parameters:
# lib - library path.
# Returns:
# nothing
sub
set_winsdk($;$)
{
my ($lib, $inc) = @_;
$WINSDKLIB = $lib
if (defined $lib);
verbose("set_winsdk: <${WINSDKLIB}>");
}
# Function:
# remove_define - Remove the matching definition.
# Parameters:
# def - Definition.
# Returns:
# 1 if matched, otherwise 0.
#
sub
remove_define($;$)
{
my ($def, $type) = @_;
my ($var, $val) = split(/=/, $def);
$type = ALL if (! $type);
if (defined $DEFS{$type}) {
my $defs = $DEFS{$type};
for (my $i = 0; $i < scalar @$defs; ++$i) {
if ($$defs[$i] =~ /^[-\/]D${var}=/) {
verbose("remove_define:\t removed <$$defs[$i]>");
$$defs[$i] = '';
return 1;
}
}
}
return 0;
}
# Function:
# add_define - Add or replace a definition.
# Parameters:
# def - Definition.
# Returns:
# nothing
#
sub
add_define($;$)
{
my ($def, $type) = @_;
my ($var, $val) = split(/=/, $def);
$type = ALL if (! $type);
$val = '1' if (! $val);
$def = "-D${var}=${val}";
if (defined $DEFS{$type}) {
my $defs = $DEFS{$type};
for (my $i = 0; $i < scalar @$defs; ++$i) {
if ($$defs[$i] =~ /^[-\/]D${var}(=|$)/) {
verbose("add_define:\t <${def}> replaced <$$defs[$i]>");
$$defs[$i] = $def;
return;
}
}
}
verbose("add_define:\t <${def}>");
push @{$DEFS{$type}}, $def;
}
sub
add_cdefine($;$)
{
my ($def, $type) = @_;
my ($var, $val) = split(/=/, $def);
$type = ALL if (! $type);
$val = '1' if (! $val);
$def = "-D${var}=${val}";
if (defined $CDEFS{$type}) {
my $defs = $CDEFS{$type};
for (my $i = 0; $i < scalar @$defs; ++$i) {
if ($$defs[$i] =~ /^[-\/]D${var}(=|$)/) {
verbose("add_cdefine:\t <${def}> replaced <$$defs[$i]>");
$$defs[$i] = $def;
return;
}
}
}
verbose("add_cdefine:\t <${def}>");
push @{$CDEFS{$type}}, $def;
}
sub
add_cxxdefine($;$)
{
my ($def, $type) = @_;
my ($var, $val) = split(/=/, $def);
$type = ALL if (! $type);
$val = '1' if (! $val);
$def = "-D${var}=${val}";
if (defined $CXXDEFS{$type}) {
my $defs = $CXXDEFS{$type};
for (my $i = 0; $i < scalar @$defs; ++$i) {
if ($$defs[$i] =~ /^[-\/]D${var}(=|$)/) {
verbose("add_cxxdefine:\t <${def}> replaced <$$defs[$i]>");
$$defs[$i] = $def;
return;
}
}
}
verbose("add_cxxdefine:\t <${def}>");
push @{$CXXDEFS{$type}}, $def;
}
# Function:
# add_cflag - C compiler flag.
# Parameters:
# flag - Definition.
# type - release/debug/all (default).
# Returns:
# nothing
#
sub
add_cflag($;$)
{
my ($flag,$type) = @_;
$type = ALL if (! $type);
verbose("add_cflag:\t <${flag},${type}>");
push @{$CFLAGS{$type}}, $flag;
}
# Function:
# add_cxxflag - C++ compiler flag.
# Parameters:
# flag - Definition.
# type - release/debug/all (default).
# Returns:
# nothing
#
sub
add_cxxflag($;$)
{
my ($flag,$type) = @_;
$type = ALL if (! $type);
verbose("add_cxxflag:\t <${flag},${type}>");
push @{$CXXFLAGS{$type}}, $flag;
}
# Function:
# add_ldflag - Linker flag.
# Parameters:
# flag - Definition.
# type - release/debug/all (default).
# Returns:
# nothing
#
sub
add_ldflag($;$)
{
my ($flag,$type) = @_;
$type = ALL if (! $type);
verbose("add_ldflag:\t <${flag},${type}>");
push @{$LDFLAGS{$type}}, $flag;
}
# Function:
# add_define - Add a include path
# Parameters:
# flag - Definition.
# Returns:
# nothing
#
sub
add_include($)
{
my ($inc) = shift;
verbose("add_include:\t <${inc}>");
push @INCLUDE, $inc;
}
sub
add_cinclude($)
{
my ($inc) = shift;
verbose("add_cinclude:\t <${inc}>");
push @CINCLUDE, $inc;
}
sub
add_xinclude($)
{
my ($inc) = shift;
verbose("add_xinclude:\t <${inc}>");
push @CINCLUDE, $inc;
push @XINCLUDE, $inc;
}
sub
add_cxxinclude($)
{
my ($inc) = shift;
verbose("add_cxxinclude:\t <${inc}>");
push @CXXINCLUDE, $inc;
}
# Function:
# add_application_library - Add an application library
# Parameters:
# flag - Definition.
# Returns:
# nothing
#
sub
add_application_library($)
{
my ($lib) = shift;
verbose("add_application_library:\t <${lib}>");
push @LIBS, $lib;
}
# Function:
# add_system_library - Add an extra system library
# Parameters:
# flag - Definition.
# Returns:
# nothing
#
sub
add_system_library($)
{
my ($lib) = shift;
verbose("add_system_library:\t <${lib}>");
push @EXTRALIBS, $lib;
}
#TODO
#
# AC_INIT
# AC_ARG_ENABLE
# AC_COPYRIGHT
# AC_REVISION
# AC_DEFINE
# AC_SUBST
# AC_CHECK_SIZEOF
# AC_CHECK_HEADERS
# AC_CHECK_FUNCTION
# AC_CHECK_MEMBERS
# AC_CHECK_LIB
# AC_ERROR
# AC_CONFIG_FILES
#
sub
verbose {
return
if ($o_verbose < 2);
print @_;
print "\n";
}
1;