home *** CD-ROM | disk | FTP | other *** search
- To: vim-dev@vim.org
- Subject: Patch 6.0.067
- Fcc: outbox
- From: Bram Moolenaar <Bram@moolenaar.net>
- MIME-Version: 1.0
- Content-Type: text/plain; charset=ISO-8859-1
- Content-Transfer-Encoding: 8bit
- ------------
-
- Patch 6.0.067
- Problem: if_xcmdsrv.c doesn't compile on systems where fd_set isn't defined
- in the usual header file (e.g., AIX). (Mark Waggoner)
- Solution: Include sys/select.h in if_xcmdsrv.c for systems that have it.
- Files: src/if_xcmdsrv.c
-
-
- *** ../vim60.66/src/if_xcmdsrv.c Mon Sep 24 12:02:29 2001
- --- src/if_xcmdsrv.c Sat Nov 3 13:56:56 2001
- ***************
- *** 21,26 ****
- --- 21,31 ----
- # include <X11/Xatom.h>
- # endif
-
- + # if defined(HAVE_SYS_SELECT_H) && \
- + (!defined(HAVE_SYS_TIME_H) || defined(SYS_SELECT_WITH_SYS_TIME))
- + # include <sys/select.h>
- + # endif
- +
- /*
- * This file provides procedures that implement the command server functionality
- * of Vim when in contact with an X11 server.
- *** ../vim60.66/src/version.c Sat Nov 3 14:01:26 2001
- --- src/version.c Sat Nov 3 14:01:06 2001
- ***************
- *** 608,609 ****
- --- 608,611 ----
- { /* Add new patch number below this line */
- + /**/
- + 67,
- /**/
-
- --
- An easy way to determine if you have enough teamwork to be doomed is simply to
- measure how long it takes from the time you decide to go to lunch together
- until the time you actually eat.
- (Scott Adams - The Dilbert principle)
-
- /// Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net \\\
- ((( Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim )))
- \\\ Help me helping AIDS orphans in Uganda - http://iccf-holland.org ///
-