From: kloczek Date: Tue, 12 Sep 2000 21:10:03 +0000 (+0000) Subject: - full automake/autoconf suit. X-Git-Tag: LANChat-1_0_2-1~2 X-Git-Url: https://git.pld-linux.org/?a=commitdiff_plain;ds=sidebyside;h=7b8bd9a1cedd2b22527da5134e7d6b40170889c8;p=packages%2FLANChat.git - full automake/autoconf suit. Changed files: LANChat-ac_am.patch -> 1.1 --- diff --git a/LANChat-ac_am.patch b/LANChat-ac_am.patch new file mode 100644 index 0000000..72222f2 --- /dev/null +++ b/LANChat-ac_am.patch @@ -0,0 +1,114 @@ +diff -Nru LANChat-1.0.2/AUTHORS LANChat-1.0.2.new/AUTHORS +--- LANChat-1.0.2/AUTHORS Thu Jan 1 01:00:00 1970 ++++ LANChat-1.0.2.new/AUTHORS Tue Sep 12 23:02:39 2000 +@@ -0,0 +1 @@ ++ +diff -Nru LANChat-1.0.2/ChangeLog LANChat-1.0.2.new/ChangeLog +--- LANChat-1.0.2/ChangeLog Tue Sep 12 23:06:07 2000 ++++ LANChat-1.0.2.new/ChangeLog Thu Jan 1 01:00:00 1970 +@@ -1,20 +0,0 @@ +-1.0.2 - fixed about 25 buffer overflows, both local & remote +- added command line parameter for the nickname and host +- fixed the screen size of non 80x25 terminals +- proper color scheme on non color terminals (vt100) +- fixed the positioning of the cursor on the input line +- when refreshing other windows (verry annoying) +- minor cosmetic changes of the user interface +- few command aliases and a new command, changed the +- behaviour of some of the commands and the format of +- other (/msg nick, message). +- timestapms in logfile, and changed format of the messages. +- changes in the source tree. +-1.0.1 - /msg "nick" "body" bug fixed +- timed-outs and resurrections implemented +- iso-8859-2 goro added in windows lanchat version +- added bug fixes from 1.0.0p patch (flood bugs) +- some improvements to 'readme' file, lsm added +-1.0.0 - first version, not stable, not finished, a lot of bugs:) etc etc +- there is a lack of many functions... +- but you can CHAT and this is important +\ No newline at end of file +diff -Nru LANChat-1.0.2/INSTALL LANChat-1.0.2.new/INSTALL +--- LANChat-1.0.2/INSTALL Thu Jan 1 01:00:00 1970 ++++ LANChat-1.0.2.new/INSTALL Tue Sep 12 23:02:39 2000 +@@ -0,0 +1 @@ ++ +diff -Nru LANChat-1.0.2/Makefile.am LANChat-1.0.2.new/Makefile.am +--- LANChat-1.0.2/Makefile.am Thu Jan 1 01:00:00 1970 ++++ LANChat-1.0.2.new/Makefile.am Tue Sep 12 23:04:26 2000 +@@ -0,0 +1,10 @@ ++## Process this file with automake to produce Makefile.in ++ ++bin_PROGRAMS = LANChat ++ ++LANChat_SOURCES = lc_main.c lc_funcs.c ++ ++LANChat_LDADD = @LIBS@ ++ ++EXTRA_DIST = BUGS lanchat.lsm README ROUTING TODO ++ +diff -Nru LANChat-1.0.2/NEWS LANChat-1.0.2.new/NEWS +--- LANChat-1.0.2/NEWS Thu Jan 1 01:00:00 1970 ++++ LANChat-1.0.2.new/NEWS Tue Sep 12 23:02:39 2000 +@@ -0,0 +1,20 @@ ++1.0.2 - fixed about 25 buffer overflows, both local & remote ++ added command line parameter for the nickname and host ++ fixed the screen size of non 80x25 terminals ++ proper color scheme on non color terminals (vt100) ++ fixed the positioning of the cursor on the input line ++ when refreshing other windows (verry annoying) ++ minor cosmetic changes of the user interface ++ few command aliases and a new command, changed the ++ behaviour of some of the commands and the format of ++ other (/msg nick, message). ++ timestapms in logfile, and changed format of the messages. ++ changes in the source tree. ++1.0.1 - /msg "nick" "body" bug fixed ++ timed-outs and resurrections implemented ++ iso-8859-2 goro added in windows lanchat version ++ added bug fixes from 1.0.0p patch (flood bugs) ++ some improvements to 'readme' file, lsm added ++1.0.0 - first version, not stable, not finished, a lot of bugs:) etc etc ++ there is a lack of many functions... ++ but you can CHAT and this is important +\ No newline at end of file +diff -Nru LANChat-1.0.2/configure.in LANChat-1.0.2.new/configure.in +--- LANChat-1.0.2/configure.in Thu Jan 1 01:00:00 1970 ++++ LANChat-1.0.2.new/configure.in Tue Sep 12 23:06:35 2000 +@@ -0,0 +1,36 @@ ++dnl Process this file with autoconf to produce a configure script ++ ++AC_INIT(configure.in) ++ ++AC_CANONICAL_SYSTEM ++ ++AM_INIT_AUTOMAKE(gd, 1.8.3) ++ ++AM_MAINTAINER_MODE ++ ++dnl Checks for programs. ++AC_PROG_AWK ++AC_PROG_CC ++AC_PROG_INSTALL ++AC_PROG_LN_S ++AC_PROG_MAKE_SET ++AM_PROG_LIBTOOL ++ ++dnl Checks for libraries. ++dnl Replace `main' with a function in -lncurses: ++AC_CHECK_LIB(ncurses, main) ++ ++dnl Checks for header files. ++AC_HEADER_STDC ++AC_CHECK_HEADERS(unistd.h) ++ ++dnl Checks for typedefs, structures, and compiler characteristics. ++AC_TYPE_PID_T ++AC_STRUCT_TM ++ ++dnl Checks for library functions. ++AC_TYPE_SIGNAL ++AC_FUNC_STRFTIME ++AC_CHECK_FUNCS(gethostname socket strstr) ++ ++AC_OUTPUT(Makefile)