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

gEDA-cvs: CVS update: ChangeLog



  User: cnieves 
  Date: 05/02/22 14:53:21

  Modified:    .        ChangeLog configure.ac
  Log:
  Initialize GDK in libgeda instead of the app if it's a non-graphical app.
  
  
  
  
  Revision  Changes    Path
  1.236     +5 -0      eda/geda/devel/gnetlist/ChangeLog
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gnetlist/ChangeLog,v
  retrieving revision 1.235
  retrieving revision 1.236
  diff -u -b -r1.235 -r1.236
  --- ChangeLog	21 Feb 2005 03:10:31 -0000	1.235
  +++ ChangeLog	22 Feb 2005 19:53:20 -0000	1.236
  @@ -1,3 +1,8 @@
  +2005-02-22  Carlos Nieves Onega <cnieves@xxxxxxxxxx>
  +
  +	* configure.ac, src/gnetlist.c: Removed call to gtk_init().
  +	  GDK is now initialized in libgeda if it's a non-graphical app.
  +
   2005-02-21 03:09  Dan McMahill <danmc>
   
   	* src/gnetlist.c: fix some format string/type mismatch bugs
  
  
  
  1.14      +1 -1      eda/geda/devel/gnetlist/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/gnetlist/configure.ac,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -b -r1.13 -r1.14
  --- configure.ac	19 Feb 2005 23:26:57 -0000	1.13
  +++ configure.ac	22 Feb 2005 19:53:20 -0000	1.14
  @@ -297,7 +297,7 @@
   
   # Finally create the final CFLAGS and LDFLAGS for use in the makefiles
   GNETLIST_CFLAGS="$LIBGEDA_CFLAGS"
  -GNETLIST_LDFLAGS="$LIBGEDA_LIBS $DMALLOC_LIBS $GTK_LIBS"
  +GNETLIST_LDFLAGS="$LIBGEDA_LIBS $DMALLOC_LIBS"
   
   # Makefile.in variable substitution
   AC_SUBST(GNETLIST_CFLAGS)