Minix editline v0.1.1

=====================

Lots of minor fixes and additions:

	* Bump version info in configure.ac
	* User editline.h added, installs to $prefix/include/editline.h
		- Based on Debian package version, but heavily updated.
	* Manpage installs to $prefix/share/man/man3/editline.3
		- Also slightly updated with contents from Debian package.
	* Revised README to mention existing Debian package, also cleaned
	  out the old README, which now lives in doc/README
	* Add TODO file.
	* Fix package description and make dist to bzip2 tarballs.
This commit is contained in:
Joachim Nilsson
2008-06-08 00:32:45 +02:00
parent afb65c0d75
commit 5ffe54c277
14 changed files with 801 additions and 64 deletions

View File

@@ -2,12 +2,12 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT(minix_editline, 0.1.0, joachim@vmlinux.org)
AC_INIT(Minix editline, 0.1.1, joachim@vmlinux.org)
AC_CONFIG_SRCDIR([src/editline.c])
AC_CONFIG_HEADER([config.h])
# Prepare automake
AM_INIT_AUTOMAKE
AM_INIT_AUTOMAKE([dist-bzip2 dist-lzma])
# Checks for programs.
AC_PROG_CC
@@ -24,7 +24,8 @@ AC_CHECK_HEADERS([sgtty.h stdlib.h string.h termio.h termios.h])
AC_HEADER_STAT
# Overrides and types, should be a check.
AC_DEFINE([SYS_UNIX], [1], [Glue definitions for Minix sources.])
AC_DEFINE([SYS_UNIX], [1], [Default to UNIX backend, should be detected.])
AC_DEFINE([HIDE], [1], [Enable static keyword, hides internal methods.])
AC_TYPE_SIZE_T
# Checks for library functions.
@@ -35,4 +36,4 @@ AC_FUNC_REALLOC
AC_FUNC_STAT
AC_CHECK_FUNCS([strchr strdup strrchr])
AC_OUTPUT(Makefile src/Makefile examples/Makefile)
AC_OUTPUT(Makefile src/Makefile include/Makefile man/Makefile examples/Makefile)