From 9e1d1146b81161a2a3977b4fa2fb5c8536b7e0aa Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 24 Mar 2015 17:42:04 +0100 Subject: [PATCH] Build windows plug-in with MFC --- makepanda/makepanda.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index 6613781054..3ec8352e63 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -364,7 +364,7 @@ if not IsCustomOutputDir(): if (RUNTIME): for pkg in PkgListGet(): - if pkg in ["GTK2"]: + if pkg in ["GTK2", "MFC"]: # Optional package(s) for runtime. pass elif pkg in ["OPENSSL", "ZLIB"]: @@ -769,8 +769,8 @@ if (COMPILER=="GCC"): elif not PkgSkip("X11"): LibDirectory("ALWAYS", "/usr/X11R6/lib") - if (RUNTIME): - # For the runtime, all packages are required + if RUNTIME: + # For the runtime, these packages are required for pkg in ["OPENSSL", "ZLIB"]: skips = [] if (pkg in PkgListGet() and PkgSkip(pkg)==1):