pkgsrc-Changes archive

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

CVS commit: pkgsrc/net/hoogle



Module Name:    pkgsrc
Committed By:   pho
Date:           Sat Feb 26 07:13:07 UTC 2022

Modified Files:
        pkgsrc/net/hoogle: Makefile

Log Message:
net/hoogle: Link hoogle with static Haskell libraries


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/net/hoogle/Makefile

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

Modified files:

Index: pkgsrc/net/hoogle/Makefile
diff -u pkgsrc/net/hoogle/Makefile:1.5 pkgsrc/net/hoogle/Makefile:1.6
--- pkgsrc/net/hoogle/Makefile:1.5      Sat Feb 26 03:58:19 2022
+++ pkgsrc/net/hoogle/Makefile  Sat Feb 26 07:13:07 2022
@@ -1,14 +1,21 @@
-# $NetBSD: Makefile,v 1.5 2022/02/26 03:58:19 pho Exp $
+# $NetBSD: Makefile,v 1.6 2022/02/26 07:13:07 pho Exp $
 
 DISTNAME=      hoogle-5.0.18.3
 PKGNAME=       ${DISTNAME}
-PKGREVISION=   2
+PKGREVISION=   3
 CATEGORIES=    net
 
 MAINTAINER=    pho%cielonegro.org@localhost
 COMMENT=       Haskell API Search
 LICENSE=       modified-bsd
 
+# If hoogle is to be linked dynamically, it will depend on more than 160
+# shared objects and the dynamic linker will spend more than a second to
+# resolve symbols on startup. This is unacceptable because hoogle tends to
+# be launched very frequently by editors and IDEs. This wastes storage, but
+# time is more expensive than disks.
+HASKELL_ENABLE_DYNAMIC_EXECUTABLE=     no
+
 .include "../../converters/hs-aeson/buildlink3.mk"
 .include "../../textproc/hs-blaze-html/buildlink3.mk"
 .include "../../textproc/hs-blaze-markup/buildlink3.mk"



Home | Main Index | Thread Index | Old Index