diff options
author | Romain Perier <mrpouet@gentoo.org> | 2009-09-23 09:23:10 +0000 |
---|---|---|
committer | Romain Perier <mrpouet@gentoo.org> | 2009-09-23 09:23:10 +0000 |
commit | 85e5f41b6c7033f0ba21dd1d1b068dcdfb3f1978 (patch) | |
tree | 70b92d8ff3b650edaa8b93c5846694b640ba35a8 /x11-themes/gtk-engines/files | |
parent | Removed gemhun, kyra, and licq-osd from tree. (diff) | |
download | gentoo-2-85e5f41b6c7033f0ba21dd1d1b068dcdfb3f1978.tar.gz gentoo-2-85e5f41b6c7033f0ba21dd1d1b068dcdfb3f1978.tar.bz2 gentoo-2-85e5f41b6c7033f0ba21dd1d1b068dcdfb3f1978.zip |
Version bump per bug #285944, includes natively the system-lua patch, translations updates, import patch from upstream bug #594014 in order to fix a typo for system lua check (AM_CONDITIONNAL)
(Portage version: 2.2_rc41/cvs/Linux x86_64)
Diffstat (limited to 'x11-themes/gtk-engines/files')
-rw-r--r-- | x11-themes/gtk-engines/files/gtk-engines-2.18.3-fix-system-lua-check.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/x11-themes/gtk-engines/files/gtk-engines-2.18.3-fix-system-lua-check.patch b/x11-themes/gtk-engines/files/gtk-engines-2.18.3-fix-system-lua-check.patch new file mode 100644 index 000000000000..b6413f7ee249 --- /dev/null +++ b/x11-themes/gtk-engines/files/gtk-engines-2.18.3-fix-system-lua-check.patch @@ -0,0 +1,21 @@ +From 5a5eb6dd706179da9294e939ede807170b99c1a5 Mon Sep 17 00:00:00 2001 +From: Benjamin Berg <benjamin@sipsolutions.net> +Date: Tue, 22 Sep 2009 09:43:28 +0000 +Subject: Correct the SYSTEM_LUA conditional check. (patch from bug #594014) + +--- +diff --git a/configure.ac b/configure.ac +index 06f388c..9061044 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -47,7 +47,7 @@ AC_ARG_ENABLE(deprecated, [ --disable-deprecated disable deprecated function + AC_ARG_ENABLE(schemas, [ --disable-schema disable engine schemas], [schemas=$enableval], [schemas="yes"]) + AC_ARG_WITH(system-lua, [ --with-system-lua link with system Lua library], [system_lua=$withval], [system_lua="no"]) + +-AM_CONDITIONAL([SYSTEM_LUA], [test x$system_lua = xtrue]) ++AM_CONDITIONAL([SYSTEM_LUA], [test x$system_lua = xyes]) + + BUILD_ENGINES="" + BUILD_THEMES="" +-- +cgit v0.8.2 |