lbry-fdroid/recipes/pycrypto/fix-fastmath-include-dirs.patch
akinwale 968c5d1f8e
Wallet encryption (#14)
* enabled wallet encryption with custom keyring backend
* updated with lbry and lbryum master refs for wallet encryption
2017-12-20 17:10:30 +01:00

11 lines
462 B
Diff

--- a/setup.py 2013-10-14 22:38:10.000000000 +0100
+++ b/setup.py 2017-12-20 16:05:16.726389781 +0100
@@ -370,7 +370,7 @@
'ext_modules': plat_ext + [
# _fastmath (uses GNU mp library)
Extension("Crypto.PublicKey._fastmath",
- include_dirs=['src/','/usr/include/'],
+ include_dirs=['src/'],
libraries=['gmp'],
sources=["src/_fastmath.c"]),