Module Name:    src
Committed By:   dholland
Date:           Mon Mar  1 01:59:48 UTC 2010

Modified Files:
        src/lib/libterminfo: compile.c

Log Message:
compile.c needs sys/endian.h; PR 42875 from Henning Petersen.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/libterminfo/compile.c

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

Modified files:

Index: src/lib/libterminfo/compile.c
diff -u src/lib/libterminfo/compile.c:1.2 src/lib/libterminfo/compile.c:1.3
--- src/lib/libterminfo/compile.c:1.2	Thu Feb 25 23:44:02 2010
+++ src/lib/libterminfo/compile.c	Mon Mar  1 01:59:48 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: compile.c,v 1.2 2010/02/25 23:44:02 roy Exp $ */
+/* $NetBSD: compile.c,v 1.3 2010/03/01 01:59:48 dholland Exp $ */
 
 /*
  * Copyright (c) 2009, 2010 The NetBSD Foundation, Inc.
@@ -32,7 +32,11 @@
 #endif
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: compile.c,v 1.2 2010/02/25 23:44:02 roy Exp $");
+__RCSID("$NetBSD: compile.c,v 1.3 2010/03/01 01:59:48 dholland Exp $");
+
+#if !HAVE_NBTOOL_CONFIG_H || HAVE_SYS_ENDIAN_H
+#include <sys/endian.h>
+#endif
 
 #include <assert.h>
 #include <ctype.h>

Reply via email to