diff options
-rw-r--r-- | Mac/Modules/ColorPickermodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mac/Modules/ColorPickermodule.c b/Mac/Modules/ColorPickermodule.c index 3878093..e7d0045 100644 --- a/Mac/Modules/ColorPickermodule.c +++ b/Mac/Modules/ColorPickermodule.c @@ -21,7 +21,11 @@ PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ +#ifdef WITHOUT_FRAMEWORKS #include <ColorPicker.h> +#else +#include <Carbon/Carbon.h> +#endif #include "Python.h" #include "macglue.h" #include "pymactoolbox.h" |