summaryrefslogtreecommitdiff
path: root/openldap
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-10-15 09:37:14 +0300
committerTor Lillqvist <tml@iki.fi>2012-10-15 09:39:07 +0300
commit3425c514bc6bb1bb0eda060606120c3e063f99ab (patch)
treeb078378ed06e38d6c1180ac89b468b8fe3d5fa91 /openldap
parentd475a059fc9f07f4d896bd67649c7d800fc66f6f (diff)
Don't be paranoid, surely all our platforms have a working memcmp()
The openldap configury thinks it's safest to assume memcmp() isn't working if it can't run a test program when cross-compiling. Meh. Change-Id: I4cd580f91b83de558f841d4dba781e8551aace34
Diffstat (limited to 'openldap')
-rw-r--r--openldap/makefile.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/openldap/makefile.mk b/openldap/makefile.mk
index d1522942399d..44b710e3fcaa 100644
--- a/openldap/makefile.mk
+++ b/openldap/makefile.mk
@@ -39,7 +39,7 @@ CONFIGURE_ACTION=.$/configure
CONFIGURE_FLAGS=--disable-slapd --with-pic --with-tls=moznss --without-cyrus-sasl --disable-shared --enable-static
.IF "$(CROSS_COMPILING)"=="YES"
-CONFIGURE_FLAGS+=--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) --with-yielding_select=yes
+CONFIGURE_FLAGS+=--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) --with-yielding_select=yes ac_cv_func_memcmp_working=yes
.ENDIF
.IF "$(SYSTEM_NSS)" == "YES"