diff options
author | he <he@pkgsrc.org> | 2004-09-17 09:36:02 +0000 |
---|---|---|
committer | he <he@pkgsrc.org> | 2004-09-17 09:36:02 +0000 |
commit | cc6ba21b523f9565c077bbf991c82f302414ecb4 (patch) | |
tree | 8160f46befa0b03bd8e7b14de9deb5db084d198f /cad/magic | |
parent | 42e811c1321cfd97a161f32fcec2b1b96890c038 (diff) | |
download | pkgsrc-cc6ba21b523f9565c077bbf991c82f302414ecb4.tar.gz |
Bring this a tiny step closer to building by patching a missing semicolon
in one of the source files of the built-in readline library.
Diffstat (limited to 'cad/magic')
-rw-r--r-- | cad/magic/distinfo | 3 | ||||
-rw-r--r-- | cad/magic/patches/patch-aq | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/cad/magic/distinfo b/cad/magic/distinfo index ff98b179f87..956b4b686d7 100644 --- a/cad/magic/distinfo +++ b/cad/magic/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.3 2004/01/23 11:43:33 agc Exp $ +$NetBSD: distinfo,v 1.4 2004/09/17 09:36:02 he Exp $ SHA1 (magic-7.1.tar.gz) = 176eb4c6a0ff33c6e265e61360c02da4f454f101 Size (magic-7.1.tar.gz) = 3860487 bytes @@ -18,3 +18,4 @@ SHA1 (patch-am) = c4e695c370db01775b321970a327ea0851fdf437 SHA1 (patch-an) = 83e9e5242b483f398962a6237551b860749e70f0 SHA1 (patch-ao) = 747c18b5e997d652054d17acbdb1fee0748d77a8 SHA1 (patch-ap) = b2b9e1c45dbefd1d93205bcc15ea713c38181598 +SHA1 (patch-aq) = 8ca051b61a8d79988838be4c1bc4dca3eed6bcaa diff --git a/cad/magic/patches/patch-aq b/cad/magic/patches/patch-aq new file mode 100644 index 00000000000..20924488811 --- /dev/null +++ b/cad/magic/patches/patch-aq @@ -0,0 +1,13 @@ +$NetBSD: patch-aq,v 1.1 2004/09/17 09:36:02 he Exp $ + +--- ./readline/readline/rltty.c.orig Mon Apr 3 18:10:33 2000 ++++ ./readline/readline/rltty.c +@@ -190,7 +190,7 @@ save_tty_chars (tiop) + _rl_tty_chars.t_intr = tiop->tchars.t_intrc; + _rl_tty_chars.t_quit = tiop->tchars.t_quitc; + _rl_tty_chars.t_start = tiop->tchars.t_startc; +- _rl_tty_chars.t_stop = tiop->tchars.t_stopc ++ _rl_tty_chars.t_stop = tiop->tchars.t_stopc; + _rl_tty_chars.t_eof = tiop->tchars.t_eofc; + _rl_tty_chars.t_eol = '\n'; + _rl_tty_chars.t_eol2 = tiop->tchars.t_brkc; |