]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.040
- fix for current libselinux
[packages/vim.git] / 6.2.040
CommitLineData
d8621708 1To: vim-dev@vim.org
2Subject: Patch 6.2.040
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 6.2.040
11Problem: FreeBSD: Crash while starting up when compiled with +xsmp feature.
12Solution: Pass a non-NULL argument to IceAddConnectionWatch().
13Files: src/os_unix.c
14
15
16*** ../vim-6.2.039/src/os_unix.c Thu Jul 24 22:09:03 2003
17--- src/os_unix.c Sat Jul 26 20:37:06 2003
18***************
19*** 5930,5935 ****
20--- 5930,5936 ----
21 return OK;
22 }
23
24+ static int dummy;
25
26 /* Set up X Session Management Protocol */
27 void
28***************
29*** 5959,5966 ****
30 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
31 smcallbacks.shutdown_cancelled.client_data = NULL;
32
33! /* Set up a watch on ICE connection creations */
34! if (IceAddConnectionWatch(xsmp_ice_connection, NULL) == 0)
35 {
36 if (p_verbose > 0)
37 MSG(_("XSMP ICE connection watch failed"));
38--- 5960,5968 ----
39 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
40 smcallbacks.shutdown_cancelled.client_data = NULL;
41
42! /* Set up a watch on ICE connection creations. The "dummy" argument is
43! * apparently required for FreeBSD (we get a BUS error when using NULL). */
44! if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
45 {
46 if (p_verbose > 0)
47 MSG(_("XSMP ICE connection watch failed"));
48*** ../vim-6.2.039/src/version.c Sat Jul 26 19:49:46 2003
49--- src/version.c Sat Jul 26 20:38:35 2003
50***************
51*** 632,633 ****
52--- 632,635 ----
53 { /* Add new patch number below this line */
54+ /**/
55+ 40,
56 /**/
57
58--
59ARTHUR: Now stand aside worthy adversary.
60BLACK KNIGHT: (Glancing at his shoulder) 'Tis but a scratch.
61ARTHUR: A scratch? Your arm's off.
62 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
63
64 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
65/// Creator of Vim - Vi IMproved -- http://www.Vim.org \\\
66\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
67 \\\ Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html ///
This page took 0.039558 seconds and 4 git commands to generate.