diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2013-03-16 19:20:34 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2013-03-16 19:20:34 +0000 |
commit | 32ab16bb20548596189ac33caa56084198a4f751 (patch) | |
tree | 982d830f6db7133db5cfe948992ec51b7a44a765 /eclass | |
parent | Unmask wxGTK/wxpython:2.9 (bug #446998). (diff) | |
download | historical-32ab16bb20548596189ac33caa56084198a4f751.tar.gz historical-32ab16bb20548596189ac33caa56084198a4f751.tar.bz2 historical-32ab16bb20548596189ac33caa56084198a4f751.zip |
Bug #461026: use append-cppflags for preprocessor flags.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/mysql-autotools.eclass | 4 | ||||
-rw-r--r-- | eclass/mysql.eclass | 6 |
3 files changed, 10 insertions, 6 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 4a4c6fdd78bf..4677e956a2e2 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.740 2013/03/16 08:55:30 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.741 2013/03/16 19:20:34 robbat2 Exp $ + + 16 Mar 2013; Robin H. Johnson <robbat2@gentoo.org> mysql.eclass, + mysql-autotools.eclass: + Bug #461026: use append-cppflags for preprocessor flags. 16 Mar 2013; Ulrich Müller <ulm@gentoo.org> elisp.eclass, elisp-common.eclass: diff --git a/eclass/mysql-autotools.eclass b/eclass/mysql-autotools.eclass index 2cb6721e726a..e00906be8eda 100644 --- a/eclass/mysql-autotools.eclass +++ b/eclass/mysql-autotools.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-autotools.eclass,v 1.16 2013/03/09 21:36:07 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-autotools.eclass,v 1.17 2013/03/16 19:20:34 robbat2 Exp $ # @ECLASS: mysql-autotools.eclass # @MAINTAINER: @@ -476,7 +476,7 @@ mysql-autotools_src_configure() { filter-flags "-O" "-O[01]" # glib-2.3.2_pre fix, bug #16496 - append-flags "-DHAVE_ERRNO_AS_DEFINE=1" + append-cppflags "-DHAVE_ERRNO_AS_DEFINE=1" # As discovered by bug #246652, doing a double-level of SSP causes NDB to # fail badly during cluster startup. diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index 18367624f54d..3cc5df7e8e0f 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.176 2012/11/01 20:22:57 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.177 2013/03/16 19:20:34 robbat2 Exp $ # @ECLASS: mysql.eclass # @MAINTAINER: @@ -1021,7 +1021,7 @@ mysql_src_configure() { filter-flags "-O" "-O[01]" # glib-2.3.2_pre fix, bug #16496 - append-flags "-DHAVE_ERRNO_AS_DEFINE=1" + append-cppflags "-DHAVE_ERRNO_AS_DEFINE=1" # As discovered by bug #246652, doing a double-level of SSP causes NDB to # fail badly during cluster startup. |