Diff for /Amaya/configure.in between versions 1.84 and 1.85

version 1.84, 2002/04/16 08:28:21 version 1.85, 2002/04/18 10:11:43
Line 205  AC_FUNC_VPRINTF Line 205  AC_FUNC_VPRINTF
 AC_CHECK_FUNCS(getcwd gethostname gettimeofday getwd mkdir mktime putenv select socket strdup strerror strftime strstr strtod strtol uname lstat strcasecmp strncasecmp strchr memcpy)  AC_CHECK_FUNCS(getcwd gethostname gettimeofday getwd mkdir mktime putenv select socket strdup strerror strftime strstr strtod strtol uname lstat strcasecmp strncasecmp strchr memcpy)
   
   
   
   AC_ARG_WITH(GL,              [  --with-gl               enable Opengl canvas (experimental) ])
   dnl
   dnl GL canvas is disabled by default
   dnl
   dnl needs Opengl, glu, Xft (xfree 4 font server)
   dnl needs GTK
   dnl text WILL need freetype2, ftgl
   dnl GL is for opengl
   dnl Glu is for text drawing (until we switch) 
   dnl GLU is for tesselation algortihms (until we extract it from this lib)
   dnl (tesselation is used for polygons with holes in it...)
   dnl gtkgl is for integration of opengl in GTK
   if test "$with_gl" = "" ; then
    if test "$enable_gl" = "yes" ; then
       with_gl="yes"
     else
       with_gl="no"
     fi
   fi  
   
 GTK_OPTIONS=  GTK_OPTIONS=
 AC_ARG_WITH(gtk, [  --with-gtk              use GTK instead of Motif])  AC_ARG_WITH(gtk, [  --with-gtk              use GTK instead of Motif])
 if test "$withval" = "yes" ; then  if test "$withval" = "yes" ; then
     with_gtk="yes"
   else
     if test "$with_gl" = "yes" ; then
       with_gtk="yes"
     fi
   fi
   
   if test "$with_gtk" = "yes" ; then
   for ac_dir in               \    for ac_dir in               \
     /usr/lib/glib/include     \      /usr/lib/glib/include     \
     /usr/X11R6/include        \      /usr/X11R6/include        \
Line 540  else Line 569  else
    I18N_OPTIONS=""     I18N_OPTIONS=""
 fi  fi
   
 AC_ARG_WITH(GL,              [  --with-gl               enable Opengl canvas (experimental) ])  
 dnl  
 dnl GL canvas is disabled by default  
 dnl  
 dnl needs Opengl, glu, Xft (xfree 4 font server)  
 dnl needs GTK  
 dnl text WILL need freetype2, ftgl  
 dnl GL is for opengl  
 dnl Glu is for text drawing (until we switch)   
 dnl GLU is for tesselation algortihms (until we extract it from this lib)  
 dnl (tesselation is used for polygons with holes in it...)  
 dnl gtkgl is for integration of opengl in GTK  
 if test "$with_gl" = "" ; then  
  if test "$enable_gl" = "yes" ; then  
     with_gl="yes"  
   else  
     with_gl="no"  
   fi  
 fi    
 if test "$with_gl" = "yes" ; then  if test "$with_gl" = "yes" ; then
         AC_MSG_CHECKING([OpenGL])          AC_MSG_CHECKING([OpenGL])
         for ac_dir in                           \          for ac_dir in                           \

Removed from v.1.84  
changed lines
  Added in v.1.85


Webmaster