summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@users.sourceforge.net>2002-10-10 22:13:49 +0000
committerJosé Fonseca <jrfonseca@users.sourceforge.net>2002-10-10 22:13:49 +0000
commit267b916ea89e25e424dedd89649ba61f850fe6c8 (patch)
tree198c08f18936c00d44104fa0b63afe4217aadb9b
parent893ad868cb86e2396fe658379541a0beda3db364 (diff)
Use updated autotools syntax. Generate bzip2 tarballs
-rw-r--r--configure.ac10
1 files changed, 6 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 5c47958..ffa5eaf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,8 +1,9 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(Makefile.am)
-AM_INIT_AUTOMAKE(esmtp, 0.2)
-
+AC_PREREQ(2.53)
+AC_INIT(esmtp, 0.2)
+AC_CONFIG_SRCDIR(Makefile.am)
+AM_INIT_AUTOMAKE(1.6 dist-bzip2)
AM_MAINTAINER_MODE
AC_PROG_CC
@@ -26,4 +27,5 @@ AC_CHECK_LIB(esmtp, smtp_start_session,
AC_MSG_ERROR([*** libESMTP library not found.]),
-lpthread)
-AC_OUTPUT([Makefile])
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT