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

gEDA-cvs: CVS update: ChangeLog



  User: ahvezda 
  Date: 05/10/15 22:15:28

  Modified:    .        ChangeLog configure.ac
  Log:
  Added greyscale output support to new png output mechanism.  Fixed some 
  
  bugs for non-default sized images.  Added code to configure.ac to detect
  
  gtk+ 2.6.x or greater.
  
  
  
  
  Revision  Changes    Path
  1.407     +9 -0      eda/geda/devel/gschem/ChangeLog
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gschem/ChangeLog,v
  retrieving revision 1.406
  retrieving revision 1.407
  diff -u -b -r1.406 -r1.407
  --- ChangeLog	15 Oct 2005 15:46:48 -0000	1.406
  +++ ChangeLog	16 Oct 2005 02:15:27 -0000	1.407
  @@ -1,3 +1,12 @@
  +2005-10-15 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
  +
  +	* noweb/x_image.nw: Added some code to make sure non-default sized
  +	image are correctly created.  Added code to convert pixbufs to 
  +	greyscale to implement the image-color rc keyword.
  +
  +	* configure.ac: Added check for gtk+ 2.6.x or greater to support some
  +	future additions.
  +
   2005-10-15 Carlos Nieves Onega <cnieves@xxxxxxxxxx>	
           * noweb/x_image.nw: Remove the grid when exporting to PNG.
   	Reorganize and comment some code.
  
  
  
  1.23      +11 -0     eda/geda/devel/gschem/configure.ac
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: configure.ac
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gschem/configure.ac,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -b -r1.22 -r1.23
  --- configure.ac	20 Aug 2005 02:43:45 -0000	1.22
  +++ configure.ac	16 Oct 2005 02:15:28 -0000	1.23
  @@ -71,6 +71,7 @@
   AM_CONDITIONAL(CCISGCC, test "$GCC" = "yes")    
   AC_PROG_CPP
   AC_PROG_MAKE_SET
  +AC_PATH_PROG(CUT,cut)
   
   ############################################################################
   # Check for guile start
  @@ -194,6 +195,10 @@
      GTK_LIBS=$GTK22_LIBS
      GTK_VERSION=`$PKG_CONFIG gtk+-2.0 --modversion`
   
  +   GTK_MAJOR_VERSION=`echo $GTK_VERSION | $CUT -d. -f1`
  +   GTK_MINOR_VERSION=`echo $GTK_VERSION | $CUT -d. -f2`
  +   GTK_MICRO_VERSION=`echo $GTK_VERSION | $CUT -d. -f3`
  +
      # Search for glib
      PKG_CHECK_MODULES(GLIB22, glib-2.0 >= 2.2.0, GLIB22="yes", no_GLIB22="yes")
      if test "$GLIB22" != "yes"
  @@ -213,6 +218,12 @@
      AC_MSG_ERROR([Cannot find gtk+ 2.2.x or later, please install gtk+.])
   fi
   
  +if test "$GTK_MINOR_VERSION" -ge 6 
  +then
  +   echo Found gtk 6 okay! 
  +   AC_DEFINE(HAS_GTK26, 1, [If gtk+ 2.6.x has been installed, define this])
  +fi
  +
   # 
   # Check for gtk+ 2.2 end
   ############################################################################