|
|
@@ -1534,18 +1534,18 @@ PANDAVERSION_H_RUNTIME="""
|
|
|
|
|
|
CHECKPANDAVERSION_CXX="""
|
|
|
# include "dtoolbase.h"
|
|
|
-EXPCL_DTOOL int panda_version_$VERSION1_$VERSION2_$VERSION3 = 0;
|
|
|
+EXPCL_DTOOL int panda_version_$VERSION1_$VERSION2 = 0;
|
|
|
"""
|
|
|
|
|
|
CHECKPANDAVERSION_H="""
|
|
|
# include "dtoolbase.h"
|
|
|
-extern EXPCL_DTOOL int panda_version_$VERSION1_$VERSION2_$VERSION3;
|
|
|
+extern EXPCL_DTOOL int panda_version_$VERSION1_$VERSION2;
|
|
|
# ifndef WIN32
|
|
|
/* For Windows, exporting the symbol from the DLL is sufficient; the
|
|
|
DLL will not load unless all expected public symbols are defined.
|
|
|
Other systems may not mind if the symbol is absent unless we
|
|
|
explictly write code that references it. */
|
|
|
-static int check_panda_version = panda_version_$VERSION1_$VERSION2_$VERSION3;
|
|
|
+static int check_panda_version = panda_version_$VERSION1_$VERSION2;
|
|
|
# endif
|
|
|
"""
|
|
|
|