Fix host tool build which got broken when SHA2 support was added.

This commit is contained in:
tron 2005-08-25 09:51:23 +00:00
parent e6760038b8
commit a73f6299d6
3 changed files with 15 additions and 3 deletions

View File

@ -1,4 +1,8 @@
/* $NetBSD: sha256.c,v 1.1 2005/08/24 19:59:08 elad Exp $ */
/* $NetBSD: sha256.c,v 1.2 2005/08/25 09:51:23 tron Exp $ */
#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif
#include <crypto/sha2.h> /* this hash type */
#include <md5.h> /* the hash we're replacing */

View File

@ -1,4 +1,8 @@
/* $NetBSD: sha384.c,v 1.1 2005/08/24 19:59:08 elad Exp $ */
/* $NetBSD: sha384.c,v 1.2 2005/08/25 09:51:23 tron Exp $ */
#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif
#include <crypto/sha2.h> /* this hash type */
#include <md5.h> /* the hash we're replacing */

View File

@ -1,4 +1,8 @@
/* $NetBSD: sha512.c,v 1.1 2005/08/24 19:59:09 elad Exp $ */
/* $NetBSD: sha512.c,v 1.2 2005/08/25 09:51:23 tron Exp $ */
#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif
#include <crypto/sha2.h> /* this hash type */
#include <md5.h> /* the hash we're replacing */