Skip to content

Commit

Permalink
Merge pull request #226 from baip/master
Browse files Browse the repository at this point in the history
Fix compiling errors under Windows & Cygwin
  • Loading branch information
ghutchis committed Dec 29, 2015
2 parents 4fb8d73 + a05058b commit b83b71b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/libxml/xmlexports.h
Expand Up @@ -110,7 +110,7 @@
#endif

/* Cygwin platform, GNU compiler */
#if defined(_WIN32) && defined(__CYGWIN__)
#if defined(__CYGWIN__)
#undef XMLPUBFUN
#undef XMLPUBVAR
#undef XMLCALL
Expand Down
2 changes: 1 addition & 1 deletion src/fingerprint.cpp
Expand Up @@ -30,7 +30,7 @@ GNU General Public License for more details.
using namespace std;
namespace OpenBabel
{
#if defined(__CYGWIN32__) || defined(__MINGW32__)
#if defined(__CYGWIN__) || defined(__MINGW32__)
// macro to implement static OBPlugin::PluginMapType& Map()
PLUGIN_CPP_FILE(OBFingerprint)
#endif
Expand Down
1 change: 1 addition & 0 deletions test/CMakeLists.txt
Expand Up @@ -235,6 +235,7 @@ endif(NOT MINGW AND NOT CYGWIN)
###############################

if (PYTHON_BINDINGS)
include(UsePythonTest)
set(pybindtests
bindings _pybel example)
foreach(pybindtest ${pybindtests})
Expand Down

0 comments on commit b83b71b

Please sign in to comment.