aboutsummaryrefslogtreecommitdiff
path: root/include/mingw.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Implement vprintf replacementRon Yorston2014-03-201-0/+2
|
* Implement getc replacementRon Yorston2014-03-201-0/+2
|
* Implement read replacement to handle OEM codepagesRon Yorston2014-03-201-0/+2
|
* Implement write replacement to handle OEM codepagesRon Yorston2014-03-201-0/+2
|
* Implement puts replacement to handle OEM codepagesRon Yorston2014-03-191-0/+2
|
* Use OEM codepage for console I/ORon Yorston2014-03-191-0/+4
| | | | | | | | | | Windows console applications use different codepages for console I/O and the rest of the API: http://msdn.microsoft.com/en-us/goglobal/bb688114.aspx#E2F Attempt to workaround this by converting characters when they're read from and written to the console. Not all possible paths are handled.
* Drop CONFIG_WIN32_NET settingRon Yorston2014-03-171-5/+1
|
* Fix some compiler warningsRon Yorston2014-03-131-1/+1
|
* Pretend chown succeeds so 'cp -rp' doesn't complainRon Yorston2014-03-131-1/+1
|
* Remove unused mingw_utime; update utimes to handle read-only filesRon Yorston2014-03-121-4/+0
|
* Import mempcpy from gnulibRon Yorston2014-03-111-0/+5
|
* mingw: dummy implementation of times/sysconfRon Yorston2014-01-301-0/+17
|
* date: add dummy stimeRon Yorston2014-01-191-0/+1
|
* date: actually use modified strftimeRon Yorston2014-01-191-0/+3
|
* Implement POSIX-compliant mktemp for WIN32Ron Yorston2014-01-071-0/+2
|
* Revise mingw_stat to minimise changes from upstream BusyBoxRon Yorston2014-01-071-19/+26
|
* Use the preprocessor to fake st_blocksRon Yorston2014-01-051-0/+7
|
* Provide dummy implementations of seteuid/setegidRon Yorston2014-01-021-0/+2
|
* Provide fake fchmod implementationRon Yorston2013-03-261-1/+1
|
* mingw.h: fixes for MinGW-w64Ron Yorston2012-09-191-12/+5
|
* Use win32_execable_file() in test, which and execable.cRon Yorston2012-05-091-0/+2
|
* mingw32: make access(2) check file format for executablesRon Yorston2012-05-091-0/+4
|
* mingw32: implement system(3) call using sh instead of cmd.exeRon Yorston2012-05-011-0/+3
|
* win32: remove dummy getdomainname functionRon Yorston2012-04-291-1/+0
|
* win32: add pw_shell to struct passwdRon Yorston2012-04-231-0/+1
|
* win32: use uname/getdomainname in safe_gethostname.cRon Yorston2012-04-231-0/+1
|
* win32: implement ioctlRon Yorston2012-04-231-1/+1
|
* win32: add popen implementation that uses shellRon Yorston2012-04-231-0/+5
|
* strsep is in upstream BusyBox: no need for MINGW32 versionRon Yorston2012-04-181-4/+0
|
* Make fake fcntl(F_DUPFD) for WIN32Ron Yorston2012-04-031-0/+2
|
* ash: some fixes so busybox-w32 (almost) compiles on POSIXRon Yorston2012-04-031-1/+0
|
* Fix off_t define so MINGW32 doesn't require LFSRon Yorston2012-03-311-1/+3
|
* Update mingw.c from latest git/compatRon Yorston2012-03-301-6/+7
|
* Use gnulib poll, importing the version from gitRon Yorston2012-03-301-14/+0
|
* MinGW snprintf/vsnprintf work properlyRon Yorston2012-03-261-0/+12
|
* Simplify MINGW32 support in ls.cRon Yorston2012-03-261-0/+1
|
* Merge commit '56a3b82e9692a25ef9c9269e88feac0d579ce8e8' into mergeRon Yorston2012-03-221-0/+2
| | | | | | | Conflicts: coreutils/ls.c include/platform.h libbb/bb_basename.c
* Add code to find console dimensions in WIN32Ron Yorston2012-02-201-0/+2
|
* mingw.h: drop parameters for lchown to chown mappingStefan Sauer2011-12-051-1/+1
| | | | | This is needed to build coreutils/chown which take a function pointer to chown. If the define has parameters it won't replace this one.
* Merge branch 'net' (early part)Nguyễn Thái Ngọc Duy2010-09-201-1/+22
|\
| * win32: re-enable xconnect.cNguyễn Thái Ngọc Duy2010-09-201-0/+13
| |
| * win32: reimplement connect()Nguyễn Thái Ngọc Duy2010-09-201-0/+2
| | | | | | | | | | | | connect() now returns a socket handle, i.e. a HANDLE. This kind of handle works with read()/write(). But on the other hand, FILE* functions are dead because they are not crt file handles??
| * win32: reimplement socket()Nguyễn Thái Ngọc Duy2010-09-201-1/+5
| |
| * win32: add init_winsock()Nguyễn Thái Ngọc Duy2010-09-201-0/+1
| | | | | | | | | | All network applets must call this function before using any winsock functions.
| * win32: implement inet_aton()Nguyễn Thái Ngọc Duy2010-09-201-0/+1
| |
* | Merge branch 'procps'Nguyễn Thái Ngọc Duy2010-09-151-1/+1
|\ \
| * | win32: process.c: implement kill(), SIGTERM onlyNguyễn Thái Ngọc Duy2010-09-151-1/+1
| |/
* / win32: enable dateNguyễn Thái Ngọc Duy2010-09-141-0/+4
|/ | | | | | Setting time does not work. %e does not work because strftime does not support that. Output may be different from POSIX because "it is Windows" syndrome.
* win32: mingw.h: add WCOREDUMP an WUNTRACEDNguyễn Thái Ngọc Duy2010-09-101-0/+4
|
* win32: add termios stub so that it buildsNguyễn Thái Ngọc Duy2010-09-101-0/+1
|