diff options
author | Volker Stolz <vs@FreeBSD.org> | 2005-02-22 12:33:28 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2005-02-22 12:33:28 +0000 |
commit | da34e633bb6d811ec66cafbb1f0dad7832dce15e (patch) | |
tree | 472d870df2a7555e3c452305b12cfc799a653de8 /math/unixstat/files/patch-src | |
parent | Update to 1.2. (diff) |
- Fix build on >= 5.3
- Use gtar to extract tarball
PR: ports/75011
Submitted by: Mike Meyer (maintainer)
Notes
Notes:
svn path=/head/; revision=129545
Diffstat (limited to 'math/unixstat/files/patch-src')
-rw-r--r-- | math/unixstat/files/patch-src | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/math/unixstat/files/patch-src b/math/unixstat/files/patch-src new file mode 100644 index 000000000000..706524851cda --- /dev/null +++ b/math/unixstat/files/patch-src @@ -0,0 +1,55 @@ +--- src/ff.c.orig Sun Dec 12 22:56:48 2004 ++++ src/ff.c Sun Dec 12 22:59:17 2004 +@@ -911,7 +911,7 @@ + + strcpy (numbuf, oldexpand (title, gpage, page, file)); + if (Needfls) +- fls (file, numbuf, answer); ++ usfls (file, numbuf, answer); + else + strcpy (answer, numbuf); + return (answer); +--- src/fls.c.orig Sun Dec 12 22:59:31 2004 ++++ src/fls.c Sun Dec 12 23:00:12 2004 +@@ -183,7 +183,7 @@ + statstdin (statptr) + struct stat *statptr; + { +- long clock, time (); ++ long clock ; + clock = time (0); + statptr->st_atime = clock; + statptr->st_mtime = clock; +@@ -200,7 +200,7 @@ + + /*FUNCTION fls: formated listing of file */ + Status +-fls (file, format, bptr) /* put formatted file listing in buffer */ ++usfls (file, format, bptr) /* put formatted file listing in buffer */ + char *file; /* name of the file to print */ + char *format; /* print format control string, like printf */ + char *bptr; /* pointer to buffer in which to print stats */ +--- src/calc.c.orig Sun Dec 12 23:08:23 2004 ++++ src/calc.c Sun Dec 12 23:11:21 2004 +@@ -1,4 +1,3 @@ +-extern char *malloc(), *realloc(); + + # line 2 "calc.y" + /* Copyright 1981 Gary Perlman */ +@@ -79,7 +78,7 @@ + double eval (), Answer; + double *Constant; + char *getline (); +-FILE *Outfile = stdout; ++FILE *Outfile; + + # line 83 "calc.y" + typedef union +@@ -222,6 +221,7 @@ + { + int i; + signal (SIGINT, SIG_IGN); ++ Outfile = stdout; + if (isatty (fileno (stdin))) + { + Interactive = 1; |