]> git.saurik.com Git - wxWidgets.git/commitdiff
added wxUsE_XPM_H_IN_PATH
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 16 Aug 2000 15:24:38 +0000 (15:24 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 16 Aug 2000 15:24:38 +0000 (15:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8112 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/xpmhand.cpp

index 78459be1005c1f35f1f6f5752425c1b16931a9e1..7b0a898a5954e1f7ffbfdd07e603fd77f8b77a8a 100644 (file)
 
 #if wxUSE_XPM_IN_MSW
     #define FOR_MSW 1
-    #include "../xpm/xpm.h"
+
+    // allow the user to use the system-wide xpm.h by defining
+    // wxUSE_XPM_H_IN_PATH (and always use xpm.h in path if __WX_SETUP_H__ is
+    // defined which means that we use configure as it always add -I../xpm to
+    // the include path if needed)
+    #if !defined(__WX_SETUP_H__) && !defined(wxUSE_XPM_H_IN_PATH)
+        #include "../xpm/xpm.h"
+    #else
+        #include <xpm.h>
+    #endif
 #endif
 
 #include "wx/xpmhand.h"