From: <and...@us...> - 2009-07-21 18:25:12
|
Revision: 10174 http://plplot.svn.sourceforge.net/plplot/?rev=10174&view=rev Author: andrewross Date: 2009-07-21 18:24:35 +0000 (Tue, 21 Jul 2009) Log Message: ----------- Include definitions for pyqt4 missing from previous commit. Modified Paths: -------------- trunk/include/pldll.h.in Modified: trunk/include/pldll.h.in =================================================================== --- trunk/include/pldll.h.in 2009-07-21 17:25:25 UTC (rev 10173) +++ trunk/include/pldll.h.in 2009-07-21 18:24:35 UTC (rev 10174) @@ -147,4 +147,12 @@ #define PLDLLIMPEXP_QT_DATA(type) PLDLLIMPORT type #endif +#if defined(plplot_pyqt4_EXPORTS) + #define PLDLLIMPEXP_PYQT4 PLDLLEXPORT + #define PLDLLIMPEXP_PYQT4_DATA(type) PLDLLEXPORT type +#else + #define PLDLLIMPEXP_PYQT4 PLDLLIMPORT + #define PLDLLIMPEXP_PYQT4_DATA(type) PLDLLIMPORT type +#endif + #endif /* __PL_DLL_H */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |