Module Name:    othersrc
Committed By:   agc
Date:           Sun Aug 18 18:40:27 UTC 2013

Modified Files:
        othersrc/external/bsd/multigest/dist: md5c.c
        othersrc/external/bsd/multigest/lib: Makefile

Log Message:
make sure the correct header files are picked up


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 othersrc/external/bsd/multigest/dist/md5c.c
cvs rdiff -u -r1.1.1.1 -r1.2 othersrc/external/bsd/multigest/lib/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: othersrc/external/bsd/multigest/dist/md5c.c
diff -u othersrc/external/bsd/multigest/dist/md5c.c:1.1.1.1 othersrc/external/bsd/multigest/dist/md5c.c:1.2
--- othersrc/external/bsd/multigest/dist/md5c.c:1.1.1.1	Fri Aug 16 06:47:53 2013
+++ othersrc/external/bsd/multigest/dist/md5c.c	Sun Aug 18 18:40:27 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: md5c.c,v 1.1.1.1 2013/08/16 06:47:53 agc Exp $	*/
+/*	$NetBSD: md5c.c,v 1.2 2013/08/18 18:40:27 agc Exp $	*/
 
 /*
  * This file is derived from the RSA Data Security, Inc. MD5 Message-Digest
@@ -32,7 +32,7 @@
 #include <assert.h>
 #include <inttypes.h>
 #include <string.h>
-#include <md5.h>
+#include "md5.h"
 
 typedef unsigned char *POINTER;
 typedef uint16_t UINT2;

Index: othersrc/external/bsd/multigest/lib/Makefile
diff -u othersrc/external/bsd/multigest/lib/Makefile:1.1.1.1 othersrc/external/bsd/multigest/lib/Makefile:1.2
--- othersrc/external/bsd/multigest/lib/Makefile:1.1.1.1	Fri Aug 16 06:47:53 2013
+++ othersrc/external/bsd/multigest/lib/Makefile	Sun Aug 18 18:40:27 2013
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2013/08/16 06:47:53 agc Exp $
+# $NetBSD: Makefile,v 1.2 2013/08/18 18:40:27 agc Exp $
 
 LIB=multigest
 
@@ -13,8 +13,6 @@ SRCS+= tiger.c
 SRCS+= whirlpool.c
 SRCS+= multigest.c
 
-CPPFLAGS+=-I${DIST}
-
 MAN=libmultigest.3
 
 WARNS=6

Reply via email to