pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/apr-util
Module Name: pkgsrc
Committed By: jperkin
Date: Tue Jan 18 09:43:18 UTC 2022
Modified Files:
pkgsrc/devel/apr-util: Makefile
Log Message:
apr-util: Disable memset_s on SunOS.
The configure test correctly defines __STDC_WANT_LIB_EXT1__=1 as is
required when using the _s set of functions, so memset_s is found, but
then the actual source code does not, so you're left with undefined
references.
Disabling completely is simpler than having to rearrange everything
else to work, and will fall back to portable features.
To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 pkgsrc/devel/apr-util/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/apr-util/Makefile
diff -u pkgsrc/devel/apr-util/Makefile:1.63 pkgsrc/devel/apr-util/Makefile:1.64
--- pkgsrc/devel/apr-util/Makefile:1.63 Wed Dec 8 16:03:53 2021
+++ pkgsrc/devel/apr-util/Makefile Tue Jan 18 09:43:18 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.63 2021/12/08 16:03:53 adam Exp $
+# $NetBSD: Makefile,v 1.64 2022/01/18 09:43:18 jperkin Exp $
DISTNAME= apr-util-1.6.1
PKGREVISION= 12
@@ -21,6 +21,9 @@ CONFIGURE_ARGS+= --without-odbc
CONFIGURE_ARGS+= --without-sqlite2
PKGCONFIG_OVERRIDE+= apr-util.pc.in
+# Too many differences between configure test and actual usage.
+CONFIGURE_ENV.SunOS+= apu_cv_memset_s=no
+
# just a list of exported symbols for a library that also starts with shebang
CHECK_INTERPRETER_SKIP= lib/aprutil.exp
Home |
Main Index |
Thread Index |
Old Index