[SCM] Vim packaging branch, master, updated. debian/7.2.000-3-14-ga98cef7

James Vega jamessan at debian.org
Sat Sep 27 20:46:23 UTC 2008


The following commit has been merged in the master branch:
commit a49d8b3f9076b23e6f46548d3cd45b0e6baa7789
Author: Bram Moolenaar <Bram at moolenaar.net>
Date:   Mon Sep 1 13:38:47 2008 -0400

    [7.2.001] Mac: pseudo-ttys don't work properly on Leopard
    
    Patch 7.2.001
    Problem:    Mac: pseudo-ttys don't work properly on Leopard, resulting in the
                shell not to have a prompt, CTRL-C not working, etc.
    Solution:   Don't use SVR4 compatible ptys, even though they are detected.
                (Ben Schmidt)

diff --git a/src/pty.c b/src/pty.c
index 388bf79..0b5e215 100644
--- a/src/pty.c
+++ b/src/pty.c
@@ -270,9 +270,10 @@ OpenPTY(ttyn)
 }
 #endif
 
-#if defined(HAVE_SVR4_PTYS) && !defined(PTY_DONE) && !defined(hpux)
+#if defined(HAVE_SVR4_PTYS) && !defined(PTY_DONE) && !defined(hpux) && !defined(MACOS_X)
 
-/* NOTE: Even though HPUX can have /dev/ptmx, the code below doesn't work! */
+/* NOTE: Even though HPUX can have /dev/ptmx, the code below doesn't work!
+ * Same for Mac OS X Leopard. */
 #define PTY_DONE
     int
 OpenPTY(ttyn)
diff --git a/src/version.c b/src/version.c
index 21d7b14..c8565c4 100644
--- a/src/version.c
+++ b/src/version.c
@@ -677,6 +677,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1,
+/**/
     0
 };
 

-- 
Vim packaging



More information about the pkg-vim-maintainers mailing list