git: dd7afe65c58a - main - lang/gcc14-devel: Fix enable init_array patch
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 28 May 2023 18:39:11 UTC
The branch main has been updated by salvadore: URL: https://cgit.FreeBSD.org/ports/commit/?id=dd7afe65c58a8083ccf6f3a9e063df6a7620e5b5 commit dd7afe65c58a8083ccf6f3a9e063df6a7620e5b5 Author: Lorenzo Salvadore <salvadore@FreeBSD.org> AuthorDate: 2023-05-24 21:45:22 +0000 Commit: Lorenzo Salvadore <salvadore@FreeBSD.org> CommitDate: 2023-05-28 18:39:06 +0000 lang/gcc14-devel: Fix enable init_array patch Add an error line that was missing in case _FreeBSD_version < 1000010. Reported by: gnikl@users.sourceforge.net Fixes: 8a1885234ce7 lang/gcc14-devel: Enable support for .init_array and .fini_array --- lang/gcc14-devel/Makefile | 1 + lang/gcc14-devel/files/patch-gcc_configure | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lang/gcc14-devel/Makefile b/lang/gcc14-devel/Makefile index cc06aa69116f..5d6698a39990 100644 --- a/lang/gcc14-devel/Makefile +++ b/lang/gcc14-devel/Makefile @@ -1,5 +1,6 @@ PORTNAME= gcc PORTVERSION= 14.0.0.s20230514 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc14-devel/files/patch-gcc_configure b/lang/gcc14-devel/files/patch-gcc_configure index d4e7e8d23e60..cc60593ba6f7 100644 --- a/lang/gcc14-devel/files/patch-gcc_configure +++ b/lang/gcc14-devel/files/patch-gcc_configure @@ -4,9 +4,9 @@ repository. There __FreeBSD_version is 1000009, so we start enabling the support from __FreeBSD_version == 1000010. ---- gcc/configure.orig 2023-05-04 17:36:54 UTC +--- gcc/configure.orig 2023-05-11 22:33:34 UTC +++ gcc/configure -@@ -24214,6 +24214,11 @@ EOF +@@ -24214,6 +24214,13 @@ EOF #else # if defined __sun__ && defined __svr4__ /* Solaris ld.so.1 supports .init_array/.fini_array since Solaris 8. */ @@ -14,6 +14,8 @@ from __FreeBSD_version == 1000010. +# include <sys/param.h> +# if __FreeBSD_version >= 1000010 + /* FreeBSD supports .init_array/.fini_array since FreeBSD 10. */ ++# else ++# error The C library not known to support .init_array/.fini_array +# endif # else # error The C library not known to support .init_array/.fini_array