]> git.pld-linux.org Git - packages/vim.git/blob - 7.0.017
- new
[packages/vim.git] / 7.0.017
1 To: vim-dev@vim.org
2 Subject: Patch 7.0.017
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.0.017 (after 7.0.014)
11 Problem:    Linking gui_xmebw.c fails on Dec Alpha Tru64. (Rolfe)
12 Solution:   Adjust defines for Motif 1.2 and older.
13 Files:      src/gui_xmebw.c
14
15
16 *** ../vim-7.0.016/src/gui_xmebw.c      Fri May 12 19:24:33 2006
17 --- src/gui_xmebw.c     Sat May 13 12:55:01 2006
18 ***************
19 *** 47,59 ****
20   #include "gui_xmebwp.h"
21   
22   /* Provide some missing wrappers, which are missed from the LessTif
23 !  * implementation.
24    *
25    * We neither use XmeGetPixmapData or _XmGetPixmapData, since with LessTif the
26    * pixmap will not appear in it's caches properly. We cache the interresting
27    * values in XmEnhancedButtonPart instead ourself.
28    */
29 ! #ifdef LESSTIF_VERSION
30   # ifndef Lab_IsMenupane
31   #  define Lab_IsMenupane(w) (Lab_MenuType(w) == (int)XmMENU_POPUP || \
32                     Lab_MenuType(w) == (int)XmMENU_PULLDOWN)
33 --- 47,59 ----
34   #include "gui_xmebwp.h"
35   
36   /* Provide some missing wrappers, which are missed from the LessTif
37 !  * implementation.  Also missing in Motif 1.2 and earlier.
38    *
39    * We neither use XmeGetPixmapData or _XmGetPixmapData, since with LessTif the
40    * pixmap will not appear in it's caches properly. We cache the interresting
41    * values in XmEnhancedButtonPart instead ourself.
42    */
43 ! #if defined(LESSTIF_VERSION) || (XmVersion <= 1002)
44   # ifndef Lab_IsMenupane
45   #  define Lab_IsMenupane(w) (Lab_MenuType(w) == (int)XmMENU_POPUP || \
46                     Lab_MenuType(w) == (int)XmMENU_PULLDOWN)
47 *** ../vim-7.0.016/src/version.c        Sat May 13 09:16:38 2006
48 --- src/version.c       Sat May 13 13:00:03 2006
49 ***************
50 *** 668,669 ****
51 --- 668,671 ----
52   {   /* Add new patch number below this line */
53 + /**/
54 +     17,
55   /**/
56
57 -- 
58 hundred-and-one symptoms of being an internet addict:
59 141. You'd rather go to http://www.weather.com/ than look out your window.
60
61  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
62 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
63 \\\        download, build and distribute -- http://www.A-A-P.org        ///
64  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.032779 seconds and 3 git commands to generate.