Advertisement
Guest User

Untitled

a guest
Apr 11th, 2016
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. %define no-flags-common no-mdc2 no-rc5 no-ec2m no-gost no-srp
  2. %define no-flags %{no-flags-common}
  3.  
  4. %ifarch aarch64
  5. %define no-flags %{no-flags-common} no-asm
  6. %endif
  7. # ia64, x86_64, ppc, ppc64 are OK by default
  8. # Configure the build tree.  Override OpenSSL defaults with known-good defaults
  9. # usable on all platforms.  The Configure script already knows to use -fPIC and
  10. # RPM_OPT_FLAGS, so we can skip specifiying them here.
  11.  
  12. ./Configure \
  13.     --prefix=/usr --openssldir=%{_sysconfdir}/pki/tls ${sslflags} \
  14.     zlib enable-camellia enable-seed enable-tlsext enable-rfc3779 \
  15.     enable-cms enable-md2 %{no-flags} \
  16.        --enginesdir=%{_libdir}/openssl/engines \
  17.        shared  ${sslarch} %{?!nofips:fips}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement