diff options
author | Alexys Jacob <ultrabug@gentoo.org> | 2013-01-18 12:36:36 +0000 |
---|---|---|
committer | Alexys Jacob <ultrabug@gentoo.org> | 2013-01-18 12:36:36 +0000 |
commit | 3040dba20c7e7e5907803f003b58a8d514ff1ab0 (patch) | |
tree | 4851428106b567ee097f380d2715b86234ea2b46 /sys-cluster/resource-agents/files | |
parent | Version Bump and cleanup of old versions (diff) | |
download | gentoo-2-3040dba20c7e7e5907803f003b58a8d514ff1ab0.tar.gz gentoo-2-3040dba20c7e7e5907803f003b58a8d514ff1ab0.tar.bz2 gentoo-2-3040dba20c7e7e5907803f003b58a8d514ff1ab0.zip |
version bump fix #449876 and #420643
(Portage version: 2.1.11.41/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
Diffstat (limited to 'sys-cluster/resource-agents/files')
-rw-r--r-- | sys-cluster/resource-agents/files/3.9.4-configure.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sys-cluster/resource-agents/files/3.9.4-configure.patch b/sys-cluster/resource-agents/files/3.9.4-configure.patch new file mode 100644 index 000000000000..bb2f7bec62a4 --- /dev/null +++ b/sys-cluster/resource-agents/files/3.9.4-configure.patch @@ -0,0 +1,30 @@ +--- a/configure.ac 2013-01-18 13:14:54.492191322 +0100 ++++ b/configure.ac 2013-01-18 13:17:17.559551891 +0100 +@@ -557,11 +557,13 @@ + AC_DEFINE_UNQUOTED(POWEROFF_CMD, "$POWEROFF_CMD", path to the poweroff command) + AC_DEFINE_UNQUOTED(POWEROFF_OPTIONS, "$POWEROFF_OPTIONS", poweroff options) + +-AC_PATH_PROGS(XSLTPROC, xsltproc) +-AM_CONDITIONAL(BUILD_DOC, test "x$XSLTPROC" != "x" ) +-if test "x$XSLTPROC" = "x"; then +- AC_MSG_WARN([xsltproc not installed, unable to (re-)build manual pages]) +-fi ++AC_ARG_ENABLE([doc], ++ AS_HELP_STRING([--enable-doc],[Build documentation])) ++ ++AS_IF([test "x$enable_doc" = "xyes"], [ ++ AC_PATH_PROGS(XSLTPROC, xsltproc) ++]) ++AM_CONDITIONAL([BUILD_DOC], [test "x$enable_doc" = "xyes"] ) + AC_SUBST(XSLTPROC) + + AC_PATH_PROGS(POD2MAN, pod2man) +@@ -732,8 +734,6 @@ + CFLAGS="$CFLAGS -g" + enable_fatal_warnings=no + else +- CFLAGS="$CFLAGS -ggdb3" +- + # We had to eliminate -Wnested-externs because of libtool changes + # Also remove -Waggregate-return because we use one libnet + # call which returns a struct |