diff options
author | marcus <marcus@FreeBSD.org> | 2003-10-23 20:46:11 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-10-23 20:46:11 +0000 |
commit | 290fdb93a32df4d3f7f186f510345059a874cc68 (patch) | |
tree | 7f0238e0a619027e0730d2937a49d7bd917265f8 /net-im/gaim/files | |
parent | 57198d603ed60320bb75c84c276c284db318e6a3 (diff) | |
download | FreeBSD-ports-290fdb93a32df4d3f7f186f510345059a874cc68.zip FreeBSD-ports-290fdb93a32df4d3f7f186f510345059a874cc68.tar.gz |
* Document two more options available in the Makefile
* Remove the Oscar IP address patch. It does not appear to be needed
anymore, and may actually cause breakage
Submitted by: Matthew Luckie <mjl@luckie.org.nz>
Diffstat (limited to 'net-im/gaim/files')
-rw-r--r-- | net-im/gaim/files/patch-src::protocols::oscar.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/net-im/gaim/files/patch-src::protocols::oscar.c b/net-im/gaim/files/patch-src::protocols::oscar.c deleted file mode 100644 index 17c6017..0000000 --- a/net-im/gaim/files/patch-src::protocols::oscar.c +++ /dev/null @@ -1,19 +0,0 @@ ---- src/protocols/oscar/oscar.c.orig Sat Oct 11 00:10:06 2003 -+++ src/protocols/oscar/oscar.c Sat Oct 11 00:13:51 2003 -@@ -5391,11 +5391,11 @@ - } - - if ((bi != NULL) && (bi->ipaddr)) { -- char *tstr = g_strdup_printf("%hhd.%hhd.%hhd.%hhd", -- (bi->ipaddr & 0xff000000) >> 24, -- (bi->ipaddr & 0x00ff0000) >> 16, -- (bi->ipaddr & 0x0000ff00) >> 8, -- (bi->ipaddr & 0x000000ff)); -+ char *tstr = g_strdup_printf("%hhu.%hhu.%hhu.%hhu", -+ (char)(bi->ipaddr >> 24), -+ (char)(bi->ipaddr >> 16), -+ (char)(bi->ipaddr >> 8), -+ (char)bi->ipaddr); - tmp = ret; - ret = g_strconcat(tmp, _("<b>IP Address:</b> "), tstr, "\n", NULL); - g_free(tmp); |