Colin Finck [Sun, 19 Jun 2011 10:13:59 +0000 (10:13 +0000)]
[USBDRIVER]
No objections on the mailing list, so I'm excluding "usbdriver" from build.
It should still stay as a reference in the tree till the new USB drivers are finalized and merged back to Trunk.
svn path=/trunk/; revision=52361
Timo Kreuzer [Sun, 19 Jun 2011 10:03:45 +0000 (10:03 +0000)]
[FREELDR]
- Fix MSVC linkerflags for setupldr
- Move stack from 78000 to 98000 to fix conflicts with freeldr code, which is larger when built with MSVC
- MSVC compiled setupldr works now!
svn path=/trunk/; revision=52360
Cameron Gutman [Sun, 19 Jun 2011 04:25:33 +0000 (04:25 +0000)]
[NTOSKRNL]
- Send IRP_MN_QUERY_POWER and IRP_MN_SET_POWER to all enumerated devices prior to a system power state change
- We don't mind failure right now since our drivers suck
svn path=/trunk/; revision=52358
Cameron Gutman [Sun, 19 Jun 2011 04:21:41 +0000 (04:21 +0000)]
[PCIIDEX]
- Don't ASSERT if we get an IRP that we don't understand
svn path=/trunk/; revision=52357
Cameron Gutman [Sun, 19 Jun 2011 01:42:05 +0000 (01:42 +0000)]
[NTOSKRNL]
- Change the resource type if HalTranslateBusAddress indicates that we got the address type wrong
svn path=/trunk/; revision=52356
Cameron Gutman [Sun, 19 Jun 2011 01:40:10 +0000 (01:40 +0000)]
[VIDEOPRT]
- Initialize PnP IRPs with the correct status
svn path=/trunk/; revision=52355
Amine Khaldi [Sat, 18 Jun 2011 23:04:39 +0000 (23:04 +0000)]
[XMLLITE_WINETEST]
* Fix msvc build.
svn path=/trunk/; revision=52354
Amine Khaldi [Sat, 18 Jun 2011 22:51:34 +0000 (22:51 +0000)]
[GLU32]
* Fix linking in msvc build.
* Remove /OPT:NOWIN98 linker flag.
svn path=/trunk/; revision=52353
Amine Khaldi [Sat, 18 Jun 2011 22:02:28 +0000 (22:02 +0000)]
[CMAKE]
* Remove duplicate _DLL and __USE_CRTIMP definitions.
* Link some modules to uuid/oldnames in msvc build.
svn path=/trunk/; revision=52352
Amine Khaldi [Sat, 18 Jun 2011 21:44:52 +0000 (21:44 +0000)]
[WINEMP3.ACM]
* Fix msvc build.
svn path=/trunk/; revision=52351
Amine Khaldi [Sat, 18 Jun 2011 21:39:27 +0000 (21:39 +0000)]
[CMAKE]
* Temporarily add liboldnames.a, I mean, oldnames.lib, to the importlibs folder, until we get one for msvc.
* Link crtdll to oldnames in msvc build.
svn path=/trunk/; revision=52350
Amine Khaldi [Sat, 18 Jun 2011 20:47:44 +0000 (20:47 +0000)]
[CMAKE]
* Add missing dependency.
* Properly set the compiler flag.
svn path=/trunk/; revision=52349
Timo Kreuzer [Sat, 18 Jun 2011 19:51:26 +0000 (19:51 +0000)]
[FREELDR]
More syntax fixes for ML
svn path=/trunk/; revision=52348
Timo Kreuzer [Sat, 18 Jun 2011 19:41:01 +0000 (19:41 +0000)]
[FREELDR]
Fix syntax for ML
svn path=/trunk/; revision=52347
Timo Kreuzer [Sat, 18 Jun 2011 17:19:28 +0000 (17:19 +0000)]
[FREELDR]
- Change base addresses to 0xF800 (realmode code) and 0x10000 (PE file)
- use FREELDR_BASE constant in bootsectors
- Use es segment to address PE file from realmode
svn path=/trunk/; revision=52346
Timo Kreuzer [Sat, 18 Jun 2011 15:27:41 +0000 (15:27 +0000)]
[FREELDR]
Fix build with MSVC
svn path=/trunk/; revision=52345
Matthias Kupfer [Sat, 18 Jun 2011 15:04:15 +0000 (15:04 +0000)]
add missing file for revision 52336
svn path=/trunk/; revision=52344
Rafal Harabien [Sat, 18 Jun 2011 14:55:03 +0000 (14:55 +0000)]
[WIN32K]
- Remove commented out lines added in r52332 - clip children should not be taken into account here
[SHELL32]
- Use COPYRIGHT_YEAR definition instead of current year
svn path=/trunk/; revision=52343
Jérôme Gardou [Sat, 18 Jun 2011 14:50:59 +0000 (14:50 +0000)]
[NTOSKRNL]
KeGetPreviousMode returns KPROCESSORMODE, which is CCHAR and not UCHAR
svn path=/trunk/; revision=52342
Timo Kreuzer [Sat, 18 Jun 2011 14:50:24 +0000 (14:50 +0000)]
[ASM]
Use CR, LF and NUL in .ascii macro instead of using .asciz or "\r" "\n", since the latter is not portable
svn path=/trunk/; revision=52341
Jérôme Gardou [Sat, 18 Jun 2011 14:47:51 +0000 (14:47 +0000)]
[RTL]
- do not use RtlpCoalesceFreeBlocks to reinsert a block resulting from a split.
This bad idea was mine, introduced in r51757
svn path=/trunk/; revision=52340
Jérôme Gardou [Sat, 18 Jun 2011 14:45:08 +0000 (14:45 +0000)]
[NTOSKRNL]
- don't rely on a boolean being 1 or 0, it's a bad idea (tm)
svn path=/trunk/; revision=52339
Timo Kreuzer [Sat, 18 Jun 2011 14:37:54 +0000 (14:37 +0000)]
[FREELDR]
Cleanup the CMakeLists.txt file. Create one shared library containing most files and only compile a few files for both freeldr and setupldr, which reduces build time.
There is only one file, that takes different compile time definitions, but since LD is stupid and cannot bidirectionally link between seperate libraries, we have to add 3 more files to each build.
svn path=/trunk/; revision=52338
Jérôme Gardou [Sat, 18 Jun 2011 14:29:32 +0000 (14:29 +0000)]
[SHELL32]
- do not include headers that are already in precomp.h
This time with necessary changes
svn path=/trunk/; revision=52337
Matthias Kupfer [Sat, 18 Jun 2011 14:23:43 +0000 (14:23 +0000)]
patch by Igor Paliychuk <mansonigor at gmail dot com>:
- [TRANSLATIONS] convert UKRAINIAN and RUSSIAN localization strings to UTF-8.
- convert files in base, boot and subsystems folders(fontview and logon skipped)
- add Ukrainian localization for subst
- fix filename for Ukrainian resource of dxdiag
svn path=/trunk/; revision=52336
Jérôme Gardou [Sat, 18 Jun 2011 14:21:55 +0000 (14:21 +0000)]
wrong change, sorry
svn path=/trunk/; revision=52335
Jérôme Gardou [Sat, 18 Jun 2011 14:20:48 +0000 (14:20 +0000)]
[SHELL32]
- do not include headers that are already in precomp.h
svn path=/trunk/; revision=52334
Rafal Harabien [Sat, 18 Jun 2011 12:45:20 +0000 (12:45 +0000)]
[SHELL32]
- Update years in ReactOS about box
svn path=/trunk/; revision=52333
Rafal Harabien [Sat, 18 Jun 2011 12:41:29 +0000 (12:41 +0000)]
[WIN32K]
- Don't clip siblings in co_WinPosSetWindowPos when window has no WS_CLIPSIBLINGS style. Fixes ReactOS about box.
- Commented out line with WS_CLIPCHILDREN support needs more work
- Simplify co_WinPosSetWindowPos a bit
svn path=/trunk/; revision=52332
Timo Kreuzer [Sat, 18 Jun 2011 12:24:13 +0000 (12:24 +0000)]
[CRT]
- Fix a typo
[DDK/XDK]
Fix declaration of KDEFERRED_ROUTINE
Patch by Thomas Faber
svn path=/trunk/; revision=52331
Timo Kreuzer [Sat, 18 Jun 2011 10:46:06 +0000 (10:46 +0000)]
[FREELDR]
- Convert Boot*LinuxKernel to new realmode call mechanism
- Remove switch to realmode when multiboot fails
- remove switch_to_prot and switch_to_real completely
svn path=/trunk/; revision=52329
Timo Kreuzer [Sat, 18 Jun 2011 09:40:44 +0000 (09:40 +0000)]
[ASM]
- Use .586P for 16 bit code to allow privileged instructions, like lidt/lgdt. Found by ThFabba
- Add a 0 byte at the end to make ML fill the file up to the required length
svn path=/trunk/; revision=52327
Timo Kreuzer [Sat, 18 Jun 2011 08:05:35 +0000 (08:05 +0000)]
[FEELDR]
- Fix offset in manually encoded lgdt instruction
- improve syntax for ML
svn path=/trunk/; revision=52326
Timo Kreuzer [Fri, 17 Jun 2011 23:44:07 +0000 (23:44 +0000)]
[FREELDR]
- Instead of using the far jmp when switching to protected mode to go to the entry point, use a relative absolute jmp instruction, manually encoded
- Remove the END from fathelp.inc, that was terminating the code
- fix code for ML
svn path=/trunk/; revision=52325
Timo Kreuzer [Fri, 17 Jun 2011 22:26:11 +0000 (22:26 +0000)]
[FREELDR]
- convert mb.S to portable syntax
- remove obsolete reactos_memory_map
- Make use of CR / LF in isoboot.S
svn path=/trunk/; revision=52324
Timo Kreuzer [Fri, 17 Jun 2011 21:57:34 +0000 (21:57 +0000)]
[ASM]
- Make .asciz macro accept a varaiable number of arguments
- add CR and LF definitions, since MASM doesn't like "\r\n" codes
svn path=/trunk/; revision=52323
Timo Kreuzer [Fri, 17 Jun 2011 20:02:37 +0000 (20:02 +0000)]
[FREELDR]
Disable DriveMapMapDrivesInSection on MSVC builds, freeldr works basically without it
svn path=/trunk/; revision=52322
Timo Kreuzer [Fri, 17 Jun 2011 18:37:44 +0000 (18:37 +0000)]
[CRYPT32]
remove version.rc from the CMakeLists.txt, since its included in crypt32.rc already
svn path=/trunk/; revision=52321
Sir Richard [Fri, 17 Jun 2011 17:21:20 +0000 (17:21 +0000)]
Patch by Anton Yarotsky:
[SACDRV]: Implement DriverEntry point which connects to NTOS HeadLess Module (HDL). If HDL enabled through FreeLDR (/EMSPORT), connection should work.
[SACDRV]: Fix typo's.
svn path=/trunk/; revision=52320
Sir Richard [Fri, 17 Jun 2011 17:19:56 +0000 (17:19 +0000)]
Patch by Anton Yarotsky:
[NTOSKRNL]: Export HeadlessDispatch.
[NTOSKRNL]: Add more missing definitions to internal Headless header. Alex: Move to NDK?
[NTOSKRNL]: Headless header uses SYSTEM_TIMEOFDAY_INFORMATION, which is only in NDK. So hdl.h needs NDK.
svn path=/trunk/; revision=52319
Timo Kreuzer [Fri, 17 Jun 2011 15:51:00 +0000 (15:51 +0000)]
[ALLOCA.H]
Add an MSVC friendly proxy of alloca.h
Fixes MSVC build of dbghelp
svn path=/trunk/; revision=52318
Timo Kreuzer [Fri, 17 Jun 2011 15:35:06 +0000 (15:35 +0000)]
[LIBMPG123]
Fix definition of ALIGN() macro for MSVC. Fixes build.
svn path=/trunk/; revision=52317
Timo Kreuzer [Fri, 17 Jun 2011 14:13:30 +0000 (14:13 +0000)]
[PSEH2_TEST]
Don't compile pseh2 test with MSVC
svn path=/trunk/; revision=52316
Timo Kreuzer [Fri, 17 Jun 2011 14:08:41 +0000 (14:08 +0000)]
[test.h]
Fix a warning on MSVC
svn path=/trunk/; revision=52315
Timo Kreuzer [Fri, 17 Jun 2011 13:59:21 +0000 (13:59 +0000)]
[QUARTZ_WINETEST]
Link to uuid. Fixes msvc build
svn path=/trunk/; revision=52314
Timo Kreuzer [Fri, 17 Jun 2011 13:08:11 +0000 (13:08 +0000)]
[SHDOCVW_WINETEST]
Link to uuid. Fixes build with MSVC
svn path=/trunk/; revision=52312
Sir Richard [Fri, 17 Jun 2011 12:54:05 +0000 (12:54 +0000)]
Patch by Anton Yarotsky:
[SACDRV]: Implement memory manager.
[SACDRV]: Define debugging macros.
svn path=/trunk/; revision=52311
Timo Kreuzer [Fri, 17 Jun 2011 12:47:14 +0000 (12:47 +0000)]
[CRTDLL]
Comment out forwarded exports, where the target exports don't exist. Fixes MSVC build
svn path=/trunk/; revision=52310
Gabriel Ilardi [Fri, 17 Jun 2011 12:23:50 +0000 (12:23 +0000)]
Revert 51698, problem is in win32k, see bug 6305
svn path=/trunk/; revision=52309
Timo Kreuzer [Fri, 17 Jun 2011 12:04:25 +0000 (12:04 +0000)]
[FREELDR]
Convert drvmap.S to intel syntax
svn path=/trunk/; revision=52308
Amine Khaldi [Fri, 17 Jun 2011 11:56:40 +0000 (11:56 +0000)]
[CMAKE]
* Skip idndl in msvc build.
svn path=/trunk/; revision=52306
Timo Kreuzer [Fri, 17 Jun 2011 11:31:05 +0000 (11:31 +0000)]
[FREELDR]
Fix build with MSVC
svn path=/trunk/; revision=52305
Sir Richard [Fri, 17 Jun 2011 11:04:45 +0000 (11:04 +0000)]
Patch by Anton Yarotsky:
[SACDRV]: Implement SAC EMS stub driver. Thanks to Aleksey Bragin for MC file.
svn path=/trunk/; revision=52304
Amine Khaldi [Fri, 17 Jun 2011 10:59:01 +0000 (10:59 +0000)]
[RSAENH]
* Don't mark DllRegisterServer and DllUnregisterServer as private, since rsabase forwards to them. Fixes rsabase msvc build.
svn path=/trunk/; revision=52303
Amine Khaldi [Fri, 17 Jun 2011 10:53:45 +0000 (10:53 +0000)]
[SFC]
* Add sfc_os import lib target.
* Link sfc to sfc_os.
* Fixes msvc build.
svn path=/trunk/; revision=52302
Amine Khaldi [Fri, 17 Jun 2011 10:45:21 +0000 (10:45 +0000)]
[SMDLL]
* Fix entry point in cmake build. smdll now compile and links with msvc.
svn path=/trunk/; revision=52301
Amine Khaldi [Fri, 17 Jun 2011 10:31:15 +0000 (10:31 +0000)]
[SYSSETUP]
* Fix msvc build.
svn path=/trunk/; revision=52300
Amine Khaldi [Fri, 17 Jun 2011 10:20:13 +0000 (10:20 +0000)]
[UNICOWS]
* Link to msvcrt for proper crt imports.
* Fix msvc build.
svn path=/trunk/; revision=52299
Amine Khaldi [Fri, 17 Jun 2011 10:13:15 +0000 (10:13 +0000)]
[UPDSPAPI]
* Fix exports. Thank you, gcc toolchain, for letting this slip without any problems.
* Brought to you by the msvc toolchain.
svn path=/trunk/; revision=52298
Amine Khaldi [Fri, 17 Jun 2011 09:52:40 +0000 (09:52 +0000)]
[CMAKE]
* Skip dxdiag in msvc builds.
svn path=/trunk/; revision=52297
Amine Khaldi [Fri, 17 Jun 2011 09:43:02 +0000 (09:43 +0000)]
[OSKITTCP]
* Fix msvc build. The tcpip driver compiles and links with msvc as a result.
svn path=/trunk/; revision=52296
Amine Khaldi [Fri, 17 Jun 2011 09:17:10 +0000 (09:17 +0000)]
[ROSSYM_NEW]
* Update dummy.c to reflect the recent changes. The kernel compiles and links now with msvc.
svn path=/trunk/; revision=52295
Amine Khaldi [Fri, 17 Jun 2011 08:57:01 +0000 (08:57 +0000)]
[KERNEL32]
* Merge 49379 from the cmake branch. Fixes msvc build.
svn path=/trunk/; revision=52294
Timo Kreuzer [Fri, 17 Jun 2011 08:49:22 +0000 (08:49 +0000)]
[FREELDR]
Fix build with good old rbuild
svn path=/trunk/; revision=52293
Timo Kreuzer [Fri, 17 Jun 2011 08:36:49 +0000 (08:36 +0000)]
[FREELDR]
- Use new relmode code for PnpBios stuff
svn path=/trunk/; revision=52292
Timo Kreuzer [Fri, 17 Jun 2011 07:53:56 +0000 (07:53 +0000)]
[FREELDR]
convert i386pnp.S to intel sytax
svn path=/trunk/; revision=52291
Cameron Gutman [Fri, 17 Jun 2011 01:07:26 +0000 (01:07 +0000)]
[NTOSKRNL]
- Revert r52289 (I guess 0 is a valid minor function)
- Add a comment to prevent anyone else from making the same mistake I did
svn path=/trunk/; revision=52290
Cameron Gutman [Fri, 17 Jun 2011 00:57:55 +0000 (00:57 +0000)]
[NTOSKRNL]
- Fix a critical bug in IopDeviceFsIoControl which caused all FSCTL requests sent via NtFsControlFile and ZwFsControlFile to fail
svn path=/trunk/; revision=52289
Cameron Gutman [Fri, 17 Jun 2011 00:25:35 +0000 (00:25 +0000)]
[FILESYSTEMS]
- Handle IRP_MN_KERNEL_CALL for kernel-mode FS requests
svn path=/trunk/; revision=52288
Cameron Gutman [Fri, 17 Jun 2011 00:00:34 +0000 (00:00 +0000)]
[AUTOCHK]
- Only check a volume on boot if it was not cleanly unmounted
svn path=/trunk/; revision=52287
Cameron Gutman [Thu, 16 Jun 2011 23:38:35 +0000 (23:38 +0000)]
[VFATLIB]
- Set the BIOS drive number depending on the media type (independent of the actual number of drives) because it's only relevant for the boot drive
- See http://support.microsoft.com/kb/140418 for details
svn path=/trunk/; revision=52286
Cameron Gutman [Thu, 16 Jun 2011 22:16:31 +0000 (22:16 +0000)]
[VFATLIB]
- Write the boot sector signature to the new boot sector after formatting
- Volumes formatted after setup are now mountable
svn path=/trunk/; revision=52285
Timo Kreuzer [Thu, 16 Jun 2011 22:11:53 +0000 (22:11 +0000)]
[FREELDR]
- Use the new realmode code for PxeCallApi, SoftReboot and ChainLoadBiosBootSectorCode
- Remove o386cpi.S from build, the functions are not used
- Use constants for function ids
- Fix a warning
svn path=/trunk/; revision=52284
Timo Kreuzer [Thu, 16 Jun 2011 19:15:05 +0000 (19:15 +0000)]
[WINDOWSCODECS]
Fix build with gcc here as well
svn path=/trunk/; revision=52283
Timo Kreuzer [Thu, 16 Jun 2011 19:11:54 +0000 (19:11 +0000)]
[GDIPLUS]
fix build with gcc
svn path=/trunk/; revision=52282
Timo Kreuzer [Thu, 16 Jun 2011 18:14:09 +0000 (18:14 +0000)]
[WINDOWSCODECS]
Add wincodec_i.c to sources
now it links
svn path=/trunk/; revision=52281
Timo Kreuzer [Thu, 16 Jun 2011 18:07:17 +0000 (18:07 +0000)]
[WINDOWSCODECS]
Add typeof.h for MSVC. Now windowscodecs compiles, but doesn't link yet.
svn path=/trunk/; revision=52280
Olaf Siejka [Thu, 16 Jun 2011 17:55:54 +0000 (17:55 +0000)]
[EXPLORER]
- Fix copypasta bug
svn path=/trunk/; revision=52279
Cameron Gutman [Thu, 16 Jun 2011 14:32:49 +0000 (14:32 +0000)]
[VFATLIB]
- Determine the correct FAT type based on the size and offset of the partition if the current type is not a FAT type (another FS type or unformatted)
- Formatting a floppy, blank partition, or other non-FAT formatted partition from within ROS no longer fails
svn path=/trunk/; revision=52278
Cameron Gutman [Thu, 16 Jun 2011 13:31:12 +0000 (13:31 +0000)]
[NTOSKRNL]
- Use the IopParseDevice hack for floppies too (needed for format and chkdsk to work)
svn path=/trunk/; revision=52277
Cameron Gutman [Thu, 16 Jun 2011 13:09:20 +0000 (13:09 +0000)]
- Fix copy paste typo
svn path=/trunk/; revision=52276
Cameron Gutman [Thu, 16 Jun 2011 13:07:08 +0000 (13:07 +0000)]
[VFATLIB]
- Fix default cluster size for floppy disks
svn path=/trunk/; revision=52275
Giannis Adamopoulos [Thu, 16 Jun 2011 10:53:29 +0000 (10:53 +0000)]
[user32]
- Merge part of r50590
- Fix resource include path
svn path=/trunk/; revision=52274
Giannis Adamopoulos [Thu, 16 Jun 2011 10:28:54 +0000 (10:28 +0000)]
[user32]
- Fix double definition of GetClipCursor, ClipCursor, SetCursor and HiliteMenuItem
- Fixes compilation with msvc
svn path=/trunk/; revision=52273
Timo Kreuzer [Thu, 16 Jun 2011 09:37:52 +0000 (09:37 +0000)]
[FREELDR]
Fix build with MSVC
svn path=/trunk/; revision=52272
Timo Kreuzer [Thu, 16 Jun 2011 09:16:56 +0000 (09:16 +0000)]
[EXT2]
Don't add ext2 bootsector on MSVC builds
svn path=/trunk/; revision=52271
Timo Kreuzer [Thu, 16 Jun 2011 09:07:48 +0000 (09:07 +0000)]
[GDIPLUS]
Mark wincodecs_i.c as generated and add macro to generate the file
svn path=/trunk/; revision=52270
Amine Khaldi [Wed, 15 Jun 2011 23:38:10 +0000 (23:38 +0000)]
[NETEVENT]
* Set correct entry point.
* Fix msvc build.
svn path=/trunk/; revision=52269
Amine Khaldi [Wed, 15 Jun 2011 23:16:43 +0000 (23:16 +0000)]
[CMD]
* Fix msvc build.
svn path=/trunk/; revision=52268
Amine Khaldi [Wed, 15 Jun 2011 23:07:31 +0000 (23:07 +0000)]
[CMAKE]
* Merge 50715 from the cmake branch.
svn path=/trunk/; revision=52267
Amine Khaldi [Wed, 15 Jun 2011 22:48:49 +0000 (22:48 +0000)]
[RICHED20]
* Fix msvc build.
svn path=/trunk/; revision=52266
Timo Kreuzer [Wed, 15 Jun 2011 22:47:29 +0000 (22:47 +0000)]
[SMSS]
- really remove the link command
- fix an integer overflow
svn path=/trunk/; revision=52265
Timo Kreuzer [Wed, 15 Jun 2011 22:44:21 +0000 (22:44 +0000)]
[SMSS]
- Use integer instead of floating point
- Don't link to msvcsup
svn path=/trunk/; revision=52264
Timo Kreuzer [Wed, 15 Jun 2011 22:36:51 +0000 (22:36 +0000)]
[FREELDR]
Bring back call to EnableA20 in rbuild builds
svn path=/trunk/; revision=52263
Amine Khaldi [Wed, 15 Jun 2011 22:35:33 +0000 (22:35 +0000)]
[GDIPLUS]
* Fix msvc build.
svn path=/trunk/; revision=52262
Amine Khaldi [Wed, 15 Jun 2011 22:21:50 +0000 (22:21 +0000)]
[CMAKE]
* Skip rosautotest in msvc build.
svn path=/trunk/; revision=52261
Timo Kreuzer [Wed, 15 Jun 2011 22:07:14 +0000 (22:07 +0000)]
[MSVC]
Don't compile wine direct x dlls on MSVC for now
svn path=/trunk/; revision=52260
Amine Khaldi [Wed, 15 Jun 2011 21:59:28 +0000 (21:59 +0000)]
[INPUT]
* Fix msvc build.
svn path=/trunk/; revision=52259
Timo Kreuzer [Wed, 15 Jun 2011 21:51:51 +0000 (21:51 +0000)]
[FREETYPE]
Remove command line definition of TT_CONFIG_OPTION_BYTECODE_INTERPRETER its already defined in the config file
svn path=/trunk/; revision=52258
Olaf Siejka [Wed, 15 Jun 2011 21:38:17 +0000 (21:38 +0000)]
Converting POLISH localisation strings to UTF-8. Part 5/5:
- base/shell converted. Only shell32 and kernel32 remained.
Tested on rbuild/cmake
svn path=/trunk/; revision=52257