summaryrefslogtreecommitdiff
path: root/win32/Kbuild (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Drop CONFIG_WIN32_NET settingRon Yorston2014-03-171-1/+1
|
* Import mempcpy from gnulibRon Yorston2014-03-111-0/+1
|
* win32: use strptime from gnulibRon Yorston2014-01-201-0/+1
|
* df: limited implementation for WIN32Ron Yorston2013-04-031-0/+2
|
* mingw32: add system.c to KbuildRon Yorston2012-05-011-0/+1
|
* win32: implement ioctlRon Yorston2012-04-231-0/+1
|
* win32: add popen implementation that uses shellRon Yorston2012-04-231-0/+1
|
* Use gnulib poll, importing the version from gitRon Yorston2012-03-301-0/+1
|
* Implementation of uname for WIN32Ron Yorston2012-02-091-0/+1
|
* win32: implement inet_aton()Nguyễn Thái Ngọc Duy2010-09-201-0/+1
|
* win32: add termios stub so that it buildsNguyễn Thái Ngọc Duy2010-09-101-0/+1
|
* win32: Support certain ANSI sequences on cmd.exeNguyễn Thái Ngọc Duy2010-09-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | 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 sourceNguyễn Thái Ngọc Duy2010-09-101-0/+1
| | | | | | | | | | | | | | | | | | | | | 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: add getenv(), setenv(), unsetenv() and clearenv()Nguyễn Thái Ngọc Duy2010-09-101-0/+1
| | | | clearenv() is not supported yet.
* win32: add waitpid()Nguyễn Thái Ngọc Duy2010-09-101-0/+1
|
* win32: set binary I/O mode by defaultNguyễn Thái Ngọc Duy2010-09-101-0/+1
| | | | | | | | | 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 sourceNguyễn Thái Ngọc Duy2010-09-101-0/+7
This was extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository.