]> git.sur5r.net Git - openldap/commitdiff
Fix "decleration" and missing ";" errors.
authorKurt Zeilenga <kurt@openldap.org>
Mon, 15 Mar 1999 01:01:45 +0000 (01:01 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 15 Mar 1999 01:01:45 +0000 (01:01 +0000)
build/openldap.m4
configure

index 124a02962e5a8ce4022b1a78ac88259402214194..9b4b8ea22597aec6ac122583f4783a12d619f5c8 100644 (file)
@@ -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 <string.h> ],
-       [extern char *strdup()],
+       [extern char *strdup();],
        [ol_cv_dcl_strdup=yes],
        [ol_cv_dcl_strdup=no])])
 AC_MSG_RESULT($ol_cv_dcl_strdup)
index 5613970ab6234b74b39f0fd74e8069430ffaf492..f3d4220f0993edd80f53735312a9359c2f9ef132 100755 (executable)
--- 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 <string.h> 
 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