summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Cherny2018-03-21 16:55:16 +0200
committerEugene Cherny2018-03-21 16:55:16 +0200
commitf0af52bdcbc23123358b40600dd3490436d884d0 (patch)
tree0640699974ad47c768c26b7af06bea8bb6e10443
parent8d3df4715aec2ebe4e2ae1b440bf2cdf71097d4b (diff)
downloadaur-essentia-git.tar.gz
[-] pthread_flag.patch
-rw-r--r--pthread_flag.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/pthread_flag.patch b/pthread_flag.patch
deleted file mode 100644
index de89ce197b69..000000000000
--- a/pthread_flag.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/wscript b/wscript
-index fb43390a..c71b4969 100644
---- a/wscript
-+++ b/wscript
-@@ -281,8 +281,8 @@ def build(ctx):
-
- if ctx.env.WITH_CPPTESTS:
- # missing -lpthread flag on Ubuntu and LinuxMint
-- if platform.dist()[0].lower() in ['debian', 'ubuntu', 'linuxmint'] and not ctx.env.CROSS_COMPILE_MINGW32 and not ctx.env.WITH_STATIC_EXAMPLES:
-- ext_paths = ['/usr/lib/i386-linux-gnu', '/usr/lib/x86_64-linux-gnu']
-+ if not ctx.env.CROSS_COMPILE_MINGW32 and not ctx.env.WITH_STATIC_EXAMPLES:
-+ ext_paths = ['/usr/lib32', '/usr/lib']
- ctx.read_shlib('pthread', paths=ext_paths)
- ctx.env.USES += ' pthread'
-