diff options
author | taca <taca> | 2013-02-27 06:12:25 +0000 |
---|---|---|
committer | taca <taca> | 2013-02-27 06:12:25 +0000 |
commit | ae5703e690fc3dc693056e849201c1a92722d042 (patch) | |
tree | 05b7b7f44fdb3ee78c469f9adaf465044e001bdb /devel | |
parent | db076939d82002986019887ce7306d2f690a3f6f (diff) | |
download | pkgsrc-ae5703e690fc3dc693056e849201c1a92722d042.tar.gz |
Fix build problem when buidling with MySQL 5.5 and later.
It is simply ad hoc change and it might be moved to somewhere common
place of mysql-client.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/SOPE/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/SOPE/Makefile b/devel/SOPE/Makefile index 13c58f2cbe6..e422fcdbb64 100644 --- a/devel/SOPE/Makefile +++ b/devel/SOPE/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2013/02/06 23:22:03 jperkin Exp $ +# $NetBSD: Makefile,v 1.10 2013/02/27 06:12:25 taca Exp $ # DISTNAME= SOPE-2.0.2a @@ -19,8 +19,9 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= --with-gnustep --enable-debug --disable-strip pre-configure: + test -e ${BUILDLINK_DIR}/lib/libmysqlclient.so || \ ${LN} -s ${BUILDLINK_DIR}/lib/mysql/libmysqlclient.so \ - ${BUILDLINK_DIR}/lib/libmysqlclient.so + ${BUILDLINK_DIR}/lib/libmysqlclient.so .include "../../devel/gnustep-make/buildlink3.mk" .include "../../devel/gnustep-base/buildlink3.mk" |