diff options
-rw-r--r-- | configs/mingw32_defconfig | 2 | ||||
-rw-r--r-- | configs/mingw64_defconfig | 2 | ||||
-rw-r--r-- | include/mingw.h | 2 | ||||
-rw-r--r-- | libbb/Kbuild.src | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/configs/mingw32_defconfig b/configs/mingw32_defconfig index 9e410b881..0ea5eaee4 100644 --- a/configs/mingw32_defconfig +++ b/configs/mingw32_defconfig | |||
@@ -321,7 +321,7 @@ CONFIG_FEATURE_STAT_FORMAT=y | |||
321 | CONFIG_FEATURE_STAT_FILESYSTEM=y | 321 | CONFIG_FEATURE_STAT_FILESYSTEM=y |
322 | # CONFIG_STTY is not set | 322 | # CONFIG_STTY is not set |
323 | CONFIG_SUM=y | 323 | CONFIG_SUM=y |
324 | # CONFIG_SYNC is not set | 324 | CONFIG_SYNC=y |
325 | # CONFIG_FEATURE_SYNC_FANCY is not set | 325 | # CONFIG_FEATURE_SYNC_FANCY is not set |
326 | CONFIG_FSYNC=y | 326 | CONFIG_FSYNC=y |
327 | CONFIG_TAC=y | 327 | CONFIG_TAC=y |
diff --git a/configs/mingw64_defconfig b/configs/mingw64_defconfig index a9918e3d3..e85fbf71f 100644 --- a/configs/mingw64_defconfig +++ b/configs/mingw64_defconfig | |||
@@ -321,7 +321,7 @@ CONFIG_FEATURE_STAT_FORMAT=y | |||
321 | CONFIG_FEATURE_STAT_FILESYSTEM=y | 321 | CONFIG_FEATURE_STAT_FILESYSTEM=y |
322 | # CONFIG_STTY is not set | 322 | # CONFIG_STTY is not set |
323 | CONFIG_SUM=y | 323 | CONFIG_SUM=y |
324 | # CONFIG_SYNC is not set | 324 | CONFIG_SYNC=y |
325 | # CONFIG_FEATURE_SYNC_FANCY is not set | 325 | # CONFIG_FEATURE_SYNC_FANCY is not set |
326 | CONFIG_FSYNC=y | 326 | CONFIG_FSYNC=y |
327 | CONFIG_TAC=y | 327 | CONFIG_TAC=y |
diff --git a/include/mingw.h b/include/mingw.h index 367aa7cdc..49e792b69 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -471,7 +471,7 @@ NOIMPL(setuid,uid_t gid UNUSED_PARAM); | |||
471 | NOIMPL(seteuid,uid_t gid UNUSED_PARAM); | 471 | NOIMPL(seteuid,uid_t gid UNUSED_PARAM); |
472 | unsigned int sleep(unsigned int seconds); | 472 | unsigned int sleep(unsigned int seconds); |
473 | int symlink(const char *target, const char *linkpath); | 473 | int symlink(const char *target, const char *linkpath); |
474 | static inline void sync(void) {} | 474 | static inline void sync(void) { sleep(2); } |
475 | long sysconf(int name); | 475 | long sysconf(int name); |
476 | IMPL(getpagesize,int,4096,void); | 476 | IMPL(getpagesize,int,4096,void); |
477 | NOIMPL(ttyname_r,int fd UNUSED_PARAM, char *buf UNUSED_PARAM, int sz UNUSED_PARAM); | 477 | NOIMPL(ttyname_r,int fd UNUSED_PARAM, char *buf UNUSED_PARAM, int sz UNUSED_PARAM); |
diff --git a/libbb/Kbuild.src b/libbb/Kbuild.src index d7cbb7ff1..102e360af 100644 --- a/libbb/Kbuild.src +++ b/libbb/Kbuild.src | |||
@@ -78,6 +78,7 @@ lib-y += u_signal_names.o | |||
78 | lib-y += uuencode.o | 78 | lib-y += uuencode.o |
79 | lib-y += verror_msg.o | 79 | lib-y += verror_msg.o |
80 | lib-y += vfork_daemon_rexec.o | 80 | lib-y += vfork_daemon_rexec.o |
81 | lib-y += warn_ignoring_args.o | ||
81 | lib-y += wfopen.o | 82 | lib-y += wfopen.o |
82 | lib-y += wfopen_input.o | 83 | lib-y += wfopen_input.o |
83 | lib-y += xatonum.o | 84 | lib-y += xatonum.o |
@@ -112,7 +113,6 @@ lib-$(CONFIG_PLATFORM_POSIX) += setup_environment.o | |||
112 | lib-$(CONFIG_PLATFORM_POSIX) += signals.o | 113 | lib-$(CONFIG_PLATFORM_POSIX) += signals.o |
113 | lib-$(CONFIG_PLATFORM_POSIX) += speed_table.o | 114 | lib-$(CONFIG_PLATFORM_POSIX) += speed_table.o |
114 | lib-$(CONFIG_PLATFORM_POSIX) += udp_io.o | 115 | lib-$(CONFIG_PLATFORM_POSIX) += udp_io.o |
115 | lib-$(CONFIG_PLATFORM_POSIX) += warn_ignoring_args.o | ||
116 | lib-$(CONFIG_PLATFORM_POSIX) += write.o | 116 | lib-$(CONFIG_PLATFORM_POSIX) += write.o |
117 | lib-$(CONFIG_PLATFORM_POSIX) += xgethostbyname.o | 117 | lib-$(CONFIG_PLATFORM_POSIX) += xgethostbyname.o |
118 | 118 | ||