]> andersk Git - openssh.git/commitdiff
- (djm) Use local sys/queue.h if necessary in ssh-agent.c
authordjm <djm>
Tue, 22 Jan 2002 12:52:17 +0000 (12:52 +0000)
committerdjm <djm>
Tue, 22 Jan 2002 12:52:17 +0000 (12:52 +0000)
ChangeLog
ssh-agent.c

index 2b3d82d9c70339a38bb2b85d4fd903c38c42a368..441d5e869439ff895ad4b5536e821a7a8f221ad8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
    changes
  - (djm) Recent Glibc includes an incompatible sys/queue.h. Treat it as 
    bogus in configure
+ - (djm) Use local sys/queue.h if necessary in ssh-agent.c
 
 20020121
  - (djm) Rework ssh-rand-helper:
index 5264c23a88d34bd35e4e29c0861f2e0dd97a4b4a..ce283c8ccdb69cca3e5e529c082f0ffd97a6d082 100644 (file)
  */
 
 #include "includes.h"
-#include <sys/queue.h>
 RCSID("$OpenBSD: ssh-agent.c,v 1.79 2002/01/18 18:14:17 stevesk Exp $");
 
+#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
+#include <sys/queue.h>
+#else
+#include "openbsd-compat/fake-queue.h"
+#endif
+
+
 #include <openssl/evp.h>
 #include <openssl/md5.h>
 
This page took 0.072864 seconds and 5 git commands to generate.