| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
| |
|
|
|
|
| |
Original dup2() does not return the fdto.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Most of this was extracted from commit
e56b799d6ad8afba4168fffa7218d44c041a72d2
in Git repository.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
| |
|
|
|
|
| |
clearenv() is not supported yet.
|
|
|
|
| |
Only works for pipes, as commented in the source code.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
This function will become bb_busybox_exec_path because there is no
fixed installation location on Windows.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
This was extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2
in Git repository.
|
|
|
|
|
|
|
|
| |
These empty headers are to prevent #include errors. Of course
those #include may be wrapped inside #ifdefs and excluded, but that
would turn libbb.h into a #ifdef mess.
Note that all missing declaration is in mingw.h, not in these files.
|
|
|
|
|
| |
This was extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2
in Git repository.
|
| |
|
|
Just some declaration enough to build. Proper TTY support may come
later, targeting Cygwin-based terminals.
|