Diff for /Amaya/configure.in between versions 1.162 and 1.163

version 1.162, 2005/02/09 10:50:40 version 1.163, 2005/02/09 11:57:03
Line 379  if test "$with_mesa" = "yes" ; then Line 379  if test "$with_mesa" = "yes" ; then
   fi    fi
   
   OLDDIR=`pwd`    OLDDIR=`pwd`
   cd ../../Mesa  
   GL_BUILDDIR="${OLDDIR}/Mesa"    GL_BUILDDIR="${OLDDIR}/Mesa"
   
   echo "---> Compiling Mesa library."  
   if test "$OS_OPTIONS" = "-D_UNIX" ; then  
     # LINUX  
     # compile only .a libraries because Amaya is linked staticaly with mesa  
     make linux-static      
     if test $? != 0 ; then  
       AC_MSG_ERROR(A problem occurs durring Mesa library compilation. Please fix the problem and try again.)  
     fi  
   fi  
   echo "---> Compiling Mesa library. - DONE"  
   
   
   echo "---> Install Mesa library into ${GL_BUILDDIR}"    echo "---> Install Mesa library into ${GL_BUILDDIR}"
   # remove old lib  
   rm -rf ${GL_BUILDDIR}/lib/*  
   # create directories  
   mkdir -p ${GL_BUILDDIR}    mkdir -p ${GL_BUILDDIR}
   mkdir -p ${GL_BUILDDIR}/include    cp -r ../../Mesa/* ${GL_BUILDDIR}
   mkdir -p ${GL_BUILDDIR}/lib  
   # copy includes  
   cp -r include/GL ${GL_BUILDDIR}/include/  
   # copy libraries (only .a because we dont want to share)  
   cp lib/*.a ${GL_BUILDDIR}/lib/  
   echo "---> Install Mesa library into ${GL_BUILDDIR} - DONE"  
   
   cd $OLDDIR    echo "---> Install Mesa library into ${GL_BUILDDIR} - DONE"
   
   # this is the flags used to build amaya with OpenGL    # this is the flags used to build amaya with OpenGL
   GL_OPTIONS="-D_GL"    GL_OPTIONS="-D_GL"

Removed from v.1.162  
changed lines
  Added in v.1.163


Webmaster