summaryrefslogtreecommitdiff
path: root/news/newsx/files/patch-af
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2002-02-23 14:23:48 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2002-02-23 14:23:48 +0000
commitfa774241a5468136e0c6af9f99c473ca59d05c1f (patch)
tree02fe8d992790da50083522426ac2a24b69ac1d5d /news/newsx/files/patch-af
parentFix build with postgresql 7.2 (some .h files have moved). (diff)
Upgrade to the last release. This release is basically for bug fixes.
It supports inn's storage manager => no more ugly patches! PR: 34503 Submitted by: thierry@pompo.net
Diffstat (limited to 'news/newsx/files/patch-af')
-rw-r--r--news/newsx/files/patch-af37
1 files changed, 0 insertions, 37 deletions
diff --git a/news/newsx/files/patch-af b/news/newsx/files/patch-af
deleted file mode 100644
index aa0cd6f3c47d..000000000000
--- a/news/newsx/files/patch-af
+++ /dev/null
@@ -1,37 +0,0 @@
---- lib/getopt.c.orig Sun Sep 27 09:34:20 1998
-+++ lib/getopt.c Thu Feb 15 21:30:54 2001
-@@ -23,6 +23,9 @@
- Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-
- $Log: getopt.c,v $
-+ Revision x.x 2001/02/14
-+ Got rid of another gcc warning (<thierry@thomas.as>)
-+
- Revision 1.2 1998/09/27 07:34:20 src
- Got rid of gcc warning
-
-@@ -554,17 +557,20 @@
- else
- {
- if (opterr)
-+ {
- if (argv[optind - 1][1] == '-')
- /* --option */
- fprintf (stderr,
- gettext ("%s: option `--%s' doesn't allow an argument\n"),
- argv[0], pfound->name);
- else
-+ {
- /* +option or -option */
-- fprintf (stderr,
-- gettext ("%s: option `%c%s' doesn't allow an argument\n"),
-- argv[0], argv[optind - 1][0], pfound->name);
--
-+ fprintf (stderr,
-+ gettext ("%s: option `%c%s' doesn't allow an argument\n"),
-+ argv[0], argv[optind - 1][0], pfound->name);
-+ }
-+ }
- nextchar += strlen (nextchar);
- return '?';
- }