blob: 3678d46cf648f4e656c01989e911d39c96ce530c [file] [log] [blame]
Patrick Williams03514f12024-04-05 07:04:11 -05001From 47ede0950740e8919c28774840e77f223d5f3124 Mon Sep 17 00:00:00 2001
Brad Bishop316dfdd2018-06-25 12:45:53 -04002From: Derek Straka <derek@asterius.io>
3Date: Sun, 11 Mar 2018 19:55:38 -0400
4Subject: [PATCH] py-scrypt: remove the hard coded include paths
5
6Upstream-Status: Pending
7
8Signed-off-by: Derek Straka <derek@asterius.io>
9---
10 setup.py | 1 -
11 1 file changed, 1 deletion(-)
12
13diff --git a/setup.py b/setup.py
Patrick Williams03514f12024-04-05 07:04:11 -050014index 419a982..3f1fe52 100644
Brad Bishop316dfdd2018-06-25 12:45:53 -040015--- a/setup.py
16+++ b/setup.py
Patrick Williams03514f12024-04-05 07:04:11 -050017@@ -26,7 +26,6 @@ if sys.platform.startswith('linux'):
18 ('_FILE_OFFSET_BITS', '64'),
19 ]
Brad Bishop316dfdd2018-06-25 12:45:53 -040020 libraries = ['crypto', 'rt']
21- includes = ['/usr/local/include', '/usr/include']
22 CFLAGS.append('-O2')
Patrick Williams03514f12024-04-05 07:04:11 -050023 elif sys.platform.startswith('win32') and os.environ.get('MSYSTEM'):
24 msys2_env = os.getenv('MSYSTEM')