summaryrefslogtreecommitdiff
path: root/chat/bsflite/patches
diff options
context:
space:
mode:
authorobache <obache>2006-11-23 00:54:01 +0000
committerobache <obache>2006-11-23 00:54:01 +0000
commitc203733a6b5f223746623758f6596de0b7158d2a (patch)
tree7049a398b9a1b537342100e600b2d747042119b9 /chat/bsflite/patches
parentdf55e79b31345f821ff0c13e60f6ada349f75bb7 (diff)
downloadpkgsrc-c203733a6b5f223746623758f6596de0b7158d2a.tar.gz
Update bsflite to 0.82, provided by Claudio Leite in PR 35095.
BSFlite ChangeLog 0.82 - 11/07/2006 * Added port to Watcom C for Win32, which exposed a bug in how I implemented callbacks (fixed). * Fixed small bug where idle time was interpreted as an away message for certain users. * Inserts newline if user's away message is blank. * Added R! command to manually reconnect. * Added auto_reconnect config option. * Cleans up after itself on quit. (i.e. no more memory leaks on exit) Added imcomm_delete_handle() and imcomm_delete_handle_now(). * Added 'idletime' config option to set when bsflite considers the user to be idle. (thanks to Dan Ponte for the patch) * Changed 'll' to 'L,' which is an expansion alias like 'I' and 'r.' 'll' still works. * Created an actual manpage. * Code cleanup: rewrote input.c using callbacks. wrote a new config file parser. * Profile display now includes idle time if user is in buddy list. * Changed character set on profile & away messages to iso-8859-1 * Many improvements to color support, including Windows support. Can now be turned on and off via config directive 'colors' * Buddies are now marked offline in the log files when quitting bsflite. * Display version information when bsflite starts * Fixed bugs when displaying logs containing newlines
Diffstat (limited to 'chat/bsflite/patches')
-rw-r--r--chat/bsflite/patches/patch-aa20
-rw-r--r--chat/bsflite/patches/patch-ab19
2 files changed, 21 insertions, 18 deletions
diff --git a/chat/bsflite/patches/patch-aa b/chat/bsflite/patches/patch-aa
index 70d6f61318a..781b8231cd1 100644
--- a/chat/bsflite/patches/patch-aa
+++ b/chat/bsflite/patches/patch-aa
@@ -1,19 +1,19 @@
-$NetBSD: patch-aa,v 1.2 2006/01/11 18:13:25 wiz Exp $
+$NetBSD: patch-aa,v 1.3 2006/11/23 00:54:01 obache Exp $
---- Makefile.orig 2006-01-09 12:10:53.000000000 -0600
+--- Makefile.orig 2006-11-07 16:56:52.000000000 -0500
+++ Makefile
@@ -2,7 +2,7 @@ EXEC=bsflite
#EXEC=bsflite.exe
- #CC=i386-pc-msdosdjgpp-gcc
+ #CC=i586-pc-msdosdjgpp-gcc
#CC=mingw32-gcc
-CC=gcc
+#CC=gcc
#
- # Add -DCOLOR for ANSI color support
- # Add also -DCOLOR_DARKBG if you have a xterm/screen with
-@@ -20,10 +20,10 @@ CFLAGS=-Os -Wall -pipe
+ # Add -DDUMP_PROFILE to dump all HTML profiles to a file.
+ # Edit PROFILE_DUMP_PATH in bsf.h to set the path.
+@@ -16,10 +16,10 @@ CFLAGS=-Os -pipe
# Add -lsocket -lbind for Zeta R1 (and potentially BeOS)
- # (thanks, Brennan Cleveland)
+ # (thanks to Brennan Cleveland)
#
-LIBS=-limcomm
+LIBS+=-limcomm
@@ -21,6 +21,6 @@ $NetBSD: patch-aa,v 1.2 2006/01/11 18:13:25 wiz Exp $
#LIBS+=-lwsock32
-LDFLAGS=-Limcomm/ -s
+LDFLAGS+=-Limcomm/ -s
- #LDFLAGS+=-L/usr/local/djgpp/watt/lib
- SOURCES=aim.c away.c bsf.c cleaner.c config.c conn.c input.c log.c out.c queue.c util.c
- OBJECTS=aim.o away.o bsf.o cleaner.o config.o conn.o input.o log.o out.o queue.o util.o
+ #LDFLAGS+=-L/usr/local/cross-tools/watt/lib
+
+ INSTALL=/usr/bin/install
diff --git a/chat/bsflite/patches/patch-ab b/chat/bsflite/patches/patch-ab
index b51af5d42f2..6753e8eb7ea 100644
--- a/chat/bsflite/patches/patch-ab
+++ b/chat/bsflite/patches/patch-ab
@@ -1,21 +1,24 @@
-$NetBSD: patch-ab,v 1.2 2006/01/11 18:13:25 wiz Exp $
+$NetBSD: patch-ab,v 1.3 2006/11/23 00:54:01 obache Exp $
---- imcomm/Makefile.orig 2006-01-09 12:37:59.000000000 -0600
+--- imcomm/Makefile.orig 2006-11-07 16:56:41.000000000 -0500
+++ imcomm/Makefile
-@@ -8,14 +8,14 @@ RANLIB=ranlib
+@@ -8,16 +8,16 @@ RANLIB=ranlib
LIB=libimcomm.a
- #CC=i386-pc-msdosdjgpp-gcc
+ #CC=i586-pc-msdosdjgpp-gcc
#CC=mingw32-gcc
-CC=gcc
+#CC=gcc
- CFLAGS=-Os -Wall -pipe
+ CFLAGS=-Os -pipe
RM=rm -f
- #CFLAGS+=-I/usr/local/djgpp/watt/inc
+ #CFLAGS+=-I/usr/local/cross-tools/watt/inc
#
# Add -lsocket -lnsl for Solaris
#
-LIBS=-limcomm
+LIBS+=-limcomm
- #LIBS+=-lwatt -L/usr/local/djgpp/watt/lib
- LDFLAGS=-L.
+ #LIBS+=-lwatt -L/usr/local/cross-tools/watt/lib
+-LDFLAGS=-L. -s
++LDFLAGS+=-L. -s
SRCS=misc.c packet.c flap.c bos_signon.c imcomm.c snac.c md5.c proxy.c
+ OBJECTS=misc.o packet.o flap.o bos_signon.o imcomm.o snac.o md5.o proxy.o
+