Remove autogen.sh, the autoreconf program does exactly that.
Update everything for the latest autoconf and automake versions.
This commit is contained in:
parent
f2aa7466e6
commit
fcd836c609
14 changed files with 53 additions and 740 deletions
|
@ -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"]
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue