hal ChangeLog,1.557,1.558 configure.in,1.92,1.93

David Zeuthen david at freedesktop.org
Fri Jul 15 08:45:05 PDT 2005


Update of /cvs/hal/hal
In directory gabe:/tmp/cvs-serv30773

Modified Files:
	ChangeLog configure.in 
Log Message:
2005-07-15  David Zeuthen  <davidz at redhat.com>

	Patch from Alvaro Lopez Ortega <alvaro at sun.com>

	* volume_id/util.h: include asm/types.h if we have it

	* configure.in: Fixup check for headers



Index: ChangeLog
===================================================================
RCS file: /cvs/hal/hal/ChangeLog,v
retrieving revision 1.557
retrieving revision 1.558
diff -u -d -r1.557 -r1.558
--- ChangeLog	13 Jul 2005 03:38:01 -0000	1.557
+++ ChangeLog	15 Jul 2005 15:45:02 -0000	1.558
@@ -1,3 +1,11 @@
+2005-07-15  David Zeuthen  <davidz at redhat.com>
+
+	Patch from Alvaro Lopez Ortega <alvaro at sun.com>
+
+	* volume_id/util.h: include asm/types.h if we have it
+
+	* configure.in: Fixup check for headers
+
 2005-07-12  David Zeuthen  <davidz at redhat.com>
 
 	* hald/util.h: Add prototype for hal_util_helper_invoke_with_pipes

Index: configure.in
===================================================================
RCS file: /cvs/hal/hal/configure.in,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -d -r1.92 -r1.93
--- configure.in	13 Jul 2005 00:08:16 -0000	1.92
+++ configure.in	15 Jul 2005 15:45:02 -0000	1.93
@@ -35,16 +35,16 @@
 
 AC_CHECK_HEADERS([sys/ioccom.h])
 
-AC_CHECK_TYPE(__u8, ,
-              [AC_DEFINE(__s8,  int8_t,   [Signed 8 bits type])
-               AC_DEFINE(__u8,  uint8_t,  [Unsigned 8 bits type])
-               AC_DEFINE(__s16, int16_t,  [Signed 16 bits type])
-               AC_DEFINE(__u16, uint16_t, [Unsigned 16 bits type])
-               AC_DEFINE(__s32, int32_t,  [Signed 32 bits type])
-               AC_DEFINE(__u32, uint32_t, [Unsigned 32 bits type])
-               AC_DEFINE(__s64, int64_t,  [Signed 64 bits type])
-               AC_DEFINE(__u64, uint64_t, [Unsigned 64 bits type])],
-               /usr/include/sys/types.h)
+AC_CHECK_HEADERS([asm/types.h],,
+                 [AC_DEFINE(__s8,  int8_t,   [Signed 8 bits type])
+                  AC_DEFINE(__u8,  uint8_t,  [Unsigned 8 bits type])
+                  AC_DEFINE(__s16, int16_t,  [Signed 16 bits type])
+                  AC_DEFINE(__u16, uint16_t, [Unsigned 16 bits type])
+                  AC_DEFINE(__s32, int32_t,  [Signed 32 bits type])
+                  AC_DEFINE(__u32, uint32_t, [Unsigned 32 bits type])
+                  AC_DEFINE(__s64, int64_t,  [Signed 64 bits type])
+                  AC_DEFINE(__u64, uint64_t, [Unsigned 64 bits type])],
+			   [#include <sys/types.h>])
 
 AC_ARG_WITH(os-type,     [  --with-os-type=<os>     Distribution or OS (redhat)])
 AC_ARG_WITH(pid-file,    [  --with-pid-file=<file>  PID file for HAL daemon])




More information about the hal-commit mailing list