From: John L. <jr...@us...> - 2008-02-18 23:37:00
|
Update of /cvsroot/wxlua/wxLua In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv22476/wxLua Modified Files: configure Log Message: Add RPATH_FLAGS=-Wl,-header-pad_max_install_names for OSX's gcc so we can run $install_name_tool to change it's linker paths Index: configure =================================================================== RCS file: /cvsroot/wxlua/wxLua/configure,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** configure 19 Jan 2008 21:37:07 -0000 1.78 --- configure 18 Feb 2008 23:36:54 -0000 1.79 *************** *** 4832,4835 **** --- 4832,4843 ---- fi + # NOTE: Need longer library rpath names for Mac's linker, -header-pad_max_install_names + # "install_name_tool: changing install names can't be redone for: wxLua.app/Contents/MacOS/wxLua + # (for architecture i386) because larger updated load commands do not fit (the program must be relinked)" + if test "SHARED" = "1" -a "PLATFORM_MACOSX" = "1"; then + RPATH_FLAGS="-Wl,-header-pad_max_install_names" + fi + + # check for Lua |