pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/tnftp/files Update to tnftp 20070806.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/03191fe71565
branches:  trunk
changeset: 531770:03191fe71565
user:      lukem <lukem%pkgsrc.org@localhost>
date:      Mon Aug 06 04:42:53 2007 +0000

description:
Update to tnftp 20070806.
Notable changes:
 - Implement '-s srcaddr' to set the local IP address for all connections.
 - Support '-q quittime' when waiting for server replies.
 - Use IEC 60027-2 "KiB", "MiB" (etc) instead of "KB", "MB", ...
 - Portability fixes, including for FreeBSD, Mac OS X, and Solaris.

diffstat:

 net/tnftp/files/configure.ac |  372 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 372 insertions(+), 0 deletions(-)

diffs (truncated from 376 to 300 lines):

diff -r 7363d9e880ff -r 03191fe71565 net/tnftp/files/configure.ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/net/tnftp/files/configure.ac      Mon Aug 06 04:42:53 2007 +0000
@@ -0,0 +1,372 @@
+#       $NetBSD: configure.ac,v 1.1.1.1 2007/08/06 04:42:53 lukem Exp $
+#
+# Process this file with autoconf to produce a configure script.
+
+AC_INIT([tnftp], [20070806], [lukem%NetBSD.org@localhost])
+AC_PREREQ([2.61])
+AC_REVISION([$Revision: 1.1.1.1 $])
+
+AS_SHELL_SANITIZE
+
+AC_CONFIG_SRCDIR([tnftp.h])
+AC_CONFIG_AUX_DIR(build-aux)
+AC_CONFIG_HEADERS([config.h])
+
+#
+# Arguments for which features are included.
+#
+AC_CANONICAL_TARGET
+AC_ARG_PROGRAM
+AC_ARG_ENABLE([editcomplete],
+              [AS_HELP_STRING([--enable-editcomplete],
+                              [turn on command line editing and completion.
+                               (default: enabled)])],
+              [opt_editcomplete=$enableval],
+              [opt_editcomplete=yes])
+AC_ARG_ENABLE([ipv6],
+              [AS_HELP_STRING([--enable-ipv6],
+                              [enable IPv6 support (if your OS supports it).
+                               (default: enabled)])],
+              [opt_ipv6=$enableval],
+              [opt_ipv6=yes])
+AC_ARG_WITH([socks],
+            [AS_HELP_STRING([--with-socks],
+                            [enable support for (Dante) SOCKS5 proxy])],
+            [],
+            [with_socks=check])
+
+#
+# Autoheader templates symbols.
+#
+AH_TEMPLATE([HAVE_POLL],
+            [Define if we have poll() and it is not emulated.])
+AH_TEMPLATE([HAVE_PRINTF_QD],
+            [Define if *printf() uses %qd to print `long long'
+             (otherwise uses %lld).])
+AH_TEMPLATE([HAVE_PRINTF_LONG_LONG],
+            [Define if `long long' is supported and
+             *printf() supports %lld or %qd to print them.])
+AH_TEMPLATE([USE_SOCKS],
+            [Define if using (Dante) SOCKS5 proxy.])
+
+#
+# Checks for programs.
+#
+AC_PROG_MAKE_SET
+AC_PROG_CC
+AC_PROG_AWK
+AC_PROG_INSTALL
+AC_CHECK_TOOL([AR], [ar], [:])
+AC_CHECK_TOOL([RANLIB], [ranlib], [:])
+
+#
+# Checks for tool features.
+#
+AS_CASE([$target_os],
+        [darwin*],
+        [# Mac OS X linker needs -search_paths_first so our private libraries
+         # are used before system libraries.
+         #
+         old_LDFLAGS=$LDFLAGS
+         LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
+         AC_MSG_CHECKING([if ld accepts -search_paths_first])
+         AC_LINK_IFELSE([AC_LANG_PROGRAM([], [[int i;]])],
+                        [AC_MSG_RESULT([yes])],
+                        [AC_MSG_RESULT([no])
+                         LDFLAGS=$old_LDFLAGS])],
+        )
+
+#
+# Checks for libraries.
+#
+AS_IF([test "$opt_editcomplete" = yes],
+      [AC_SEARCH_LIBS([tgetent],
+                      [termcap termlib curses ncurses tinfo],
+                      [],
+                      [AC_MSG_ERROR(
+                           [no relevant library found containing tgetent])])
+       AC_SEARCH_LIBS([el_init],
+                      [edit],
+                      [have_libedit=yes], [have_libedit=no])])
+
+AC_SEARCH_LIBS([gethostbyname], [nsl])
+AC_SEARCH_LIBS([socket],
+               [socket],
+               [],
+               [AC_CHECK_LIB([socket],
+                             [socket],
+                             [LIBS="-lsocket -lnsl $LIBS"],
+                             [],
+                             [-lnsl])])
+
+# Check for (Dante) SOCKS5.
+#
+AS_IF([test "$with_socks" != no],
+      [AC_SEARCH_LIBS([SOCKSinit],
+                      [socksd socks],
+                      [AC_DEFINE([USE_SOCKS], [1])
+                       AS_IF([test "$opt_ipv6" = yes],
+                             [AC_MSG_WARN(
+                [IPv6 is incompatible with socks, disabling IPv6 support])
+                              opt_ipv6=no])],
+                      [AS_IF([test "$with_socks" != check],
+                             [AC_MSG_FAILURE(
+                [--with-socks was given, but SOCKSinit() wasn't found])])])])
+
+#
+# Checks for header files.
+#
+accheck_includes='
+#include <stdio.h>
+#if defined(HAVE_SYS_TYPES_H)
+# include <sys/types.h>
+#endif
+#if defined(HAVE_SYS_STAT_H)
+# include <sys/stat.h>
+#endif
+#if defined(STDC_HEADERS)
+# include <stdarg.h>
+# include <stdlib.h>
+# include <string.h>
+#endif
+#if defined(HAVE_LIBGEN_H)
+# include <libgen.h>
+#endif
+#if defined(HAVE_PWD_H)
+# include <pwd.h>
+#endif
+#if defined(HAVE_UNISTD_H)
+# include <unistd.h>
+#endif
+#if defined(HAVE_POLL_H)
+# include <poll.h>
+#elif defined(HAVE_SYS_POLL_H)
+# include <sys/poll.h>
+#endif
+#if defined(HAVE_SYS_SOCKET_H)
+# include <sys/socket.h>
+#endif
+#if defined(HAVE_NETINET_IN_H)
+# include <netinet/in.h>
+#endif
+#if defined(HAVE_NETINET_IN_SYSTM_H)
+# include <netinet/in_systm.h>
+#endif
+#if defined(HAVE_NETDB_H)
+# include <netdb.h>
+#endif
+#if defined(HAVE_ARPA_INET_H)
+# include <arpa/inet.h>
+#endif
+#if defined(HAVE_DIRENT_H)
+# include <dirent.h>
+#else
+# define dirent direct
+# if defined(HAVE_SYS_NDIR_H)
+#  include <sys/ndir.h>
+# endif
+# if defined(HAVE_SYS_DIR_H)
+#  include <sys/dir.h>
+# endif
+# if defined(HAVE_NDIR_H)
+#  include <ndir.h>
+# endif
+#endif
+' # accheck_includes
+
+AC_CHECK_HEADERS([sys/types.h sys/ioctl.h sys/param.h sys/stat.h \
+                  sys/socket.h sys/syslimits.h sys/time.h sys/wait.h],
+                 [], [], [$accheck_includes])
+AC_HEADER_DIRENT
+AC_HEADER_RESOLV
+AC_HEADER_STAT
+AC_HEADER_STDC
+AC_HEADER_TIME
+AC_HEADER_TIOCGWINSZ
+AC_CHECK_HEADERS([arpa/ftp.h arpa/inet.h arpa/nameser.h err.h \
+                  fcntl.h libgen.h limits.h malloc.h \
+                  netinet/in.h netinet/in_systm.h netinet/ip.h \
+                  paths.h poll.h pwd.h sys/poll.h regex.h \
+                  setjmp.h signal.h stddef.h termcap.h termios.h \
+                  unistd.h utime.h vis.h],
+                  [], [], [$accheck_includes])
+
+#
+# Checks for typedefs, structures, and compiler characteristics.
+#
+AC_CHECK_DECLS([AI_NUMERICHOST, dirname, fclose, getpass, h_errno, pclose,
+                optarg, optind],
+               [], [], [$accheck_includes])
+AC_TYPE_LONG_DOUBLE
+AC_TYPE_LONG_LONG_INT
+AC_TYPE_UINT32_T
+AC_TYPE_OFF_T
+AC_TYPE_PID_T
+AC_TYPE_SIGNAL
+AC_TYPE_SIZE_T
+AC_STRUCT_TM
+AC_CHECK_MEMBERS([struct sockaddr.sa_len, struct sockaddr_in.sin_len,
+                  struct dirent.d_namlen],
+                 [], [], [$accheck_includes])
+AC_CHECK_TYPES([in_port_t, sa_family_t, socklen_t, struct addrinfo],
+               [], [], [$accheck_includes])
+AC_SYS_LARGEFILE
+
+# If IPv6 is enabled, check for necessary items.
+#
+AS_IF([test "$opt_ipv6" = yes],
+      [AC_CHECK_DECLS([AF_INET6, NS_IN6ADDRSZ], [], [],
+[$accheck_includes
+#if defined(HAVE_ARPA_NAMESER_H)
+#include <arpa/nameser.h>
+#endif
+])
+       AC_CHECK_TYPES([struct sockaddr_in6], [], [], [$accheck_includes])])
+
+#
+# Checks for library functions.
+#
+#XXX    remove alloca use
+AC_FUNC_ALLOCA
+AC_FUNC_CLOSEDIR_VOID
+AC_FUNC_FORK
+AC_FUNC_FSEEKO
+AC_FUNC_STRCOLL
+AC_REPLACE_FUNCS([dirname err fgetln getaddrinfo getnameinfo \
+                  inet_ntop inet_pton mkstemp setprogname sl_init snprintf \
+                  strdup strerror strlcat strlcpy strptime strsep strunvis \
+                  strvis timegm usleep utimes])
+AC_CHECK_FUNCS([getcwd gethostbyaddr gethostbyname gethostbyname2 gethostname \
+                getpass getpassphrase getpgrp gettimeofday isascii \
+                memchr memmove memset realpath regcomp \
+                select setlocale socket strcasecmp strchr strcspn strdup \
+                strerror strncasecmp strpbrk strrchr strstr strtol strtoul \
+                utime])
+AS_IF([test "$ac_cv_func_getpgrp" = yes], [AC_FUNC_GETPGRP])
+AS_IF([test "$ac_cv_func_strptime" = yes], [AC_CHECK_DECLS([strptime])])
+
+# Always replace glob(); the vendor's may not be secure.
+#
+AC_LIBOBJ([glob])
+
+# We assume that if sprintf() supports %lld or %qd,
+# then all of *printf() does. If not, disable long long
+# support because we don't know how to display it.
+#
+AS_IF([test "$ac_cv_type_long_long_int" = yes],
+      [AC_MSG_CHECKING([*printf() support for %lld])
+       can_printf_longlong=no
+       AC_RUN_IFELSE([AC_LANG_SOURCE([[
+#include <stdio.h>
+int main() {
+        char buf[100];
+        sprintf(buf, "%lld", 4294967300LL);
+        return (strcmp(buf, "4294967300"));
+}
+]])],
+                     [AC_MSG_RESULT([yes])
+                      can_printf_longlong=yes],
+                     [AC_MSG_RESULT([no])],
+                     [AC_MSG_RESULT([unknown - cross-compiling])])
+        AS_IF([test "$can_printf_longlong" != yes],
+              [AC_MSG_CHECKING([*printf() support for %qd])
+               AC_RUN_IFELSE([AC_LANG_SOURCE([[
+#include <stdio.h>
+int main() {
+        char buf[100];
+        sprintf(buf, "%qd", 4294967300LL);
+        return (strcmp(buf, "4294967300"));
+}
+]])],
+                             [AC_MSG_RESULT([yes])
+                              can_printf_longlong=yes
+                              AC_DEFINE([HAVE_PRINTF_QD], [1])],
+                             [AC_MSG_RESULT([no])],
+                             [AC_MSG_RESULT([unknown - cross-compiling])])])
+        AC_MSG_CHECKING([if *printf() can print long long ints])
+        AS_IF([test "$can_printf_longlong" = yes],
+              [AC_MSG_RESULT([yes])
+               AC_DEFINE([HAVE_PRINTF_LONG_LONG], [1])
+               AC_REPLACE_FUNCS([strtoll])],
+              [AC_MSG_RESULT([no])])])
+
+# Handle Darwin 7 having a poll() compatibility function,
+# and don't use it if it's emulated.
+# Be conservative, if we don't find one of poll.h or sys/poll.h,
+# don't attempt to use poll().



Home | Main Index | Thread Index | Old Index