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

gEDA-cvs: CVS update: ChangeLog



  User: ahvezda 
  Date: 06/08/31 21:05:01

  Modified:    .        ChangeLog configure.ac
  Log:
  Updated all configure.ac files to test for gtk+ 2.4.x which is the min
  
  requirement now.
  
  
  
  
  Revision  Changes    Path
  1.330     +4 -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.329
  retrieving revision 1.330
  diff -u -b -r1.329 -r1.330
  --- ChangeLog	30 Aug 2006 17:33:22 -0000	1.329
  +++ ChangeLog	1 Sep 2006 01:05:01 -0000	1.330
  @@ -1,3 +1,7 @@
  +2006-08-31 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
  +
  +        * configure.ac: Updated gtk+ tests to look for 2.4.x or greater.
  +
   2006-08-30 Werner Hoch <werner.ho@xxxxxx>
   
   	* src/o_attrib.c: fix for Bug#1547138: Segfault on adding 
  
  
  
  1.31      +15 -15    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.30
  retrieving revision 1.31
  diff -u -b -r1.30 -r1.31
  --- configure.ac	25 Aug 2006 01:00:12 -0000	1.30
  +++ configure.ac	1 Sep 2006 01:05:01 -0000	1.31
  @@ -201,7 +201,7 @@
   ############################################################################
   
   ############################################################################
  -# Check for gtk+ 2.2 start
  +# Check for gtk+ 2.4 start
   # 
   
   # Check for pkg-config
  @@ -210,25 +210,25 @@
      AC_MSG_ERROR([Cannot find pkg-config, make sure it is installed and in your PATH])
   fi
   
  -PKG_CHECK_MODULES(GTK22, gtk+-2.0 >= 2.2.0, GTK22="yes", no_GTK22="yes")
  +PKG_CHECK_MODULES(GTK24, gtk+-2.0 >= 2.4.0, GTK24="yes", no_GTK24="yes")
   
   # This next bit of code figures out what gtk we need to use.
  -if test "$GTK22" = "yes"
  +if test "$GTK24" = "yes"
   then
   
  -   AC_DEFINE(HAS_GTK22, 1, [If gtk+ 2.2.x has been installed, define this])
  -   GTK_CFLAGS=$GTK22_CFLAGS
  -   GTK_LIBS=$GTK22_LIBS
  +   AC_DEFINE(HAS_GTK24, 1, [If gtk+ 2.4.x has been installed, define this])
  +   GTK_CFLAGS=$GTK24_CFLAGS
  +   GTK_LIBS=$GTK24_LIBS
      GTK_VERSION=`$PKG_CONFIG gtk+-2.0 --modversion`
   
      # Search for glib
  -   PKG_CHECK_MODULES(GLIB22, glib-2.0 >= 2.2.0, GLIB22="yes", no_GLIB22="yes")
  -   if test "$GLIB22" != "yes"
  +   PKG_CHECK_MODULES(GLIB24, glib-2.0 >= 2.4.0, GLIB24="yes", no_GLIB24="yes")
  +   if test "$GLIB24" != "yes"
      then
  -       AC_MSG_ERROR([Cannot find glib 2.2.x, install it and rerun ./configure.])
  +       AC_MSG_ERROR([Cannot find glib 2.4.x, install it and rerun ./configure.])
      fi
  -   GLIB_CFLAGS=$GLIB22_CFLAGS
  -   GLIB_LIBS=$GLIB22_LIBS
  +   GLIB_CFLAGS=$GLIB24_CFLAGS
  +   GLIB_LIBS=$GLIB24_LIBS
      GLIB_VERSION=`$PKG_CONFIG glib-2.0 --modversion`
   
   else
  @@ -237,15 +237,15 @@
   
   if test "$GTK_VERSION" = ""
   then
  -   AC_MSG_ERROR([Cannot find gtk+ 2.2.x or later, please install gtk+.])
  +   AC_MSG_ERROR([Cannot find gtk+ 2.4.x or later, please install gtk+.])
   fi
   
   # 
  -# Check for gtk+ 2.2 end
  +# Check for gtk+ 2.4 end
   ############################################################################
   
   ############################################################################
  -# Check for gdk 2.2 or later
  +# Check for gdk 2.4 or later
   # 
   
   # Check for pkg-config
  @@ -254,7 +254,7 @@
      AC_MSG_ERROR([Cannot find pkg-config, make sure it is installed and in your PATH])
   fi
   
  -PKG_CHECK_MODULES(GDK, gdk-2.0 >= 2.2.0, GDK="yes", no_GDK="yes")
  +PKG_CHECK_MODULES(GDK, gdk-2.0 >= 2.4.0, GDK="yes", no_GDK="yes")
   
   # This next bit of code figures out what gtk we need to use.
   if test "$GDK" = "yes" 
  
  
  


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