summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in13
1 files changed, 4 insertions, 9 deletions
diff --git a/configure.in b/configure.in
index 6c76d34c..e85f05e9 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
AC_INIT(panel)
AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(gnome-core, 1.3.0cvs)
+AM_INIT_AUTOMAKE(gnome-core, 1.4.0)
AM_MAINTAINER_MODE
@@ -418,8 +418,9 @@ dnl Sun shipped a patch which makes gnome-session seg fault in a libICE call.
dnl Use the check for the broken libICE on Solaris _only_
dnl
uname_s=`uname -s`
-AM_CONDITIONAL(DO_LIBICE_CHECK, test x$uname_s = xSunOS)
-AC_SUBST(DO_LIBICE_CHECK)
+if test "x$uname_s" = xSunOS; then
+ AC_DEFINE(DO_LIBICE_CHECK)
+fi
dnl NOTE: We need to use a separate automake conditional for this
dnl to make this work with the tarballs.
@@ -519,9 +520,3 @@ gsm/gnome-session.1
smproxy/Makefile
intl/Makefile
omf-install/Makefile])
-
-
-echo "This branch is unstable. To use the stable branch, do:"
-echo "cvs up -r gnome-core-1-2"
-echo ""
-echo "Thanks"