Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Release 0.23 #45

Merged
merged 9 commits into from
Oct 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ m4/*.m4
missing
stamp-h1
compile
ar-lib
test-driver

telnet-client
telnet-proxy
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 12 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
============

Expand Down
11 changes: 11 additions & 0 deletions autogen-clean.sh
Original file line number Diff line number Diff line change
@@ -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."
2 changes: 2 additions & 0 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
autoreconf -v --install --symlink --force || exit 1
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
2 changes: 1 addition & 1 deletion libtelnet.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*
* \file libtelnet.h
*
* \version 0.21
* \version 0.23
*
* \author Sean Middleditch <sean@sourcemud.org>
*/
Expand Down