Displaying 20 results from an estimated 110689 matches for "includ".
Did you mean:
include
2007 Aug 19
1
[PATCH 1/5] um/... convert #include "linux/..." to #include <linux/...>
(untested)
There are several files that
#include "linux/file" not #include <linux/file>
#include "asm/file" not #include <asm/file>
Here's a little script that converts them:
egrep -i -r -l --include=*.[ch] \
"^[[:space:]]*\#[[:space:]]*include[[:space:]]*\"(linux|asm)/(.*)\"" * \
| xargs...
2007 Aug 19
1
[PATCH 1/5] um/... convert #include "linux/..." to #include <linux/...>
(untested)
There are several files that
#include "linux/file" not #include <linux/file>
#include "asm/file" not #include <asm/file>
Here's a little script that converts them:
egrep -i -r -l --include=*.[ch] \
"^[[:space:]]*\#[[:space:]]*include[[:space:]]*\"(linux|asm)/(.*)\"" * \
| xargs...
2015 Sep 29
0
[PATCH 4/4] lib: Remove unused header files.
I used ESR's deheader program to look for unused includes. I then
examined each instance by hand, and also test-compiled (on Linux).
---
src/actions-support.c | 4 ----
src/alloc.c | 3 ---
src/appliance.c | 8 --------
src/conn-socket.c | 1 -
src/copy-in-out.c | 2 --
src/create.c | 1 -
src/d...
2015 Sep 29
8
[PATCH 1/4] lib: actions: Remove some unused header files.
---
generator/c.ml | 2 --
1 file changed, 2 deletions(-)
diff --git a/generator/c.ml b/generator/c.ml
index 055b683..963cf21 100644
--- a/generator/c.ml
+++ b/generator/c.ml
@@ -1213,9 +1213,7 @@ and generate_client_actions hash () =
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
-#include <sys/types.h>
#include <sys/stat.h>
-#include <string.h>
#include \"guestfs.h\"
#include \"guestfs-internal.h\"
--
2.5.0
2009 Feb 11
1
Compiling Matrix on Solaris 10 x86-64 Sun Studio 12
...crc.org/src/contrib/Matrix_0.999375-20.tar.gz'
Content type 'application/x-gzip' length 1954872 bytes (1.9 Mb)
opened URL
==================================================
downloaded 1.9 Mb
* Installing *source* package 'Matrix' ...
** libs
cc -m64 -I/home/choid/bin/R281/lib/R/include -I./UFconfig -I/usr/local/include -I/opt/SUNWspro/prod/include -I/usr/include -I/usr/sfw/include -KPIC -O -I/opt/SUNWspro/prod/include -c CHMfactor.c -o CHMfactor.o
cc -m64 -I/home/choid/bin/R281/lib/R/include -I./UFconfig -I/usr/local/include -I/opt/SUNWspro/prod/include -I/usr/include -I/usr...
2019 Jan 17
3
[PATCH] drm: Split out drm_probe_helper.h
...the probe helper stuff (which pretty much everyone needs) in
the drm_crtc_helper.h file (which atomic drivers should never need) is
confusing. Split them out.
To make sure I actually achieved the goal here I went through all
drivers. And indeed, all atomic drivers are now free of
drm_crtc_helper.h includes.
v2: Make it compile. There was so much compile fail on arm drivers
that I figured I'll better not include any of the acks on v1.
v3: Massive rebase because i915 has lost a lot of drmP.h includes, but
not all: Through drm_crtc_helper.h > drm_modeset_helper.h -> drmP.h
there was still...
2019 Jan 16
3
[PATCH] drm: Split out drm_probe_helper.h
...the probe helper stuff (which pretty much everyone needs) in
the drm_crtc_helper.h file (which atomic drivers should never need) is
confusing. Split them out.
To make sure I actually achieved the goal here I went through all
drivers. And indeed, all atomic drivers are now free of
drm_crtc_helper.h includes.
v2: Make it compile. There was so much compile fail on arm drivers
that I figured I'll better not include any of the acks on v1.
v3: Massive rebase because i915 has lost a lot of drmP.h includes, but
not all: Through drm_crtc_helper.h > drm_modeset_helper.h -> drmP.h
there was still...
2011 Jan 26
1
Wine 1.3.12 build failed on OpenIndiana b148
Starting from version 1.3.12 unable to build Wine.
I use /usr/sfw/bin/gcc compiler and gnu ld.
For configure script I change only prefix.
when i make gmake i get error.
...........
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_KERNEL32_ -D_NORMALIZE_ -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wstrict-prototypes -Wwrite-strings -Wpointer-arith -I/usr/sfw/include -I/usr/X11/include -I/usr/include -g -I/usr/sfw/include -I/usr/X11/include -I/usr/inclu...
2004 Aug 26
6
chan_capi module
Hello!
I have tried to compile the capi module
(http://www.junghanns.net/asterisk/downloads/chan_capi.0.3.5.tar.gz) on
fedora2 today.
----------- MAKEFILE --------------
..EXPORT_ALL_VARIABLES:
INSTALL_PREFIX=
#ASTERISK_HEADER_DIR=$(INSTALL_PREFIX)/usr/include
ASTERISK_HEADER_DIR=/usr/include/asterisk
#MODULES_DIR=$(INSTALL_PREFIX)/usr/lib/asterisk/modules
MODULES_DIR=/usr/lib/asterisk/modules/
PROC=$(shell uname -m)
----------- MAKEFILE SNIP END--------------
Make Error:
-------------------------------------------
In file included from /usr/incl...
2018 Dec 17
2
[PATCH 7/7] drm: Split out drm_probe_helper.h
...the probe helper stuff (which pretty much everyone needs) in
the drm_crtc_helper.h file (which atomic drivers should never need) is
confusing. Split them out.
To make sure I actually achieved the goal here I went through all
drivers. And indeed, all atomic drivers are now free of
drm_crtc_helper.h includes.
v2: Make it compile. There was so much compile fail on arm drivers
that I figured I'll better not include any of the acks on v1.
Signed-off-by: Daniel Vetter <daniel.vetter at intel.com>
Cc: linux-arm-kernel at lists.infradead.org
Cc: virtualization at lists.linux-foundation.org
Cc:...
2018 Dec 17
2
[PATCH 7/7] drm: Split out drm_probe_helper.h
...the probe helper stuff (which pretty much everyone needs) in
the drm_crtc_helper.h file (which atomic drivers should never need) is
confusing. Split them out.
To make sure I actually achieved the goal here I went through all
drivers. And indeed, all atomic drivers are now free of
drm_crtc_helper.h includes.
v2: Make it compile. There was so much compile fail on arm drivers
that I figured I'll better not include any of the acks on v1.
Signed-off-by: Daniel Vetter <daniel.vetter at intel.com>
Cc: linux-arm-kernel at lists.infradead.org
Cc: virtualization at lists.linux-foundation.org
Cc:...
2018 Dec 17
2
[PATCH 7/7] drm: Split out drm_probe_helper.h
...the probe helper stuff (which pretty much everyone needs) in
the drm_crtc_helper.h file (which atomic drivers should never need) is
confusing. Split them out.
To make sure I actually achieved the goal here I went through all
drivers. And indeed, all atomic drivers are now free of
drm_crtc_helper.h includes.
v2: Make it compile. There was so much compile fail on arm drivers
that I figured I'll better not include any of the acks on v1.
Signed-off-by: Daniel Vetter <daniel.vetter at intel.com>
Cc: linux-arm-kernel at lists.infradead.org
Cc: virtualization at lists.linux-foundation.org
Cc:...
2019 Jan 16
1
[PATCH] drm: Split out drm_probe_helper.h
...the probe helper stuff (which pretty much everyone needs) in
the drm_crtc_helper.h file (which atomic drivers should never need) is
confusing. Split them out.
To make sure I actually achieved the goal here I went through all
drivers. And indeed, all atomic drivers are now free of
drm_crtc_helper.h includes.
v2: Make it compile. There was so much compile fail on arm drivers
that I figured I'll better not include any of the acks on v1.
v3: Massive rebase because i915 has lost a lot of drmP.h includes, but
not all: Through drm_crtc_helper.h > drm_modeset_helper.h -> drmP.h
there was still...
2018 Dec 18
1
[Intel-gfx] [PATCH 7/7] drm: Split out drm_probe_helper.h
...n
> > the drm_crtc_helper.h file (which atomic drivers should never need) is
> > confusing. Split them out.
> >
> > To make sure I actually achieved the goal here I went through all
> > drivers. And indeed, all atomic drivers are now free of
> > drm_crtc_helper.h includes.
> >
> > v2: Make it compile. There was so much compile fail on arm drivers
> > that I figured I'll better not include any of the acks on v1.
> >
> > Signed-off-by: Daniel Vetter <daniel.vetter at intel.com>
> > Cc: linux-arm-kernel at lists.infradead...
2019 Jan 07
2
[PATCH 7/7] drm: Split out drm_probe_helper.h
...> > the drm_crtc_helper.h file (which atomic drivers should never need) is
> > confusing. Split them out.
> >
> > To make sure I actually achieved the goal here I went through all
> > drivers. And indeed, all atomic drivers are now free of
> > drm_crtc_helper.h includes.
> >
> > Signed-off-by: Daniel Vetter <daniel.vetter at intel.com>
> > Cc: linux-arm-kernel at lists.infradead.org
> > Cc: virtualization at lists.linux-foundation.org
> > Cc: etnaviv at lists.freedesktop.org
> > Cc: linux-samsung-soc at vger.kernel.org...
2019 Jan 16
0
[PATCH] drm: Split out drm_probe_helper.h
...pretty much everyone needs) in
> the drm_crtc_helper.h file (which atomic drivers should never need) is
> confusing. Split them out.
>
> To make sure I actually achieved the goal here I went through all
> drivers. And indeed, all atomic drivers are now free of
> drm_crtc_helper.h includes.
>
> v2: Make it compile. There was so much compile fail on arm drivers
> that I figured I'll better not include any of the acks on v1.
>
> v3: Massive rebase because i915 has lost a lot of drmP.h includes, but
> not all: Through drm_crtc_helper.h > drm_modeset_helper.h...
2018 Dec 10
0
[PATCH 7/7] drm: Split out drm_probe_helper.h
...the probe helper stuff (which pretty much everyone needs) in
the drm_crtc_helper.h file (which atomic drivers should never need) is
confusing. Split them out.
To make sure I actually achieved the goal here I went through all
drivers. And indeed, all atomic drivers are now free of
drm_crtc_helper.h includes.
Signed-off-by: Daniel Vetter <daniel.vetter at intel.com>
Cc: linux-arm-kernel at lists.infradead.org
Cc: virtualization at lists.linux-foundation.org
Cc: etnaviv at lists.freedesktop.org
Cc: linux-samsung-soc at vger.kernel.org
Cc: intel-gfx at lists.freedesktop.org
Cc: linux-mediatek at...
2018 Dec 10
0
[PATCH 7/7] drm: Split out drm_probe_helper.h
...the probe helper stuff (which pretty much everyone needs) in
the drm_crtc_helper.h file (which atomic drivers should never need) is
confusing. Split them out.
To make sure I actually achieved the goal here I went through all
drivers. And indeed, all atomic drivers are now free of
drm_crtc_helper.h includes.
Signed-off-by: Daniel Vetter <daniel.vetter at intel.com>
Cc: linux-arm-kernel at lists.infradead.org
Cc: virtualization at lists.linux-foundation.org
Cc: etnaviv at lists.freedesktop.org
Cc: linux-samsung-soc at vger.kernel.org
Cc: intel-gfx at lists.freedesktop.org
Cc: linux-mediatek at...
2018 Dec 10
0
[PATCH 7/7] drm: Split out drm_probe_helper.h
...the probe helper stuff (which pretty much everyone needs) in
the drm_crtc_helper.h file (which atomic drivers should never need) is
confusing. Split them out.
To make sure I actually achieved the goal here I went through all
drivers. And indeed, all atomic drivers are now free of
drm_crtc_helper.h includes.
Signed-off-by: Daniel Vetter <daniel.vetter at intel.com>
Cc: linux-arm-kernel at lists.infradead.org
Cc: virtualization at lists.linux-foundation.org
Cc: etnaviv at lists.freedesktop.org
Cc: linux-samsung-soc at vger.kernel.org
Cc: intel-gfx at lists.freedesktop.org
Cc: linux-mediatek at...
2018 Dec 17
0
[Intel-gfx] [PATCH 7/7] drm: Split out drm_probe_helper.h
...pretty much everyone needs) in
> the drm_crtc_helper.h file (which atomic drivers should never need) is
> confusing. Split them out.
>
> To make sure I actually achieved the goal here I went through all
> drivers. And indeed, all atomic drivers are now free of
> drm_crtc_helper.h includes.
>
> v2: Make it compile. There was so much compile fail on arm drivers
> that I figured I'll better not include any of the acks on v1.
>
> Signed-off-by: Daniel Vetter <daniel.vetter at intel.com>
> Cc: linux-arm-kernel at lists.infradead.org
> Cc: virtualization...