# HG changeset patch # User Paul Aurich # Date 1259782687 0 # Node ID a07478d5719dff047c0d21a61d834d4d6ac4634f # Parent 5695a3626c1a5c7edabfc0c1c2ef60dfebf359fd 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 5695a3626c1a -r a07478d5719d ChangeLog --- a/ChangeLog Tue Dec 01 21:56:55 2009 +0000 +++ b/ChangeLog Wed Dec 02 19:38:07 2009 +0000 @@ -1,6 +1,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: * When getting info on a domain-only (server) JID, show uptime (when given by the result of the "last query") and don't show status as diff -r 5695a3626c1a -r a07478d5719d configure.ac --- a/configure.ac Tue Dec 01 21:56:55 2009 +0000 +++ b/configure.ac Wed Dec 02 19:38:07 2009 +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)