Displaying 7 results from an estimated 7 matches for "xf86drmsl".
Did you mean:
xf86drm
2007 Jul 30
0
Nouveau and Debian Unstable
...NFIG_H -I. -I../shared-core -g -O2 -MT xf86drmRandom.lo -MD
-MP -MF .deps/xf86drmRandom.Tpo -c xf86drmRandom.c -fPIC -DPIC -o
.libs/xf86drmRandom.o
mv -f .deps/xf86drmRandom.Tpo .deps/xf86drmRandom.Plo
/bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.
-I../shared-core -g -O2 -MT xf86drmSL.lo -MD -MP -MF .deps/xf86drmSL.Tpo -c
-o xf86drmSL.lo xf86drmSL.c
gcc -DHAVE_CONFIG_H -I. -I../shared-core -g -O2 -MT xf86drmSL.lo -MD -MP
-MF .deps/xf86drmSL.Tpo -c xf86drmSL.c -fPIC -DPIC -o .libs/xf86drmSL.o
mv -f .deps/xf86drmSL.Tpo .deps/xf86drmSL.Plo
/bin/sh ../libtool --tag=CC --mode=lin...
2010 Mar 12
1
[PATCH 3/3] libdrm: Move all noninstalled headers to noinst_HEADERS.
...| 10 ++++++----
nouveau/Makefile.am | 4 +++-
3 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index e434e1d..61da186 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -55,13 +55,13 @@ libdrm_la_SOURCES = \
xf86drmHash.c \
xf86drmRandom.c \
xf86drmSL.c \
- xf86drmMode.c \
- libdrm_lists.h
+ xf86drmMode.c
libdrmincludedir = ${includedir}
libdrminclude_HEADERS = xf86drm.h xf86drmMode.h
-noinst_HEADERS = xf86atomic.h
+noinst_HEADERS = xf86atomic.h \
+ libdrm_lists.h
EXTRA_DIST = libdrm.pc.in include/drm/*
diff --git a/intel/Makefi...
2014 Jul 30
2
[PATCH libdrm] configure: Support symbol visibility when available
...+
> 3 files changed, 55 insertions(+)
> create mode 100644 libdrm.h
>
> diff --git a/Makefile.am b/Makefile.am
> index 826c30d0c0d9..65680da963eb 100644
> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -69,6 +69,7 @@ libdrm_la_SOURCES = \
> xf86drmSL.c \
> xf86drmMode.c \
> xf86atomic.h \
> + libdrm.h \
> libdrm_lists.h
>
> libdrmincludedir = ${includedir}
> diff --git a/configure.ac...
2014 Jul 30
3
[PATCH] libdrm: hide all private symbols
On 30/07/14 11:16, Christian K?nig wrote:
> [CCing Emil as well]
>
> Am 30.07.2014 um 11:38 schrieb Maarten Lankhorst:
>> Using -export-symbols-regex all private symbols are hidden, resulting in the
>> following changes:
>
> Wasn't "-export-symbols-regex" exactly that stuff we are trying to avoid in mesa?
>
IMHO we should try to pick up Thierry
2014 Jul 30
0
[PATCH libdrm] configure: Support symbol visibility when available
...++++++++++++++++++++
libdrm.h | 34 ++++++++++++++++++++++++++++++++++
3 files changed, 55 insertions(+)
create mode 100644 libdrm.h
diff --git a/Makefile.am b/Makefile.am
index 826c30d0c0d9..65680da963eb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -69,6 +69,7 @@ libdrm_la_SOURCES = \
xf86drmSL.c \
xf86drmMode.c \
xf86atomic.h \
+ libdrm.h \
libdrm_lists.h
libdrmincludedir = ${includedir}
diff --git a/configure.ac b/configure.ac
index 1c78c4520c49..f7c7177bfb2a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -366,6 +366,26 @@ AC_ARG_WITH([kernel-source],
[kernel...
2014 Jul 30
0
[PATCH libdrm] configure: Support symbol visibility when available
...rtions(+)
>> create mode 100644 libdrm.h
>>
>> diff --git a/Makefile.am b/Makefile.am
>> index 826c30d0c0d9..65680da963eb 100644
>> --- a/Makefile.am
>> +++ b/Makefile.am
>> @@ -69,6 +69,7 @@ libdrm_la_SOURCES = \
>> xf86drmSL.c \
>> xf86drmMode.c \
>> xf86atomic.h \
>> + libdrm.h \
>> libdrm_lists.h
>>
>> libdrmincludedir = ${includedir}
>&g...
2015 May 07
0
[ANNOUNCE] libdrm 2.4.61
...Greg Hackmann (1):
Add missing <strings.h> includes
Jan Vesely (5):
Fix unused function warnings
Remove drmSetDebugMsgFunction and related infrastructure
tests/exynos: Fix missing static keyword
drmSL: Fix neighbor lookup
tests/drmsl: Extract tests out of xf86drmSL.c
Joonyoung Shim (6):
modetest: fix Segmentation fault
modetest: make use of drmModeRmFB
modetest: fix the error path handling
modetest: clear buffer and framebuffer for planes
modetest: destroy the cursor bo
modetest: fix the arguments of the MAKE_RGB_INFO defi...