pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/meta-pkgs/boost/patches
Module Name: pkgsrc
Committed By: cheusov
Date: Sat Jul 6 08:53:57 UTC 2024
Modified Files:
pkgsrc/meta-pkgs/boost/patches: patch-boost_charconv_detail_config.hpp
Log Message:
Fix build failure on glibc-based Linuxes; glibc also don`t have quadmath.h
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 \
pkgsrc/meta-pkgs/boost/patches/patch-boost_charconv_detail_config.hpp
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/meta-pkgs/boost/patches/patch-boost_charconv_detail_config.hpp
diff -u pkgsrc/meta-pkgs/boost/patches/patch-boost_charconv_detail_config.hpp:1.1 pkgsrc/meta-pkgs/boost/patches/patch-boost_charconv_detail_config.hpp:1.2
--- pkgsrc/meta-pkgs/boost/patches/patch-boost_charconv_detail_config.hpp:1.1 Thu Apr 18 14:16:30 2024
+++ pkgsrc/meta-pkgs/boost/patches/patch-boost_charconv_detail_config.hpp Sat Jul 6 08:53:57 2024
@@ -1,4 +1,4 @@
-$NetBSD: patch-boost_charconv_detail_config.hpp,v 1.1 2024/04/18 14:16:30 ryoon Exp $
+$NetBSD: patch-boost_charconv_detail_config.hpp,v 1.2 2024/07/06 08:53:57 cheusov Exp $
--- boost/charconv/detail/config.hpp.orig 2024-04-18 00:33:06.932281929 +0000
+++ boost/charconv/detail/config.hpp
@@ -7,7 +7,7 @@ $NetBSD: patch-boost_charconv_detail_con
#endif
-#if defined(BOOST_HAS_FLOAT128) && !defined(__STRICT_ANSI__) && !defined(BOOST_CHARCONV_NO_QUADMATH)
-+#if defined(BOOST_HAS_FLOAT128) && !defined(__STRICT_ANSI__) && !defined(BOOST_CHARCONV_NO_QUADMATH) && !defined(__NetBSD__)
++#if defined(BOOST_HAS_FLOAT128) && !defined(__STRICT_ANSI__) && !defined(BOOST_CHARCONV_NO_QUADMATH) && !defined(__NetBSD__) && !defined(__GLIBC__)
# define BOOST_CHARCONV_HAS_FLOAT128
# include <quadmath.h>
#endif
Home |
Main Index |
Thread Index |
Old Index