diff options
author | mph <mph@FreeBSD.org> | 1998-04-22 22:07:51 +0800 |
---|---|---|
committer | mph <mph@FreeBSD.org> | 1998-04-22 22:07:51 +0800 |
commit | 983b18bce983a4d6555beda02599986b8ad73099 (patch) | |
tree | 5759d63a8297fbde2073f801bd51fecb31885a23 /finance/xquote/files | |
parent | 029661e7ad9e3eabbdb91740237da4f51ff86153 (diff) | |
download | freebsd-ports-gnome-983b18bce983a4d6555beda02599986b8ad73099.tar.gz freebsd-ports-gnome-983b18bce983a4d6555beda02599986b8ad73099.tar.zst freebsd-ports-gnome-983b18bce983a4d6555beda02599986b8ad73099.zip |
Import of xquote, which gets stock quotes over the network.
PR: 5431
Submitted by: ian@majesticnet.com
Diffstat (limited to 'finance/xquote/files')
-rw-r--r-- | finance/xquote/files/patch-aa | 11 | ||||
-rw-r--r-- | finance/xquote/files/patch-ab | 14 |
2 files changed, 25 insertions, 0 deletions
diff --git a/finance/xquote/files/patch-aa b/finance/xquote/files/patch-aa new file mode 100644 index 000000000000..73f1c1d9a65d --- /dev/null +++ b/finance/xquote/files/patch-aa @@ -0,0 +1,11 @@ +--- util.h.orig Tue Sep 23 01:50:46 1997 ++++ util.h Mon Nov 17 11:03:20 1997 +@@ -52,7 +52,7 @@ + int strncasecmp (char *, char *, int); + #endif + +-#if defined(__FreeBSD__) || defined (__sgi) ++#if defined (__sgi) + char *strptime ( char *, char *, struct tm *); + #endif + diff --git a/finance/xquote/files/patch-ab b/finance/xquote/files/patch-ab new file mode 100644 index 000000000000..a65cfac404fd --- /dev/null +++ b/finance/xquote/files/patch-ab @@ -0,0 +1,14 @@ +--- util.c.orig Tue Sep 23 01:50:42 1997 ++++ util.c Mon Nov 17 11:06:50 1997 +@@ -239,9 +239,9 @@ + #endif + + +-#if defined(__FreeBSD__) || defined (NEED_STRPTIME) ++#if defined (NEED_STRPTIME) + +-/* Weird, FreeBSD and IRIX 5 don't have this, but do have strftime. ++/* Weird, IRIX 5 doesn't have this, but do have strftime. + ** This is a crippled implementation, only supporting the formats + ** actually used in the rest of Xinvest. Note that the return _value_ + ** does not conform to the man page either. |