This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project wmaker-crm.git.

The branch, next has been updated
       via  84284e604e72fc4e54f01eaef1caf70a97c6065f (commit)
       via  325dc85891519757a046a82aca45703962343c4e (commit)
      from  eb1c06d704ce77e4223b4905241a9df6255bad47 (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.

- Log -----------------------------------------------------------------
http://repo.or.cz/w/wmaker-crm.git/commit/84284e604e72fc4e54f01eaef1caf70a97c6065f

commit 84284e604e72fc4e54f01eaef1caf70a97c6065f
Author: Christophe CURIS <christophe.cu...@free.fr>
Date:   Fri Jun 19 21:57:09 2015 +0200

    Configure: increased the version of Automake requested
    
    The compilation of the WRaster library needs the keyword
    EXTRA_*_DEPENDENCIES in its Makefile so the configure.ac have been updated
    to require at least the version of automake in which it is added.
    
    Reported-by: Josip Deanovic <djosip+n...@linuxpages.net>
    Signed-off-by: Christophe CURIS <christophe.cu...@free.fr>

diff --git a/configure.ac b/configure.ac
index c5d3167..2b01108 100644
--- a/configure.ac
+++ b/configure.ac
@@ -37,7 +37,11 @@ dnl =======================================
 
AC_INIT([WindowMaker],[0.95.6],[wmaker-dev@lists.windowmaker.org],[WindowMaker],[http://www.windowmaker.org/])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_HEADERS([config.h])
-AM_INIT_AUTOMAKE([1.11 silent-rules])
+
+dnl We need the EXTRA_xxx_DEPENDENCIES keyword in Makefiles which have been
+dnl introduced in the version 1.11.3; because the 1.12 was realeased shortly
+dnl after, we just ask for it
+AM_INIT_AUTOMAKE([1.12 silent-rules])
 
 dnl Reference file used by 'configure' to make sure the path to sources is 
valid
 AC_CONFIG_SRCDIR([src/WindowMaker.h])

http://repo.or.cz/w/wmaker-crm.git/commit/325dc85891519757a046a82aca45703962343c4e

commit 325dc85891519757a046a82aca45703962343c4e
Author: Christophe CURIS <christophe.cu...@free.fr>
Date:   Fri Jun 19 21:56:47 2015 +0200

    wrlib: fixed gcc version needed for deprecated attribute support
    
    The support for a custom message in the attribute 'deprecated' have been
    added only from gcc 4.5.0 and not 4.0, so the check was updated accordingly
    to avoid compilation error with version 4.0 to 4.4.
    
    Reported-by: Josip Deanovic <djosip+n...@linuxpages.net>
    Signed-off-by: Christophe CURIS <christophe.cu...@free.fr>

diff --git a/wrlib/wraster.h b/wrlib/wraster.h
index 479f975..ab187bf 100644
--- a/wrlib/wraster.h
+++ b/wrlib/wraster.h
@@ -61,7 +61,7 @@
  * mechanism and define an internal macro appropriately. Please note that the 
macro are not considered being
  * part of the public API.
  */
-#if __GNUC__ >= 4
+#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
 #define __wrlib_deprecated(msg)  __attribute__ ((deprecated(msg)))
 #elif __GNUC__ >= 3
 #define __wrlib_deprecated(msg)  __attribute__ ((deprecated))

-----------------------------------------------------------------------

Summary of changes:
 configure.ac    | 6 +++++-
 wrlib/wraster.h | 2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)


repo.or.cz automatic notification. Contact project admin crma...@gmail.com
if you want to unsubscribe, or site admin ad...@repo.or.cz if you receive
no reply.
-- 
wmaker-crm.git ("The Window Maker window manager")


-- 
To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.

Reply via email to