SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,14 @@
--- acinclude.m4.orig Wed Apr 18 18:06:08 2001
+++ acinclude.m4 Wed Jun 27 18:29:43 2001
@@ -614,8 +614,9 @@ AC_DEFUN(AC_TYPE_SOCKLEN_T,
[AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
[
AC_TRY_COMPILE(
- [#include <sys/socket.h>],
- [socklen_t len = 42; return len;],
+ [#include <sys/types.h>
+ #include <sys/socket.h>],
+ [socklen_t x;],
ac_cv_type_socklen_t=yes,
ac_cv_type_socklen_t=no)
])