diff options
author | eadler <eadler@FreeBSD.org> | 2013-06-10 06:08:22 +0800 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2013-06-10 06:08:22 +0800 |
commit | d736bffff2a7783f5d642723d8a36a2ce1f83733 (patch) | |
tree | 66f3cd96cb47bde18f3572372fae9b3aa9ee953c /devel | |
parent | 6f6d28689e6440ac708c369d7224c10a0ecd62a8 (diff) | |
download | freebsd-ports-gnome-d736bffff2a7783f5d642723d8a36a2ce1f83733.tar.gz freebsd-ports-gnome-d736bffff2a7783f5d642723d8a36a2ce1f83733.tar.zst freebsd-ports-gnome-d736bffff2a7783f5d642723d8a36a2ce1f83733.zip |
Recreate patches with additional changes that should allow building on 10-current
Diffstat (limited to 'devel')
-rw-r--r-- | devel/cdecl/files/patch-Makefile (renamed from devel/cdecl/files/patch-01) | 4 | ||||
-rw-r--r-- | devel/cdecl/files/patch-cdecl.c (renamed from devel/cdecl/files/patch-02) | 21 |
2 files changed, 20 insertions, 5 deletions
diff --git a/devel/cdecl/files/patch-01 b/devel/cdecl/files/patch-Makefile index a694cdca8d8c..66e8416178fa 100644 --- a/devel/cdecl/files/patch-01 +++ b/devel/cdecl/files/patch-Makefile @@ -1,5 +1,5 @@ ---- Makefile.orig Tue Jan 16 14:36:38 1996 -+++ Makefile Sat Nov 30 22:45:23 2002 +--- ./Makefile.orig 1996-01-16 06:36:38.000000000 +0100 ++++ ./Makefile 2013-06-10 00:05:02.101069622 +0200 @@ -15,13 +15,13 @@ # # add -DUSE_READLINE To compile in support for the GNU readline library. diff --git a/devel/cdecl/files/patch-02 b/devel/cdecl/files/patch-cdecl.c index c36d720197d0..8a79078dad97 100644 --- a/devel/cdecl/files/patch-02 +++ b/devel/cdecl/files/patch-cdecl.c @@ -1,8 +1,15 @@ ---- cdecl.c.orig Mon Jan 15 19:54:46 1996 -+++ cdecl.c Sat Aug 11 21:12:11 2001 -@@ -63,10 +63,16 @@ +--- ./cdecl.c.orig 1996-01-16 04:54:46.000000000 +0100 ++++ ./cdecl.c 2013-06-10 00:06:29.231069167 +0200 +@@ -59,14 +59,22 @@ + */ + + char cdeclsccsid[] = "@(#)cdecl.c 2.5 1/15/96"; +- ++ #include <stdio.h> #include <ctype.h> ++#include <unistd.h> ++ #if __STDC__ || defined(DOS) +# if (defined(__unix__) || defined(unix)) && !defined(USG) +# include <sys/param.h> @@ -17,6 +24,14 @@ #else # ifndef NOVARARGS # include <varargs.h> +@@ -124,7 +132,6 @@ + + #if __STDC__ + char *ds(char *), *cat(char *, ...), *visible(int); +- int getopt(int,char **,char *); + int main(int, char **); + int yywrap(void); + int dostdin(void); @@ -138,7 +145,9 @@ void docast(char*, char*, char*, char*); void dodexplain(char*, char*, char*, char*); |