summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-09-16 15:39:56 +1100
committerDamien Miller <djm@mindrot.org>2000-09-16 15:39:56 +1100
commit606f880e0fd1a31f5beb3b37ece0c12317a9ed61 (patch)
treeb4afe2d6f8b77d73d309b3ed6ea2b89ad768d820 /defines.h
parente4340be5b3ff16f4d9ba5e3ea7e449dc1b6fa7a8 (diff)
- (djm) Shadow expiry check fix from Pavel Troller <patrol@omni.sinus.cz>
- (djm) Re-enable int64_t types - we need them for sftp - (djm) Use libexecdir from configure , rather than libexecdir/ssh - (djm) Update Redhat SPEC file accordingly - (djm) Add Kevin Steves <stevesk@sweden.hp.com> HP/UX contrib files - (djm) Add Charles Levert <charles@comm.polymtl.ca> getpgrp patch - (djm) Fix password auth on HP/UX 10.20. Patch from Dirk De Wachter <Dirk.DeWachter@rug.ac.be> - (djm) Fixprogs and entropy list fixes from Larry Jones <larry.jones@sdrc.com> - (djm) Fix for SuSE spec file from Takashi YOSHIDA <tyoshida@gemini.rc.kyushu-u.ac.jp>
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/defines.h b/defines.h
index 69b8baf27..0ac3e96b2 100644
--- a/defines.h
+++ b/defines.h
@@ -123,7 +123,6 @@ typedef int int32_t;
123# else 123# else
124# error "32 bit int type not found." 124# error "32 bit int type not found."
125# endif 125# endif
126/*
127# if (SIZEOF_LONG_INT == 8) 126# if (SIZEOF_LONG_INT == 8)
128typedef long int int64_t; 127typedef long int int64_t;
129# else 128# else
@@ -134,7 +133,6 @@ typedef long long int int64_t;
134# error "64 bit int type not found." 133# error "64 bit int type not found."
135# endif 134# endif
136# endif 135# endif
137*/
138#endif 136#endif
139 137
140/* If sys/types.h does not supply u_intXX_t, supply them ourselves */ 138/* If sys/types.h does not supply u_intXX_t, supply them ourselves */
@@ -143,9 +141,7 @@ typedef long long int int64_t;
143typedef uint8_t u_int8_t; 141typedef uint8_t u_int8_t;
144typedef uint16_t u_int16_t; 142typedef uint16_t u_int16_t;
145typedef uint32_t u_int32_t; 143typedef uint32_t u_int32_t;
146/*
147typedef uint64_t u_int64_t; 144typedef uint64_t u_int64_t;
148*/
149# define HAVE_U_INTXX_T 1 145# define HAVE_U_INTXX_T 1
150# else 146# else
151# if (SIZEOF_CHAR == 1) 147# if (SIZEOF_CHAR == 1)
@@ -163,7 +159,6 @@ typedef unsigned int u_int32_t;
163# else 159# else
164# error "32 bit int type not found." 160# error "32 bit int type not found."
165# endif 161# endif
166/*
167# if (SIZEOF_LONG_INT == 8) 162# if (SIZEOF_LONG_INT == 8)
168typedef unsigned long int u_int64_t; 163typedef unsigned long int u_int64_t;
169# else 164# else
@@ -174,7 +169,6 @@ typedef unsigned long long int u_int64_t;
174# error "64 bit int type not found." 169# error "64 bit int type not found."
175# endif 170# endif
176# endif 171# endif
177*/
178# endif 172# endif
179#endif 173#endif
180 174
@@ -326,6 +320,10 @@ typedef int mode_t;
326# define USE_VHANGUP 320# define USE_VHANGUP
327#endif /* defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP) */ 321#endif /* defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP) */
328 322
323#ifndef GETPGRP_VOID
324# define getpgrp() getpgrp(0)
325#endif
326
329/** 327/**
330 ** login recorder definitions 328 ** login recorder definitions
331 **/ 329 **/