diff mbox

[1/2] proxychains-ng: needs dynamic library support

Message ID 1380947459.27085.0.camel@phoenix
State Accepted
Commit 313e735a68b691827eb17d4486957d52ab8c7630
Headers show

Commit Message

Axel Lin Oct. 5, 2013, 4:30 a.m. UTC
Fix below build error if BR2_PREFER_STATIC_LIB is set:

src/libproxychains.c:34:19: fatal error: dlfcn.h: No such file or directory
compilation terminated.
make[1]: *** [src/libproxychains.o] Error 1

In additional, the README file also mentions that this program works only on
dynamically linked programs.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 package/proxychains-ng/Config.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Comments

Peter Korsgaard Oct. 5, 2013, 7:11 p.m. UTC | #1
>>>>> "Axel" == Axel Lin <axel.lin@ingics.com> writes:

 Axel> Fix below build error if BR2_PREFER_STATIC_LIB is set:

 Axel> src/libproxychains.c:34:19: fatal error: dlfcn.h: No such file or directory
 Axel> compilation terminated.
 Axel> make[1]: *** [src/libproxychains.o] Error 1

 Axel> In additional, the README file also mentions that this program
 Axel> works only on dynamically linked programs.

Committed both, thanks.
diff mbox

Patch

diff --git a/package/proxychains-ng/Config.in b/package/proxychains-ng/Config.in
index 99e49bd..97eaa0c 100644
--- a/package/proxychains-ng/Config.in
+++ b/package/proxychains-ng/Config.in
@@ -1,10 +1,11 @@ 
 config BR2_PACKAGE_PROXYCHAINS_NG
 	bool "proxychains-ng"
 	depends on BR2_TOOLCHAIN_HAS_THREADS
+	depends on !BR2_PREFER_STATIC_LIB
 	help
 	  Force any tcp connections to flow through a proxy (or proxy chain)
 
 	  https://github.com/rofl0r/proxychains
 
-comment "proxychains-ng needs a toolchain with thread support"
-	depends on !BR2_TOOLCHAIN_HAS_THREADS
+comment "proxychains-ng needs a toolchain with thread and dynamic library support"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_PREFER_STATIC_LIB