diff options
author | Olivier Singla <olivier.singla@gmail.com> | 2016-08-03 21:47:12 -0400 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-08-04 22:38:14 +0200 |
commit | 35ccd358b304413229fc2e32f1318426cbb23a20 (patch) | |
tree | c9b546cff946296f9f114cc0f2203c5cac319116 | |
parent | 99ed68487a83380cf00ba5c602746ada3f995bf7 (diff) | |
download | buildroot-35ccd358b304413229fc2e32f1318426cbb23a20.tar.gz buildroot-35ccd358b304413229fc2e32f1318426cbb23a20.zip |
shellinabox: fix build on musl
This commit fixes the build of shellinabox with the musl C library,
which requires two changes:
- A patch to include <sys/ttydefaults.h>, which is needed to get the
definitions of TTYDEF_*
- A hack to workaround what seems to be a problem in musl itself (musl
does #define utmp utmpx, which causes some symbol conflicts down the
road). Since anyway the utmpx implementation is just a set of stubs
in musl, we simply make shellinabox believe that <utmpx.h> is not
available by passing the appropriate variable. The musl issue has
been reported at http://www.openwall.com/lists/musl/2016/08/04/8.
Fixes:
http://autobuild.buildroot.net/results/1847cab964957da3c9bf4911a5ad3602b3c82431/
Signed-off-by: Olivier Singla <olivier.singla@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/shellinabox/0002-launcher.c-include-sys-ttydefaults.h.patch | 27 | ||||
-rw-r--r-- | package/shellinabox/shellinabox.mk | 6 |
2 files changed, 33 insertions, 0 deletions
diff --git a/package/shellinabox/0002-launcher.c-include-sys-ttydefaults.h.patch b/package/shellinabox/0002-launcher.c-include-sys-ttydefaults.h.patch new file mode 100644 index 0000000000..caa5456609 --- /dev/null +++ b/package/shellinabox/0002-launcher.c-include-sys-ttydefaults.h.patch @@ -0,0 +1,27 @@ +From c8d9df500b1ca83ad6da9b6055549adaba6ee0d3 Mon Sep 17 00:00:00 2001 +From: Olivier Singla <olivier.singla@gmail.com> +Date: Thu, 4 Aug 2016 22:05:08 +0200 +Subject: [PATCH] launcher.c: include <sys/ttydefaults.h> + +This include is needed to get the definition of TTYDEF_*. + +Signed-off-by: Olivier Singla <olivier.singla@gmail.com> +--- + shellinabox/launcher.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/shellinabox/launcher.c b/shellinabox/launcher.c +index 2bac171..c8ba6cb 100644 +--- a/shellinabox/launcher.c ++++ b/shellinabox/launcher.c +@@ -66,6 +66,7 @@ + #include <sys/types.h> + #include <sys/wait.h> + #include <sys/utsname.h> ++#include <sys/ttydefaults.h> + #include <termios.h> + #include <unistd.h> + +-- +2.7.4 + diff --git a/package/shellinabox/shellinabox.mk b/package/shellinabox/shellinabox.mk index e4e0b0667f..1173ef7d1c 100644 --- a/package/shellinabox/shellinabox.mk +++ b/package/shellinabox/shellinabox.mk @@ -20,4 +20,10 @@ SHELLINABOX_CONF_OPTS = \ --disable-runtime-loading \ --enable-ssl +# musl's implementation of utmpx is a dummy one, and some aspects of +# it cause build failures in shellinabox +ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y) +SHELLINABOX_CONF_ENV += ac_cv_header_utmpx_h=no +endif + $(eval $(autotools-package)) |