Diff for /Amaya/configure.in between versions 1.16 and 1.17

version 1.16, 1997/09/03 16:43:25 version 1.17, 1997/09/17 12:52:27
Line 311  dnl    SPECIFIC STUFF : CONFIGURATION OP Line 311  dnl    SPECIFIC STUFF : CONFIGURATION OP
 dnl  dnl
 dnl  ***************************************************************  dnl  ***************************************************************
   
 THOT_VER="2.1a"  THOT_VER="2.1d"
 AMAYA_VER="1.0a"  AMAYA_VER="1.1a"
 KAFFE_VER="0.9.1"  KAFFE_VER="0.9.1"
 LIBWWW_VER="5.0a"  LIBWWW_VER="5.0a"
   
Line 346  if test "${CC}" = "gcc" ; then Line 346  if test "${CC}" = "gcc" ; then
       *-*-irix5* | *-*irix6* )        *-*-irix5* | *-*irix6* )
          CFLAGS="${CFLAGS} -fsigned-char"           CFLAGS="${CFLAGS} -fsigned-char"
       ;;        ;;
       *linux* )  
          default_www_access="java"  
       ;;  
       *solaris* )  
          default_www_access="java"  
       ;;  
   esac    esac
 fi  fi
   
Line 452  fi Line 446  fi
   
   
 dnl  dnl
 dnl java is enable by default on Linux and Solaris  dnl java is disabled by default
 dnl targets only.  
 dnl  dnl
   
 if test "$with_java" = "" ; then  if test "$with_java" = "" ; then
Line 464  if test "$with_java" = "" ; then Line 457  if test "$with_java" = "" ; then
             with_java="no"              with_java="no"
         fi          fi
     else      else
         if test "$enable_java" = "no" ; then          if test "$enable_java" = "yes" ; then
             with_java="no"  
         else  
             with_java="yes"              with_java="yes"
           else
               with_java="no"
         fi          fi
     fi      fi
 fi  fi
   
 dnl  dnl
 dnl plugins support is disabled by default if using java  dnl plugins support is enabled by default
 dnl otherwise it is enabled by default  
 dnl  dnl
   
 if test "$with_plugin" = "" ; then  if test "$with_plugin" = "" ; then
     if test "$with_java" = "yes" ; then    if test "$enable_plugin" = "no" ; then
       if test "$enable_plugin" = "yes" ; then      with_plugin="no"
         with_plugin="yes"    else
       else      with_plugin="yes"
         with_plugin="no"    fi
       fi  
     else  
       if test "$enable_plugin" = "no" ; then  
         with_plugin="no"  
       else  
         with_plugin="yes"  
       fi  
     fi    
 fi    fi  
   
 dnl  dnl

Removed from v.1.16  
changed lines
  Added in v.1.17


Webmaster