diff options
author | Brian Evans <grknight@gentoo.org> | 2018-03-08 12:34:49 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2018-03-08 12:34:49 -0500 |
commit | 648dc76eb5a9a0f1ebeaa88b8086192bb2543936 (patch) | |
tree | b8a83d46d17f3bb8c37649f6bb73c1bebd327893 /sys-cluster/galera/files/respect-flags.patch | |
parent | dev-db/mariadb-connector-c: Fix dependency blocker (diff) | |
download | mysql-648dc76eb5a9a0f1ebeaa88b8086192bb2543936.tar.gz mysql-648dc76eb5a9a0f1ebeaa88b8086192bb2543936.tar.bz2 mysql-648dc76eb5a9a0f1ebeaa88b8086192bb2543936.zip |
sys-cluster/galera: Remove; old versions and ::gentoo is newer
Diffstat (limited to 'sys-cluster/galera/files/respect-flags.patch')
-rw-r--r-- | sys-cluster/galera/files/respect-flags.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/sys-cluster/galera/files/respect-flags.patch b/sys-cluster/galera/files/respect-flags.patch deleted file mode 100644 index d7e5f37..0000000 --- a/sys-cluster/galera/files/respect-flags.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- a/SConstruct 2014-03-07 14:27:26.797904671 -0500 -+++ b/SConstruct 2014-03-07 14:31:18.672478115 -0500 -@@ -49,7 +49,7 @@ - build_target = 'all' - - # Optimization level --opt_flags = ' -g -O3 -DNDEBUG' -+opt_flags = ' -DNDEBUG' - - # Architecture (defaults to build host type) - compile_arch = '' -@@ -214,12 +214,12 @@ - ' -Wall -Wextra -Wno-unused-parameter') - - # C-specific flags --env.Replace(CFLAGS = ' -std=c99 -fno-strict-aliasing -pipe') -+env.Replace(CFLAGS = os.getenv('CFLAGS','') + ' -std=c99 -fno-strict-aliasing -pipe') - - # CXX-specific flags - # Note: not all 3rd-party libs like '-Wold-style-cast -Weffc++' - # adding those after checks --env.Replace(CXXFLAGS = ' -Wno-long-long -Wno-deprecated -ansi') -+env.Replace(CXXFLAGS = os.getenv('CXXFLAGS','') + ' -Wno-long-long -Wno-deprecated -ansi') - if sysname != 'sunos': - env.Append(CXXFLAGS = ' -pipe') - -@@ -228,7 +228,7 @@ - # TODO: enable '-Wl,--warn-common -Wl,--fatal-warnings' after warnings from - # static linking have beed addressed - # --env.Append(LINKFLAGS = link_arch) -+env.Append(LINKFLAGS = link_arch + ' ' + os.getenv('LDFLAGS','')) - - # - # Check required headers and libraries (autoconf functionality) |