diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-12-24 03:11:00 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-12-24 03:11:00 +0000 |
commit | 872f681f8a79b5016ad07113bf9c661f5cb2f7af (patch) | |
tree | 0122c0ffad0175529f163e89f3d2a75b4361d1e1 /japanese/kon2-16dot/files | |
parent | Remove tweak not needed for newer libdv: it breaks build on some systems. (diff) |
o Fix open /dev/vga problem on 5.x. [1]
o Fix build on 6-current.
o Bump PORTREVISION, accordingly.
PR: ports/74881 [1]
Submitted by: Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> [1]
Notes
Notes:
svn path=/head/; revision=125028
Diffstat (limited to 'japanese/kon2-16dot/files')
-rw-r--r-- | japanese/kon2-16dot/files/patch-af | 4 | ||||
-rw-r--r-- | japanese/kon2-16dot/files/patch-font::Makefile.FreeBSD | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/japanese/kon2-16dot/files/patch-af b/japanese/kon2-16dot/files/patch-af index a30e4c993641..c115d016f6ba 100644 --- a/japanese/kon2-16dot/files/patch-af +++ b/japanese/kon2-16dot/files/patch-af @@ -35,7 +35,7 @@ PerrorExit("/dev/console"); } #elif defined(__FreeBSD__) -+#if __FreeBSD_version >= 510100 ++#if __FreeBSD_version >= 501100 + cfd = open("/dev/ttyv0", O_WRONLY); + if (cfd < 0 && (cfd = open("/dev/ttyv0", O_RDONLY)) < 0) { + PerrorExit("/dev/ttyv0"); @@ -54,7 +54,7 @@ if (cfd < 0 && (cfd = open("/dev/console", O_RDONLY)) < 0) fatal("can't open /dev/console"); #elif defined(__FreeBSD__) -+#if __FreeBSD_version >= 510100 ++#if __FreeBSD_version >= 501100 + cfd = open("/dev/ttyv0", O_WRONLY); + if (cfd < 0 && (cfd = open("/dev/ttyv0", O_RDONLY)) < 0) + fatal("can't open /dev/ttyv0"); diff --git a/japanese/kon2-16dot/files/patch-font::Makefile.FreeBSD b/japanese/kon2-16dot/files/patch-font::Makefile.FreeBSD new file mode 100644 index 000000000000..338d62c6dfac --- /dev/null +++ b/japanese/kon2-16dot/files/patch-font::Makefile.FreeBSD @@ -0,0 +1,10 @@ +--- font/Makefile.FreeBSD.orig Sat Jan 25 19:08:44 1997 ++++ font/Makefile.FreeBSD Fri Dec 24 11:46:26 2004 +@@ -11,6 +11,7 @@ + .endif + + PROG= fld ++NO_MAN= yes + + .if exists(${.OBJDIR}/../lib) + LIBOBJ= -L${.OBJDIR}/../lib |