diff options
author | Steve Slaven <bpk@hoopajoo.net> | 2006-02-06 22:25:00 (GMT) |
---|---|---|
committer | Steve Slaven <bpk@hoopajoo.net> | 2006-02-06 22:25:00 (GMT) |
commit | 3a02fb809d70fcbe35239ec4c653b18d121aa311 (patch) | |
tree | ef1d3597b18d06f5ffb14cba6315e6eab8b5281f | |
parent | c730a8c29963ecf5996ebafe344a50edfb604eaf (diff) | |
download | powwow-3a02fb809d70fcbe35239ec4c653b18d121aa311.zip powwow-3a02fb809d70fcbe35239ec4c653b18d121aa311.tar.gz powwow-3a02fb809d70fcbe35239ec4c653b18d121aa311.tar.bz2 |
Updated debian build, bumped versionv1.2.10
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | debian/rules | 1 |
3 files changed, 9 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 9f3f9e1..1d49aca 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ # Process this file with autoconf to produce a configure script. AC_INIT -AM_INIT_AUTOMAKE(powwow, 1.2.9) +AM_INIT_AUTOMAKE(powwow, 1.2.10) AC_ARG_ENABLE(vt100, AC_HELP_STRING([--enable-vt100], @@ -32,7 +32,7 @@ AC_ARG_ENABLE(bsd, AC_PROG_CC # Checks for libraries. -AC_CHECK_LIB(curses, initscr) +AC_SEARCH_LIBS(initscr,[ncurses curses]) AC_CHECK_FUNC(regcomp,AC_DEFINE(USE_REGEXP)) AC_CHECK_FUNC(lrand48,,AC_DEFINE(USE_RANDOM)) diff --git a/debian/changelog b/debian/changelog index 5bb5917..f2a7e06 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +powwow (1.2.10) unstable; urgency=low + + * Bugfixes + + -- Steve Slaven <bpk@hoopajoo.net> Mon, 06 Feb 2006 17:58:49 +0000 + powwow (1.2.9) unstable; urgency=low * Fixed the dependancy list, minor feature enhancements diff --git a/debian/rules b/debian/rules index 68ec697..2435f36 100755 --- a/debian/rules +++ b/debian/rules @@ -26,6 +26,7 @@ clean: # Add here commands to clean up after the build process. #$(MAKE) clean #$(MAKE) distclean + if test -e Makefile; then $(MAKE) distclean; fi dh_clean |