5
I Use This!
Inactive

Commits : Listings

Analyzed 4 days ago. based on code collected 4 days ago.
Jun 05, 2023 — Jun 05, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Set up configuration for EMS conventional mapping and OS handle support, and change related hardcoded constants to variables, without yet enabling it (part 2 of Stas Sergeev's patch). More... about 12 years ago
EMS cleanups from Stas Sergeev (this part of his patch is cosmetic). More... about 12 years ago
Correct bitwise ands to detected invalid UCS values. More... over 12 years ago
Protect against overlong sequences and limit to values up to 0x10FFFF in the UTF-8 decoder/encoder. More... over 12 years ago
Fix warnings reported by clang 3.0. More... over 12 years ago
Do not remove 0 byte sized files in "make distclean" as src/doc/summary_Debugger is a 0-sized file that should not be removed. More... over 12 years ago
Remove iconv.c (not in SVN) from Makefile. More... over 12 years ago
Do not use wildcards in Makefiles for CFILES to avoid issues with ordering. More... over 12 years ago
Remove unnecessary/obsolete/obsolescent constructs from configure.ac. More... over 12 years ago
Avoid circular reference in translate character set list. Should avoid hang in RPMFusion built, reported on mailing lists. More... over 12 years ago
Introduce DOSEMU_CFLAGS and ALL_CFLAGS, where ALL_CFLAGS = DOSEMU_CFLAGS CFLAGS CFLAGS can then be overridden by the user, e.g., using make CFLAGS='-O3' without breaking compilation. Similar for CPPFLAGS and LDFLAGS. More... over 12 years ago
Move "-rdynamic" into a special DOSBIN_LDFLAGS variable to avoid Makefile trickery for other binaries than dosemu.bin. More... over 12 years ago
Replace malloc/free for PM stack with mmap/munmap to force it into 32-bit address space. Fixes SF#3413218. I guess we were lucky it was allocated on the heap before which happens to be under 4GB but malloc may get it anywhere! More... over 12 years ago
Fix NULL dereference in mfs.c (fixes emacs problem, SF bug #3413218). More... over 12 years ago
With Linux kernel 3.0, the third number is optional, see SF patch 3390615, thanks to Bojan Popovic. More... almost 13 years ago
Fix strict aliasing issues for ASPI code. More... almost 13 years ago
Fix misc strict aliasing warnings. More... almost 13 years ago
Avoid casts for socket calls. More... almost 13 years ago
Avoid casts in DPMI code to resolve strict aliasing warnings. More... almost 13 years ago
Clang's integrated assembler doesn't support 16 bit code (.code16). Use -no-integrated-as for clang on .S files, and centralize ASFLAGS + compilation rules for those files. More... almost 13 years ago
Fix clang warnings. More... almost 13 years ago
Use FILE_OFFSET_BITS=64 to provide consistent 64-bit file access, using the configure check AC_SYS_LARGEFILE. Adjust off_t printfs. More... about 13 years ago
Remove another -traditional for CLANG. More... about 13 years ago
Fix loading BOCHS VGA BIOS with nonzero base. More... about 13 years ago
Fix asm file compilation without -traditional. More... about 13 years ago
Replaced inline by static inline for CLANG compatibility. More... about 13 years ago
Enable compilation with CLANG: * replace "extern inline" by "static inline" * add some void casts to shut up warnings * use printf("%s", foo) instead of printf(foo) * don't use -traditional * use {} for empty if statements instead of ; * fix an asm constraint More... about 13 years ago
Replace nested functions by non-nested ones for compatibility with LLVM CLANG. More... about 13 years ago
Remove forgotten ASM_PEDANTIC. More... about 13 years ago
Remove no longer used ASM_PEDANTIC. Set GCC_VERSION_CODE directly so the GCC version can be (mostly) changed at "make" time. More... about 13 years ago