fix the same old same old OS X install_name_tool issue, this time for libpangomm
authorPaul Davis <paul@linuxaudiosystems.com>
Thu, 14 Feb 2008 22:05:27 +0000 (22:05 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Thu, 14 Feb 2008 22:05:27 +0000 (22:05 +0000)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3058 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/gtkmm2/pango/SConscript

index d045cf20435f03c87fcf74b076fc3ac502dbd8de..c08dcf8e710d7f4d1b3ff93a0c67da4f1740001e 100644 (file)
@@ -10,6 +10,9 @@ Import('env libraries install_prefix')
 pangomm = env.Copy()
 pangomm.Merge([libraries['glibmm2'], libraries['pango'], libraries['sigc2']])
 
+if pangomm['IS_OSX']:
+       pangomm.Append (LINKFLAGS="-Xlinker -headerpad -Xlinker 2048")
+
 libpangomm = pangomm.SharedLibrary('pangomm', pangomm_files)
 Default(libpangomm)