X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=colorize.git;a=blobdiff_plain;f=configure.ac;h=deb91e3239d1c7e09b4c59b548d4eb5eb836dc86;hp=ec3960dacebce46aee308342ff67fa27d3e99fec;hb=HEAD;hpb=5fa66e1bed403552f54b2e5a567e670c81a2365e diff --git a/configure.ac b/configure.ac index ec3960d..deb91e3 100644 --- a/configure.ac +++ b/configure.ac @@ -47,20 +47,21 @@ AM_CONDITIONAL(ENABLE_GUI, test x"$enable_gui" = x"yes") somethingmagick=no -AC_ARG_ENABLE(graphicsmagick, - [AS_HELP_STRING( - [--disable-graphicsmagick], - [Disable building graphicsmagick] - )], - [enable_graphicsmagick=$enableval], [enable_graphicsmagick="yes"]) -if test x"$enable_graphicsmagick" = x"yes" -then - PKG_CHECK_MODULES(GRAPHICSMAGICK, GraphicsMagick >= 1.3.16, , enable_graphicsmagick=no) -fi -if test x"$enable_graphicsmagick" = x"yes" -then - somethingmagick=yes -fi +# disabled due to problems with api compatibilty with imagemagick +#AC_ARG_ENABLE(graphicsmagick, +# [AS_HELP_STRING( +# [--disable-graphicsmagick], +# [Disable building graphicsmagick] +# )], +# [enable_graphicsmagick=$enableval], [enable_graphicsmagick="yes"]) +#if test x"$enable_graphicsmagick" = x"yes" +#then +# PKG_CHECK_MODULES(GRAPHICSMAGICK, GraphicsMagick >= 1.3.16, , enable_graphicsmagick=no) +#fi +#if test x"$enable_graphicsmagick" = x"yes" +#then +# somethingmagick=yes +#fi AC_ARG_ENABLE(imagemagick, [AS_HELP_STRING( @@ -97,30 +98,31 @@ AC_OUTPUT( src/Makefile tools/Makefile gui/Makefile + gui/buttons/Makefile Makefile) AS_IF([test "x$have_windows" == xno],[AC_MSG_NOTICE( Compiling for Unix )],[AC_MSG_NOTICE([ Compiling for Windows ])]) -AS_IF([test "x$enable_gui" == xyes],[AC_MSG_NOTICE( Compiled with GTK (GUI) )],[AC_MSG_NOTICE([ +AS_IF([test "x$enable_gui" == xyes],[AC_MSG_NOTICE( Compiling with GTK (GUI) )],[AC_MSG_NOTICE([ -** Not compiled with GTK (GUI) support ** +** Not compiling with GTK (GUI) support ** In order to use GUI, GTK+ 2.0 or higher must be installed. ])]) -AS_IF([test "x$somethingmagick" == xyes],[AC_MSG_NOTICE( Compiled with ImageMagick or GraphicsMagick )],[AC_MSG_NOTICE([ +AS_IF([test "x$somethingmagick" == xyes],[AC_MSG_NOTICE( Compiling with ImageMagick )],[AC_MSG_NOTICE([ -** Not compiled with GraphicsMagick and ImageMagick support ** +** Not compiling with ImageMagick support ** Only PPM image files can be loaded and saved. ])]) -AS_IF([test "x$enable_opencv" == xyes],[AC_MSG_NOTICE( Compiled with OpenCV )],[AC_MSG_NOTICE([ +AS_IF([test "x$enable_opencv" == xyes],[AC_MSG_NOTICE( Compiling with OpenCV )],[AC_MSG_NOTICE([ -** Not compiled with OpenCV support ** +** Not compiling with OpenCV support ** It will not be possible to calculate motion flow vectors to improve colorization of moving objects. ])]) -AS_IF([test "x$with_debug_algo" == xyes],[AC_MSG_NOTICE( Compiled with debugging )],[]) +AS_IF([test "x$with_debug_algo" == xyes],[AC_MSG_NOTICE( Compiling with debugging )],[])