Accepting request 78150 from Base:System

- remove -fno-strict-aliasing from CFLAGS no longer needed 
  and is likely to slow down stuff. (forwarded request 78147 from elvigia)

OBS-URL: https://build.opensuse.org/request/show/78150
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/openssl?expand=0&rev=63
This commit is contained in:
Sascha Peilicke 2011-08-06 17:08:49 +00:00 committed by Git OBS Bridge
parent 18daff1b9a
commit f2e7b32247
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Aug 5 19:09:42 UTC 2011 - crrodriguez@opensuse.org
- remove -fno-strict-aliasing from CFLAGS no longer needed
and is likely to slow down stuff.
-------------------------------------------------------------------
Mon Jul 25 19:07:32 UTC 2011 - jengelh@medozas.de

View File

@ -235,7 +235,6 @@ zlib \
$RPM_OPT_FLAGS \
-Wa,--noexecstack \
-fomit-frame-pointer \
-fno-strict-aliasing \
-DTERMIO \
-DPURIFY \
%ifnarch hppa
@ -340,7 +339,7 @@ unsigned int i;
SSL_CTX *ctx;
SSL *ssl;
SSL_METHOD *meth;
meth = SSLv2_client_method();
meth = SSLv23_client_method();
SSLeay_add_ssl_algorithms();
ctx = SSL_CTX_new(meth);
if (ctx == NULL) return 0;