From d1d9fe336ed14830b961bba6479dc83bb230e4be Mon Sep 17 00:00:00 2001 From: Josh Yelon Date: Mon, 22 Jan 2007 20:23:21 +0000 Subject: [PATCH] Temporary workaround --- panda/metalibs/pandaegg/pandaeggnopg.cxx | 27 ++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 panda/metalibs/pandaegg/pandaeggnopg.cxx diff --git a/panda/metalibs/pandaegg/pandaeggnopg.cxx b/panda/metalibs/pandaegg/pandaeggnopg.cxx new file mode 100644 index 0000000000..52903433e5 --- /dev/null +++ b/panda/metalibs/pandaegg/pandaeggnopg.cxx @@ -0,0 +1,27 @@ +// Filename: pandaegg.cxx +// Created by: drose (16May00) +// +//////////////////////////////////////////////////////////////////// + +#include "pandaegg.h" + +#include "config_egg.h" + +// By including checkPandaVersion.h, we guarantee that runtime +// attempts to load libpandaegg.so/.dll will fail if they +// inadvertently link with the wrong version of libdtool.so/.dll. + +#include "checkPandaVersion.h" + +//////////////////////////////////////////////////////////////////// +// Function: init_libpandaegg +// Description: Initializes the library. This must be called at +// least once before any of the functions or classes in +// this library can be used. Normally it will be +// called by the static initializers and need not be +// called explicitly, but special cases exist. +//////////////////////////////////////////////////////////////////// +void +init_libpandaegg() { + init_libegg(); +}