mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
26 lines
641 B
Diff
26 lines
641 B
Diff
|
From 24e3b8e543256ae8fdfb4b75eb9fd775f07c46e2 Mon Sep 17 00:00:00 2001
|
||
|
From: Nedko Arnaudov <nedko@arnaudov.name>
|
||
|
Date: Tue, 10 Jul 2012 05:20:56 +0300
|
||
|
Subject: [PATCH] link to libpthread, its used directly
|
||
|
|
||
|
---
|
||
|
wscript | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/wscript b/wscript
|
||
|
index 664625b..36710e2 100644
|
||
|
--- a/wscript
|
||
|
+++ b/wscript
|
||
|
@@ -66,7 +66,7 @@ def configure(conf):
|
||
|
else:
|
||
|
conf.env['DBUS_ENABLED'] = False
|
||
|
|
||
|
- conf.env['LIB_DL'] = ['dl']
|
||
|
+ conf.env['LIB_DL'] = ['dl', 'pthread']
|
||
|
|
||
|
#conf.check_header('expat.h', mandatory=True)
|
||
|
#conf.env['LIB_EXPAT'] = ['expat']
|
||
|
--
|
||
|
2.15.0
|
||
|
|