From: Kurt Zeilenga Date: Mon, 15 Mar 1999 01:01:45 +0000 (+0000) Subject: Fix "decleration" and missing ";" errors. X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~375 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a8d7ee12a5eba4889988aed1967f533362490afd;p=openldap Fix "decleration" and missing ";" errors. --- diff --git a/build/openldap.m4 b/build/openldap.m4 index 124a02962e..9b4b8ea225 100644 --- a/build/openldap.m4 +++ b/build/openldap.m4 @@ -432,11 +432,11 @@ dnl Check to see if we should not declare strdup if we have it dnl AC_DEFUN([OL_DECL_STRDUP], [ -AC_MSG_CHECKING([strdup decleration]) +AC_MSG_CHECKING([strdup declaration]) AC_CACHE_VAL(ol_cv_dcl_strdup,[ AC_TRY_COMPILE([ #include ], - [extern char *strdup()], + [extern char *strdup();], [ol_cv_dcl_strdup=yes], [ol_cv_dcl_strdup=no])]) AC_MSG_RESULT($ol_cv_dcl_strdup) diff --git a/configure b/configure index 5613970ab6..f3d4220f09 100755 --- a/configure +++ b/configure @@ -10089,8 +10089,8 @@ fi -echo $ac_n "checking strdup decleration""... $ac_c" 1>&6 -echo "configure:10094: checking strdup decleration" >&5 +echo $ac_n "checking strdup declaration""... $ac_c" 1>&6 +echo "configure:10094: checking strdup declaration" >&5 if eval "test \"`echo '$''{'ol_cv_dcl_strdup'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -10101,7 +10101,7 @@ else #include int main() { -extern char *strdup() +extern char *strdup(); ; return 0; } EOF if { (eval echo configure:10108: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then