SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
12
devel/blame/patches/patch-configure
Normal file
12
devel/blame/patches/patch-configure
Normal 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
|
||||
|
||||
|
12
devel/blame/patches/patch-src_blame_c
Normal file
12
devel/blame/patches/patch-src_blame_c
Normal 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
|
23
devel/blame/patches/patch-src_lexer_l
Normal file
23
devel/blame/patches/patch-src_lexer_l
Normal 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;
|
||||
|
||||
%}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue