diff options
author | 2016-01-14 12:01:03 -0800 | |
---|---|---|
committer | 2016-01-17 10:04:48 -0800 | |
commit | 02f339e87ab1a864a967a7b7de05bd658f9dbedf (patch) | |
tree | 608a875d2daca5f90d9b8fe3988232c9b3a2bbfc /paludis/environments/paludis | |
parent | d34bba6a8a9457264a94326db3fdf84e69000dc9 (diff) | |
download | paludis-02f339e87ab1a864a967a7b7de05bd658f9dbedf.tar.gz paludis-02f339e87ab1a864a967a7b7de05bd658f9dbedf.tar.xz |
build: unconditionally use visibility flags
Remove the last remnants of icc support as the current released versions do not
support C++11 and we intend to use clang as the alternate compiler. This cleans
up the compile flags to remove the now obsoleted definition
(-DPALUDIS_USE_VISIBILITY), the unnecessary compile time checks, and the
handling for ICC in the macros.
Diffstat (limited to 'paludis/environments/paludis')
-rw-r--r-- | paludis/environments/paludis/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paludis/environments/paludis/Makefile.am b/paludis/environments/paludis/Makefile.am index 8e0e4f16e..0ff8e41df 100644 --- a/paludis/environments/paludis/Makefile.am +++ b/paludis/environments/paludis/Makefile.am @@ -1,7 +1,7 @@ include $(top_srcdir)/misc/common-makefile.am SUBDIRS = . -AM_CXXFLAGS = -I$(top_srcdir) @PALUDIS_CXXFLAGS@ @PALUDIS_CXXFLAGS_VISIBILITY@ +AM_CXXFLAGS = -I$(top_srcdir) @PALUDIS_CXXFLAGS@ DEFS= \ -DSYSCONFDIR=\"$(sysconfdir)\" \ -DLIBEXECDIR=\"$(libexecdir)\" \ |