diff options
author | imura <imura@FreeBSD.org> | 2000-02-13 02:15:48 +0800 |
---|---|---|
committer | imura <imura@FreeBSD.org> | 2000-02-13 02:15:48 +0800 |
commit | 3497bb0daf7ab910871eac1f361d79cbf5f56009 (patch) | |
tree | 086712a00176088aa7e24331742dfc6a73ce744b /misc/peq/files | |
parent | 16a737ceffe9fc6c6c737b0b7b897afc35c7e004 (diff) | |
download | freebsd-ports-gnome-3497bb0daf7ab910871eac1f361d79cbf5f56009.tar.gz freebsd-ports-gnome-3497bb0daf7ab910871eac1f361d79cbf5f56009.tar.zst freebsd-ports-gnome-3497bb0daf7ab910871eac1f361d79cbf5f56009.zip |
Fix new compiler error in -current.
Noticed by: bento
All no response from: maintainer
Diffstat (limited to 'misc/peq/files')
-rw-r--r-- | misc/peq/files/patch-ae | 13 | ||||
-rw-r--r-- | misc/peq/files/patch-af | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/misc/peq/files/patch-ae b/misc/peq/files/patch-ae new file mode 100644 index 000000000000..2574f5d031fd --- /dev/null +++ b/misc/peq/files/patch-ae @@ -0,0 +1,13 @@ +--- read.cpp.orig Fri Mar 26 01:47:31 1999 ++++ read.cpp Sat Feb 12 11:12:10 2000 +@@ -1,8 +1,8 @@ + + #include "config.h" + +-extern cho; +-extern qnum; ++extern int cho; ++extern long qnum; + extern char comp_time[30]; + extern char quote[1500]; + extern FILE *pql; diff --git a/misc/peq/files/patch-af b/misc/peq/files/patch-af new file mode 100644 index 000000000000..3fd96229cf95 --- /dev/null +++ b/misc/peq/files/patch-af @@ -0,0 +1,13 @@ +--- show.cpp.orig Fri Mar 26 01:47:31 1999 ++++ show.cpp Sat Feb 12 11:13:09 2000 +@@ -3,8 +3,8 @@ + + extern int wrdnum; + extern char tot[300][100]; +-extern author_wrd; +-extern contrib_wrd; ++extern int author_wrd; ++extern int contrib_wrd; + + // This is the worst piece of shit (erm... code) you will ever see. It + // practically duplicates the same stuff FOUR TIMES! |