projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a26329
)
Avoid saving any macros starting with a _, since that can create
author
Richard Levitte
<levitte@openssl.org>
Wed, 23 Feb 2000 22:45:22 +0000
(22:45 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 23 Feb 2000 22:45:22 +0000
(22:45 +0000)
trouble if header files are included in some "impropper" order.
It's much better if the application programmer has to specify on his
or her own if _REENTRANT shall be defined and when.
Configure
patch
|
blob
|
history
diff --git
a/Configure
b/Configure
index 38fb9e901f801f678c00c0fbbec625b3a8662744..cfa06fab59b7cdb1d955a44f5eb21a7af2171231 100755
(executable)
--- a/
Configure
+++ b/
Configure
@@
-557,7
+557,7
@@
else
my $def;
foreach $def (split ' ',$thread_cflag)
{
- if ($def =~ s/^-D//)
+ if ($def =~ s/^-D//
&& $def !~ /^_/
)
{
$thread_defines .= "#define $def\n";
}