diff options
author | Tim Rice <tim@multitalents.net> | 2001-10-22 02:53:58 +0200 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2001-10-22 02:53:58 +0200 |
commit | 13aae5ee7673a0b75369256e7ed6117f9f1b6c7d (patch) | |
tree | 5bada50a28a0d33e8907cf0f288a10d57931f0f8 /defines.h | |
parent | - (bal) Fixed up init.d symlink issue and piddir stuff. Patches by (diff) | |
download | openssh-13aae5ee7673a0b75369256e7ed6117f9f1b6c7d.tar.xz openssh-13aae5ee7673a0b75369256e7ed6117f9f1b6c7d.zip |
[configure.in] Clean up library testing.
Add optional PATH to --with-pcre, --with-zlib, --with-tcp-wrappers
based on patch by albert chin (china@thewrittenword.com)
Re-arange AC_CHECK_HEADERS and AC_CHECK_FUNCS for eaiser reading
of patches to configure.in
Replace obsolete AC_STRUCT_ST_BLKSIZE with AC_CHECK_MEMBERS
Add test for broken dirname() on Solaris 2.5.1 by
Dan Astoorian <djast@cs.toronto.edu>
[acconfig.h aclocal.m4 defines.h configure.in]
Better socklen_t patch by albert chin (china@thewrittenword.com)
[scp.c]
Replace obsolete HAVE_ST_BLKSIZE with HAVE_STRUCT_STAT_ST_BLKSIZE
[Makefile.in] When running make in top level, always do make in openbsd-compat
patch by Dave Dykstra <dwd@bell-labs.com>
Diffstat (limited to 'defines.h')
-rw-r--r-- | defines.h | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -1,7 +1,7 @@ #ifndef _DEFINES_H #define _DEFINES_H -/* $Id: defines.h,v 1.72 2001/09/20 19:43:41 stevesk Exp $ */ +/* $Id: defines.h,v 1.73 2001/10/22 00:53:59 tim Exp $ */ /* Necessary headers */ @@ -243,11 +243,6 @@ typedef unsigned char u_char; # define HAVE_U_CHAR #endif /* HAVE_U_CHAR */ -#ifndef HAVE_SOCKLEN_T -typedef unsigned int socklen_t; -# define HAVE_SOCKLEN_T -#endif /* HAVE_SOCKLEN_T */ - #ifndef HAVE_SIZE_T typedef unsigned int size_t; # define HAVE_SIZE_T |