[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: CVS update: ChangeLog



  User: ahvezda 
  Date: 06/09/24 17:06:24

  Modified:    .        ChangeLog configure.ac
  Log:
  Tweaked configure scripts to not fail if libgd is not installed (libgd is
  
  an optional dependancy)
  
  
  
  
  Revision  Changes    Path
  1.341     +5 -0      eda/geda/gaf/libgeda/ChangeLog
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/libgeda/ChangeLog,v
  retrieving revision 1.340
  retrieving revision 1.341
  diff -u -b -r1.340 -r1.341
  --- ChangeLog	24 Sep 2006 15:02:22 -0000	1.340
  +++ ChangeLog	24 Sep 2006 21:06:23 -0000	1.341
  @@ -1,3 +1,8 @@
  +2006-09-24 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
  +
  +	* configure.ac: Tweaked glib detection to not fail ./configure
  +	when gdlib is not installed.  gdlib is an optional dependancy.
  +
   2006-09-24 03:57  Dan McMahill <danmc>
   
   	* configure.ac, libgeda.pc.in: Improve gdlib detection.  Now
  
  
  
  1.35      +11 -5     eda/geda/gaf/libgeda/configure.ac
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: configure.ac
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/libgeda/configure.ac,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -b -r1.34 -r1.35
  --- configure.ac	24 Sep 2006 03:57:58 -0000	1.34
  +++ configure.ac	24 Sep 2006 21:06:23 -0000	1.35
  @@ -1,4 +1,4 @@
  -# $Id: configure.ac,v 1.34 2006/09/24 03:57:58 danmc Exp $
  +# $Id: configure.ac,v 1.35 2006/09/24 21:06:23 ahvezda Exp $
   #
   # Process this file with autoconf to produce a configure script.
   AC_INIT
  @@ -156,12 +156,17 @@
   	AC_PATH_PROG(LIBGDCONFIG, gdlib-config, no, ${PATH})
   
   	if test "$LIBGDCONFIG" = "no" ; then
  -		AC_MSG_ERROR([Cannot find gdlib-config.
  +		AC_MSG_WARN([Cannot find gdlib-config.
   Make sure it is installed and in your PATH.
  -gdlib-config is part of the GD library available from www.boutell.com/gd.
  -This is needed for png export.  If you wish to compile libgeda without
  -png support then use --disable-gd.
  +Libgeda will be built using the builtin png support.  gdlib-config is part 
  +of the GD library available from www.boutell.com/gd.  This is needed for 
  +png export using libgd, however png support is available without libgd. 
   ])
  +		GD_CFLAGS=
  +		GD_LIBS=
  +		GD_VERSION=
  +		GD="no"
  +		LIBGEDA_HASGD=no
   
   	else
   		GD_CFLAGS=`$LIBGDCONFIG --cflags`
  @@ -182,6 +187,7 @@
   	GD_LIBS=
   	GD_VERSION=
   	GD="no"
  +	LIBGEDA_HASGD=no
   fi
   
   # 
  
  
  


_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs