Minor modifications to Config.hpp

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1615 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2010-11-05 14:09:29 +00:00
parent 6a6ff075e8
commit 1279cb208c

View File

@ -93,11 +93,8 @@
////////////////////////////////////////////////////////////
// Define portable import / export macros
////////////////////////////////////////////////////////////
#if defined(SFML_SYSTEM_WINDOWS)
#if defined(SFML_SYSTEM_WINDOWS) && !defined(SFML_STATIC)
#ifndef SFML_STATIC
// Windows platforms
#ifdef SFML_EXPORTS
// From DLL side, we must export
@ -121,14 +118,7 @@
#else
// No specific directive needed for static build
#define SFML_API
#endif
#else
// Other platforms don't need to define anything
// Other platforms and static build don't need these export macros
#define SFML_API
#endif