Some autoconfig glue around header files inclusion.

This commit is contained in:
agc 2009-06-02 15:10:07 +00:00
parent 2ff04dc7a0
commit 732655c303
2 changed files with 6 additions and 1 deletions

View File

@ -57,7 +57,7 @@
#if defined(__NetBSD__)
__COPYRIGHT("@(#) Copyright (c) 2009 The NetBSD Foundation, Inc. All rights reserved.");
__RCSID("$NetBSD: misc.c,v 1.15 2009/05/31 23:26:20 agc Exp $");
__RCSID("$NetBSD: misc.c,v 1.16 2009/06/02 15:10:07 agc Exp $");
#endif
#include <sys/types.h>
@ -73,7 +73,9 @@ __RCSID("$NetBSD: misc.c,v 1.15 2009/05/31 23:26:20 agc Exp $");
#include <unistd.h>
#endif
#ifdef HAVE_OPENSSL_RAND_H
#include <openssl/rand.h>
#endif
#include "errors.h"
#include "packet.h"

View File

@ -55,7 +55,10 @@
#define PACKET_H_
#include <time.h>
#ifdef HAVE_OPENSSL_BN_H
#include <openssl/bn.h>
#endif
#include "types.h"
#include "errors.h"