Diff for /Amaya/configure.in between versions 1.46 and 1.47

version 1.46, 1999/08/24 14:04:58 version 1.47, 1999/09/23 14:39:57
Line 477  AC_ARG_ENABLE(jit,     [  --enable-jit Line 477  AC_ARG_ENABLE(jit,     [  --enable-jit
 AC_ARG_ENABLE(plugin,  [  --enable-plugin         Add Netscape Plug-Ins support])  AC_ARG_ENABLE(plugin,  [  --enable-plugin         Add Netscape Plug-Ins support])
 AC_ARG_ENABLE(math,    [  --enable-math           Add Math support ])  AC_ARG_ENABLE(math,    [  --enable-math           Add Math support ])
 AC_ARG_ENABLE(graph,   [  --enable-graph          Add Graphics support ])  AC_ARG_ENABLE(graph,   [  --enable-graph          Add Graphics support ])
   AC_ARG_ENABLE(annot,   [  --enable-annot          Add Annotations support ])
 AC_ARG_ENABLE(ilu,     [  --enable-ilu            Add ILU support])  AC_ARG_ENABLE(ilu,     [  --enable-ilu            Add ILU support])
   
 dnl  dnl
Line 555  if test "$with_graph" = "" ; then Line 556  if test "$with_graph" = "" ; then
 fi  fi
   
 dnl  dnl
   dnl annotations is disabled by default
   dnl
   if test "$with_annot" = "" ; then
       if test "$enable_annot" = "yes" ; then
           with_annot="yes"
       else
           with_annot="no"
       fi
   fi
   
   dnl
 dnl ilu is disabled by default  dnl ilu is disabled by default
 dnl  dnl
 if test "$with_ilu" = "" ; then  if test "$with_ilu" = "" ; then
Line 677  if test "$build_amaya" = "yes" ; then Line 689  if test "$build_amaya" = "yes" ; then
         fi          fi
     fi      fi
   
       if test ! -f $srcdir/amaya/Makefile.annot ; then
           if test "$with_annot" = "yes" ; then
               AC_MSG_WARN(Annotation makefile not found !!)
               AC_MSG_WARN(Disabling Annotations build !)
               with_annot="no"
           fi
       fi
   
     if test "$with_java" = "yes" -a "$with_ilu" = "yes" ; then      if test "$with_java" = "yes" -a "$with_ilu" = "yes" ; then
         java_ilu_option="-DWITH_ILU"          java_ilu_option="-DWITH_ILU"
         ilu_java_option="-DWITH_JAVA"          ilu_java_option="-DWITH_JAVA"
Line 812  else Line 832  else
     graph_frag=/dev/null      graph_frag=/dev/null
 fi  fi
   
   if test "$with_annot" = "yes" ; then
       AC_SUBST_FILE(annot_frag)
       annot_frag=$srcdir/amaya/Makefile.annot
   else
       AC_SUBST_FILE(annot_frag)
       annot_frag=/dev/null
   fi
   
 if test "$with_ilu" = "yes" ; then  if test "$with_ilu" = "yes" ; then
     AC_SUBST_FILE(ilu_frag)      AC_SUBST_FILE(ilu_frag)
     ilu_frag=$srcdir/ilulib/Makefile.ilu      ilu_frag=$srcdir/ilulib/Makefile.ilu
Line 983  dnl        AC_MSG_WARN(Beware this combi Line 1011  dnl        AC_MSG_WARN(Beware this combi
     if test "$with_graph" = "yes" ; then      if test "$with_graph" = "yes" ; then
         echo Amaya configured with Graph support          echo Amaya configured with Graph support
     fi      fi
       if test "$with_annot" = "yes" ; then
           echo Amaya configured with Annotations support
       fi
     if test "$with_ilu" = "yes" ; then      if test "$with_ilu" = "yes" ; then
         echo Amaya configured with ILU support          echo Amaya configured with ILU support
     fi      fi

Removed from v.1.46  
changed lines
  Added in v.1.47


Webmaster