2673ad6031
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
26 lines
667 B
Text
26 lines
667 B
Text
$NetBSD: patch-aa,v 1.3 2006/11/23 00:54:01 obache Exp $
|
|
|
|
--- Makefile.orig 2006-11-07 16:56:52.000000000 -0500
|
|
+++ Makefile
|
|
@@ -2,7 +2,7 @@ EXEC=bsflite
|
|
#EXEC=bsflite.exe
|
|
#CC=i586-pc-msdosdjgpp-gcc
|
|
#CC=mingw32-gcc
|
|
-CC=gcc
|
|
+#CC=gcc
|
|
#
|
|
# 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 to Brennan Cleveland)
|
|
#
|
|
-LIBS=-limcomm
|
|
+LIBS+=-limcomm
|
|
#LIBS+=-lwatt
|
|
#LIBS+=-lwsock32
|
|
-LDFLAGS=-Limcomm/ -s
|
|
+LDFLAGS+=-Limcomm/ -s
|
|
#LDFLAGS+=-L/usr/local/cross-tools/watt/lib
|
|
|
|
INSTALL=/usr/bin/install
|