svn commit: samba r12794 - branches/SAMBA_3_0/source/include trunk/source/include

jerry at samba.org jerry at samba.org
Mon Jan 9 15:54:19 GMT 2006


Author: jerry
Date: 2006-01-09 15:54:16 +0000 (Mon, 09 Jan 2006)
New Revision: 12794

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

Log:
BUG 3340: patch from William JoJo <jojowil at hvcc.edu> to fix automatic inclusion of aio support on AIX
Modified:
   branches/SAMBA_3_0/source/include/includes.h
   trunk/source/include/includes.h


Changeset:
Modified: branches/SAMBA_3_0/source/include/includes.h
===================================================================
--- branches/SAMBA_3_0/source/include/includes.h	2006-01-09 15:50:08 UTC (rev 12793)
+++ branches/SAMBA_3_0/source/include/includes.h	2006-01-09 15:54:16 UTC (rev 12794)
@@ -514,7 +514,7 @@
 #include <langinfo.h>
 #endif
 
-#ifdef HAVE_AIO_H
+#if defined(HAVE_AIO_H) && defined(WITH_AIO)
 #include <aio.h>
 #endif
 

Modified: trunk/source/include/includes.h
===================================================================
--- trunk/source/include/includes.h	2006-01-09 15:50:08 UTC (rev 12793)
+++ trunk/source/include/includes.h	2006-01-09 15:54:16 UTC (rev 12794)
@@ -514,7 +514,7 @@
 #include <langinfo.h>
 #endif
 
-#ifdef HAVE_AIO_H
+#if defined(HAVE_AIO_H) && defined(WITH_AIO)
 #include <aio.h>
 #endif
 



More information about the samba-cvs mailing list