svn commit: samba r22483 - in branches/SAMBA_3_0/source: .

gd at samba.org gd at samba.org
Mon Apr 23 09:56:54 GMT 2007


Author: gd
Date: 2007-04-23 09:56:54 +0000 (Mon, 23 Apr 2007)
New Revision: 22483

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=22483

Log:
Attempt to fix the build.

Guenther

Modified:
   branches/SAMBA_3_0/source/configure.in


Changeset:
Modified: branches/SAMBA_3_0/source/configure.in
===================================================================
--- branches/SAMBA_3_0/source/configure.in	2007-04-23 09:46:06 UTC (rev 22482)
+++ branches/SAMBA_3_0/source/configure.in	2007-04-23 09:56:54 UTC (rev 22483)
@@ -4023,10 +4023,11 @@
 	AC_TRY_RUN_STRICT([
 		#include <krb5.h>
 		int main(void) {
-		krb5_context context;
-		char *str = NULL;
-		krb5_enctype_to_string(context, 1, &str);
-		if (str) free (str);
+			krb5_context context;
+			char *str = NULL;
+			krb5_enctype_to_string(context, 1, &str);
+			if (str) free (str); 
+			return 0;
 		}
 		],[$Werror_FLAGS],[$CPPFLAGS],[$LDFLAGS],
 		smb_krb5_enctype_to_string_takes_krb5_context_arg=yes,
@@ -4042,8 +4043,9 @@
 	AC_TRY_RUN_STRICT([
 		#include <krb5.h>
 		int main(void) {
-		char buf[256];
-		krb5_enctype_to_string(1, buf, 256);
+			char buf[256];
+			krb5_enctype_to_string(1, buf, 256);
+			return 0;
 		}
 		],[$Werror_FLAGS],[$CPPFLAGS],[$LDFLAGS],
 		smb_krb5_enctype_to_string_takes_size_t_arg=yes,



More information about the samba-cvs mailing list