Mercurial > hg > xemacs-beta
comparison src/Makefile.in.in @ 4872:9873ea104ef6
Fix Cygwin module builds when --with-msw=no
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-01-15 Ben Wing <ben@xemacs.org>
* Makefile.in.in:
Build xemacs-export.o whenever we're on any Windows OS (WIN32_ANY)
instead of only when we build support for the GUI portion of
MS-Windows (HAVE_MS_WINDOWS).
Cosmetic: Use WIN32_ANY in place of equivalent
(WIN32_NATIVE or CYGWIN).
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Fri, 15 Jan 2010 04:49:35 -0600 |
parents | bde90bc762f2 |
children | 03ab78e48ef6 349f01075eb7 |
comparison
equal
deleted
inserted
replaced
4871:d8d92ad084b8 | 4872:9873ea104ef6 |
---|---|
228 sheap_objs=sheap.o | 228 sheap_objs=sheap.o |
229 #endif | 229 #endif |
230 | 230 |
231 #ifdef HAVE_SHLIB | 231 #ifdef HAVE_SHLIB |
232 shlib_objs=sysdll.o | 232 shlib_objs=sysdll.o |
233 # ifdef HAVE_MS_WINDOWS | 233 # ifdef WIN32_ANY |
234 export_lib=xemacs-export.o | 234 export_lib=xemacs-export.o |
235 xemacs-export.o: xemacs.def | 235 xemacs-export.o: xemacs.def |
236 dlltool -D xemacs-${version}.exe -d $< -l xemacs-import.a -e $@ | 236 dlltool -D xemacs-${version}.exe -d $< -l xemacs-import.a -e $@ |
237 # endif | 237 # endif |
238 #endif | 238 #endif |
243 | 243 |
244 #ifdef TOOLTALK | 244 #ifdef TOOLTALK |
245 tooltalk_objs=tooltalk.o | 245 tooltalk_objs=tooltalk.o |
246 #endif | 246 #endif |
247 | 247 |
248 #if defined (WIN32_NATIVE) || defined (CYGWIN) | 248 #ifdef WIN32_ANY |
249 win32_objs=win32.o intl-win32.o intl-auto-encap-win32.o intl-encap-win32.o \ | 249 win32_objs=win32.o intl-win32.o intl-auto-encap-win32.o intl-encap-win32.o \ |
250 xemacs_res.o | 250 xemacs_res.o |
251 #endif | 251 #endif |
252 | 252 |
253 #ifdef NEW_GC | 253 #ifdef NEW_GC |