diff --git a/.gitignore b/.gitignore index cc51efd..8aef04b 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,8 @@ m4/*.m4 missing stamp-h1 compile +ar-lib +test-driver telnet-client telnet-proxy diff --git a/Makefile.am b/Makefile.am index c13c9c0..004e5d0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ ## Process this file with automake to generate Makefile.in ACLOCAL_AMFLAGS = -I m4 --install AM_CFLAGS = $(zlib_CFLAGS) -EXTRA_DIST = Doxyfile libtelnet.pc.in libtelnet-uninstalled.pc.in +EXTRA_DIST = Doxyfile libtelnet.pc.in libtelnet-uninstalled.pc.in msvc2008 msvc2010 autogen.sh autogen-clean.sh SUBDIRS = . doc util test include_HEADERS = libtelnet.h diff --git a/NEWS b/NEWS index 33896a7..70a02e3 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +Version 0.23 +============ + +* Fixed release errors + +Version 0.22 +============ + +* EOL handling fixes +* allocation fixes to Q option states +* portability fixes + Version 0.21 ============ diff --git a/autogen-clean.sh b/autogen-clean.sh new file mode 100755 index 0000000..5d1c054 --- /dev/null +++ b/autogen-clean.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +if [ -f Makefile ]; then + echo "Making make distclean..." + make distclean +fi + +echo "Removing autogenned files..." +rm -f aclocal.m4 depcomp config.guess config.sub configure install-sh missing mkinstalldirs Makefile.in ltmain.sh stamp-h.in */Makefile.in ltconfig stamp-h config.h.in +rm -rf autom4te.cache +echo "Done." diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..d57e325 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,2 @@ +#!/bin/sh +autoreconf -v --install --symlink --force || exit 1 diff --git a/configure.ac b/configure.ac index 021b48f..b2bf6a1 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.58]) -AC_INIT([libtelnet], [0.21], [http://github.com/elanthis/libtelnet/tree/master]) +AC_INIT([libtelnet], [0.23], [http://github.com/elanthis/libtelnet/tree/master]) #AC_CONFIG_AUX_DIR([auxfiles]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/libtelnet.h b/libtelnet.h index eaeda68..40030c1 100644 --- a/libtelnet.h +++ b/libtelnet.h @@ -34,7 +34,7 @@ * * \file libtelnet.h * - * \version 0.21 + * \version 0.23 * * \author Sean Middleditch */