Displaying 6 results from an estimated 6 matches for "_linux_types_h".
2013 Jun 26
1
Dovecot-2.2.4 compiled error
I compiled dovecot error, google did not find a solution. and I don't understand the code, how can i do Compiled dovecot-2.2.4 in "Linux OLinux 2.6.32-200.13.1.el5uek #1 SMP Wed Jul 27 21:02:33 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux "environment variables : #CPPFLAGS="-I/usr/include/openssl" LDFLAGS="-L/usr/lib/openssl" ./configure --with-ldap
2011 Nov 06
3
sys/types.h -> linux/types.h and __aligned_u64
...e025019999df5f2a5e00c03f03c2 remotes/linux/master~90^2~408 (origin)
96c131842aab45b5d139d0bcb417796819f5ee92 remotes/linux/master~90^2~169
(change from aligned_u64 to __aligned_u64)
and collides with klibc/usr/include/sys/types.h
/* Keeps linux/types.h from getting included elsewhere */
#define _LINUX_TYPES_H
not defining __aligned_u64 like the kernel's include/linux/types.h does.
Adding:
--- a/klibc/usr/include/sys/types.h
+++ b/klibc/usr/include/sys/types.h
@@ -100,6 +100,10 @@ typedef uint16_t __sum16;
typedef uint32_t __sum32;
typedef uint64_t __sum64;
+#define __aligned_u64 __u64 __attrib...
2004 Apr 27
2
build problem on SuSE SLES 8 SP3 (s390) - struct statfs redefinition?
Has anyone had any problems building on SuSE SLES 8 for s390 with all
patches applied... After applying patches to my build server last night,
building samba fails with the following...
mycomp:/srv/build/samba-3.0.2a/source # make
Using FLAGS = -O -I./popt -Iinclude
-I/srv/build/samba-3.0.2a/source/include -I
/srv/build/samba-3.0.2a/source/ubiqx
-I/srv/build/samba-3.0.2a/source/smbwrapper
-I.
2003 Apr 28
0
[PATCH] Get klibc building under post-2.5.68 kernels
...28 14:44:20 2003
+++ b/klibc/include/sys/types.h Mon Apr 28 14:44:20 2003
@@ -15,7 +15,9 @@
typedef ptrdiff_t ssize_t;
#include <linux/posix_types.h>
+#define __KERNEL__
#include <asm/types.h>
+#undef __KERNEL__
/* Keeps linux/types.h from getting included elsewhere */
#define _LINUX_TYPES_H
2006 Oct 18
21
[PATCH][RESEND] PV drivers for HVM guests
I am enclosing the patch I have been working on. I have tested this on sles9 (2.6.5) and RHEL 4 (2.6.9). The patch applies cleanly on ChangeSet 11635. This patch was cleaned up based on Ian''s and DOI''s work.
Signed-off-by: K. Y. Srinivasan (ksrinivasan@novell.com)
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
2011 Dec 04
0
[GIT PULL] klibc minor fixes
...remotes/linux/master~90^2~408 (origin)
96c131842aab45b5d139d0bcb417796819f5ee92 remotes/linux/master~90^2~169
(change from aligned_u64 to __aligned_u64)
and collides with klibc/usr/include/sys/types.h
/* Keeps linux/types.h from getting included elsewhere */
#define _LINUX_TYPES_H
not defining __aligned_u64 like the kernel's include/linux/types.h does.
Signed-off-by: maximilian attems <max at stro.at>
diff --git a/usr/include/sys/types.h b/usr/include/sys/types.h
index 6780ed1..3a4c738 100644
--- a/usr/include/sys/types.h
+++ b/usr/include/sys/ty...