From 2eacb78949b3a2bc5d9b3f34c1532a278ed0fc6d Mon Sep 17 00:00:00 2001 From: gogg Date: Sun, 18 Apr 2010 07:06:22 +0000 Subject: [PATCH] Checking that we have JPEG when building rtdist (used for the splash screen) --- makepanda/makepanda.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index 01486dc90c..d8bc4e01f2 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -243,6 +243,9 @@ if (INSTALLER) and (PkgSkip("PYTHON")) and (not RUNTIME): if (RTDIST or RUNTIME) and (PkgSkip("TINYXML")): exit("Cannot build rtdist or runtime without tinyxml") +if (RTDIST) and (PkgSkip("JPEG")): + exit("Cannot build rtdist without jpeg") + if (RUNTIME): SetLinkAllStatic(True)