# HG changeset patch # User Sam Lantinga # Date 1159058685 0 # Node ID be848c07f0b9e8fe93d7d7c81b6f68c11ea919c2 # Parent a4490e5864b96bf287de2ce4382c454551b5ba46 Fixed bug #321 Hi, if "configure" is given an explicit --libdir, the sdl-config still contains the default "${exec_prefix}/lib" for runtime linker path. That should be changed to $libdir, as this is where the library goes to... Regards, Juergen diff -r a4490e5864b9 -r be848c07f0b9 configure.in --- a/configure.in Sun Sep 24 00:36:49 2006 +0000 +++ b/configure.in Sun Sep 24 00:44:45 2006 +0000 @@ -2452,10 +2452,10 @@ if test "x$enable_rpath" = "xyes"; then if test $ARCH = bsdi -o $ARCH = freebsd -o $ARCH = irix -o $ARCH = linux -o $ARCH = netbsd; then - SDL_RLD_FLAGS="-Wl,-rpath,\${exec_prefix}/lib" + SDL_RLD_FLAGS="-Wl,-rpath,\${libdir}" fi if test $ARCH = solaris; then - SDL_RLD_FLAGS="-R\${exec_prefix}/lib" + SDL_RLD_FLAGS="-R\${libdir}" fi else SDL_RLD_FLAGS="" @@ -2464,7 +2464,7 @@ case "$ARCH" in macosx) # Evil hack to allow static linking on Mac OS X - SDL_STATIC_LIBS="\${exec_prefix}/lib/libSDL.a $EXTRA_LDFLAGS" + SDL_STATIC_LIBS="\${libdir}/libSDL.a $EXTRA_LDFLAGS" ;; *) SDL_STATIC_LIBS="$SDL_LIBS"