aboutsummaryrefslogtreecommitdiffstats
path: root/configure.pl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2007-03-08 02:28:31 +0000
committerlloyd <[email protected]>2007-03-08 02:28:31 +0000
commitaae4fcd96934e5bdc18e12f8c14d4cadd207cfc1 (patch)
tree8024ed5822c99993869459085ee7ee2c78513060 /configure.pl
parent74a8b86758a4a0b1c8a6471a13ebcf94fe24343e (diff)
Put a newline between the target info macros and the extension macros (if any)
in build.h
Diffstat (limited to 'configure.pl')
-rwxr-xr-xconfigure.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.pl b/configure.pl
index 64a8bb337..90cb83db0 100755
--- a/configure.pl
+++ b/configure.pl
@@ -842,6 +842,9 @@ sub load_modules {
push @defarray, split(/,/, $defs);
}
+
+ $defines .= "\n" if(@defarray);
+
foreach (sort @defarray) {
die unless(defined $_ and $_ ne '');
$defines .= "#define BOTAN_EXT_$_\n";