Changeset 601a9e0
- Timestamp:
- Sep 24, 2002, 3:47:23 PM (22 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 700c712
- Parents:
- 5a6e6b9
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r5a6e6b9 r601a9e0 1 1 $Id$ 2 1.2.5 3 Patch to fix memory bug in replying to CC messages 4 If we're on Athena and have static krb (or other) libraries, use 5 them 6 Added "athstatic" program to the release, which handles the above 7 Cast to an int for isspace, to make gcc -Wall quiet 8 Added 'zlist' and 'l' to basic help. 9 2 10 1.2.4 3 11 'zlog in' will now take an optional thrid argument to set the -
Makefile.in
r8ee73f8d r601a9e0 18 18 19 19 owl: $(AUTOGEN) $(OBJS) owl.o 20 $(CC) -o owl owl.o $(OBJS) $(LDFLAGS) $(LIBS)20 ./athstatic $(CC) -o owl owl.o $(OBJS) $(LDFLAGS) $(LIBS) 21 21 22 22 tester: $(AUTOGEN) $(OBJS) tester.o -
configure
rf9c43ae r601a9e0 763 763 echo "configure:764: checking for /usr/athena/lib" >&5 764 764 if test -d /usr/athena/lib; then 765 LDFLAGS=-L/usr/athena/lib\ -R/usr/athena/lib\${LDFLAGS}765 LDFLAGS=-L/usr/athena/lib\ ${LDFLAGS} 766 766 echo "$ac_t""yes" 1>&6 767 767 else -
configure.in
rf9c43ae r601a9e0 22 22 AC_MSG_CHECKING(for /usr/athena/lib) 23 23 if test -d /usr/athena/lib; then 24 LDFLAGS=-L/usr/athena/lib\ -R/usr/athena/lib\${LDFLAGS}24 LDFLAGS=-L/usr/athena/lib\ ${LDFLAGS} 25 25 AC_MSG_RESULT(yes) 26 26 else -
editwin.c
rf2e36b5 r601a9e0 804 804 return(1); 805 805 } 806 if (!isspace( e->buff[i])) {806 if (!isspace((int) e->buff[i])) { 807 807 return(0); 808 808 } -
functions.c
r5a6e6b9 r601a9e0 1601 1601 if (*to != '\0') { 1602 1602 char *tmp, *oldtmp, *tmp2; 1603 tmp=short_zuser(to); 1603 1604 if (cc) { 1604 1605 tmp = owl_util_uniq(oldtmp=tmp, cc, "-"); … … 1607 1608 owl_free(oldbuff); 1608 1609 } else { 1609 tmp=short_zuser(to);1610 1610 if (owl_global_is_smartstrip(&g)) { 1611 1611 tmp2=tmp; -
help.c
rbde7714 r601a9e0 58 58 " v Start a view command\n" 59 59 "\n" 60 " l Print a list of users in .anyone that are logged in\n" 60 61 " A Toggle zaway\n" 61 62 " w Open a URL in the message in netscape\n" … … 85 86 " getsubs Print a list of current subscriptions\n" 86 87 " zlocate Locate a user\n" 88 " zlist Print a list of users in .anyone that are logged in\n" 87 89 " info Print detailed information about the current message\n" 88 90 " filter Create a message filter\n" -
owl.c
r5a6e6b9 r601a9e0 208 208 209 209 /* welcome message */ 210 sprintf(buff, "Welcome to owl version %s.\n", OWL_VERSION_STRING);211 210 strcpy(startupmsg, "-------------------------------------------------------------------------\n"); 211 sprintf(buff, "Welcome to owl version %s. Press 'h' for on line help. \n", OWL_VERSION_STRING); 212 212 strcat(startupmsg, buff); 213 strcat(startupmsg, "Press 'h' for on line help. ^ ^ \n"); 214 strcat(startupmsg, " OvO \n"); 215 strcat(startupmsg, "Please report any bugs or suggestions to bug-owl@mit.edu ( ) \n"); 216 strcat(startupmsg, "--------------------------------------------------------------m-m--------\n"); 213 strcat(startupmsg, " \n"); 214 strcat(startupmsg, "If you would like to receive release announcments about owl you can join \n"); 215 strcat(startupmsg, "the owl-users@mit.edu mailing list. MIT users can add themselves, \n"); 216 strcat(startupmsg, "otherwise send a request to owner-owl-users@mit.edu. ^ ^ \n"); 217 strcat(startupmsg, " OvO \n"); 218 strcat(startupmsg, "Please report any bugs or suggestions to bug-owl@mit.edu ( ) \n"); 219 strcat(startupmsg, "-------------------------------------------------------------------m-m---\n"); 217 220 218 221 owl_function_adminmsg("", startupmsg); 219 /* owl_function_makemsg(buff); */220 222 sepbar(NULL); 221 223 -
owl.h
r425c013 r601a9e0 12 12 static const char owl_h_fileIdent[] = "$Id$"; 13 13 14 #define OWL_VERSION 1.2. 415 #define OWL_VERSION_STRING "1.2. 4"14 #define OWL_VERSION 1.2.5 15 #define OWL_VERSION_STRING "1.2.5" 16 16 17 17 #define OWL_DEBUG 0
Note: See TracChangeset
for help on using the changeset viewer.