diff options
author | vs <vs@FreeBSD.org> | 2004-07-09 03:35:06 +0800 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2004-07-09 03:35:06 +0800 |
commit | ffc7b7b93370a5e6ddd74050c64280c0774f611c (patch) | |
tree | 938a63faf1aadf43d60c5f0c454a5ae8a108a28b | |
parent | 3cfa236d21f896cb88a6914a94e5196652c8c99a (diff) | |
download | freebsd-ports-gnome-ffc7b7b93370a5e6ddd74050c64280c0774f611c.tar.gz freebsd-ports-gnome-ffc7b7b93370a5e6ddd74050c64280c0774f611c.tar.zst freebsd-ports-gnome-ffc7b7b93370a5e6ddd74050c64280c0774f611c.zip |
Fix for gnome-libs induced breakage.
PR: ports/68818
Submitted by: maintainer
-rw-r--r-- | comms/xlog/Makefile | 1 | ||||
-rw-r--r-- | comms/xlog/files/patch-aa | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/comms/xlog/Makefile b/comms/xlog/Makefile index 814f3019cd40..a7be978411dc 100644 --- a/comms/xlog/Makefile +++ b/comms/xlog/Makefile @@ -6,6 +6,7 @@ PORTNAME= xlog PORTVERSION= 0.9.6 +PORTREVISION= 1 CATEGORIES= comms MASTER_SITES= http://www.qsl.net/pg4i/download/ diff --git a/comms/xlog/files/patch-aa b/comms/xlog/files/patch-aa new file mode 100644 index 000000000000..cb90ac86ff6d --- /dev/null +++ b/comms/xlog/files/patch-aa @@ -0,0 +1,13 @@ +*** src/dxcc.c.orig Thu Jul 8 14:05:52 2004 +--- src/dxcc.c Thu Jul 8 14:07:08 2004 +*************** +*** 277,282 **** +--- 277,284 ---- + if (ch == EOF) break; + buf[ichar++] = ch; + } ++ if(feof(fp) && (ichar == 0)) ++ break; + buf[ichar] = '\0'; + ichar = 0; + ch = 0; |