Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | win32: ash: exptilde(): do not call (unsupported) getpwnam() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+2 |
| | |||||
* | win32: ash: forkshell(): return early, MinGW port will have another way to ↵ | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+3 |
| | | | | "fork" | ||||
* | win32: ash: waitcmd(): return early, not supported | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+3 |
| | |||||
* | win32: ash: setsignal(): return early, signalling is not supported | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+2 |
| | |||||
* | defconfig.mingw32 | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+923 |
| | |||||
* | win32: ash: #ifdef | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+11 |
| | |||||
* | win32: add termios stub so that it builds | Nguyễn Thái Ngọc Duy | 2010-09-10 | 3 | -0/+13 |
| | |||||
* | win32: add strptime() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+6 |
| | |||||
* | win32: xmalloc_follow_symlinks: support ENOSYS by mingw port | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -1/+1 |
| | |||||
* | win32: Replace spawn() and spawn_and_wait() with Win32 version | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -1/+4 |
| | |||||
* | win32: workaround msvcrt *printf defects | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+28 |
| | |||||
* | win32: make_directory: drive letter support (buggy) | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -4/+11 |
| | |||||
* | win32: basename: support backslashes | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+5 |
| | |||||
* | win32: appletlib: special way to recognize applet name on Windows | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+12 |
| | | | | | | | | argv[0] on Windows is always the executable path. We can't rely on it to extract the applet name. For single busybox executable, just pass an environment variable, BUSYBOX_APPLET_NAME. Also strip .exe suffix when looking for applet name. | ||||
* | win32: add utimes and fix utime(file,NULL) | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+42 |
| | |||||
* | win32: Replace rename() (WHY?) | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -0/+36 |
| | |||||
* | win32: Replace getcwd() to return forward slashes | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+13 |
| | |||||
* | win32: add utime() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+29 |
| | |||||
* | win32: Work around for dup2 | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -0/+9 |
| | | | | Original dup2() does not return the fdto. | ||||
* | win32: Replace stat/lstat | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+145 |
| | |||||
* | win32: Replace open/fopen to support /dev/null | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -0/+38 |
| | |||||
* | win32: execable.c: support .exe suffix | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -1/+24 |
| | |||||
* | win32: add next_path_sep() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -0/+24 |
| | |||||
* | win32: add shell script and internal applet execution to spawn* and exec* | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -0/+264 |
| | | | | | | Most of this was extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository. | ||||
* | win32: Support certain ANSI sequences on cmd.exe | Nguyễn Thái Ngọc Duy | 2010-09-10 | 3 | -0/+370 |
| | | | | | | | | | | | | | | | | | | | | | | | | Support sequences are mostly color ones. This was extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository. Changes from original version: > diff --git a/home/pclouds/w/git/compat/winansi.c b/tmp/winansi2.c > index 44dc293..e2e7010 100644 > --- a/home/pclouds/w/git/compat/winansi.c > +++ b/tmp/winansi2.c > @@ -2,8 +2,9 @@ > * Copyright 2008 Peter Harris <git@peter.is-a-geek.org> > */ > > +#include "libbb.h" > #include <windows.h> > -#include "../git-compat-util.h" > +#undef PACKED > > /* > Functions to be wrapped: | ||||
* | win32: Import regex source | Nguyễn Thái Ngọc Duy | 2010-09-10 | 3 | -0/+5420 |
| | | | | | | | | | | | | | | | | | | | | | These were extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository. Changes from the original version: > diff --git a/tmp/regex.c b/win32/regex.c > index 87b33e4..2cca169 100644 > --- a/tmp/regex.c > +++ b/win32/regex.c > @@ -24,7 +24,9 @@ > #pragma alloca > #endif > > +#ifndef _GNU_SOURCE > #define _GNU_SOURCE > +#endif > > /* We need this for `regex.h', and perhaps for the Emacs include files. */ > #include <sys/types.h> | ||||
* | win32: copy_file: always use lstat to avoid macro conflict | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+5 |
| | | | | | | stat() in win32 port is actual a macro, not a function. Doing it the way it is now won't work. stat/lstat is not different in Windows anyway. | ||||
* | win32: add unlink() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -0/+10 |
| | |||||
* | win32: getopt32: set optind = 0 on Windows | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -1/+1 |
| | | | | | I haven't dug deep into this, but experiments show that optind = 1 does not work. Maybe MinGW guys took getopt from glibc? | ||||
* | win32: add getenv(), setenv(), unsetenv() and clearenv() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 3 | -4/+124 |
| | | | | clearenv() is not supported yet. | ||||
* | win32: add poll() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+70 |
| | | | | Only works for pipes, as commented in the source code. | ||||
* | win32: add fcntl() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+15 |
| | |||||
* | win32: add waitpid() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 3 | -1/+12 |
| | |||||
* | win32: add mkdir() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+7 |
| | |||||
* | win32: add get_busybox_exec_path(), which is bb_busybox_exec_path | Nguyễn Thái Ngọc Duy | 2010-09-10 | 3 | -0/+17 |
| | | | | | This function will become bb_busybox_exec_path because there is no fixed installation location on Windows. | ||||
* | win32: add realpath() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+7 |
| | |||||
* | win32: add strsep() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+19 |
| | |||||
* | win32: add link() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+22 |
| | |||||
* | win32: add function to map windows errors to posix ones | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+113 |
| | |||||
* | win32: add signal routines and SIGALRM support | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+127 |
| | | | | | | The implementation for SIGALRM only because Git needs it (I think for progress display or something). Probably not hurt having it. Although the only thing needed here are stubs. | ||||
* | win32: add getpwuid() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+15 |
| | |||||
* | win32: add localtime_r() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+8 |
| | |||||
* | win32: add gmtime_r() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+8 |
| | |||||
* | win32: add pipe() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+8 |
| | |||||
* | win32: add gettimeofday() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+40 |
| | |||||
* | win32: add mkstemp() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+9 |
| | |||||
* | win32: add sleep() | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -1/+7 |
| | |||||
* | win32: set binary I/O mode by default | Nguyễn Thái Ngọc Duy | 2010-09-10 | 2 | -0/+4 |
| | | | | | | | | | Text mode is default on Windows, which is just bad. This file also hosts many functions that were extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository, under directory compat. Some functions are modified/added by me, but usually credits go to Git developers. | ||||
* | win32: Import fnmatch source | Nguyễn Thái Ngọc Duy | 2010-09-10 | 4 | -1/+498 |
| | | | | | This was extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository. | ||||
* | Add README.win32 | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+38 |
| |