Changeset 4068
- Timestamp:
- 05/03/06 13:21:13 (3 years ago)
- Files:
-
- trunk/info (modified) (1 prop)
- trunk/nt/ChangeLog.Meadow (modified) (1 diff)
- trunk/nt/configure.meadow.bat (modified) (1 diff)
- trunk/src/mw32term.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/info
- Property svn:ignore changed from
ada-mode
autotype
calc
calc-1
calc-2
calc-3
calc-4
calc-5
calc-6
ccmode
cl
dired-x
ebrowse
ediff
efaq
eintr
eintr-1
eintr-2
eintr-3
elisp
elisp-1
elisp-10
elisp-11
elisp-2
elisp-3
elisp-4
elisp-5
elisp-6
elisp-7
elisp-8
elisp-9
emacs
emacs-1
emacs-2
emacs-3
emacs-4
emacs-5
emacs-6
emacs-7
emacs-8
emacs-mime
emacs-xtra
eshell
eudc
flymake
forms
gnus
gnus-1
gnus-2
gnus-3
gnus-4
gnus-5
idlwave
info
message
mh-e
org
pcl-cvs
pgg
rcirc
reftex
sc
ses
sieve
smtpmail
speedbar
tramp
url
vip
viper
widget
woman
newsticker
to
ada-mode
autotype
calc
calc-1
calc-2
calc-3
calc-4
calc-5
calc-6
ccmode
cl
dired-x
ebrowse
ediff
efaq
eintr
eintr-1
eintr-2
eintr-3
elisp
elisp-1
elisp-10
elisp-11
elisp-2
elisp-3
elisp-4
elisp-5
elisp-6
elisp-7
elisp-8
elisp-9
emacs
emacs-1
emacs-2
emacs-3
emacs-4
emacs-5
emacs-6
emacs-7
emacs-8
emacs-mime
emacs-xtra
eshell
eudc
flymake
forms
gnus
gnus-1
gnus-2
gnus-3
gnus-4
gnus-5
idlwave
info
message
mh-e
org
pcl-cvs
pgg
rcirc
reftex
sc
ses
sieve
smtpmail
speedbar
tramp
url
vip
viper
widget
woman
newsticker
erc
mh-e-2
mh-e-1
- Property svn:ignore changed from
trunk/nt/ChangeLog.Meadow
r4067 r4068 1 2006-05-03 MIYOSHI Masanori <miyoshi@meadowy.org> 2 3 * configure.meadow.bat: Check if the platform has 4 `RECONVERTSTRING'. 5 1 6 2006-05-02 MIYOSHI Masanori <miyoshi@meadowy.org> 2 7 trunk/nt/configure.meadow.bat
r3879 r4068 297 297 del config.settings 298 298 299 rem 300 rem check for capabilities of the platform 301 rem 302 303 echo.>>..\src\config.h 304 echo /* Start of settings from configure.bat. */>>..\src\config.h 305 echo.>>..\src\config.h 306 307 rem for gcc 308 set JUNK_SRC=junk.c 309 set CC_OPT=-DWINVER=0x0400 310 set JUNK_OBJ=junk.o 311 312 if %COMPILER%==gcc goto check_capability 313 rem for VC 314 set JUNK_OBJ=junk.obj 315 set CC_OPT=-nologo %CC_OPT% 316 317 :check_capability 318 319 rem 320 rem check for RECONVERTSTRING 321 rem 322 323 set TARGET=HAVE_RECONVERTSTRING 324 echo checking for RECONVERTSTRING 325 326 echo #include "windows.h" >junk.c 327 echo #include "imm.h" >>junk.c 328 echo main(){RECONVERTSTRING x;} >>junk.c 329 330 %COMPILER% %CC_OPT% -c %JUNK_SRC% >config.capability 2>&1 331 if exist %JUNK_OBJ% goto RECONVERTSTRING_yes 332 echo ...no 333 echo #undef %TARGET% >>..\src\config.h 334 goto RECONVERTSTRING_cnt 335 336 :RECONVERTSTRING_yes 337 echo ...yes 338 echo #define %TARGET% >>..\src\config.h 339 340 :RECONVERTSTRING_cnt 341 rm -f %JUNK_SRC% %JUNK_OBJ% 342 343 echo.>>..\src\config.h 344 echo /* End of settings from configure.bat. */>>..\src\config.h 345 346 rm config.capability 347 348 rem 349 rem end of checking for capabilities 350 rem 351 299 352 Rem Some people use WinZip which doesn't create empty directories! 300 353 if not exist ..\site-lisp\nul mkdir ..\site-lisp\ trunk/src/mw32term.h
r4065 r4068 31 31 #include <w32api.h> 32 32 #endif /* __MINGW32__ */ 33 #ifdef IME_CONTROL 34 #include <imm.h> 35 #endif 33 36 34 37 /* The class of this application. */ … … 858 861 #endif 859 862 860 #if (!defined (_IMM_) || (WINVER < 0x040A)) && (!defined(__MINGW32__) || !defined(_IMM_H) || __W32API_MAJOR_VERSION < 3 || __W32API_MAJOR_VERSION == 3 && __W32API_MINOR_VERSION < 7)863 #ifndef HAVE_RECONVERTSTRING 861 864 typedef struct tagRECONVERTSTRING { 862 865 DWORD dwSize;
