]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.495 v7.4.495
authorBram Moolenaar <Bram@vim.org>
Wed, 5 Nov 2014 12:43:21 +0000 (13:43 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 5 Nov 2014 12:43:21 +0000 (13:43 +0100)
Problem:    XPM isn't used correctly in the Cygwin Makefile.
Solution:   Include the rules like in Make_ming.mak. (Ken Takata)

src/Make_cyg.mak
src/version.c

index abd35a6a42c7dd031d5fb41109742f900efa1a02..ff40548df9fb425a49dff25b5f73cdeb2eaa558e 100644 (file)
@@ -485,13 +485,32 @@ USE_STDCPLUS = yes
 endif
 
 ##############################
+ifndef XPM
+ifeq ($(ARCH),i386)
+XPM = xpm/x86
+endif
+ifeq ($(ARCH),i486)
+XPM = xpm/x86
+endif
+ifeq ($(ARCH),i586)
+XPM = xpm/x86
+endif
+ifeq ($(ARCH),i686)
+XPM = xpm/x86
+endif
+ifeq ($(ARCH),x86-64)
+XPM = xpm/x64
+endif
+endif
+ifdef XPM
 ifneq ($(XPM),no)
 # Only allow XPM for a GUI build.
 DEFINES += -DFEAT_XPM_W32
-INCLUDES += -I$(XPM)/include
+INCLUDES += -I$(XPM)/include -I$(XPM)/../include
 EXTRA_OBJS += $(OUTDIR)/xpm_w32.o
 EXTRA_LIBS += -L$(XPM)/lib -lXpm
 endif
+endif
 
 ##############################
 EXE = gvim$(DEBUG_SUFFIX).exe
index ec0e667e2fe1c87aa262bb09706e24852ccdfe20..4b75a58a519c62d82d2e45d1d266adeb18b74104 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    495,
 /**/
     494,
 /**/