diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-12-25 01:35:27 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-12-25 01:35:27 +0000 |
commit | 3cba520665a0461aa7b0ada016f4a0df717e37a2 (patch) | |
tree | 2a653051c7ea63b16724a5da9d583994530ab97b /net-nntp | |
parent | 8c39538f1e5cf37f42c409a6c742f96abef56f3b (diff) |
gentoo auto-resync : 25:12:2023 - 01:35:27
Diffstat (limited to 'net-nntp')
-rw-r--r-- | net-nntp/Manifest.gz | bin | 1371 -> 1375 bytes | |||
-rw-r--r-- | net-nntp/tin/Manifest | 1 | ||||
-rw-r--r-- | net-nntp/tin/files/tin-2.6.1-configure-clang16.patch | 108 |
3 files changed, 0 insertions, 109 deletions
diff --git a/net-nntp/Manifest.gz b/net-nntp/Manifest.gz Binary files differindex b0395ac524ac..37aeff231f4a 100644 --- a/net-nntp/Manifest.gz +++ b/net-nntp/Manifest.gz diff --git a/net-nntp/tin/Manifest b/net-nntp/tin/Manifest index 02eb78092339..f858fa1f0622 100644 --- a/net-nntp/tin/Manifest +++ b/net-nntp/tin/Manifest @@ -1,4 +1,3 @@ -AUX tin-2.6.1-configure-clang16.patch 2473 BLAKE2B af55c171def1e2756bdb305069aeb81b79198397afb38738c4298a1268dc813f7a9c11b941da503d11d5b2d4bac48cb5fa987486dc42a833b1d8241e05779542 SHA512 56ff3b3e71f79145feeaa6e6ce20bf2ebdc3f4b02681423dcabf27ccaa69ffeecb85430b2aed6c07bb9c90fffcaba35801dd44f4e8a81d0fd6fd698cea010af1 AUX tin-2.6.2-c99.patch 2650 BLAKE2B 0afaeb921397abd451dd166947a15ccb493bff51872a9fbb10cfff15b6dac77b9c9c9f8343a63e0eaf419c50e0151376bc461aa233cbea9680e198c0f30bc699 SHA512 886fbb0d54690373f4abb7ac8bbdd417883db9d0f21b41c5aff0e1e52b787cf67f0603682679380a93d80f369d626db1ec7000c925fdf8ec1c9b5a092ae00687 AUX tin-2.6.2-gnutls.patch 653 BLAKE2B fd5ad80b1f2e5c5307e28e513f2aaf9cbd17f12517aed07298aaa54dc85a26aa28f4a091841fd2efa154b9acc4fa7749d575ec3aba60e4008f9c1ef533a50120 SHA512 d372ce615a18ab5cc67ec69e71870e5073937e8a59f55cf7e5a43271cd9eb55ae379e875b8656b2140403e23792df1844b05ff234cbed18883f59a445d11d21f DIST tin-2.6.2.tar.xz 1598732 BLAKE2B 0e5bac9a711fb69e64d64b4f0c070d456f38f727e7b7aa794ad5ada8695c2174023964b8f07d2e7d6add51cf0c7c3102965bef653a7e873275747145cb70dbe2 SHA512 4c9e0edb3268d57fb89d9d53a90e8a5ba73da7c1da63c834224bed0f763502a7c3dd325351d3e57b1ddcb57494a84228cc38f227c49300b759fad8d112b1cac1 diff --git a/net-nntp/tin/files/tin-2.6.1-configure-clang16.patch b/net-nntp/tin/files/tin-2.6.1-configure-clang16.patch deleted file mode 100644 index 30fb937a6247..000000000000 --- a/net-nntp/tin/files/tin-2.6.1-configure-clang16.patch +++ /dev/null @@ -1,108 +0,0 @@ -https://src.fedoraproject.org/rpms/tin/blob/bbfb5a569a97cde8d4ca95f44979070ad2f57bd0/f/tin-configure-c99.patch - -Add missing #include directives to pick up additional prototypes. -Improves C99 compatibility. - ---- a/aclocal.m4 -+++ b/aclocal.m4 -@@ -2165,8 +2165,17 @@ AC_MSG_CHECKING([if application can dump core]) - AC_CACHE_VAL(cf_cv_corefile,[ - AC_TRY_RUN([ - #include <signal.h> -+#ifdef HAVE_STDLIB_H -+#include <stdlib.h> -+#endif - #include <sys/types.h> - #include <sys/stat.h> -+#ifdef HAVE_SYS_WAIT_H -+#include <sys/wait.h> -+#endif -+#ifdef HAVE_UNISTD_H -+#include <unistd.h> -+#endif - int found() - { - struct stat sb; -@@ -3319,6 +3328,9 @@ AC_DEFUN([CF_FUNC_FORK], - [AC_MSG_CHECKING([for fork]) - AC_CACHE_VAL(cf_cv_func_fork,[ - AC_TRY_RUN([ -+#ifdef HAVE_UNISTD_H -+#include <unistd.h> -+#endif - int main() - { - if (fork() < 0) -@@ -3465,6 +3477,9 @@ AC_MSG_CHECKING(if the system function returns usable child-status) - AC_CACHE_VAL(cf_cv_system_status,[ - AC_TRY_RUN([ - #include <stdio.h> -+#ifdef HAVE_STDLIB_H -+#include <stdlib.h> -+#endif - #include <signal.h> - #if HAVE_SYS_WAIT_H - #include <sys/wait.h> -@@ -3495,7 +3510,11 @@ int main() - ], - [cf_cv_system_status=no], - [AC_TRY_RUN( -- [int main() { ${cf_cv_main_return:-return}(system("exit 23") != (23 << 8)); }], -+ [ -+#ifdef HAVE_STDLIB_H -+#include <stdlib.h> -+#endif -+int main() { ${cf_cv_main_return:-return}(system("exit 23") != (23 << 8)); }], - [cf_cv_system_status=yes], - [cf_cv_system_status=unknown], - [cf_cv_system_status=unknown])], ---- a/configure -+++ b/configure -@@ -26361,6 +26361,9 @@ else - #line 26361 "configure" - #include "confdefs.h" - -+#ifdef HAVE_UNISTD_H -+#include <unistd.h> -+#endif - int main() - { - if (fork() < 0) -@@ -27366,6 +27369,9 @@ else - #include "confdefs.h" - - #include <stdio.h> -+#ifdef HAVE_STDLIB_H -+#include <stdlib.h> -+#endif - #include <signal.h> - #if HAVE_SYS_WAIT_H - #include <sys/wait.h> -@@ -27417,6 +27423,9 @@ else - cat >"conftest.$ac_ext" <<_ACEOF - #line 27418 "configure" - #include "confdefs.h" -+#ifdef HAVE_STDLIB_H -+#include <stdlib.h> -+#endif - int main() { ${cf_cv_main_return:-return}(system("exit 23") != (23 << 8)); } - _ACEOF - rm -f "conftest$ac_exeext" -@@ -27764,8 +27773,17 @@ else - #include "confdefs.h" - - #include <signal.h> -+#ifdef HAVE_STDLIB_H -+#include <stdlib.h> -+#endif - #include <sys/types.h> - #include <sys/stat.h> -+#ifdef HAVE_SYS_WAIT_H -+#include <sys/wait.h> -+#endif -+#ifdef HAVE_UNISTD_H -+#include <unistd.h> -+#endif - int found() - { - struct stat sb; |