[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.103     +4 -0      eda/geda/gaf/gsymcheck/ChangeLog
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/gsymcheck/ChangeLog,v
  retrieving revision 1.102
  retrieving revision 1.103
  diff -u -b -r1.102 -r1.103
  --- ChangeLog	22 Aug 2006 03:01:21 -0000	1.102
  +++ ChangeLog	1 Sep 2006 01:05:01 -0000	1.103
  @@ -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-21 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
   
           * README: Updated the README a little to be ready for the next
  
  
  
  1.22      +13 -13    eda/geda/gaf/gsymcheck/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/gsymcheck/configure.ac,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -b -r1.21 -r1.22
  --- configure.ac	25 Aug 2006 01:00:11 -0000	1.21
  +++ configure.ac	1 Sep 2006 01:05:01 -0000	1.22
  @@ -71,7 +71,7 @@
   
   
   ############################################################################
  -# Check for gtk+ 2.2 start
  +# Check for gtk+ 2.4 start
   # 
   
   # Check for pkg-config
  @@ -80,25 +80,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
  @@ -107,11 +107,11 @@
   
   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
   ############################################################################
   
   ############################################################################
  
  
  


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