pkgsrc-Changes archive

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

CVS commit: pkgsrc/databases/lmdb



Module Name:    pkgsrc
Committed By:   dholland
Date:           Wed Jun  9 02:37:09 UTC 2021

Modified Files:
        pkgsrc/databases/lmdb: Makefile

Log Message:
databases/lmdb needs -lrt on Solaris 10. PR 56038 from Malte Dehling.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 pkgsrc/databases/lmdb/Makefile

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

Modified files:

Index: pkgsrc/databases/lmdb/Makefile
diff -u pkgsrc/databases/lmdb/Makefile:1.18 pkgsrc/databases/lmdb/Makefile:1.19
--- pkgsrc/databases/lmdb/Makefile:1.18 Tue Mar 16 19:49:15 2021
+++ pkgsrc/databases/lmdb/Makefile      Wed Jun  9 02:37:09 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 2021/03/16 19:49:15 adam Exp $
+# $NetBSD: Makefile,v 1.19 2021/06/09 02:37:09 dholland Exp $
 
 .include "../../databases/openldap/Makefile.version"
 
@@ -25,6 +25,11 @@ INSTALLATION_DIRS+=  ${PKGMANDIR}/man1
 TEST_TARGET=           test
 
 .include "../../mk/bsd.prefs.mk"
+
+.if ${OPSYS} == "SunOS" && (${OS_VERSION} == "5.9" || ${OS_VERSION} == "5.10")
+LDFLAGS+=              -lrt
+.endif
+
 .if ${OPSYS} == "Darwin"
 MAKE_FLAGS+=   SOEXT=.dylib
 MAKE_FLAGS+=   SOLIBS=-install_name\ ${PREFIX}/lib/liblmdb.dylib



Home | Main Index | Thread Index | Old Index