summaryrefslogtreecommitdiff
path: root/x11/xbelld/files/patch-xbelld.c
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2019-04-04 16:37:29 +0000
committerRene Ladan <rene@FreeBSD.org>2019-04-04 16:37:29 +0000
commitcc5fe2dd620082c6185b6968505daa180908270f (patch)
tree4cee0f81cfd6da29fc9cf44ab5caf8f38bcb7006 /x11/xbelld/files/patch-xbelld.c
parentUpdate xfce4-parole to 1.0.2 (diff)
Remove expired ports:
2019-03-25 chinese/reciteword: depends on audio/esound 2019-03-31 comms/conserver: Superseeded by comms/conserver-com 2019-03-24 databases/flamerobin: Abandonware since 2009, does not work with newer version of wxGTK 2019-04-01 databases/mariadb100-client: Upstream End-of-Life March 2019 (https://mariadb.org/about/maintenance-policy/) 2019-04-01 databases/mariadb100-server: Upstream End-of-Life March 2019 (https://mariadb.org/about/maintenance-policy/) 2019-03-12 devel/physfs-devel: is the same as devel/physfs, serving no purpose 2019-03-20 devel/py-construct28: Latest upstream version is in ports tree devel/py-construct 2019-03-31 devel/xtoolchain-llvm40: No supported release uses this version 2019-03-31 devel/xtoolchain-llvm50: No supported release uses this version 2019-03-31 finance/aqmoney: no longer maintained upstream 2019-03-31 finance/openhbci: no longer maintained upstream 2019-03-31 graphics/py-exiv2: py-exiv2 has been deprecated in favour of GExiv2 2019-04-04 mail/dbmail22: Please use mail/dbmail which uses latest version of 3.X 2019-03-31 net/rubygem-fog-google17: Use net/rubygem-fog-google instead 2019-03-31 ports-mgmt/bsdadminscripts: Upstream stale nearly 10 years, no longer works properly, use ports-mgmt/bsdadminscripts2 instead 2019-03-24 www/mod_md-devel: Use the module that is shipped with Apache 2.4 2019-03-25 x11/xbelld: Depends on audio/esound
Notes
Notes: svn path=/head/; revision=497852
Diffstat (limited to 'x11/xbelld/files/patch-xbelld.c')
-rw-r--r--x11/xbelld/files/patch-xbelld.c48
1 files changed, 0 insertions, 48 deletions
diff --git a/x11/xbelld/files/patch-xbelld.c b/x11/xbelld/files/patch-xbelld.c
deleted file mode 100644
index 8538173ebd68..000000000000
--- a/x11/xbelld/files/patch-xbelld.c
+++ /dev/null
@@ -1,48 +0,0 @@
---- xbelld.c.orig 2002-10-27 00:28:36 UTC
-+++ xbelld.c
-@@ -60,8 +60,7 @@
- #include <dirent.h>
-
- #ifndef lint
--static const char rcsid[] =
-- "$Id: xbelld.c,v 1.7 2002/10/27 00:28:36 sethk Exp $";
-+__RCSID("$Id: xbelld.c,v 1.7 2002/10/27 00:28:36 sethk Exp $");
- #endif /* !lint */
-
- #define XskRFilename "XskRFilename"
-@@ -268,7 +267,7 @@ _hash_nfind(struct hash *hp,
- u_int i;
-
- if (!hp->h_size)
-- return NULL;
-+ return False;
- i = hp->h_hash(data) % hp->h_size;
- if (!TAILQ_EMPTY(&(hp->h_buckets[i])))
- {
-@@ -805,7 +804,7 @@ _play(struct sound_desc *sdp, float per)
- }
-
- static void
--_cb_bell(XETC *tc, XETrapDatum *data, XPointer *unused)
-+_cb_bell(XETC *tc, XETrapDatum *data, unsigned char *unused)
- {
- xBellReq *breq = (xBellReq *)&(data->u.req);
- struct client_desc cd, *cdp;
-@@ -914,7 +913,7 @@ _rescan(void)
- close(dfd);
- for (nent = 0, dep = (struct dirent *)dbuf;
- (char *)dep - dbuf < nb;
-- ++nent, (char *)dep+= dep->d_reclen)
-+ ++nent, dep+= dep->d_reclen)
- ;
- _hash_resize(&(_bd.bd_sndhash), nent * 2);
- if (_bd.bd_defsnd)
-@@ -924,7 +923,7 @@ _rescan(void)
- }
- for (dep = (struct dirent *)dbuf;
- (char *)dep - dbuf < nb;
-- (char *)dep+= dep->d_reclen)
-+ dep+= dep->d_reclen)
- {
- char *suf;
- static const char *sufs[] = AUDIO_SUFS;