diff src/color-man.c @ 686:c0dda0ffb931

configure.in was rewritten: - uses PKG_CHECK_MODULES everywhere - added --enable-debug (enable debugging support) - added --enable-developer (developer mode, checks depreceated code ...) - removed obsoleted INCLUDES from Makefile.am Fixed src/debug.h (added glib.h). Fixed src/exiv2.c compilation with libexiv2 v0.15. Added src/trash.h to src/Makefile.am (fixed generating 'make dist').
author bruclik
date Mon, 19 May 2008 01:15:17 +0000
parents 8268cbe682f1
children 4fe8f9656107
line wrap: on
line diff
--- a/src/color-man.c	Mon May 19 00:54:59 2008 +0000
+++ b/src/color-man.c	Mon May 19 01:15:17 2008 +0000
@@ -21,11 +21,7 @@
 #ifdef HAVE_LCMS
 /*** color support enabled ***/
 
-#ifdef HAVE_LCMS_LCMS_H
-  #include <lcms/lcms.h>
-#else
-  #include <lcms.h>
-#endif
+#include <lcms.h>
 
 
 typedef struct _ColorManCache ColorManCache;
@@ -431,7 +427,7 @@
 	color_man_cache_reset();
 }
 
-#else
+#else /* define HAVE_LCMS */
 /*** color support not enabled ***/
 
 
@@ -471,4 +467,4 @@
 	/* no op */
 }
 
-#endif
+#endif /* define HAVE_LCMS */