]> andersk Git - openssh.git/commitdiff
- Merged AIX patch from Darren Hall <dhall@virage.org>
authordamien <damien>
Tue, 28 Dec 1999 15:24:35 +0000 (15:24 +0000)
committerdamien <damien>
Tue, 28 Dec 1999 15:24:35 +0000 (15:24 +0000)
 - Cleaned up defines.h

CREDITS
ChangeLog
acconfig.h
configure.in
defines.h

diff --git a/CREDITS b/CREDITS
index e505c50517a395e7d076d8a1ea6ade269306f1d1..84cf53dedbf1a38195b545120abe9a2732262dae 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -9,6 +9,7 @@ Chip Salzenberg <chip@valinux.com> - Assorted patches
 Chris Saia <csaia@wtower.com> - SuSE packaging
 "Chris, the Young One" <cky@pobox.com> - Password auth fixes
 Chun-Chung Chen <cjj@u.washington.edu> - RPM fixes
+Darren Hall <dhall@virage.org> - AIX patches
 Dan Brosemer <odin@linuxfreak.com> - Autoconf support, build fixes
 David Agraz <dagraz@jahoopa.com> - Build fixes
 David Rankin <drankin@bohemians.lexington.ky.us> - libwrap fixes
index 9c29ac8ba1e7656dc79d4898b258f373f3eac7f1..bb27a81f73468c8442382f0a4cb210b1f065f314 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,8 @@
  - Fully set ut_tv if present in utmp or utmpx
  - Portability fixes for Irix 5.3 (now compiles OK!)
  - autoconf and other misc cleanups
+ - Merged AIX patch from Darren Hall <dhall@virage.org>
+ - Cleaned up defines.h
 
 19991227
  - Automatically correct paths in manpages and configuration files. Patch
index fd9fe1fcb399c3882d69bd5d3c0af7a374ed82ea..23376f8d421f435ef0b7448f0c201962eac7be1b 100644 (file)
 #undef HAVE_INTXX_T
 #undef HAVE_U_INTXX_T
 #undef HAVE_UINTXX_T
+#undef HAVE_SOCKLEN_T
 
 /* Define if you have /dev/ptmx */
 #undef HAVE_DEV_PTMX
index 274111e2c13fa35f36594a89e7d03c6c9ca52e3a..a232a746b68e45a35e9740d301f1272394d9bcae 100644 (file)
@@ -177,6 +177,18 @@ AC_TRY_COMPILE(
        [AC_MSG_RESULT(no)]
 ) 
 
