Diff for /Amaya/configure.in between versions 1.100 and 1.101

version 1.100, 2002/11/28 10:32:16 version 1.101, 2002/12/09 15:20:28
Line 454  dnl    SPECIFIC STUFF : CONFIGURATION OP Line 454  dnl    SPECIFIC STUFF : CONFIGURATION OP
 dnl  dnl
 dnl  ***************************************************************  dnl  ***************************************************************
   
 AC_ARG_WITH(graphic-libs, [  --without-graphic-libs    doesn't use provided libjpeg, libpng.])  # We don't use our graphic libraries for the pure GTK version (without GL)
 if test "$withval" = "no" ; then  
   no_graphic=yes  echo "with gtk is ${with_gtk}, with gl is ${with_gl}\n"
 fi  
 if test "$withval" = "yes" ; then  if test "${with_gtk}" != "yes" -o "${with_gl}" = "yes" ; then
   no_graphic=no    AC_ARG_WITH(graphic-libs, [  --without-graphic-libs    doesn't use provided libjpeg, libpng.])
     if test "$withval" = "no" ; then
       no_graphic=yes
     fi
     if test "$withval" = "yes" ; then
       no_graphic=no
     fi
 fi  fi
   
 if test "$no_graphic" = yes; then  if test "$no_graphic" = yes; then
Line 906  THOT_OPTIONS="$GTK_OPTIONS $I18N_OPTIONS Line 912  THOT_OPTIONS="$GTK_OPTIONS $I18N_OPTIONS
 AMAYA_OPTIONS="$MATH_OPTIONS $SVG_OPTIONS $GTK_OPTIONS $GENERIC_XML_OPTIONS $I18N_OPTIONS $GL_OPTIONS"  AMAYA_OPTIONS="$MATH_OPTIONS $SVG_OPTIONS $GTK_OPTIONS $GENERIC_XML_OPTIONS $I18N_OPTIONS $GL_OPTIONS"
 #PLUGIN_OPTIONS="-DPLUGIN_TRACE -DXP_UNIX"  #PLUGIN_OPTIONS="-DPLUGIN_TRACE -DXP_UNIX"
 AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS $I18N_OPTIONS"  AMAYA_ANNOT_OPTIONS="$AMAYA_ANNOT_OPTIONS $I18N_OPTIONS"
 IMGLIBS="-ljpeg -lpng -lz"  
   # only include the IMG libraries if we are not in pure GTK mode (without GL)
   if test "${with_gtk}" = "yes" -a "${with_gl}" != "yes" ; then
     IMGLIBS=
   else
     IMGLIBS="-ljpeg -lpng -lz"
   fi
 EXTRA_LIBS=  EXTRA_LIBS=
   
 dnl  dnl

Removed from v.1.100  
changed lines
  Added in v.1.101


Webmaster