From: Roy Marples Date: Fri, 11 Mar 2016 16:44:59 +0000 (+0000) Subject: Fix configure tests X-Git-Tag: v6.10.2~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=932aed3cf263491fc53f8fb74dae66cb213b91d7;p=thirdparty%2Fdhcpcd.git Fix configure tests --- diff --git a/configure b/configure index 20ef6e5b..867b05e7 100755 --- a/configure +++ b/configure @@ -689,7 +689,8 @@ if [ -z "$STRTOI" ]; then #include int main(void) { int e; - return strtoi("1234", NULL, 0, 0, INT32_MAX, &e); + strtoi("1234", NULL, 0, 0, INT32_MAX, &e); + return 0; } EOF if $XCC _strtoi.c -o _strtoi 2>&3; then @@ -977,6 +978,7 @@ if [ -z "$BE64ENC" ]; then #include int main(void) { be64enc(NULL, 0); + return 0; } EOF if $XCC _be64enc.c -o _be64enc 2>&3; then