sebastinas / yafc

Yafc is yet another ftp client (with some handy features)
Other
45 stars 16 forks source link

fix erros/warnings from auto* tools #2

Closed sebastinas closed 13 years ago

sebastinas commented 13 years ago

The attached patch fixes some errors and warnings that occured while running autoreconf and friends.

diff --git a/configure.ac b/configure.ac index 2e0b263..bfbdd9b 100644 --- a/configure.ac +++ b/configure.ac @@ -7,6 +7,7 @@ dnl

AC_PREREQ(2.50) AC_INIT(yafc, 1.1.2, [yafc-devel@lists.sourceforge.net]) +AC_USE_SYSTEM_EXTENSIONS AC_SYS_LARGEFILE AC_CONFIG_AUX_DIR(support) AM_INIT_AUTOMAKE @@ -30,7 +31,7 @@ AC_MINIX

AM_PROG_CC_STDC AC_PROG_INSTALL -dnl AC_PROG_RANLIB +AC_PROG_RANLIB AM_PROG_LIBTOOL

dnl check if to use pipes or socketpair in src/ftp/ssh_ftp.c

sebastinas commented 13 years ago

The correct way for libtool seems to be to call LT_INIT instead of AC_PROG_RANLIB and AM_PROG_LIBTOOL. They are both deprecated.