You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-crypto/SOURCES/python-crypto-2.6.1-link.patch

14 lines
461 B

log() function not available in libgmp, need libm too
--- setup.py
+++ setup.py
@@ -349,7 +349,7 @@ kw = {'name':"pycrypto",
# _fastmath (uses GNU mp library)
Extension("Crypto.PublicKey._fastmath",
include_dirs=['src/','/usr/include/'],
- libraries=['gmp'],
+ libraries=['gmp','m'],
sources=["src/_fastmath.c"]),
# Hash functions