diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-08 08:15:52 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-08 08:15:52 +0800 |
commit | 3c2619c31cc3703179261ecd44687bd71bb59cf5 (patch) | |
tree | 28d13bf6e00f5767e1359815e86c2242b95053ac /devel | |
parent | 6f2eb06b3c4a358efc6723d07ccf7881536bbb00 (diff) | |
download | marcuscom-ports-3c2619c31cc3703179261ecd44687bd71bb59cf5.tar.gz marcuscom-ports-3c2619c31cc3703179261ecd44687bd71bb59cf5.tar.zst marcuscom-ports-3c2619c31cc3703179261ecd44687bd71bb59cf5.zip |
Fix the build on 6.X and lower by making sure to include PTHREAD_LIBS with
DBUS_BUS_LIBS.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7637 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel')
-rw-r--r-- | devel/dbus/Makefile | 3 | ||||
-rw-r--r-- | devel/dbus/files/patch-configure | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/devel/dbus/Makefile b/devel/dbus/Makefile index 160e5d32e..ff1648c5b 100644 --- a/devel/dbus/Makefile +++ b/devel/dbus/Makefile @@ -28,7 +28,8 @@ CONFIGURE_ARGS=--localstatedir=/var \ --disable-doxygen-docs \ --disable-xml-docs CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" + LDFLAGS="-L${LOCALBASE}/lib" \ + PTHREAD_LIBS="${PTHREAD_LIBS}" USE_RC_SUBR= dbus diff --git a/devel/dbus/files/patch-configure b/devel/dbus/files/patch-configure new file mode 100644 index 000000000..561ef2487 --- /dev/null +++ b/devel/dbus/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Sat Oct 7 20:13:09 2006 ++++ configure Sat Oct 7 20:13:18 2006 +@@ -25187,7 +25187,7 @@ DBUS_CLIENT_LIBS= + + + DBUS_BUS_CFLAGS=$XML_CFLAGS +-DBUS_BUS_LIBS="$XML_LIBS $SELINUX_LIBS $INTLLIBS" ++DBUS_BUS_LIBS="$XML_LIBS $SELINUX_LIBS $INTLLIBS $PTHREAD_LIBS" + + + |