ports/sysutils/busybox/files/patch-include_libbb.h
Fernando Apesteguía 48f13d913e sysutils/busybox: update to 1.30.1
* Hand maintainership over to samm@os2.kiev.ua
* The port needs to be built with GCC on i386

PR:     238915
Submitted by:   samm@os2.kiev.ua
2019-07-16 15:18:06 +00:00

22 lines
513 B
C

--- include/libbb.h.orig 2019-02-14 13:31:15 UTC
+++ include/libbb.h
@@ -53,6 +53,9 @@
#include <termios.h>
#include <time.h>
#include <sys/param.h>
+#ifndef HAVE_XTABS
+# define XTABS TAB3
+#endif
#include <pwd.h>
#include <grp.h>
#if ENABLE_FEATURE_SHADOWPASSWDS
@@ -160,9 +163,6 @@
#ifndef HAVE_FDATASYNC
# define fdatasync fsync
#endif
-#ifndef HAVE_XTABS
-# define XTABS TAB3
-#endif
/*
* Use '%m' to append error string on platforms that support it,
* '%s' and strerror() on those that don't.