Source-Changes-HG archive

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

[src/trunk]: src/sys/rump/include/rump Fixed ukfs build on non-NetBSD system.



details:   https://anonhg.NetBSD.org/src/rev/40c6faf66974
branches:  trunk
changeset: 750302:40c6faf66974
user:      stacktic <stacktic%NetBSD.org@localhost>
date:      Wed Dec 23 17:17:59 2009 +0000

description:
Fixed ukfs build on non-NetBSD system.

diffstat:

 sys/rump/include/rump/rump.h     |  5 ++++-
 sys/rump/include/rump/rumpuser.h |  5 ++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diffs (42 lines):

diff -r d107f2e9fe3a -r 40c6faf66974 sys/rump/include/rump/rump.h
--- a/sys/rump/include/rump/rump.h      Wed Dec 23 17:16:40 2009 +0000
+++ b/sys/rump/include/rump/rump.h      Wed Dec 23 17:17:59 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rump.h,v 1.34 2009/12/09 00:23:28 haad Exp $   */
+/*     $NetBSD: rump.h,v 1.35 2009/12/23 17:17:59 stacktic Exp $       */
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -52,8 +52,11 @@
 #if defined(__NetBSD__)
 #include <prop/proplib.h>
 #else
+#ifndef HAVE_PROP_DICTIONARY_T
+#define HAVE_PROP_DICTIONARY_T
 struct prop_dictionary;
 typedef struct prop_dictionary *prop_dictionary_t;
+#endif
 #endif /* __NetBSD__ */
 
 struct lwp;
diff -r d107f2e9fe3a -r 40c6faf66974 sys/rump/include/rump/rumpuser.h
--- a/sys/rump/include/rump/rumpuser.h  Wed Dec 23 17:16:40 2009 +0000
+++ b/sys/rump/include/rump/rumpuser.h  Wed Dec 23 17:17:59 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rumpuser.h,v 1.34 2009/11/26 09:50:38 pooka Exp $      */
+/*     $NetBSD: rumpuser.h,v 1.35 2009/12/23 17:17:59 stacktic Exp $   */
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -191,8 +191,11 @@
 #ifdef __NetBSD__
 #include <prop/proplib.h>
 #else
+#ifndef HAVE_PROP_DICTIONARY_T
+#define HAVE_PROP_DICTIONARY_T
 typedef struct prop_dictionary *prop_dictionary_t;
 #endif
+#endif
 
 struct modinfo;
 typedef int (*rump_modinit_fn)(struct modinfo *, prop_dictionary_t);



Home | Main Index | Thread Index | Old Index