comparison configure.in @ 7926:d74f996e005d

__magick_read__.cc: configuration and style fixes
author John W. Eaton <jwe@octave.org>
date Mon, 14 Jul 2008 16:00:09 -0400
parents fcc70f30fe31
children 5a156ab94dd2
comparison
equal deleted inserted replaced
7925:9316b59903c9 7926:d74f996e005d
633 AC_SUBST(CURL_LIBS) 633 AC_SUBST(CURL_LIBS)
634 if test "$curl_missing" = yes; then 634 if test "$curl_missing" = yes; then
635 warn_curl="cURL library not found. The urlread and urlwrite functions will be disabled." 635 warn_curl="cURL library not found. The urlread and urlwrite functions will be disabled."
636 fi 636 fi
637 637
638 # GraphicsMagick++
639
640 warn_magick=
641 AC_CHECK_PROGS(MAGICK_CONFIG, [GraphicsMagick++-config GraphicsMagick-config])
642 if test -z "$MAGICK_CONFIG"; then
643 warn_magick="GraphicsMagick++ config script not found. Assuming GraphicsMagic++ library and header files are missing, so imread will not be fully functional"
644 fi
638 645
639 # --------------------------------------------------------------------- 646 # ---------------------------------------------------------------------
640 647
641 ## libraries needed for graphics 648 ## libraries needed for graphics
642 649
2014 LIBS: $LIBS 2021 LIBS: $LIBS
2015 Default pager: $DEFAULT_PAGER 2022 Default pager: $DEFAULT_PAGER
2016 gnuplot: $GNUPLOT 2023 gnuplot: $GNUPLOT
2017 OPENGL libraries: $OPENGL_LIBS 2024 OPENGL libraries: $OPENGL_LIBS
2018 fltk backend libs: $GRAPHICS_LIBS 2025 fltk backend libs: $GRAPHICS_LIBS
2026 Magick config: $MAGICK_CONFIG
2019 2027
2020 Do internal array bounds checking: $BOUNDS_CHECKING 2028 Do internal array bounds checking: $BOUNDS_CHECKING
2021 Build static libraries: $STATIC_LIBS 2029 Build static libraries: $STATIC_LIBS
2022 Build shared libraries: $SHARED_LIBS 2030 Build shared libraries: $SHARED_LIBS
2023 Dynamic Linking: $ENABLE_DYNAMIC_LINKING $DL_API_MSG 2031 Dynamic Linking: $ENABLE_DYNAMIC_LINKING $DL_API_MSG
2127 warn_msg_printed=true 2135 warn_msg_printed=true
2128 fi 2136 fi
2129 2137
2130 if test -n "$warn_glpk"; then 2138 if test -n "$warn_glpk"; then
2131 AC_MSG_WARN($warn_glpk) 2139 AC_MSG_WARN($warn_glpk)
2140 warn_msg_printed=true
2141 fi
2142
2143 if test -n "$warn_magick"; then
2144 AC_MSG_WARN($warn_magick)
2132 warn_msg_printed=true 2145 warn_msg_printed=true
2133 fi 2146 fi
2134 2147
2135 if test -n "$warn_hdf5"; then 2148 if test -n "$warn_hdf5"; then
2136 AC_MSG_WARN($warn_hdf5) 2149 AC_MSG_WARN($warn_hdf5)