rollback applying visibility contraints to plugins
This commit is contained in:
parent
dc1e875cb4
commit
4b09df71aa
1 changed files with 5 additions and 2 deletions
|
@ -1593,8 +1593,11 @@ if not HELP_REQUESTED:
|
||||||
Export('env')
|
Export('env')
|
||||||
|
|
||||||
plugin_base = env.Clone()
|
plugin_base = env.Clone()
|
||||||
plugin_base.Append(CXXFLAGS='-fvisibility=hidden')
|
# for this to work you need:
|
||||||
plugin_base.Append(CXXFLAGS='-fvisibility-inlines-hidden')
|
# if __GNUC__ >= 4
|
||||||
|
# define MAPNIK_EXP __attribute__ ((visibility ("default")))
|
||||||
|
#plugin_base.Append(CXXFLAGS='-fvisibility=hidden')
|
||||||
|
#plugin_base.Append(CXXFLAGS='-fvisibility-inlines-hidden')
|
||||||
|
|
||||||
Export('plugin_base')
|
Export('plugin_base')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue