pkgsrc-Changes archive

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

CVS commit: pkgsrc/databases/mongodb4



Module Name:    pkgsrc
Committed By:   abs
Date:           Tue Mar 19 10:10:35 UTC 2024

Modified Files:
        pkgsrc/databases/mongodb4: Makefile

Log Message:
Fix mongodb4 build with gcc 10

There is still an issue with gcc 11, but lets get a baseline working
build for at least some configs

Bump PKGREVISION


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/mongodb4/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/mongodb4/Makefile
diff -u pkgsrc/databases/mongodb4/Makefile:1.7 pkgsrc/databases/mongodb4/Makefile:1.8
--- pkgsrc/databases/mongodb4/Makefile:1.7      Sat Jan 27 08:32:31 2024
+++ pkgsrc/databases/mongodb4/Makefile  Tue Mar 19 10:10:35 2024
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.7 2024/01/27 08:32:31 adam Exp $
+# $NetBSD: Makefile,v 1.8 2024/03/19 10:10:35 abs Exp $
 
 DISTNAME=      mongodb-src-r4.4.28
 PKGNAME=       ${DISTNAME:S/src-r//}
+PKGREVISION=   1
 CATEGORIES=    databases
 MASTER_SITES=  http://fastdl.mongodb.org/src/
 
@@ -28,7 +29,7 @@ TOOL_DEPENDS+=        ${PYPKGPREFIX}-wrapt>=1.1
 USE_LANGUAGES=         c c++
 USE_CC_FEATURES=       c99
 USE_CXX_FEATURES=      c++17 filesystem
-GCC_REQD+=             11
+GCC_REQD+=             10
 
 USE_TOOLS+=    pkg-config
 
@@ -49,6 +50,7 @@ SCONS_BUILD_ARGS+=    --use-system-tcmalloc
 SCONS_BUILD_ARGS+=     --use-system-yaml
 SCONS_BUILD_ARGS+=     --use-system-zlib
 SCONS_BUILD_ARGS+=     --use-system-zstd
+SCONS_BUILD_ARGS+=     --modules='' # avoid enterprise build
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 



Home | Main Index | Thread Index | Old Index