Diff for /Amaya/configure.in between versions 1.103 and 1.104

version 1.103, 2003/01/07 14:32:46 version 1.104, 2003/01/13 09:50:42
Line 652  if test "$with_gl" = "yes" ; then Line 652  if test "$with_gl" = "yes" ; then
                 break                     break   
             fi              fi
         done              done    
           AC_MSG_CHECKING([Xft])  
           for ac_dir in                           \
                   /usr/include                    \
                   /usr/X11R6/include              \
                   /usr/local/include              \
                   /usr/include/X11/Xft            \
                   /usr/X11R6/include/X11/Xft      \
                   /usr/local/include/X11/Xft      \
                   /usr/include/X11/Xft1           \
                   /usr/X11R6/include/X11/Xft1     \
                   /usr/local/include/X11/Xft1     \
                   /usr/include/X11/Xft2           \
                   /usr/X11R6/include/X11/Xft2     \
                   /usr/local/include/X11/Xft2     \
                   ; \
           do  if test -r "$ac_dir/Xft.h" ; then
                   xft_inc="yes"
                   GL_INCLUDES="$GL_INCLUDES -I$ac_dir"
                   AC_MSG_RESULT([yes])    
                   break   
               fi
           done    
         AC_MSG_CHECKING([gcc3])           AC_MSG_CHECKING([gcc3]) 
         for ac_dir in                           \          for ac_dir in                           \
                 /usr/lib                        \                  /usr/lib                        \
Line 702  if test "$with_gl" = "yes" ; then Line 723  if test "$with_gl" = "yes" ; then
                 GL_LIBRARIES=                  GL_LIBRARIES=
                 exit 1;                  exit 1;
         fi          fi
           if test "$xft_inc" = "" ; then
                   AC_MSG_WARN(Xft 2 headers (Xft.h) not found !!)
                   AC_MSG_WARN(Disabling opengl build !)
                   with_gl="no"
                   GL_OPTIONS=     
                   GL_INCLUDES=
                   GL_LIBRARIES=
                   exit 1;
           fi
         if test "$gl_inc" = "yes" ; then          if test "$gl_inc" = "yes" ; then
                 if test "$glu_inc" = "yes" ; then                  if test "$glu_inc" = "yes" ; then
                         if test "$gtkgl_inc" = "yes" ; then                          if test "$gtkgl_inc" = "yes" ; then
                             if test "$freetype_inc" = "yes" ; then                              if test "$freetype_inc" = "yes" ; then
                                 if test "$stdglu_inc" = "yes" ; then                                  if test "$xft_inc" = "yes" ; then
                                    GL_LIBRARIES=" -lXmu -lXft -lfreetype -lGL -lGLU -lgtkgl -lstdc++"                                          if test "$stdglu_inc" = "yes" ; then
                                 else                                             GL_LIBRARIES=" -lXmu -lXft -lfreetype -lGL -lGLU -lgtkgl -lstdc++"
                                    GL_LIBRARIES=" -lXmu -lXft -lfreetype -lGL -lGLU -lgtkgl"                                          else
                                 fi                                                                           GL_LIBRARIES=" -lXmu -lXft -lfreetype -lGL -lGLU -lgtkgl"
                                 GL_OPTIONS="-D_GL"                                          fi                              
                                 no_motif=yes                                          GL_OPTIONS="-D_GL"
                                           no_motif=yes
                                   fi
                             fi                              fi
                         fi                          fi
                 fi                  fi

Removed from v.1.103  
changed lines
  Added in v.1.104


Webmaster