Changeset 4235

Show
Ignore:
Timestamp:
04/29/08 18:10:06 (3 weeks ago)
Author:
miyoshi
Message:

* w32select.c: Include mw32term.h for Meadow.

* makefile.mw32-in: Update dependencies.
(WIN32OBJ): Add w32select.o instead of mw32clpbd.o.

* w32.c (globals_of_w32): mw32_mule_clipboard_format is removed.

* emacs.c (main): Call syms_of_w32select() instead of
syms_of_mw32clipboard().
(main): Call globals_of_w32select().
(main): Don't call init_mw32clpbd().

* mw32clpbd.c: Removed.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/ChangeLog.Meadow

    r4233 r4235  
     12008-04-29  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * w32select.c: Include mw32term.h for Meadow. 
     4 
     5        * makefile.mw32-in: Update dependencies. 
     6        (WIN32OBJ): Add w32select.o instead of mw32clpbd.o. 
     7 
     8        * w32.c (globals_of_w32): mw32_mule_clipboard_format is removed. 
     9 
     10        * emacs.c (main): Call syms_of_w32select() instead of 
     11        syms_of_mw32clipboard(). 
     12        (main): Call globals_of_w32select(). 
     13        (main): Don't call init_mw32clpbd(). 
     14 
     15        * mw32clpbd.c: Removed. 
     16 
    1172008-04-13  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    218 
  • trunk/src/emacs.c

    r4220 r4235  
    16321632      syms_of_mw32font (); 
    16331633      syms_of_mw32ime (); 
    1634       syms_of_mw32clipboard (); 
     1634      syms_of_w32select (); 
    16351635      syms_of_mw32menu (); 
    16361636      syms_of_mw32reg (); 
     
    16801680#endif /* not MEADOW */ 
    16811681      globals_of_w32menu (); 
    1682 #ifndef MEADOW 
    16831682      globals_of_w32select (); 
    1684 #endif /* not MEADOW */ 
    16851683#endif  /* HAVE_NTGUI */ 
    16861684    } 
     
    17051703  init_mw32reg (); 
    17061704  init_mw32mci (); 
    1707   init_mw32clpbd (); 
    17081705#endif 
    17091706  init_fns (); 
  • trunk/src/makefile.mw32-in

    r4230 r4235  
    128128WIN32OBJ = $(BLD)/mw32term.$(O)         \ 
    129129           $(BLD)/mw32fns.$(O)          \ 
    130            $(BLD)/mw32clpbd.$(O)      \ 
     130           $(BLD)/w32select.$(O)      \ 
    131131           $(BLD)/mw32menu.$(O)         \ 
    132132           $(BLD)/mw32font.$(O)         \ 
     
    362362    $(SRC)/lisp.h \ 
    363363    $(SRC)/process.h \ 
     364    $(EMACS_ROOT)/nt/inc/unistd.h \ 
    364365    $(SRC)/intervals.h \ 
    365366    $(SRC)/dispextern.h \ 
     
    371372    $(SRC)/window.h \ 
    372373    $(SRC)/keyboard.h \ 
    373     $(SRC)/frame.h \ 
    374     $(SRC)/blockinput.h \ 
    375     $(SRC)/atimer.h \ 
    376     $(SRC)/systime.h \ 
    377     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
     374    $(SRC)/systime.h \ 
     375    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
     376    $(SRC)/frame.h \ 
     377    $(SRC)/blockinput.h \ 
     378    $(SRC)/atimer.h \ 
    378379    $(SRC)/charset.h \ 
    379380    $(SRC)/syssignal.h \ 
    380     $(EMACS_ROOT)/nt/inc/unistd.h \ 
    381     $(EMACS_ROOT)/nt/inc/sys/file.h \ 
    382     $(SRC)/coding.h \ 
    383     $(SRC)/ccl.h \ 
    384     $(EMACS_ROOT)/nt/inc/sys/param.h 
     381    $(SRC)/w32.h 
    385382 
    386383$(BLD)/alloca.$(O): \ 
     
    436433    $(SRC)/commands.h \ 
    437434    $(SRC)/keyboard.h \ 
     435    $(SRC)/systime.h \ 
     436    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    438437    $(SRC)/window.h \ 
    439438    $(SRC)/dispextern.h \ 
     
    498497    $(SRC)/mw32font.h \ 
    499498    $(SRC)/keyboard.h \ 
     499    $(SRC)/systime.h \ 
     500    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    500501    $(SRC)/keymap.h 
    501502 
     
    509510    $(SRC)/buffer.h \ 
    510511    $(SRC)/keyboard.h \ 
     512    $(SRC)/systime.h \ 
     513    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    511514    $(SRC)/frame.h \ 
    512515    $(SRC)/syssignal.h 
     
    518521    $(EMACS_ROOT)/nt/inc/pwd.h \ 
    519522    $(EMACS_ROOT)/nt/inc/grp.h \ 
    520     $(SRC)/systime.h \ 
    521     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    522523    $(EMACS_ROOT)/nt/inc/unistd.h \ 
    523524    $(EMACS_ROOT)/nt/inc/sys/dir.h \ 
    524525    $(EMACS_ROOT)/nt/inc/sys/..\..\..\src\ndir.h \ 
    525526    $(SRC)/lisp.h \ 
    526     $(SRC)/buffer.h \ 
    527     $(SRC)/commands.h \ 
    528     $(SRC)/charset.h \ 
    529     $(SRC)/coding.h \ 
    530     $(SRC)/ccl.h \ 
    531     $(SRC)/regex.h 
     527    $(SRC)/systime.h \ 
     528    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
     529    $(SRC)/buffer.h \ 
     530    $(SRC)/commands.h \ 
     531    $(SRC)/charset.h \ 
     532    $(SRC)/coding.h \ 
     533    $(SRC)/ccl.h \ 
     534    $(SRC)/regex.h \ 
     535    $(SRC)/blockinput.h \ 
     536    $(SRC)/atimer.h 
    532537 
    533538$(BLD)/dispnew.$(O): \ 
     
    547552    $(SRC)/charset.h \ 
    548553    $(SRC)/keyboard.h \ 
     554    $(SRC)/systime.h \ 
     555    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    549556    $(SRC)/frame.h \ 
    550557    $(SRC)/window.h \ 
     
    556563    $(SRC)/blockinput.h \ 
    557564    $(SRC)/atimer.h \ 
    558     $(SRC)/systime.h \ 
    559     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    560565    $(SRC)/process.h \ 
    561566    $(SRC)/syssignal.h \ 
     
    572577    $(SRC)/buffer.h \ 
    573578    $(SRC)/keyboard.h \ 
     579    $(SRC)/systime.h \ 
     580    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    574581    $(SRC)/charset.h \ 
    575582    $(SRC)/keymap.h 
     
    589596    $(EMACS_ROOT)/nt/inc/pwd.h \ 
    590597    $(EMACS_ROOT)/nt/inc/unistd.h \ 
    591     $(SRC)/systime.h \ 
    592     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    593     $(SRC)/lisp.h \ 
    594     $(SRC)/intervals.h \ 
    595     $(SRC)/dispextern.h \ 
    596     $(SRC)/w32gui.h \ 
    597     $(SRC)/mw32font.h \ 
    598     $(SRC)/composite.h \ 
    599     $(SRC)/buffer.h \ 
    600     $(SRC)/charset.h \ 
    601     $(SRC)/coding.h \ 
    602     $(SRC)/ccl.h \ 
    603     $(SRC)/frame.h \ 
    604     $(SRC)/window.h 
     598    $(SRC)/lisp.h \ 
     599    $(SRC)/systime.h \ 
     600    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
     601    $(SRC)/intervals.h \ 
     602    $(SRC)/dispextern.h \ 
     603    $(SRC)/w32gui.h \ 
     604    $(SRC)/mw32font.h \ 
     605    $(SRC)/composite.h \ 
     606    $(SRC)/buffer.h \ 
     607    $(SRC)/charset.h \ 
     608    $(SRC)/coding.h \ 
     609    $(SRC)/ccl.h \ 
     610    $(SRC)/frame.h \ 
     611    $(SRC)/window.h \ 
     612    $(SRC)/blockinput.h \ 
     613    $(SRC)/atimer.h 
    605614 
    606615$(BLD)/eval.$(O): \ 
     
    637646    $(SRC)/ccl.h \ 
    638647    $(SRC)/window.h \ 
     648    $(SRC)/blockinput.h \ 
     649    $(SRC)/atimer.h \ 
    639650    $(SRC)/systime.h \ 
    640651    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
     
    673684    $(SRC)/buffer.h \ 
    674685    $(SRC)/keyboard.h \ 
     686    $(SRC)/systime.h \ 
     687    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    675688    $(SRC)/keymap.h \ 
    676689    $(SRC)/intervals.h \ 
     
    683696    $(SRC)/blockinput.h \ 
    684697    $(SRC)/atimer.h \ 
    685     $(SRC)/systime.h \ 
    686     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
     698    $(EMACS_ROOT)/nt/inc/langinfo.h \ 
     699    $(EMACS_ROOT)/nt/inc/nl_types.h \ 
    687700    $(SRC)/md5.h 
    688701 
     
    697710    $(SRC)/indent.h \ 
    698711    $(SRC)/keyboard.h \ 
     712    $(SRC)/systime.h \ 
     713    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    699714    $(SRC)/frame.h \ 
    700715    $(SRC)/window.h \ 
     
    738753    $(SRC)/macros.h \ 
    739754    $(SRC)/keyboard.h \ 
     755    $(SRC)/systime.h \ 
     756    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    740757    $(SRC)/frame.h \ 
    741758    $(SRC)/window.h \ 
     
    753770    $(SRC)/blockinput.h \ 
    754771    $(SRC)/atimer.h \ 
    755     $(SRC)/systime.h \ 
    756     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    757772    $(SRC)/mw32sync.h \ 
    758773    $(SRC)/mw32mci.h \ 
     
    775790    $(SRC)/charset.h \ 
    776791    $(SRC)/keyboard.h \ 
     792    $(SRC)/systime.h \ 
     793    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    777794    $(SRC)/termhooks.h \ 
    778795    $(SRC)/blockinput.h \ 
    779796    $(SRC)/atimer.h \ 
    780     $(SRC)/systime.h \ 
    781     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    782797    $(SRC)/puresize.h \ 
    783798    $(SRC)/intervals.h \ 
     
    786801    $(SRC)/mw32font.h \ 
    787802    $(SRC)/composite.h \ 
    788     $(SRC)/keymap.h 
     803    $(SRC)/keymap.h \ 
     804    $(SRC)/window.h 
    789805 
    790806$(BLD)/lread.$(O): \ 
     
    804820    $(SRC)/commands.h \ 
    805821    $(SRC)/keyboard.h \ 
     822    $(SRC)/systime.h \ 
     823    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    806824    $(SRC)/termhooks.h \ 
    807825    $(SRC)/coding.h \ 
    808826    $(SRC)/ccl.h \ 
     827    $(SRC)/blockinput.h \ 
     828    $(SRC)/atimer.h \ 
    809829    $(EMACS_ROOT)/nt/inc/unistd.h 
    810830 
     
    821841    $(SRC)/w32gui.h \ 
    822842    $(SRC)/mw32font.h \ 
    823     $(SRC)/keyboard.h 
     843    $(SRC)/keyboard.h \ 
     844    $(SRC)/systime.h \ 
     845    $(EMACS_ROOT)/nt/inc/sys/time.h 
    824846 
    825847$(BLD)/marker.$(O): \ 
     
    849871    $(SRC)/mw32font.h \ 
    850872    $(SRC)/keyboard.h \ 
     873    $(SRC)/systime.h \ 
     874    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    851875    $(SRC)/frame.h \ 
    852876    $(SRC)/window.h \ 
     
    865889    $(EMACS_ROOT)/nt/inc/pwd.h \ 
    866890    $(EMACS_ROOT)/nt/inc/grp.h \ 
     891    $(SRC)/charset.h \ 
     892    $(SRC)/coding.h \ 
     893    $(SRC)/ccl.h \ 
    867894    $(SRC)/mw32reg.h \ 
    868895    $(SRC)/mw32sync.h \ 
     
    871898    $(SRC)/w32.h \ 
    872899    $(SRC)/ndir.h \ 
     900    $(SRC)/w32heap.h \ 
    873901    $(SRC)/systime.h 
    874902 
     903$(BLD)/w32heap.$(O): \ 
     904    $(SRC)/config.h \ 
     905    $(SRC)/s/ms-w32.h \ 
     906    $(SRC)/m/intel386.h \ 
     907    $(SRC)/w32heap.h \ 
     908    $(SRC)/lisp.h 
     909 
    875910$(BLD)/w32inevt.$(O): \ 
    876911    $(SRC)/config.h \ 
     
    879914    $(SRC)/lisp.h \ 
    880915    $(SRC)/keyboard.h \ 
    881     $(SRC)/frame.h \ 
    882     $(SRC)/blockinput.h \ 
    883     $(SRC)/atimer.h \ 
    884     $(SRC)/systime.h \ 
    885     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
     916    $(SRC)/systime.h \ 
     917    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
     918    $(SRC)/frame.h \ 
     919    $(SRC)/blockinput.h \ 
     920    $(SRC)/atimer.h \ 
    886921    $(SRC)/termhooks.h 
    887922 
     
    891926    $(SRC)/s/ms-w32.h \ 
    892927    $(SRC)/m/intel386.h \ 
     928    $(EMACS_ROOT)/nt/inc/nl_types.h \ 
     929    $(EMACS_ROOT)/nt/inc/langinfo.h \ 
    893930    $(SRC)/lisp.h \ 
    894931    $(SRC)/w32.h \ 
     932    $(SRC)/charset.h \ 
     933    $(SRC)/coding.h \ 
     934    $(SRC)/ccl.h \ 
     935    $(SRC)/w32heap.h \ 
    895936    $(SRC)/systime.h \ 
    896937    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    897938    $(SRC)/syswait.h \ 
    898939    $(SRC)/process.h \ 
    899     $(SRC)/syssignal.h \ 
    900     $(SRC)/w32term.h \ 
    901     $(SRC)/w32gui.h \ 
    902     $(SRC)/mw32font.h 
     940    $(EMACS_ROOT)/nt/inc/unistd.h \ 
     941    $(SRC)/syssignal.h 
    903942 
    904943$(BLD)/w32console.$(O): \ 
     
    926965    $(SRC)/charset.h \ 
    927966    $(SRC)/keyboard.h \ 
     967    $(SRC)/systime.h \ 
     968    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    928969    $(SRC)/frame.h \ 
    929970    $(SRC)/window.h \ 
     
    932973    $(SRC)/mw32font.h \ 
    933974    $(SRC)/process.h \ 
     975    $(EMACS_ROOT)/nt/inc/unistd.h \ 
    934976    $(SRC)/termchar.h \ 
    935977    $(SRC)/intervals.h \ 
    936     $(SRC)/composite.h 
     978    $(SRC)/composite.h \ 
     979    $(SRC)/blockinput.h \ 
     980    $(SRC)/atimer.h 
    937981 
    938982$(BLD)/process.$(O): \ 
     
    947991    $(EMACS_ROOT)/nt/inc/netinet/in.h \ 
    948992    $(EMACS_ROOT)/nt/inc/arpa/inet.h \ 
     993    $(SRC)/lisp.h \ 
    949994    $(SRC)/systime.h \ 
    950995    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    951996    $(SRC)/systty.h \ 
    952     $(SRC)/lisp.h \ 
    953997    $(SRC)/window.h \ 
    954998    $(SRC)/dispextern.h \ 
     
    9931037    $(SRC)/mw32font.h \ 
    9941038    $(SRC)/keyboard.h \ 
     1039    $(SRC)/systime.h \ 
     1040    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    9951041    $(SRC)/frame.h \ 
    9961042    $(SRC)/window.h 
     
    10771123    $(SRC)/ccl.h \ 
    10781124    $(SRC)/keyboard.h \ 
     1125    $(SRC)/systime.h \ 
     1126    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    10791127    $(SRC)/frame.h \ 
    10801128    $(SRC)/disptab.h \ 
     
    10851133    $(SRC)/window.h \ 
    10861134    $(SRC)/keymap.h \ 
     1135    $(SRC)/blockinput.h \ 
     1136    $(SRC)/atimer.h \ 
    10871137    $(SRC)/cm.h 
    10881138 
     
    11071157    $(SRC)/lisp.h \ 
    11081158    $(SRC)/buffer.h \ 
    1109     $(SRC)/commands.h 
     1159    $(SRC)/commands.h \ 
     1160    $(SRC)/window.h \ 
     1161    $(SRC)/dispextern.h \ 
     1162    $(SRC)/w32gui.h \ 
     1163    $(SRC)/mw32font.h 
     1164 
     1165$(BLD)/unexw32.$(O): \ 
     1166    $(SRC)/config.h \ 
     1167    $(SRC)/s/ms-w32.h \ 
     1168    $(SRC)/m/intel386.h \ 
     1169    $(SRC)/w32heap.h 
    11101170 
    11111171$(BLD)/window.$(O): \ 
     
    11161176    $(SRC)/buffer.h \ 
    11171177    $(SRC)/keyboard.h \ 
     1178    $(SRC)/systime.h \ 
     1179    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    11181180    $(SRC)/keymap.h \ 
    11191181    $(SRC)/frame.h \ 
     
    11281190    $(SRC)/blockinput.h \ 
    11291191    $(SRC)/atimer.h \ 
    1130     $(SRC)/systime.h \ 
    1131     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    11321192    $(SRC)/intervals.h \ 
    11331193    $(SRC)/composite.h \ 
     
    11411201    $(SRC)/lisp.h \ 
    11421202    $(SRC)/keyboard.h \ 
     1203    $(SRC)/systime.h \ 
     1204    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    11431205    $(SRC)/frame.h \ 
    11441206    $(SRC)/window.h \ 
     
    11601222    $(SRC)/ccl.h \ 
    11611223    $(SRC)/process.h \ 
     1224    $(EMACS_ROOT)/nt/inc/unistd.h \ 
    11621225    $(SRC)/region-cache.h \ 
    11631226    $(SRC)/fontset.h \ 
    11641227    $(SRC)/blockinput.h \ 
    11651228    $(SRC)/atimer.h \ 
    1166     $(SRC)/systime.h \ 
    1167     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    11681229    $(SRC)/mw32term.h \ 
    11691230    $(SRC)/mw32sync.h 
     
    11981259    $(SRC)/commands.h \ 
    11991260    $(SRC)/keyboard.h \ 
     1261    $(SRC)/systime.h \ 
     1262    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    12001263    $(SRC)/fontset.h \ 
    12011264    $(SRC)/blockinput.h \ 
    12021265    $(SRC)/atimer.h \ 
    1203     $(SRC)/systime.h \ 
    1204     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    12051266    $(SRC)/termhooks.h \ 
    12061267    $(SRC)/dispextern.h \ 
     
    12271288    $(SRC)/puresize.h \ 
    12281289    $(SRC)/keyboard.h \ 
     1290    $(SRC)/systime.h \ 
     1291    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    12291292    $(SRC)/keymap.h 
    12301293 
     
    13441407    $(SRC)/ccl.h \ 
    13451408    $(SRC)/keyboard.h \ 
     1409    $(SRC)/systime.h \ 
     1410    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    13461411    $(SRC)/frame.h \ 
    13471412    $(SRC)/dispextern.h \ 
     
    13841449    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    13851450    $(SRC)/epaths.h \ 
     1451    $(SRC)/charset.h \ 
     1452    $(SRC)/coding.h \ 
     1453    $(SRC)/ccl.h \ 
    13861454    $(SRC)/mw32term.h \ 
    13871455    $(SRC)/mw32wand.h 
     
    14331501    $(SRC)/composite.h \ 
    14341502    $(SRC)/process.h \ 
     1503    $(EMACS_ROOT)/nt/inc/unistd.h \ 
    14351504    $(SRC)/keymap.h 
    14361505 
     
    14511520    $(SRC)/composite.h \ 
    14521521    $(SRC)/keyboard.h \ 
    1453     $(SRC)/blockinput.h \ 
    1454     $(SRC)/atimer.h \ 
    1455     $(SRC)/systime.h \ 
    1456     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
     1522    $(SRC)/systime.h \ 
     1523    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
     1524    $(SRC)/blockinput.h \ 
     1525    $(SRC)/atimer.h \ 
    14571526    $(SRC)/mw32sync.h \ 
    14581527    $(SRC)/epaths.h \ 
     
    14641533    $(SRC)/mw32rgb.h 
    14651534 
    1466 $(BLD)/mw32clpbd.$(O): \ 
    1467     $(SRC)/config.h \ 
    1468     $(SRC)/s/ms-w32.h \ 
    1469     $(SRC)/m/intel386.h \ 
    1470     $(SRC)/lisp.h \ 
    1471     $(SRC)/charset.h \ 
    1472     $(SRC)/coding.h \ 
    1473     $(SRC)/ccl.h \ 
    1474     $(SRC)/buffer.h \ 
    1475     $(SRC)/blockinput.h \ 
    1476     $(SRC)/atimer.h \ 
    1477     $(SRC)/systime.h \ 
    1478     $(EMACS_ROOT)/nt/inc/sys/time.h 
     1535$(BLD)/w32select.$(O): \ 
     1536    $(SRC)/config.h \ 
     1537    $(SRC)/s/ms-w32.h \ 
     1538    $(SRC)/m/intel386.h \ 
     1539    $(SRC)/lisp.h \ 
     1540    $(SRC)/mw32term.h \ 
     1541    $(SRC)/w32gui.h \ 
     1542    $(SRC)/mw32font.h \ 
     1543    $(SRC)/frame.h \ 
     1544    $(SRC)/w32heap.h \ 
     1545    $(SRC)/blockinput.h \ 
     1546    $(SRC)/atimer.h \ 
     1547    $(SRC)/systime.h \ 
     1548    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
     1549    $(SRC)/keyboard.h \ 
     1550    $(SRC)/charset.h \ 
     1551    $(SRC)/coding.h \ 
     1552    $(SRC)/ccl.h \ 
     1553    $(SRC)/composite.h 
    14791554 
    14801555$(BLD)/mw32menu.$(O): \ 
     
    14851560    $(SRC)/termhooks.h \ 
    14861561    $(SRC)/keyboard.h \ 
     1562    $(SRC)/systime.h \ 
     1563    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    14871564    $(SRC)/keymap.h \ 
    14881565    $(SRC)/frame.h \ 
     
    14931570    $(SRC)/blockinput.h \ 
    14941571    $(SRC)/atimer.h \ 
    1495     $(SRC)/systime.h \ 
    1496     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    14971572    $(SRC)/buffer.h \ 
    14981573    $(SRC)/charset.h \ 
     
    15391614    $(SRC)/mw32dl.h 
    15401615 
    1541 $(BLD)/mw32mem.$(O): \ 
    1542     $(SRC)/config.h \ 
    1543     $(SRC)/s/ms-w32.h \ 
    1544     $(SRC)/m/intel386.h \ 
    1545     $(SRC)/lisp.h \ 
    1546     $(SRC)/w32.h 
    1547  
    15481616$(BLD)/mw32mci.$(O): \ 
    15491617    $(SRC)/config.h \ 
     
    15671635    $(SRC)/charset.h \ 
    15681636    $(SRC)/keyboard.h \ 
     1637    $(SRC)/systime.h \ 
     1638    $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    15691639    $(SRC)/frame.h \ 
    15701640    $(SRC)/fontset.h \ 
     
    15761646    $(SRC)/blockinput.h \ 
    15771647    $(SRC)/atimer.h \ 
    1578     $(SRC)/systime.h \ 
    1579     $(EMACS_ROOT)/nt/inc/sys/time.h \ 
    15801648    $(SRC)/window.h \ 
    15811649    $(SRC)/intervals.h \ 
     
    15941662    $(SRC)/m/intel386.h \ 
    15951663    $(SRC)/lisp.h \ 
    1596     $(SRC)/buffer.h \ 
    1597     $(SRC)/frame.h \ 
    1598     $(SRC)/window.h \ 
    1599     $(SRC)/dispextern.h \ 
    1600     $(SRC)/w32gui.h \ 
    1601     $(SRC)/mw32font.h \ 
     1664    $(SRC)/intervals.h \ 
     1665    $(SRC)/dispextern.h \ 
     1666    $(SRC)/w32gui.h \ 
     1667    $(SRC)/mw32font.h \ 
     1668    $(SRC)/composite.h \ 
     1669    $(SRC)/buffer.h \ 
     1670    $(SRC)/frame.h \ 
     1671    $(SRC)/window.h \ 
    16021672    $(SRC)/charset.h \ 
    16031673    $(SRC)/coding.h \ 
  • trunk/src/w32.c

    r4220 r4235  
    49114911  SetConsoleCtrlHandler(shutdown_handler, TRUE); 
    49124912 
    4913 #if 0 
    4914   /* To encode and decode clipboard string properly, I don't make use 
    4915      of w32_mule_clipboard_format. */ 
    4916   mw32_mule_clipboard_format = RegisterClipboardFormat (MULE_CLIPBOARD_FORMAT); 
    4917 #else 
    4918   mw32_mule_clipboard_format = 0; 
    4919 #endif 
    4920  
    49214913#ifdef MEADOW 
    49224914  InitializeCriticalSection (&critsec_message); 
  • trunk/src/w32select.c

    r4220 r4235  
    7777#include <config.h> 
    7878#include "lisp.h" 
     79#ifdef MEADOW 
     80#include "mw32term.h"   /* for all of the w32 includes */ 
     81#else 
    7982#include "w32term.h"    /* for all of the w32 includes */ 
     83#endif 
    8084#include "w32heap.h"    /* os_subtype */ 
    8185#include "blockinput.h"