pkgsrc-Changes archive

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

CVS commit: pkgsrc/math/R



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Mon Oct  9 16:45:36 UTC 2023

Modified Files:
        pkgsrc/math/R: Makefile

Log Message:
R: Limit the NLS disabling to NetBSD-only.

Disabling NLS is actively harmful on other platforms, and this builds
perfectly fine with pkgsrc gettext.


To generate a diff of this commit:
cvs rdiff -u -r1.242 -r1.243 pkgsrc/math/R/Makefile

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

Modified files:

Index: pkgsrc/math/R/Makefile
diff -u pkgsrc/math/R/Makefile:1.242 pkgsrc/math/R/Makefile:1.243
--- pkgsrc/math/R/Makefile:1.242        Tue Sep 26 20:37:17 2023
+++ pkgsrc/math/R/Makefile      Mon Oct  9 16:45:36 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.242 2023/09/26 20:37:17 bacon Exp $
+# $NetBSD: Makefile,v 1.243 2023/10/09 16:45:36 jperkin Exp $
 
 #
 # If updating this package, please try to ensure PLIST.Darwin is kept in sync
@@ -35,13 +35,16 @@ CONFIGURE_ARGS+=    --with-readline
 CONFIGURE_ARGS+=       --with-tcltk
 CONFIGURE_ARGS+=       --with-tcl-config=${BUILDLINK_PREFIX.tcl}/lib/tclConfig.sh
 CONFIGURE_ARGS+=       --with-tk-config=${BUILDLINK_PREFIX.tk}/lib/tkConfig.sh
-CONFIGURE_ARGS+=       --disable-nls
 
 .include "../../mk/bsd.prefs.mk"
 .if ${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD"
 CONFIGURE_ARGS+=       --enable-long-double=no
 .endif
 
+.if ${OPSYS} == "NetBSD"
+CONFIGURE_ARGS+=       --disable-nls
+.endif
+
 .if ${OPSYS} != "Linux"
 USE_GNU_ICONV=         yes             # latin1 support, iconvlist
 .endif



Home | Main Index | Thread Index | Old Index