From: Francesco M. <fr...@us...> - 2008-01-14 23:30:24
|
Update of /cvsroot/wxlua/wxLua/build/autoconf In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv30427/build/autoconf Modified Files: configure.ac Log Message: add to the linker the -rpath flag only under Unix Index: configure.ac =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/autoconf/configure.ac,v retrieving revision 1.61 retrieving revision 1.62 diff -C2 -d -r1.61 -r1.62 *** configure.ac 14 Jan 2008 22:28:18 -0000 1.61 --- configure.ac 14 Jan 2008 23:30:20 -0000 1.62 *************** *** 195,198 **** --- 195,204 ---- + # NOTE: -rpath is not supported by Mac's ld linker! + if test "SHARED" = "1" -a "PLATFORM_UNIX" = "1"; then + RPATH_FLAGS="-Wl,-rpath,../lib" + fi + + # check for Lua # |