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

gEDA-cvs: CVS update: ChangeLog



  User: ahvezda 
  Date: 05/02/23 22:36:41

  Modified:    .        ChangeLog configure.ac
  Log:
  Fixed typo which was causing gaf to segfault on startup.
  
  
  
  
  Revision  Changes    Path
  1.255     +6 -0      eda/geda/devel/libgeda/ChangeLog
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/libgeda/ChangeLog,v
  retrieving revision 1.254
  retrieving revision 1.255
  diff -u -b -r1.254 -r1.255
  --- ChangeLog	23 Feb 2005 23:39:09 -0000	1.254
  +++ ChangeLog	24 Feb 2005 03:36:41 -0000	1.255
  @@ -1,3 +1,9 @@
  +2005-02-23 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
  +
  +	* configure.ac: Fixed a minor typo that was causing the linking of
  +	both glib 1.2.x and glib 2.x into the same executable.  This caused
  +	gschem and friends to segfault upon startup.
  +
   2005-02-23  Carlos Nieves Onega <cnieves@xxxxxxxxxx>
   
   	* configure.ac, noweb/o_picture.nw:
  
  
  
  1.19      +1 -1      eda/geda/devel/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/devel/libgeda/configure.ac,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -b -r1.18 -r1.19
  --- configure.ac	23 Feb 2005 23:39:10 -0000	1.18
  +++ configure.ac	24 Feb 2005 03:36:41 -0000	1.19
  @@ -281,7 +281,7 @@
   # Search for gdk (only if we are not forcing the gtk+ to 1.2)
   if test "$opt_gtkver" != "1.2"
   then
  -   PKG_CHECK_MODULES(GDK, gdk >= 0.15.0, GDK="yes", no_GDK="yes")
  +   PKG_CHECK_MODULES(GDK, gdk-2.0 >= 2.2.0, GDK="yes", no_GDK="yes")
   fi
   
   # This next bit of code figures out what gtk we need to use.