[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: gaf.git: branch: master updated (1.5.2-20090328-73-g209e55a)
The branch, master has been updated
via 209e55a6a0ab33478cea41c154be64d7ec0620ea (commit)
from d5e06e6ee657f80d1cb8d82884122ac958e9d3a4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=========
Summary
=========
gattrib/configure.ac | 8 ++++----
gnetlist/configure.ac | 4 ++--
gschem/configure.ac.in | 8 ++++----
gsymcheck/configure.ac | 4 ++--
libgeda/configure.ac.in | 4 ++--
utils/configure.ac | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
=================
Commit Messages
=================
commit 209e55a6a0ab33478cea41c154be64d7ec0620ea
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>
Require GTK+ 2.10 or newer.
:100644 100644 aa241d5... 5d21688... M gattrib/configure.ac
:100644 100644 acadf77... 7b0cba3... M gnetlist/configure.ac
:100644 100644 0647a7d... f600c45... M gschem/configure.ac.in
:100644 100644 d77eb98... 0d9f524... M gsymcheck/configure.ac
:100644 100644 ed02ab9... 131bf33... M libgeda/configure.ac.in
:100644 100644 23a51c4... 2fb42c2... M utils/configure.ac
=========
Changes
=========
commit 209e55a6a0ab33478cea41c154be64d7ec0620ea
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>
Require GTK+ 2.10 or newer.
diff --git a/gattrib/configure.ac b/gattrib/configure.ac
index aa241d5..5d21688 100644
--- a/gattrib/configure.ac
+++ b/gattrib/configure.ac
@@ -158,7 +158,7 @@ AC_CHECK_LIB(dl, dlopen, DL_LIB="-ldl", DL_LIB="")
## This is looks for GTK
#
# Search for gtk+ 2.8.x
-PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.8.0], GTK="yes", no_GTK="yes")
+PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.10.0], GTK="yes", no_GTK="yes")
# This next bit of code figures out what gtk we need to use.
if test "$GTK" = "yes"
@@ -166,10 +166,10 @@ then
GTK_VERSION=`$PKG_CONFIG gtk+-2.0 --modversion`
# Search for glib
- PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.8.0], GLIB="yes", no_GLIB="yes")
+ PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.10.0], GLIB="yes", no_GLIB="yes")
if test "$GLIB" != "yes"
then
- AC_MSG_ERROR([Cannot find glib 2.8.0 or later, please install it and rerun ./configure.])
+ AC_MSG_ERROR([Cannot find glib 2.10.0 or later, please install it and rerun ./configure.])
fi
GLIB_VERSION=`$PKG_CONFIG glib-2.0 --modversion`
@@ -188,7 +188,7 @@ fi
if test "$GTK_VERSION" = ""
then
- AC_MSG_ERROR([Cannot find gtk+ 2.8.0 or later, please install it and rerun ./configure.])
+ AC_MSG_ERROR([Cannot find gtk+ 2.10.0 or later, please install it and rerun ./configure.])
fi
#
diff --git a/gnetlist/configure.ac b/gnetlist/configure.ac
index acadf77..7b0cba3 100644
--- a/gnetlist/configure.ac
+++ b/gnetlist/configure.ac
@@ -217,12 +217,12 @@ fi
# Check for glib start
#
-PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.8.0], GLIB="yes", no_GLIB="yes")
+PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.10.0], GLIB="yes", no_GLIB="yes")
# This next bit of code figures out what glib we need to use.
if test "$GLIB" != "yes"
then
- AC_MSG_ERROR([Cannot find glib 2.8.0 or later, please install it and rerun ./configure.])
+ AC_MSG_ERROR([Cannot find glib 2.10.0 or later, please install it and rerun ./configure.])
fi
GLIB_VERSION=`$PKG_CONFIG glib-2.0 --modversion`
diff --git a/gschem/configure.ac.in b/gschem/configure.ac.in
index 0647a7d..f600c45 100644
--- a/gschem/configure.ac.in
+++ b/gschem/configure.ac.in
@@ -152,7 +152,7 @@ AC_CHECK_LIB(dl, dlopen, DL_LIB="-ldl", DL_LIB="")
# Check for gtk+ start
#
-PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.8.0], GTK="yes", no_GTK="yes")
+PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.10.0], GTK="yes", no_GTK="yes")
# This next bit of code figures out what gtk we need to use.
if test "$GTK" = "yes"
@@ -160,10 +160,10 @@ then
GTK_VERSION=`$PKG_CONFIG gtk+-2.0 --modversion`
# Search for glib
- PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.8.0], GLIB="yes", no_GLIB="yes")
+ PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.10.0], GLIB="yes", no_GLIB="yes")
if test "$GLIB" != "yes"
then
- AC_MSG_ERROR([Cannot find glib 2.8.0 or later, please install it and rerun ./configure.])
+ AC_MSG_ERROR([Cannot find glib 2.10.0 or later, please install it and rerun ./configure.])
fi
GLIB_VERSION=`$PKG_CONFIG glib-2.0 --modversion`
@@ -180,7 +180,7 @@ fi
if test "$GTK_VERSION" = ""
then
- AC_MSG_ERROR([Cannot find gtk+ 2.8.0 or later, please install it and rerun ./configure.])
+ AC_MSG_ERROR([Cannot find gtk+ 2.10.0 or later, please install it and rerun ./configure.])
fi
#
diff --git a/gsymcheck/configure.ac b/gsymcheck/configure.ac
index d77eb98..0d9f524 100644
--- a/gsymcheck/configure.ac
+++ b/gsymcheck/configure.ac
@@ -127,12 +127,12 @@ fi
# Check for glib start
#
-PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.8.0], GLIB="yes", no_GLIB="yes")
+PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.10.0], GLIB="yes", no_GLIB="yes")
# This next bit of code figures out what glib we need to use.
if test "$GLIB" != "yes"
then
- AC_MSG_ERROR([Cannot find glib 2.8.0 or later, please install it and rerun ./configure.])
+ AC_MSG_ERROR([Cannot find glib 2.10.0 or later, please install it and rerun ./configure.])
fi
GLIB_VERSION=`$PKG_CONFIG glib-2.0 --modversion`
diff --git a/libgeda/configure.ac.in b/libgeda/configure.ac.in
index ed02ab9..131bf33 100644
--- a/libgeda/configure.ac.in
+++ b/libgeda/configure.ac.in
@@ -168,12 +168,12 @@ AC_CHECK_LIB(dl, dlopen, DL_LIB="-ldl", DL_LIB="")
# Check for glib start
#
-PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.8.0], GLIB="yes", no_GLIB="yes")
+PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.10.0], GLIB="yes", no_GLIB="yes")
# This next bit of code figures out what glib we need to use.
if test "$GLIB" != "yes"
then
- AC_MSG_ERROR([Cannot find glib 2.8.0 or later, please install it and rerun ./configure.])
+ AC_MSG_ERROR([Cannot find glib 2.10.0 or later, please install it and rerun ./configure.])
fi
GLIB_VERSION=`$PKG_CONFIG glib-2.0 --modversion`
diff --git a/utils/configure.ac b/utils/configure.ac
index 23a51c4..2fb42c2 100644
--- a/utils/configure.ac
+++ b/utils/configure.ac
@@ -162,12 +162,12 @@ fi
# Check for glib start
#
-PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.8.0], GLIB="yes", no_GLIB="yes")
+PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.10.0], GLIB="yes", no_GLIB="yes")
# This next bit of code figures out what glib we need to use.
if test "$GLIB" != "yes"
then
- AC_MSG_ERROR([Cannot find glib 2.8.0 or later, please install it and rerun ./configure.])
+ AC_MSG_ERROR([Cannot find glib 2.10.0 or later, please install it and rerun ./configure.])
fi
GLIB_VERSION=`$PKG_CONFIG glib-2.0 --modversion`
_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs