pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/fossil



Module Name:    pkgsrc
Committed By:   hauke
Date:           Tue Jun 15 08:38:20 UTC 2021

Modified Files:
        pkgsrc/devel/fossil: Makefile

Log Message:
Darwin (Mac OS X 10.13 here) needs iconv linked in for utf8 support.


To generate a diff of this commit:
cvs rdiff -u -r1.66 -r1.67 pkgsrc/devel/fossil/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/fossil/Makefile
diff -u pkgsrc/devel/fossil/Makefile:1.66 pkgsrc/devel/fossil/Makefile:1.67
--- pkgsrc/devel/fossil/Makefile:1.66   Wed Apr 21 11:41:24 2021
+++ pkgsrc/devel/fossil/Makefile        Tue Jun 15 08:38:20 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.66 2021/04/21 11:41:24 adam Exp $
+# $NetBSD: Makefile,v 1.67 2021/06/15 08:38:20 hauke Exp $
 
 DISTNAME=      fossil-src-2.15.1
 PKGNAME=       ${DISTNAME:S/-src//}
@@ -18,6 +18,8 @@ CONFIGURE_ARGS+=      --with-zlib=${BUILDLINK
 
 INSTALLATION_DIRS+=    bin ${PKGMANDIR}/man1 share/doc/${PKGBASE}
 
+LDFLAGS.Darwin+=       -liconv
+
 .include "options.mk"
 
 pre-configure:
@@ -32,5 +34,8 @@ do-install:
                ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
 
 .include "../../security/openssl/buildlink3.mk"
+.if ${OPSYS} == "Darwin"
+.include "../../converters/libiconv/buildlink3.mk"
+.endif
 .include "../../devel/zlib/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index