Source-Changes-HG archive

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

[src/trunk]: src/sys/external/bsd/gnu-efi/dist/inc Add NetBSD-specific adjust...



details:   https://anonhg.NetBSD.org/src/rev/d3cfc8f73daf
branches:  trunk
changeset: 328368:d3cfc8f73daf
user:      jakllsch <jakllsch%NetBSD.org@localhost>
date:      Tue Apr 01 16:22:45 2014 +0000

description:
Add NetBSD-specific adjustments to gnu-efi.

diffstat:

 sys/external/bsd/gnu-efi/dist/inc/ia32/efibind.h   |  4 +++-
 sys/external/bsd/gnu-efi/dist/inc/ia64/efibind.h   |  4 +++-
 sys/external/bsd/gnu-efi/dist/inc/x86_64/efibind.h |  4 +++-
 3 files changed, 9 insertions(+), 3 deletions(-)

diffs (54 lines):

diff -r 82a7faea2f72 -r d3cfc8f73daf sys/external/bsd/gnu-efi/dist/inc/ia32/efibind.h
--- a/sys/external/bsd/gnu-efi/dist/inc/ia32/efibind.h  Tue Apr 01 16:16:05 2014 +0000
+++ b/sys/external/bsd/gnu-efi/dist/inc/ia32/efibind.h  Tue Apr 01 16:22:45 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: efibind.h,v 1.1.1.1 2014/04/01 16:16:07 jakllsch Exp $ */
+/*     $NetBSD: efibind.h,v 1.2 2014/04/01 16:22:45 jakllsch Exp $     */
 
 /*++
 
@@ -77,6 +77,8 @@
        typedef unsigned char       uint8_t;
        typedef char                int8_t;
     #endif
+#elif defined(__NetBSD__)
+    #include <sys/stdint.h>
 #elif defined(__GNUC__)
     #include <stdint.h>
 #endif
diff -r 82a7faea2f72 -r d3cfc8f73daf sys/external/bsd/gnu-efi/dist/inc/ia64/efibind.h
--- a/sys/external/bsd/gnu-efi/dist/inc/ia64/efibind.h  Tue Apr 01 16:16:05 2014 +0000
+++ b/sys/external/bsd/gnu-efi/dist/inc/ia64/efibind.h  Tue Apr 01 16:22:45 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: efibind.h,v 1.1.1.1 2014/04/01 16:16:07 jakllsch Exp $ */
+/*     $NetBSD: efibind.h,v 1.2 2014/04/01 16:22:45 jakllsch Exp $     */
 
 /*++
 
@@ -64,6 +64,8 @@
         typedef unsigned char       uint8_t;
         typedef char                int8_t;
     #endif
+#elif defined(__NetBSD__)
+    #include <sys/stdint.h>
 #elif defined(__GNUC__)
     #include <stdint.h>
 #endif
diff -r 82a7faea2f72 -r d3cfc8f73daf sys/external/bsd/gnu-efi/dist/inc/x86_64/efibind.h
--- a/sys/external/bsd/gnu-efi/dist/inc/x86_64/efibind.h        Tue Apr 01 16:16:05 2014 +0000
+++ b/sys/external/bsd/gnu-efi/dist/inc/x86_64/efibind.h        Tue Apr 01 16:22:45 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: efibind.h,v 1.1.1.1 2014/04/01 16:16:07 jakllsch Exp $ */
+/*     $NetBSD: efibind.h,v 1.2 2014/04/01 16:22:45 jakllsch Exp $     */
 
 /*++
 
@@ -86,6 +86,8 @@
        typedef unsigned char       uint8_t;
        typedef char                int8_t;
     #endif
+#elif defined(__NetBSD__)
+    #include <sys/stdint.h>
 #elif defined(__GNUC__)
     #include <stdint.h>
 #endif



Home | Main Index | Thread Index | Old Index