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,12 @@
Index: configure
--- configure.orig
+++ configure
@@ -20832,8 +20832,6 @@ else
GCC_FALSE=
fi
-CFLAGS=`echo $CFLAGS | sed -e s,-O2,-O3,`
-
NEWS=NEWS

View file

@ -0,0 +1,12 @@
Index: src/blame.c
--- src/blame.c.orig
+++ src/blame.c
@@ -38,7 +38,7 @@
/*
* Program name for errors.
*/
-const char *program_name;
+extern const char *program_name;
/*
* Package name/bug address for argp

View file

@ -0,0 +1,23 @@
Index: src/lexer.l
--- src/lexer.l.orig
+++ src/lexer.l
@@ -23,7 +23,7 @@
#define YY_NO_UNPUT
typedef struct { unsigned int line; off_t off; off_t next; } loc_t;
#define YYLTYPE loc_t
-#define YY_DECL int yylex YY_PROTO((void))
+#define YY_DECL int yylex (void)
#include <delta.h>
#include <keyword.h>
@@ -32,8 +32,8 @@ typedef struct { unsigned int line; off_t off; off_t n
#include <parser.h>
-YYSTYPE yylval;
-YYLTYPE yylloc;
+extern YYSTYPE yylval;
+extern YYLTYPE yylloc;
%}