summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorlukem <lukem>2001-01-11 06:24:22 +0000
committerlukem <lukem>2001-01-11 06:24:22 +0000
commit4f1a2ac063976444b6383b1cb15242378d628141 (patch)
tree1a536a2ca874fd6fdc8da5ee41889ee6d9cd8c61 /audio
parent9f37d39b6195a3d922933451ebc7fb543338f1e3 (diff)
downloadpkgsrc-4f1a2ac063976444b6383b1cb15242378d628141.tar.gz
change the minimum screen size from 80x25 -> 80x24 (which is the
default for xterm, amongst others). this doesn't seem to have caused any noticable problems
Diffstat (limited to 'audio')
-rw-r--r--audio/cam/files/patch-sum3
-rw-r--r--audio/cam/patches/patch-ae16
2 files changed, 18 insertions, 1 deletions
diff --git a/audio/cam/files/patch-sum b/audio/cam/files/patch-sum
index 08d990811d1..0b938653cee 100644
--- a/audio/cam/files/patch-sum
+++ b/audio/cam/files/patch-sum
@@ -1,6 +1,7 @@
-$NetBSD: patch-sum,v 1.7 2000/09/30 17:24:49 hubertf Exp $
+$NetBSD: patch-sum,v 1.8 2001/01/11 06:24:22 lukem Exp $
MD5 (patch-aa) = facf0caaa0102094b09cacaddfbc75c9
MD5 (patch-ab) = 1b3871413a37497d2824e8e64dbab7d1
MD5 (patch-ac) = 44df334d4ad0c60a5ffd478a0e0b1687
MD5 (patch-ad) = 84ce8af75f555d42f950e2091a5446e0
+MD5 (patch-ae) = 2b522e7180fbc94a6cb8e7d14844c30a
diff --git a/audio/cam/patches/patch-ae b/audio/cam/patches/patch-ae
new file mode 100644
index 00000000000..5b7bda51cd0
--- /dev/null
+++ b/audio/cam/patches/patch-ae
@@ -0,0 +1,16 @@
+$NetBSD: patch-ae,v 1.1 2001/01/11 06:24:23 lukem Exp $
+
+--- /usr/pkgsrc/audio/cam/mycam/screens.c Thu Jan 11 10:05:44 2001
++++ ./screens.c Thu Jan 11 11:38:19 2001
+@@ -111,9 +111,9 @@
+ void init_screen(void)
+ {
+ stdscr = initscr();
+- if ( (COLS < 80) || (LINES < 25) ) {
++ if ( (COLS < 80) || (LINES < 24) ) {
+ finish(0);
+- fprintf(stderr,"The screensize has to be minimum 80x25\n");
++ fprintf(stderr,"The screensize has to be minimum 80x24\n");
+ exit(1);
+ }
+ curs_set(0);