summaryrefslogtreecommitdiffstats
path: root/Configurations/99-personal-rse.conf
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-27 16:51:34 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-02 19:15:42 +0100
commit9c62a279fecc4ccb95ea55e1ba36470f3eab8775 (patch)
tree975d816aa5b7c458be426506004b5198a7426164 /Configurations/99-personal-rse.conf
parent8864f0de7b491b4c7f724f58200d843700c82e98 (diff)
Configure - Get rid of the special thread_cflag, replace with thread_scheme
The thread_cflag setting filled a double role, as kinda sorta an indicator of thread scheme, and as cflags. Some configs also added lflags and ex_libs for multithreading regardless of if threading would be enabled or not. Instead of this, add threading cflags among in the cflag setting, threading lflags in the lflag setting and so on if and only if threads are enabled (which they are by default). Also, for configs where there are no special cflags for threading (the VMS configs are of that kind), this makes it possible to still clearly mention what thread scheme is used. The exact value of thread scheme is currently ignored except when it's "(unknown)", and thereby only serves as a flag to tell if we know how to build for multi-threading in a particular config. Yet, the currently used values are "(unknown)", "pthreads", "uithreads" (a.k.a solaris threads) and "winthreads". Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'Configurations/99-personal-rse.conf')
-rw-r--r--Configurations/99-personal-rse.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configurations/99-personal-rse.conf b/Configurations/99-personal-rse.conf
index ecb4742086..9999fcd3cf 100644
--- a/Configurations/99-personal-rse.conf
+++ b/Configurations/99-personal-rse.conf
@@ -6,7 +6,7 @@
inherit_from => [ "x86_elf_asm" ],
cc => "cc",
cflags => "-DL_ENDIAN -pipe -O -g -ggdb3 -Wall",
- thread_cflag => "(unknown)",
+ thread_scheme => "(unknown)",
bn_ops => "BN_LLONG",
},
);