From b2da92fefbcfdaf4cb1a2bbc45e240d74d55becd Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 15 Mar 2011 18:34:30 +0000 Subject: [PATCH] Link fltk statically --- makepanda/makepandacore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index 18cb189419..555381e6c8 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -983,7 +983,7 @@ def PkgConfigGetLibs(pkgname, tool = "pkg-config"): if (tool == "pkg-config"): handle = os.popen(LocateBinary("pkg-config") + " --silence-errors --libs-only-l " + pkgname) elif (tool == "fltk-config"): - handle = os.popen(LocateBinary("fltk-config") + " --ldflags") + handle = os.popen(LocateBinary("fltk-config") + " --ldstaticflags") else: handle = os.popen(LocateBinary(tool) + " --libs") result = handle.read().strip()