From eb295d96fa36fc1341752e4fdc7965091123ccc6 Mon Sep 17 00:00:00 2001 From: rdb Date: Wed, 25 Nov 2009 07:29:32 +0000 Subject: [PATCH] HAVE_P3D_PLUGIN --- makepanda/makepanda.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index 22188677d3..00a897ce9f 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -1275,6 +1275,7 @@ DTOOL_CONFIG=[ ("HAVE_TINYXML", 'UNDEF', 'UNDEF'), ("HAVE_OPENAL_FRAMEWORK", 'UNDEF', 'UNDEF'), ("PRC_SAVE_DESCRIPTIONS", '1', '1'), + ("HAVE_P3D_PLUGIN", 'UNDEF', 'UNDEF'), ] PRC_PARAMETERS=[ @@ -1377,7 +1378,6 @@ def WriteConfigSettings(): if (RTDIST or RUNTIME): prc_parameters["DEFAULT_PRC_DIR"] = '""' - plugin_config["PANDA_PACKAGE_HOST_URL"] = "http://runtime.panda3d.org/" #plugin_config["P3D_PLUGIN_LOG_DIRECTORY"] = "" plugin_config["P3D_PLUGIN_LOG_BASENAME1"] = "" @@ -1385,6 +1385,9 @@ def WriteConfigSettings(): plugin_config["P3D_PLUGIN_LOG_BASENAME3"] = "" plugin_config["P3D_PLUGIN_P3D_PLUGIN"] = "" plugin_config["P3D_PLUGIN_P3DPYTHON"] = "" + + if (RUNTIME): + dtool_config["HAVE_P3D_PLUGIN"] = '1' conf = "/* prc_parameters.h. Generated automatically by makepanda.py */\n" for key in prc_parameters.keys():