+AC_MSG_CHECKING([For socklen_t])
+AC_TRY_COMPILE(
+       [#include <sys/types.h>],
+       [#include <sys/socket.h>],
+       [socklen_t foo; foo = 1235;],
+       [
+               AC_DEFINE(HAVE_SOCKLEN_T)
+               AC_MSG_RESULT(yes)
+       ],
+       [AC_MSG_RESULT(no)]
+)
+
 AC_ARG_WITH(pam,
        [  --without-pam           Disable PAM support ],
        [
index bcab3c080c0461a9852ccbb6b236f103800f35a5..1437e7b263aa1bf578771386bf6e0568df8ef1ea 100644 (file)
--- a/defines.h
+++ b/defines.h
@@ -1,3 +1,5 @@
+/* Necessary headers */
+
 #include <sys/types.h> /* For u_intXX_t */
 #include <sys/socket.h> /* For SHUT_XXXX */
 
@@ -25,6 +27,8 @@
 # include <sys/cdefs.h> /* For __P() */
 #endif 
 
+/* Constants */
+
 #ifndef SHUT_RDWR
 enum
 {
@@ -37,24 +41,26 @@ enum
 # define SHUT_RDWR SHUT_RDWR
 #endif
 
+/* Types */
+
 /* If sys/types.h does not supply intXX_t, supply them ourselves */
 /* (or die trying) */
 #ifndef HAVE_INTXX_T
 # if (SIZEOF_SHORT_INT == 2)
-#  define int16_t short int
+typedef short int int16_t;
 # else
 #  error "16 bit int type not found."
 # endif
 # if (SIZEOF_INT == 4)
-#  define int32_t int
+typedef int int32_t;
 # else
 #  error "32 bit int type not found."
 # endif
 # if (SIZEOF_LONG_INT == 8)
-#  define int64_t long int
+typedef long int int64_t;
 # else
 #  if (SIZEOF_LONG_LONG_INT == 8)
-#   define int64_t long long int
+typedef long long int int64_t;
 #  else
 #   error "64 bit int type not found."
 #  endif
@@ -64,25 +70,25 @@ enum
 /* If sys/types.h does not supply u_intXX_t, supply them ourselves */
 #ifndef HAVE_U_INTXX_T
 # ifdef HAVE_UINTXX_T
-#  define u_int16_t uint16_t
-#  define u_int32_t uint32_t
-#  define u_int64_t uint64_t
+typedef uint16_t u_int16_t;
+typedef uint32_t u_int32_t;
+typedef  uint64_t u_int64_t;
 # else
 #  if (SIZEOF_SHORT_INT == 2)
-#   define u_int16_t unsigned short int
+typedef unsigned short int u_int16_t;
 #  else
 #   error "16 bit int type not found."
 #  endif
 #  if (SIZEOF_INT == 4)
-#   define u_int32_t unsigned int
+typedef unsigned int u_int32_t;
 #  else
 #   error "32 bit int type not found."
 #  endif
 #  if (SIZEOF_LONG_INT == 8)
-#   define u_int64_t unsigned long int
+typedef unsigned long int u_int64_t;
 #  else
 #   if (SIZEOF_LONG_LONG_INT == 8)
-#    define u_int64_t unsigned long long int
+typedef unsigned long long int u_int64_t;
 #   else
 #    error "64 bit int type not found."
 #   endif
@@ -93,9 +99,15 @@ enum
 /* If quad_t is not supplied, then supply it now. We can rely on int64_t */
 /* being defined by the above */
 #ifndef HAVE_QUAD_T
-# define quad_t int64_t
+typedef int64_t quad_t;
 #endif
 
+#ifndef HAVE_SOCKLEN_T
+typedef unsigned int socklen_t;
+#endif /* HAVE_SOCKLEN_T */
+
+/* Paths */
+
 /* If _PATH_LASTLOG is not defined by system headers, set it to the */
 /* lastlog file detected by autoconf */
 #ifndef _PATH_LASTLOG
@@ -164,6 +176,14 @@ enum
 # define _PATH_MAILDIR MAILDIR
 #endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
 
+#ifndef _PATH_RSH
+# ifdef RSH_PATH
+#  define _PATH_RSH RSH_PATH
+# endif /* RSH_PATH */
+#endif /* _PATH_RSH */
+
+/* Macros */
+
 #ifndef MAX
 # define MAX(a,b) (((a)>(b))?(a):(b))
 # define MIN(a,b) (((a)<(b))?(a):(b))
@@ -181,13 +201,6 @@ enum
    } while (0)
 #endif
 
-/* In older versions of libpam, pam_strerror takes a single argument */
-#ifdef HAVE_OLD_PAM
-# define PAM_STRERROR(a,b) pam_strerror((b))
-#else
-# define PAM_STRERROR(a,b) pam_strerror((a),(b))
-#endif
-
 #ifndef __P
 # define __P(x) x
 #endif
@@ -196,6 +209,19 @@ enum
 #  define __attribute__(x)
 #endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
 
+#if defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM)
+# define USE_PAM
+#endif /* defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM) */
+
+/* Function replacement / compatibility hacks */
+
+/* In older versions of libpam, pam_strerror takes a single argument */
+#ifdef HAVE_OLD_PAM
+# define PAM_STRERROR(a,b) pam_strerror((b))
+#else
+# define PAM_STRERROR(a,b) pam_strerror((a),(b))
+#endif
+
 #if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID)
 # define seteuid(a) setreuid(-1,a)
 #endif /* !defined(HAVE_SETEUID) && defined(HAVE_SETREUID) */
@@ -204,13 +230,3 @@ enum
 # define innetgr(a,b,c,d) (0)
 #endif /* HAVE_INNETGR */
 
-#ifndef _PATH_RSH
-# ifdef RSH_PATH
-#  define _PATH_RSH RSH_PATH
-# endif /* RSH_PATH */
-#endif /* _PATH_RSH */
-
-#if defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM)
-# define USE_PAM
-#endif /* defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM) */
-
This page took 0.346907 seconds and 5 git commands to generate.