comparison nt/xemacs.mak @ 394:7d59cb494b73 r21-2-12

Import from CVS: tag r21-2-12
author cvs
date Mon, 13 Aug 2007 11:11:37 +0200
parents aabb7f5b1c81
children 6719134a07c2
comparison
equal deleted inserted replaced
393:2e030b8965b1 394:7d59cb494b73
92 HAVE_TIFF=0 92 HAVE_TIFF=0
93 !endif 93 !endif
94 !if !defined(HAVE_JPEG) 94 !if !defined(HAVE_JPEG)
95 HAVE_JPEG=0 95 HAVE_JPEG=0
96 !endif 96 !endif
97 !if !defined(HAVE_XFACE)
98 HAVE_XFACE=0
99 !endif
97 !if !defined(HAVE_GIF) 100 !if !defined(HAVE_GIF)
98 HAVE_GIF=1 101 HAVE_GIF=1
99 !endif 102 !endif
100 !if !defined(HAVE_TOOLBARS) 103 !if !defined(HAVE_TOOLBARS)
101 HAVE_TOOLBARS=$(HAVE_XPM) 104 HAVE_TOOLBARS=$(HAVE_XPM)
197 !endif 200 !endif
198 !if $(HAVE_MSW) && $(HAVE_JPEG) && !exist("$(JPEG_DIR)\libjpeg.lib") 201 !if $(HAVE_MSW) && $(HAVE_JPEG) && !exist("$(JPEG_DIR)\libjpeg.lib")
199 !message Specified JPEG directory does not contain "$(JPEG_DIR)\libjpeg.lib" 202 !message Specified JPEG directory does not contain "$(JPEG_DIR)\libjpeg.lib"
200 CONFIG_ERROR=1 203 CONFIG_ERROR=1
201 !endif 204 !endif
205 !if $(HAVE_MSW) && $(HAVE_XFACE) && !defined(COMPFACE_DIR)
206 !message Please specify root directory for your COMPFACE installation: COMPFACE_DIR=path
207 CONFIG_ERROR=1
208 !endif
209 !if $(HAVE_MSW) && $(HAVE_XFACE) && !exist("$(COMPFACE_DIR)\libcompface.lib")
210 !message Specified COMPFACE directory does not contain "$(COMPFACE_DIR)\libcompface.lib"
211 CONFIG_ERROR=1
212 !endif
202 !if $(HAVE_MSW) && $(HAVE_TOOLBARS) && !$(HAVE_XPM) 213 !if $(HAVE_MSW) && $(HAVE_TOOLBARS) && !$(HAVE_XPM)
203 !error Toolbars require XPM support 214 !error Toolbars require XPM support
204 CONFIG_ERROR=1 215 CONFIG_ERROR=1
205 !endif 216 !endif
206 !if $(CONFIG_ERROR) 217 !if $(CONFIG_ERROR)
252 !message Compiling in support for TIFF images. 263 !message Compiling in support for TIFF images.
253 !endif 264 !endif
254 !if $(HAVE_JPEG) 265 !if $(HAVE_JPEG)
255 !message Compiling in support for JPEG images. 266 !message Compiling in support for JPEG images.
256 !endif 267 !endif
268 !if $(HAVE_XFACE)
269 !message Compiling in support for X-Face message headers.
270 !endif
257 !if $(HAVE_TOOLBARS) 271 !if $(HAVE_TOOLBARS)
258 !message Compiling in support for toolbars. 272 !message Compiling in support for toolbars.
259 !endif 273 !endif
260 !if $(HAVE_DIALOGS) 274 !if $(HAVE_DIALOGS)
261 !message Compiling in support for dialogs. 275 !message Compiling in support for dialogs.
342 !endif 356 !endif
343 !if $(HAVE_JPEG) 357 !if $(HAVE_JPEG)
344 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_JPEG 358 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_JPEG
345 MSW_INCLUDES=$(MSW_INCLUDES) -I"$(JPEG_DIR)" 359 MSW_INCLUDES=$(MSW_INCLUDES) -I"$(JPEG_DIR)"
346 MSW_LIBS=$(MSW_LIBS) "$(JPEG_DIR)\libjpeg.lib" 360 MSW_LIBS=$(MSW_LIBS) "$(JPEG_DIR)\libjpeg.lib"
361 !endif
362 !if $(HAVE_XFACE)
363 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_XFACE
364 MSW_INCLUDES=$(MSW_INCLUDES) -I"$(COMPFACE_DIR)"
365 MSW_LIBS=$(MSW_LIBS) "$(COMPFACE_DIR)\libcompface.lib"
347 !endif 366 !endif
348 !if $(HAVE_TOOLBARS) 367 !if $(HAVE_TOOLBARS)
349 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_TOOLBARS 368 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_TOOLBARS
350 MSW_TOOLBAR_SRC=$(XEMACS)\src\toolbar.c $(XEMACS)\src\toolbar-msw.c 369 MSW_TOOLBAR_SRC=$(XEMACS)\src\toolbar.c $(XEMACS)\src\toolbar-msw.c
351 MSW_TOOLBAR_OBJ=$(OUTDIR)\toolbar.obj $(OUTDIR)\toolbar-msw.obj 370 MSW_TOOLBAR_OBJ=$(OUTDIR)\toolbar.obj $(OUTDIR)\toolbar-msw.obj