From bac99bcd8af6022a245f45efdc78687fc609289f Mon Sep 17 00:00:00 2001 From: jez_higgins <> Date: Mon, 2 Sep 2002 10:35:04 +0000 Subject: [PATCH] saxlib.cpp is now generated from saxlib.tpl --- SAX/saxlib.cpp | 62 -------------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 SAX/saxlib.cpp diff --git a/SAX/saxlib.cpp b/SAX/saxlib.cpp deleted file mode 100644 index dc6a2257..00000000 --- a/SAX/saxlib.cpp +++ /dev/null @@ -1,62 +0,0 @@ -/* - * SAXlib.cpp - Pulls in the appropriate bits of the library, depending - * on the configured options. The required libraries built within this - * package are: - * SAXlib - * Utility - * - the selected parser(s) - * - * $Id$ - */ - -#ifdef _MSC_VER -// turn off the useless "template name is too long" warning -#pragma warning(disable: 4786) -#endif - -#define NO_DEFAULT_PARSER -#include - -#ifdef USE_LIBXML2 -#pragma message("Pulling in libxml2") -#include -// automagically link libxml2 if using VC++ -#ifdef _MSC_VER -#pragma comment(lib, "libxml2.lib") -#endif -#endif - -#ifdef USE_MSXML -#ifndef _MSC_VER -#error "USE_MSXML is only valid for VisualC++ builds" -#else -#pragma message("Nothing to pull in for MSXML") -#endif -// nothing extra to pull in for MSXML -#endif - -#ifdef USE_XERCES -// automagically link Xerces if using VC++ -#ifndef _MSC_VER -#pragma message("Nothing to pull in for Xerces") -#else -#pragma message("Pulling in Xerces") -#pragma comment(lib, "xerces-c_1.lib") -#endif -#endif - -#ifdef USE_GARDEN -#pragma message("Nothing to pull in for Garden") -// nothing extra to pull in for Garden -#endif - -#ifdef USE_EXPAT -#pragma message("Pulling in Expat") -#include -#ifdef _MSC_VER -// automagically link expat if using VC++ -#pragma comment(lib, "expat.lib") -#endif -#endif - -// end of file \ No newline at end of file