summaryrefslogtreecommitdiffstats
path: root/Configurations/99-personal-steve.conf
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-27 11:37:33 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-02 19:15:42 +0100
commit98fdbce09144a8addc6682a0ffd8ac92b2ce70b1 (patch)
tree35c5da21605d51543ea872ea5a7237e375f17fdf /Configurations/99-personal-steve.conf
parentd2b2221a04053578911d34a45026543e4c39ce0c (diff)
Configure - move the addition of the zlib / libz lib to configs
Configure had the Unix centric addition of -lz when linking with zlib is enabled, which doesn't work on other platforms. Therefore, we move it to the BASE_unix config template and add corresponding ones in the other BASE_* config templates. The Windows one is probably incomplete, but that doesn't matter for the moment, as mk1mf does it's own thing anyway. This required making the %withargs table global, so perl snippets in the configs can use it. Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'Configurations/99-personal-steve.conf')
-rw-r--r--Configurations/99-personal-steve.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/Configurations/99-personal-steve.conf b/Configurations/99-personal-steve.conf
index bf9dbf4448..9aadf4b16f 100644
--- a/Configurations/99-personal-steve.conf
+++ b/Configurations/99-personal-steve.conf
@@ -7,7 +7,7 @@
cc => "gcc",
cflags => "$gcc_devteam_warn -pthread -m64 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g",
thread_cflag => "-D_REENTRANT",
- ex_libs => "-ldl",
+ ex_libs => add(" ","-ldl"),
bn_ops => "SIXTY_FOUR_BIT_LONG",
perlasm_scheme => "elf",
dso_scheme => "dlfcn",
@@ -22,7 +22,7 @@
cflags => "$gcc_devteam_warn -pthread -m32 -DL_ENDIAN -DCONF_DEBUG -g",
thread_cflag => "-D_REENTRANT",
lflags => "-rdynamic",
- ex_libs => "-ldl",
+ ex_libs => add(" ","-ldl"),
bn_ops => "BN_LLONG",
dso_scheme => "dlfcn",
shared_target => "linux-shared",
@@ -35,7 +35,7 @@
cc => "gcc",
cflags => "$gcc_devteam_warn -pthread -m64 -O3 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g",
thread_cflag => "-D_REENTRANT",
- ex_libs => "-ldl",
+ ex_libs => add(" ","-ldl"),
bn_ops => "SIXTY_FOUR_BIT_LONG",
perlasm_scheme => "elf",
dso_scheme => "dlfcn",