pkgsrc/security/skey/patches/patch-af
obache 15debaac89 * Fixes mismatch between the section and extension of skeyprune.
* skeyprune is perl script, need runtime dependency on perl5.
* Fixes mis-use of config.h (patch-a[d-i]), avoid to use a mixture of
  local hash function with system RMD header.
  Fixes build failure reported by PR 39872 and PR 39953.

Bump PKGREVISION.
2008-12-13 13:58:31 +00:00

23 lines
569 B
Text

$NetBSD: patch-af,v 1.1 2008/12/13 13:58:31 obache Exp $
include "config.h" before using HAVE_* macro.
--- rmd160.c.orig 2001-05-10 16:10:49.000000000 +0000
+++ rmd160.c
@@ -15,6 +15,8 @@
* 1996, All Rights Reserved
*
\********************************************************************/
+#include "config.h"
+
#ifndef HAVE_RMD160_H
/* header files */
@@ -22,7 +24,6 @@
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
-#include "config.h"
#include "rmd160.h"
/********************************************************************/