# HG changeset patch # User Daniel Atallah # Date 1262907726 0 # Node ID d4814f2afaef90c20450e52b80b778728fe3d414 # Parent 214357c854187d63e78f2049669784dafc51a8b6 *** Plucked rev 8afdf9fa3c0c98a6735023230f285152f54c3a79 (f05c54b03e6bbfdbff38c01697fbd353a969e05e): Swap the order of -L and -l so that Solaris can find the Python libraries. Patch from Paul \"aab\" Townsend. Closes #10869, #10716. diff -r 214357c85418 -r d4814f2afaef ChangeLog --- a/ChangeLog Thu Jan 07 23:41:17 2010 +0000 +++ b/ChangeLog Thu Jan 07 23:42:06 2010 +0000 @@ -2,6 +2,9 @@ Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul version 2.6.5 (??/??/20??): + General: + * Build-time fixes for Solaris. (Paul Townsend) + XMPP: * Do not crash when attempting to register for a new account on Windows. diff -r 214357c85418 -r d4814f2afaef configure.ac --- a/configure.ac Thu Jan 07 23:41:17 2010 +0000 +++ b/configure.ac Thu Jan 07 23:42:06 2010 +0000 @@ -1470,7 +1470,7 @@ AC_CHECK_LIB(pthread, pthread_create, ) AC_CHECK_LIB(util, openpty, ) AC_CHECK_LIB(db, dbopen, ) - PY_LIBS="-lpython$PY_VERSION -L$PY_EXEC_PREFIX/lib/python$PY_VERSION/config" + PY_LIBS="-L$PY_EXEC_PREFIX/lib/python$PY_VERSION/config -lpython$PY_VERSION" PY_CFLAGS="-I$PY_PREFIX/include/python$PY_VERSION" AC_DEFINE(USE_PYTHON, [1], [Define if python headers are available.]) AC_MSG_RESULT(ok)