From: Hans-Christian Egtvedt Date: Fri, 5 Dec 2008 14:46:56 +0000 (-0000) Subject: samba: predefine a autoconf result for enums with negative values X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e35414722d976f819a9d42ee51e94d6ccbc03887;p=buildroot.git samba: predefine a autoconf result for enums with negative values The configure script tries to find out if enums can be negative, this is not supported when cross compiling, since it tries to run the binary. This commit sets the test to yes, i.e. negative enums are possible. --- diff --git a/package/samba/samba.mk b/package/samba/samba.mk index 564ebae056..b9f0a9a9b8 100644 --- a/package/samba/samba.mk +++ b/package/samba/samba.mk @@ -33,6 +33,7 @@ $(SAMBA_DIR)/.configured: $(SAMBA_DIR)/.unpacked samba_cv_HAVE_FCNTL_LOCK=yes \ samba_cv_HAVE_SECURE_MKSTEMP=yes \ samba_cv_fpie=no \ + SMB_BUILD_CC_NEGATIVE_ENUM_VALUES=yes \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \