aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.in4
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/rules1
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