]> andersk Git - gssapi-openssh.git/blobdiff - openssh/openbsd-compat/port-aix.h
o Merge to OPENSSH_3_6_1P1_GSSAPI_20030408.
[gssapi-openssh.git] / openssh / openbsd-compat / port-aix.h
index 79570a206b8ec24ee8d22c3c008eb1980e25ec41..4abe003168b8dadc1c980ccc0096767b47120d8a 100644 (file)
  */
 
 #ifdef _AIX
+
+/* AIX 4.2.x doesn't have nanosleep but does have nsleep which is equivalent */
+#if !defined(HAVE_NANOSLEEP) && defined(HAVE_NSLEEP)
+# define nanosleep(a,b) nsleep(a,b)
+#endif
+
+/* For struct timespec on AIX 4.2.x */
+#ifdef HAVE_SYS_TIMERS_H
+# include <sys/timers.h>
+#endif
+
 void aix_usrinfo(struct passwd *pw);
 #endif /* _AIX */
This page took 0.032163 seconds and 4 git commands to generate.