diff options
author | dsainty <dsainty@pkgsrc.org> | 2006-09-21 21:47:32 +0000 |
---|---|---|
committer | dsainty <dsainty@pkgsrc.org> | 2006-09-21 21:47:32 +0000 |
commit | 9da1e0555efb0fa00db1e0e6ceda8933cf782b1b (patch) | |
tree | 3b5f2056a0830e794f17c55206ff6fa3fdba193d /emulators | |
parent | a8ae7bde5f174851752aceb4b6603da2cc8bcce8 (diff) | |
download | pkgsrc-9da1e0555efb0fa00db1e0e6ceda8933cf782b1b.tar.gz |
Fix build under gcc 4.1.2, which catches an extern Vs static inconsistency.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/xbeeb/distinfo | 3 | ||||
-rw-r--r-- | emulators/xbeeb/patches/patch-ag | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/emulators/xbeeb/distinfo b/emulators/xbeeb/distinfo index bdb9eb4a48a..200ba6a65b5 100644 --- a/emulators/xbeeb/distinfo +++ b/emulators/xbeeb/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2006/06/17 06:37:55 dsainty Exp $ +$NetBSD: distinfo,v 1.6 2006/09/21 21:47:32 dsainty Exp $ SHA1 (xbeeb-0.4.1.tgz) = 5e2fccfabd0aa5a656758b2ea0536570a790dabe RMD160 (xbeeb-0.4.1.tgz) = 67dba3262f7e5886a86e5656288d807fea540d9b @@ -9,3 +9,4 @@ SHA1 (patch-ac) = 72622acf9671ac0f72bd9b8271fc17f25d3655f1 SHA1 (patch-ad) = 733916029e94e65ee7702778ce344468ab3cf658 SHA1 (patch-ae) = 00906d13e5dd9ec03f011053e7399fac581efc3d SHA1 (patch-af) = 62c888cc324742142d7a95c9db55067daba4dacd +SHA1 (patch-ag) = 85f2cd6bddabfa865ab392d38c3a4db7cd2a8026 diff --git a/emulators/xbeeb/patches/patch-ag b/emulators/xbeeb/patches/patch-ag new file mode 100644 index 00000000000..bcc8abc1723 --- /dev/null +++ b/emulators/xbeeb/patches/patch-ag @@ -0,0 +1,13 @@ +$NetBSD: patch-ag,v 1.1 2006/09/21 21:47:32 dsainty Exp $ + +Fix build under gcc 4.1.2, which catches an extern Vs static inconsistency. + +--- src/VideoUla.h.orig 2002-01-16 04:46:43.000000000 +1300 ++++ src/VideoUla.h 2006-09-22 01:06:05.000000000 +1200 +@@ -88,6 +88,5 @@ + extern unsigned char CursorByteWidth; + extern unsigned char MasterCursorWidth; + extern unsigned char ClockRate; +-extern byteval VidRegister0; + + #endif /* VIDEOULA_H */ |