Diff for /parser3/Attic/configure.in between versions 1.86 and 1.91.2.1

version 1.86, 2005/11/22 16:12:59 version 1.91.2.1, 2005/12/28 15:31:34
Line 2  dnl Process this file with autoconf to p Line 2  dnl Process this file with autoconf to p
 AC_INIT(README)  AC_INIT(README)
 AC_PREREQ(2.57)  AC_PREREQ(2.57)
   
 AM_INIT_AUTOMAKE(parser, 3.2.0beta, nodefine)  AM_INIT_AUTOMAKE(parser, 3.2.1, nodefine)
   
 dnl expand srcdir  dnl expand srcdir
 P3S=`cd $srcdir/src ; pwd`  P3S=`cd $srcdir/src ; pwd`
Line 253  AC_SUBST(GC_LIBS) Line 253  AC_SUBST(GC_LIBS)
 LIBS=$SAVE_LIBS  LIBS=$SAVE_LIBS
   
   
 AC_ARG_WITH(glib-config,[  --with-glib-config=FILE FILE is glib library  
                           configuration file (search for glib*-config)],  
         GLIB_CONFIG=$withval  
 )  
   
 AC_ARG_WITH(shared-xml,[  --with-shared-xml=D     D is the directory where  AC_ARG_WITH(shared-xml,[  --with-shared-xml=D     D is the directory where
                           Gnome XML libraries are installed (shared libs)],[                            Gnome XML libraries are installed (shared libs)],[
         GNOME_XML=$withval          GNOME_XML=$withval
Line 272  AC_ARG_WITH(shared-xml,[  --with-shared- Line 267  AC_ARG_WITH(shared-xml,[  --with-shared-
         AC_DEFINE(XML,,xml-abled parser (uses shared library))          AC_DEFINE(XML,,xml-abled parser (uses shared library))
                   
         LIBXML2_SO_NAME=`cd $XMLLIB ; ls libxml2.?? libxml2.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`          LIBXML2_SO_NAME=`cd $XMLLIB ; ls libxml2.?? libxml2.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`
         LIBGDOME_SO_NAME=`cd $XMLLIB ; ls libgdome.?? libgdome.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`  
         LIBXSLT_SO_NAME=`cd $XMLLIB ; ls libxslt.?? libxslt.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`          LIBXSLT_SO_NAME=`cd $XMLLIB ; ls libxslt.?? libxslt.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`
         LIBEXSLT_SO_NAME=`cd $XMLLIB ; ls libexslt.?? libexslt.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`          LIBEXSLT_SO_NAME=`cd $XMLLIB ; ls libexslt.?? libexslt.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`
   
         if test -z "$GLIB_CONFIG"; then          XML_INCLUDES="$GLIB_CFLAGS -I$XMLINC -I$XMLINC/libxml2"
                 GLIB_CONFIG=$XMLBIN/glib-config          XML_LIBS="-L$XMLLIB -l$LIBXML2_SO_NAME -l$LIBXSLT_SO_NAME -l$LIBEXSLT_SO_NAME"
                 if test \! -x $GLIB_CONFIG; then  
                         GLIB_CONFIG=glib-config  
                 fi  
         fi  
         GLIB_CFLAGS=`$GLIB_CONFIG --cflags`  
         GLIB_LIBS=`$GLIB_CONFIG --libs`  
   
         XML_INCLUDES="$GLIB_CFLAGS -I$XMLINC -I$XMLINC/libgdome -I$XMLINC/libxml2"  
         XML_LIBS="$GLIB_LIBS -L$XMLLIB -l$LIBXML2_SO_NAME -l$LIBGDOME_SO_NAME -l$LIBXSLT_SO_NAME -l$LIBEXSLT_SO_NAME"  
         if test \! -z "$LD_PATHLINK"; then          if test \! -z "$LD_PATHLINK"; then
         XML_LIBS="$XML_LIBS -Wl,$LD_PATHLINK -Wl,$XMLLIB"          XML_LIBS="$XML_LIBS -Wl,$LD_PATHLINK -Wl,$XMLLIB"
         fi          fi
Line 304  AC_ARG_WITH(static-xml,[  --with-static- Line 289  AC_ARG_WITH(static-xml,[  --with-static-
   
         AC_DEFINE(XML,,xml-abled parser (uses static library))          AC_DEFINE(XML,,xml-abled parser (uses static library))
   
         if test -z "$GLIB_CONFIG"; then          XML_INCLUDES="$GLIB_CFLAGS -I$XMLINC -I$XMLINC/libxml2"
                 GLIB_CONFIG=$XMLBIN/glib-config          XML_LIBS="$XMLLIB/libxslt.a $XMLLIB/libexslt.a $XMLLIB/libxml2.a"
                 if test \! -x $GLIB_CONFIG; then  
                         GLIB_CONFIG=glib-config  
                 fi  
         fi  
         GLIB_CFLAGS=`$GLIB_CONFIG --cflags`  
   
 dnl  '-L/usr/local/lib -lglib' -> /usr/local/lib  
 changequote(, )dnl  
         GLIB_DIR=`$GLIB_CONFIG --libs | sed 's/.*-L\([^ ]*\).*/\1/'`  
         GLIB_NAME=`$GLIB_CONFIG --libs | sed 's/.*-l\([^ ]*\).*/\1/'`  
 changequote([, ])dnl  
         XML_INCLUDES="$GLIB_CFLAGS -I$XMLINC -I$XMLINC/libgdome -I$XMLINC/libxml2"  
         XML_LIBS="$XMLLIB/libgdome.a $XMLLIB/libxslt.a $XMLLIB/libexslt.a $XMLLIB/libxml2.a $GLIB_DIR/lib$GLIB_NAME.a"  
 ])  ])
 AC_SUBST(XML_INCLUDES)  AC_SUBST(XML_INCLUDES)
 AC_SUBST(XML_LIBS)  AC_SUBST(XML_LIBS)
   
   AC_ARG_WITH(glib-config,[  --with-glib-config=FILE FILE is glib library
                             configuration file (search for glib*-config)],
           GLIB_CONFIG=$withval
   )
   
 AC_ARG_WITH(shared-mailreceive,[  --with-shared-mailreceive=D is the directory where  AC_ARG_WITH(shared-mailreceive,[  --with-shared-mailreceive=D is the directory where
                           Gnome MIME library is installed (shared lib)],[                            Gnome MIME library is installed (shared lib)],[
         GNOME_MIME=$withval          GNOME_MIME=$withval
Line 339  AC_ARG_WITH(shared-mailreceive,[  --with Line 316  AC_ARG_WITH(shared-mailreceive,[  --with
         LIBMIME_SO_NAME=`cd $MIMELIB ; ls libgmime.?? libgmime.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`          LIBMIME_SO_NAME=`cd $MIMELIB ; ls libgmime.?? libgmime.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`
   
         if test -z "$GLIB_CONFIG"; then          if test -z "$GLIB_CONFIG"; then
                 GLIB_CONFIG=$MIMEBIN/glib-config                  GLIB_CONFIG=$XMLBIN/glib-config
                 if test \! -x $GLIB_CONFIG; then                  if test \! -x $GLIB_CONFIG; then
                         GLIB_CONFIG=glib-config                          GLIB_CONFIG=$XMLBIN/glib2-config
                           if test \! -x $GLIB_CONFIG; then
                                   GLIB_CONFIG=glib-config
                           fi
                 fi                  fi
         fi          fi
         GLIB_CFLAGS=`$GLIB_CONFIG --cflags`          GLIB_CFLAGS=`$GLIB_CONFIG --cflags`
Line 367  AC_ARG_WITH(static-mailreceive,[  --with Line 347  AC_ARG_WITH(static-mailreceive,[  --with
         AC_DEFINE(WITH_MAILRECEIVE,,has \$mail:received (uses static library))          AC_DEFINE(WITH_MAILRECEIVE,,has \$mail:received (uses static library))
   
         if test -z "$GLIB_CONFIG"; then          if test -z "$GLIB_CONFIG"; then
                 GLIB_CONFIG=$MIMEBIN/glib-config                  GLIB_CONFIG=$XMLBIN/glib-config
                 if test \! -x $GLIB_CONFIG; then                  if test \! -x $GLIB_CONFIG; then
                         GLIB_CONFIG=glib-config                          GLIB_CONFIG=$XMLBIN/glib2-config
                           if test \! -x $GLIB_CONFIG; then
                                   GLIB_CONFIG=glib-config
                           fi
                 fi                  fi
         fi          fi
         GLIB_CFLAGS=`$GLIB_CONFIG --cflags`          GLIB_CFLAGS=`$GLIB_CONFIG --cflags`
Line 622  AC_OUTPUT( Line 605  AC_OUTPUT(
         src/main/Makefile           src/main/Makefile 
         src/sql/Makefile           src/sql/Makefile 
         src/lib/Makefile           src/lib/Makefile 
         src/lib/patches/Makefile   
         src/lib/gd/Makefile           src/lib/gd/Makefile 
         src/lib/smtp/Makefile           src/lib/smtp/Makefile 
         src/lib/gc/Makefile           src/lib/gc/Makefile 

Removed from v.1.86  
changed lines
  Added in v.1.91.2.1


E-mail: