pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/bmake/files



Module Name:    pkgsrc
Committed By:   khorben
Date:           Sun Feb 11 17:34:54 UTC 2018

Modified Files:
        pkgsrc/devel/bmake/files: make.h

Log Message:
Avoid warnings about implicit declaration of function 'ffs'

Besides addressing these warnings, this patch should not modify the resulting
binary in any way. There should be no need to re-compile or bump any version or
revision.

Compile-tested on NetBSD/amd64. "Should be ok" joerg@


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/bmake/files/make.h

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

Modified files:

Index: pkgsrc/devel/bmake/files/make.h
diff -u pkgsrc/devel/bmake/files/make.h:1.8 pkgsrc/devel/bmake/files/make.h:1.9
--- pkgsrc/devel/bmake/files/make.h:1.8 Tue May 19 22:01:19 2015
+++ pkgsrc/devel/bmake/files/make.h     Sun Feb 11 17:34:54 2018
@@ -1,4 +1,4 @@
-/*     $NetBSD: make.h,v 1.8 2015/05/19 22:01:19 joerg Exp $   */
+/*     $NetBSD: make.h,v 1.9 2018/02/11 17:34:54 khorben Exp $ */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -92,7 +92,8 @@
 #include <stdlib.h>
 #ifdef HAVE_STRING_H
 #include <string.h>
-#else
+#endif
+#ifdef HAVE_STRINGS_H
 #include <strings.h>
 #endif
 #include <unistd.h>



Home | Main Index | Thread Index | Old Index