summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--Makefile.am11
-rw-r--r--configure.in14
3 files changed, 22 insertions, 13 deletions
diff --git a/ChangeLog b/ChangeLog
index 982a8132b..7674c67b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2008-06-15 Rodney Dawes <dobey.pwns@gmail.com>
+ * Makefile.am:
+ Remove the intltool scripts bits, as new intltool uses installed copies
+
+ * configure.in:
+ Up the intltool requirement to 0.40.0
+ Update the devel version check and add an --enable-icon-mapping
+ argument to configure for forcing the use of symlinks for packagers
+
+2008-06-15 Rodney Dawes <dobey.pwns@gmail.com>
+
* configure.in:
Up version to 2.23.1 for release
diff --git a/Makefile.am b/Makefile.am
index c6c2ad941..529b541fd 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -11,9 +11,6 @@ theme_DATA = index.theme
EXTRA_DIST= \
index.theme.in \
- intltool-update.in \
- intltool-merge.in \
- intltool-extract.in \
gnome-icon-theme.pc.in \
mkinstalldirs
@@ -25,19 +22,11 @@ install-data-local:
CLEANFILES = \
index.theme
-DISTCLEANFILES = \
- intltool-extract \
- intltool-merge \
- intltool-update
-
MAINTAINERCLEANFILES = \
Makefile.in \
aclocal.m4 \
configure \
install-sh \
- intltool-extract.in \
- intltool-merge.in \
- intltool-update.in \
missing \
mkinstalldirs
diff --git a/configure.in b/configure.in
index c6880d642..36b876967 100644
--- a/configure.in
+++ b/configure.in
@@ -7,7 +7,7 @@ AC_CONFIG_SRCDIR(index.theme.in)
AM_INIT_AUTOMAKE([1.9 tar-ustar])
-IT_PROG_INTLTOOL([0.35.0])
+IT_PROG_INTLTOOL([0.40.0])
PKG_PROG_PKG_CONFIG([0.19])
GETTEXT_PACKAGE="${PACKAGE}"
@@ -26,14 +26,24 @@ AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}")
# Define the toplevel path here
AC_SUBST(themedir, "\${datadir}/icons/gnome")
-ICONMAP="true"
AC_MSG_CHECKING([development series build])
DEVVERSION="`echo $PACKAGE_VERSION|cut -d. -f2`"
if expr $DEVVERSION % 2 > /dev/null != "0"; then
+ mapenable=no
AC_MSG_RESULT([yes])
else
+ mapenable=yes
AC_MSG_RESULT([no])
+fi
+AC_ARG_ENABLE([icon-mapping],
+ AC_HELP_STRING([--enable-icon-mapping],
+ [Enable compatibility symlinks [default=$mapenable]]),
+ enable_mapping=$enableval,
+ enable_mapping=$mapenable)
+
+ICONMAP="true"
+if test "x$enable_mapping" != "xno"; then
UTILS_REQUIRED=0.8.7
AC_MSG_CHECKING([icon-naming-utils >= $UTILS_REQUIRED])