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

gEDA-cvs: CVS update: ChangeLog



  User: ahvezda 
  Date: 05/10/30 17:15:14

  Modified:    .        ChangeLog configure.ac
  Log:
  Fixed a core dump if the gschem.log file isn't writable.  Also removed 
  
  unnecessary gschem/configure.ac checks  
  
  
  
  
  Revision  Changes    Path
  1.411     +8 -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.410
  retrieving revision 1.411
  diff -u -b -r1.410 -r1.411
  --- ChangeLog	28 Oct 2005 22:26:31 -0000	1.410
  +++ ChangeLog	30 Oct 2005 22:15:13 -0000	1.411
  @@ -1,3 +1,11 @@
  +2005-10-30 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
  +
  +	* noweb/x_log.nw: Added an if to prevent a core dump if the log file
  +	cannot be opened. Bug reported by John Luciani.
  +
  +	* configure.ac: Removed check for gtk+ 2.6.x or greater since gtk+ 
  +	already provides this information.
  +
   2005-10-29 Carlos Nieves Onega <cnieves@xxxxxxxxxx>	
           * include/i_vars.h, include/prototype.h, lib/system-gschemrc.in,
   	  noweb/g_rc.nw, noweb/g_register.nw, noweb/i_vars.nw, 
  
  
  
  1.24      +0 -11     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.23
  retrieving revision 1.24
  diff -u -b -r1.23 -r1.24
  --- configure.ac	16 Oct 2005 02:15:28 -0000	1.23
  +++ configure.ac	30 Oct 2005 22:15:13 -0000	1.24
  @@ -71,7 +71,6 @@
   AM_CONDITIONAL(CCISGCC, test "$GCC" = "yes")    
   AC_PROG_CPP
   AC_PROG_MAKE_SET
  -AC_PATH_PROG(CUT,cut)
   
   ############################################################################
   # Check for guile start
  @@ -195,10 +194,6 @@
      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"
  @@ -218,12 +213,6 @@
      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
   ############################################################################