summaryrefslogtreecommitdiff
path: root/emulators/fuse-utils/Makefile
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2004-06-26 17:46:14 +0000
committergrant <grant@pkgsrc.org>2004-06-26 17:46:14 +0000
commit0597b144685e0103d09220a37e46dd3a1a9f356c (patch)
treef92f1748a48c36d33c655636d8017d93939bf90a /emulators/fuse-utils/Makefile
parent1b34f152c282795f4a1a21ffea54d0dedaa56b99 (diff)
downloadpkgsrc-0597b144685e0103d09220a37e46dd3a1a9f356c.tar.gz
this uses functions from libgcrypt and libgpg-error so include their
buildlink3.mk files. on NetBSD and others this was building and working but resolving symbols from libgcrypt and libgpg-error indirectly via libspectrum. this is not good practice, you must always explicitly link against libraries for the functions you need. fixes the build on Solaris. bump PKGREVISION.
Diffstat (limited to 'emulators/fuse-utils/Makefile')
-rw-r--r--emulators/fuse-utils/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/emulators/fuse-utils/Makefile b/emulators/fuse-utils/Makefile
index c009927838c..5c74f4653c5 100644
--- a/emulators/fuse-utils/Makefile
+++ b/emulators/fuse-utils/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.4 2004/02/25 18:50:03 minskim Exp $
+# $NetBSD: Makefile,v 1.5 2004/06/26 17:46:14 grant Exp $
#
DISTNAME= fuse-utils-0.6.2
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fuse-emulator/}
@@ -14,6 +14,11 @@ USE_BUILDLINK3= yes
USE_X11= yes
GNU_CONFIGURE= yes
+LIBS+= -lgcrypt
+LIBS+= -lgpg-error
+
.include "../../emulators/libspectrum/buildlink3.mk"
+.include "../../security/libgcrypt/buildlink3.mk"
+.include "../../security/libgpg-error/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"