]> andersk Git - openssh.git/commitdiff
- (stevesk) [defines.h] #define MAP_ANON MAP_ANONYMOUS for HP-UX; other
authorstevesk <stevesk>
Fri, 22 Mar 2002 21:08:03 +0000 (21:08 +0000)
committerstevesk <stevesk>
Fri, 22 Mar 2002 21:08:03 +0000 (21:08 +0000)
   platforms may need this--I'm not sure.  mmap() issues will need to be
   addressed further.

ChangeLog
defines.h

index 9c74d3a15aef32b2898893fe89e907790267659f..8af62e2963f14b07563e68f3cbc146eb61abab82 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,9 @@
  - (stevesk) [auth2.c] merge cleanup/sync
  - (stevesk) [defines.h] hp-ux 11 has ancillary data style fd passing, but
    is missing CMSG_LEN() and CMSG_SPACE() macros.
+ - (stevesk) [defines.h] #define MAP_ANON MAP_ANONYMOUS for HP-UX; other
+   platforms may need this--I'm not sure.  mmap() issues will need to be
+   addressed further.
 
 20020321
  - (bal) OpenBSD CVS Sync
index 40337efc0329184f3b8f44c1b56e34a5de83ecc5..e252becbd1e389e6f0db29bcb022846cfc00add2 100644 (file)
--- a/defines.h
+++ b/defines.h
@@ -440,6 +440,10 @@ struct winsize {
 # define howmany(x,y)  (((x)+((y)-1))/(y))
 #endif
 
+#ifdef __hpux
+#define MAP_ANON MAP_ANONYMOUS
+#endif
+
 #ifndef ALIGNBYTES
 #define ALIGNBYTES     (sizeof(int) - 1)
 #endif
This page took 0.346138 seconds and 5 git commands to generate.