aboutsummaryrefslogtreecommitdiff
path: root/configs/mingw64_defconfig (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* grep: remove hack to disable EXTRA_COMPATRon Yorston2017-07-181-1/+1
| | | | | | | | The hack to disable EXTRA_COMPAT in grep was incomplete and left the -z option enabled but non-functional. Remove the hack and change the default MinGW configurations to disable EXTRA_COMPAT.
* Update default configurationsRon Yorston2017-05-291-19/+30
|
* Update default configurationRon Yorston2017-02-081-31/+57
|
* ash: make the noconsole option configurable at build timeRon Yorston2017-02-071-0/+1
| | | | | | | | | The noconsole option depends on APIs that aren't available in all incarnations of Microsoft Windows. Allow it to be disabled at build time. Note that, by default, 'noconsole' is enabled in 32-bit builds but disabled in 64-bit builds.
* win32: implement nanosleep and enable float sleep by defaultRon Yorston2017-01-181-1/+1
| | | | Don't expect sleeping for fractions of a second to be very accurate.
* Update default configurationRon Yorston2017-01-041-20/+18
|
* Update default configurationRon Yorston2016-11-291-211/+223
|
* Post-merge fixesRon Yorston2016-10-201-15/+16
| | | | | Update default configurations; rename ststrdup -> sstrdup; fix status returns in evalcommand.
* mingw: enable whois in default configurationRon Yorston2016-07-081-1/+1
|
* Merge branch 'busybox' into mergeRon Yorston2016-07-071-2/+3
|
* Update default configurationRon Yorston2016-05-161-1/+2
|
* mingw: enable busybox --install by defaultRon Yorston2016-04-061-1/+1
| | | | | | | | | | | Allow FEATURE_INSTALLER to be configured and enable it in the default configuration. The behaviour is slightly different from upstream BusyBox: symbolic links are not permitted; if no target directory is provided the directory containing the busybox binary is used as the target.
* mingw: post-merge build fixesRon Yorston2016-04-041-2/+7
|
* mingw: remove bbconfig from default configurationRon Yorston2016-03-271-2/+2
| | | | bbconfig isn't very useful. Removing it saves over 5KB.
* mingw: update default configurationRon Yorston2016-02-221-1/+5
|
* find: enable -perm option in default configurationRon Yorston2015-11-031-1/+1
|
* Update default configurationRon Yorston2015-11-011-9/+9
|
* Enable install applet and HTTP authentication in wgetRon Yorston2015-10-201-22/+24
|
* ln: enable in default configurationRon Yorston2015-10-191-2/+2
|
* Update default configurationRon Yorston2015-10-131-7/+10
|
* less: port to WIN32 and enable by defaultRon Yorston2015-08-061-10/+10
|
* Update default configuration after mergeRon Yorston2015-08-041-2/+5
|
* mingw: enable support for IPv6Ron Yorston2015-07-151-3/+3
| | | | Import inet_pton from gnulib and enable IPv6 support by default.
* mingw: include unwind tables in 64-bit build by defaultRon Yorston2015-07-141-1/+1
| | | | | | Add "-funwind-tables -fasynchronous-unwind-tables" to CFLAGS for the 64-bit build, overriding the usual default. Without this change setjmp/longjmp don't work.
* ipcalc: enable by default for WIN32Ron Yorston2015-07-131-4/+4
|
* Allow different ways to manipulate environment for XP vs 64-bitRon Yorston2015-07-031-0/+1051
Commit fa147bd 'Use putenv to implement unsetenv/clearenv' allowed BusyBox to run on ReactOS but broke it on Windows XP so it was reverted. It turns out that the same change is required on 64-bit Windows. Reinstate the 'safe' environment manipulation code but make it a configuration option. Add a config file for 64-bit Windows that does the right thing.