Remove autogen.sh, the autoreconf program does exactly that.

Update everything for the latest autoconf and automake versions.
This commit is contained in:
Guus Sliepen 2004-01-10 23:21:36 +00:00
parent f2aa7466e6
commit fcd836c609
14 changed files with 53 additions and 740 deletions

View file

@ -1,22 +1,22 @@
dnl Check to find the lzo headers/libraries
AC_DEFUN(tinc_LZO,
AC_DEFUN([tinc_LZO],
[
AC_ARG_WITH(lzo,
AC_HELP_STRING([--with-lzo=DIR], [lzo base directory, or:]),
AS_HELP_STRING([--with-lzo=DIR], [lzo base directory, or:]),
[lzo="$withval"
CPPFLAGS="$CPPFLAGS -I$withval/include"
LDFLAGS="$LDFLAGS -L$withval/lib"]
)
AC_ARG_WITH(lzo-include,
AC_HELP_STRING([--with-lzo-include=DIR], [lzo headers directory]),
AS_HELP_STRING([--with-lzo-include=DIR], [lzo headers directory]),
[lzo_include="$withval"
CPPFLAGS="$CPPFLAGS -I$withval"]
)
AC_ARG_WITH(lzo-lib,
AC_HELP_STRING([--with-lzo-lib=DIR], [lzo library directory]),
AS_HELP_STRING([--with-lzo-lib=DIR], [lzo library directory]),
[lzo_lib="$withval"
LDFLAGS="$LDFLAGS -L$withval"]
)