svn commit: samba r8306 - in branches/SAMBA_4_0/source: build/m4 heimdal_build include

tridge at samba.org tridge at samba.org
Mon Jul 11 02:34:23 GMT 2005


Author: tridge
Date: 2005-07-11 02:34:23 +0000 (Mon, 11 Jul 2005)
New Revision: 8306

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

Log:
some more heimdal configure checks

Modified:
   branches/SAMBA_4_0/source/build/m4/rewrite.m4
   branches/SAMBA_4_0/source/heimdal_build/build_external.sh
   branches/SAMBA_4_0/source/heimdal_build/config.m4
   branches/SAMBA_4_0/source/include/includes.h


Changeset:
Modified: branches/SAMBA_4_0/source/build/m4/rewrite.m4
===================================================================
--- branches/SAMBA_4_0/source/build/m4/rewrite.m4	2005-07-11 02:08:45 UTC (rev 8305)
+++ branches/SAMBA_4_0/source/build/m4/rewrite.m4	2005-07-11 02:34:23 UTC (rev 8306)
@@ -80,7 +80,7 @@
 AC_CHECK_TYPE(ino_t,unsigned)
 AC_CHECK_TYPE(loff_t,off_t)
 AC_CHECK_TYPE(offset_t,loff_t)
-AC_CHECK_TYPE(ssize_t, int)
+AC_CHECK_TYPES(ssize_t)
 AC_CHECK_TYPES(intptr_t)
 
 

Modified: branches/SAMBA_4_0/source/heimdal_build/build_external.sh
===================================================================
--- branches/SAMBA_4_0/source/heimdal_build/build_external.sh	2005-07-11 02:08:45 UTC (rev 8305)
+++ branches/SAMBA_4_0/source/heimdal_build/build_external.sh	2005-07-11 02:34:23 UTC (rev 8306)
@@ -10,7 +10,6 @@
 # we need to substitute these correctly based on configure output
 FLEX=flex
 BISON=bison
-AWK=gawk
 CC=gcc
 
 build_asn1() {

Modified: branches/SAMBA_4_0/source/heimdal_build/config.m4
===================================================================
--- branches/SAMBA_4_0/source/heimdal_build/config.m4	2005-07-11 02:08:45 UTC (rev 8305)
+++ branches/SAMBA_4_0/source/heimdal_build/config.m4	2005-07-11 02:34:23 UTC (rev 8306)
@@ -3,7 +3,8 @@
 AC_CHECK_HEADERS(sys/utsname.h termcap.h term.h timezone.h time.h ttyname.h netdb.h)
 
 AC_CHECK_FUNCS(setitimer uname umask unsetenv socket sendmsg putenv atexit strsep)
-AC_CHECK_FUNCS(strlwr strncasecmp strptime strsep_copy strtok_r strupr swab)
+AC_CHECK_FUNCS(strlwr strncasecmp strptime strsep_copy strtok_r strupr swab writev readv)
+AC_CHECK_FUNCS(inet_ntop)
 
 AC_CHECK_DECL(h_errno, 
               [AC_DEFINE(HAVE_DECL_H_ERRNO,1,whether h_errno is declared)], [], [

Modified: branches/SAMBA_4_0/source/include/includes.h
===================================================================
--- branches/SAMBA_4_0/source/include/includes.h	2005-07-11 02:08:45 UTC (rev 8305)
+++ branches/SAMBA_4_0/source/include/includes.h	2005-07-11 02:34:23 UTC (rev 8306)
@@ -197,6 +197,10 @@
 #endif
 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
 
+#ifndef HAVE_SSIZE_T
+#define ssize_t int
+#endif
+
 /*
   type safe varient of smb_xmalloc()
 */



More information about the samba-cvs mailing list