diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-11-24 11:25:25 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-11-24 11:25:25 +0100 |
commit | 1133df5c96eb7d78951d0021fc402ccd8c919e23 (patch) | |
tree | 493bad81a44abd0b3fb0a0b7c86b5891602576a8 | |
parent | 37751a97d9c8a8b35f1942228547a954f7ed9098 (diff) | |
download | buildroot-1133df5c96eb7d78951d0021fc402ccd8c919e23.tar.gz buildroot-1133df5c96eb7d78951d0021fc402ccd8c919e23.zip |
Revert "libmicrohttpd: fix build on riscv"
This reverts commit 2e57e835bf26a8f554033f8c1998d1a34fce16a5, which is
no longer needed now that the RISC-V gcc has been patched to define
_REENTRANT when -pthread is passed.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/libmicrohttpd/libmicrohttpd.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/libmicrohttpd/libmicrohttpd.mk b/package/libmicrohttpd/libmicrohttpd.mk index c22ad08478..1cda434819 100644 --- a/package/libmicrohttpd/libmicrohttpd.mk +++ b/package/libmicrohttpd/libmicrohttpd.mk @@ -11,10 +11,10 @@ LIBMICROHTTPD_INSTALL_STAGING = YES LIBMICROHTTPD_CONF_OPTS = --disable-curl --disable-examples LIBMICROHTTPD_CFLAGS = $(TARGET_CFLAGS) -std=c99 -# gcc on arc and riscv doesn't define _REENTRANT when -pthread is passed while +# gcc on arc doesn't define _REENTRANT when -pthread is passed while # it should. Compensate this deficiency here otherwise libmicrohttpd # configure script doesn't find that thread support is enabled. -ifeq ($(BR2_arc)$(BR2_riscv),y) +ifeq ($(BR2_arc),y) LIBMICROHTTPD_CFLAGS += -D_REENTRANT endif |