diff --git a/contrib/Netgen/README.txt b/contrib/Netgen/README.txt index 314fff0e0c2236c856d562e4282d2d650a1fc2d8..c0be29b48573559153ec3d36494bda158bf8618b 100644 --- a/contrib/Netgen/README.txt +++ b/contrib/Netgen/README.txt @@ -2,12 +2,13 @@ This directory contains Joachim Sch\"oberl's NETGEN mesh generator: The libsrc and nglib directories are unmodified copies taken from - - svn co https://netgen-mesher.svn.sourceforge.net/svnroot/netgen-mesher - -(SVN rev. 469), with the following exceptions: - -* dllexport/dllimport directives have been removed from nglib/nglib.h -* nglib_gmsh.cpp file replaces the original nglib/nglib.cpp file +"svn co https://netgen-mesher.svn.sourceforge.net/svnroot/netgen-mesher" +(svn revision 469), with the following exceptions: + +* dllexport/dllimport directives have been removed from + nglib/nglib.h + libsrc/interface/nginterface.h + libsrc/interface/mydefs.hpp +* nglib_gmsh.cpp reimplements parts of nglib/nglib.cpp See the LICENSE file for license information. diff --git a/contrib/Netgen/libsrc/include/mydefs.hpp b/contrib/Netgen/libsrc/include/mydefs.hpp index 54c14eba2215cd73c95607931c7e4f868f1a1d91..a821d381f27862949346491e560839aa99135cca 100644 --- a/contrib/Netgen/libsrc/include/mydefs.hpp +++ b/contrib/Netgen/libsrc/include/mydefs.hpp @@ -24,7 +24,7 @@ #endif -#ifdef WIN32 +#if 0 // GMSH #ifdef WIN32 #if NGINTERFACE_EXPORTS || NGLIB_EXPORTS || nglib_EXPORTS #define DLL_HEADER __declspec(dllexport) #else diff --git a/contrib/Netgen/libsrc/include/nginterface.h b/contrib/Netgen/libsrc/include/nginterface.h index 85ae8d6d784461c2943689dc5715b4cc86def607..f15c930e146a78ae36e47feb796c6d33c38abf2f 100644 --- a/contrib/Netgen/libsrc/include/nginterface.h +++ b/contrib/Netgen/libsrc/include/nginterface.h @@ -16,7 +16,7 @@ */ -#ifdef WIN32 +#if 0 // GMSH #ifdef WIN32 #if NGINTERFACE_EXPORTS || NGLIB_EXPORTS || nglib_EXPORTS #define DLL_HEADER __declspec(dllexport) #else diff --git a/contrib/Netgen/nglib/nglib.h b/contrib/Netgen/nglib/nglib.h index a3bb606288ff35f30baf88a07bd7442bcbcab35c..fc4d174ad938b9491ee6c6d88c7cd62211cf4f9f 100644 --- a/contrib/Netgen/nglib/nglib.h +++ b/contrib/Netgen/nglib/nglib.h @@ -23,8 +23,7 @@ // Philippose - 14.02.2009 // Modifications for creating a DLL in Windows -//#ifdef WIN32 -#if 0 // for GMSH +#if 0 // GMSH #ifdef WIN32 #ifdef NGLIB_EXPORTS || nglib_EXPORTS #define DLL_HEADER __declspec(dllexport) #else