Displaying 7 results from an estimated 7 matches for "xorg_cflag".
Did you mean:
xorg_cflags
2013 Jun 13
1
[PATCH] Link against libdrm
...- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -23,10 +23,10 @@
# -avoid-version prevents gratuitous .0.0.0 version numbers on the end
# _ladir passes a dummy rpath to libtool so the thing will actually link
# TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc.
-AM_CFLAGS = @XORG_CFLAGS@ @LIBUDEV_CFLAGS@ @LIBDRM_NOUVEAU_CFLAGS@
+AM_CFLAGS = @XORG_CFLAGS@ @LIBUDEV_CFLAGS@ @LIBDRM_NOUVEAU_CFLAGS@ @LIBDRM_CFLAGS@
nouveau_drv_la_LTLIBRARIES = nouveau_drv.la
nouveau_drv_la_LDFLAGS = -module -avoid-version @LIBDRM_NOUVEAU_LIBS@ \
- @LIBUDEV_LIBS@
+ @LIBUDEV_LIBS@ @LIBDRM_LIBS@...
2013 Jun 06
0
[PATCH 2/2] nouveau: add libbacklight and randr property support.
...- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -23,10 +23,10 @@
# -avoid-version prevents gratuitous .0.0.0 version numbers on the end
# _ladir passes a dummy rpath to libtool so the thing will actually link
# TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc.
-AM_CFLAGS = @XORG_CFLAGS@ @LIBUDEV_CFLAGS@ @LIBDRM_NOUVEAU_CFLAGS@
+AM_CFLAGS = @XORG_CFLAGS@ @LIBUDEV_CFLAGS@ @LIBDRM_NOUVEAU_CFLAGS@ @LIBBACKLIGHT_CFLAGS@
nouveau_drv_la_LTLIBRARIES = nouveau_drv.la
nouveau_drv_la_LDFLAGS = -module -avoid-version @LIBDRM_NOUVEAU_LIBS@ \
- @LIBUDEV_LIBS@
+ @LIBUDEV_LIBS@ @LIBBACK...
2010 May 23
1
[PATCH] nv: improve KMS detection
...-
2 files changed, 4 insertions(+), 9 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index 5d57010..8b23e21 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -25,7 +25,7 @@
# TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc.
AM_CFLAGS = @XMODES_CFLAGS@ @XORG_CFLAGS@ $(LIBDRM_CFLAGS)
nv_drv_la_LTLIBRARIES = nv_drv.la
-nv_drv_la_LDFLAGS = -module -avoid-version
+nv_drv_la_LDFLAGS = -module -avoid-version $(LIBDRM_LIBS)
nv_drv_ladir = @moduledir@/drivers
nv_drv_la_SOURCES = $(nv_sources) $(riva_sources) $(g80_sources)
diff --git a/src/nv_driver.c b/src/nv_...
2013 Jun 06
1
[PATCH 1/2] nouveau/mode: split out create_ranged_atom
From: Dave Airlie <airlied at redhat.com>
This is preperation for the backlight support code.
Signed-off-by: Dave Airlie <airlied at redhat.com>
---
src/drmmode_display.c | 54 ++++++++++++++++++++++++++++++++-------------------
1 file changed, 34 insertions(+), 20 deletions(-)
diff --git a/src/drmmode_display.c b/src/drmmode_display.c
index 6033a6d..ad7bc1f 100644
---
2008 Jul 01
0
[CentOS4.6]Where can I get these packages (xorg-server xproto fontsproto)?
...ariable
No package 'xorg-server' found
configure: error: Package requirements (xorg-server xproto fontsproto
) were not met:
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables XORG_CFLAGS
and XORG_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
2018 Aug 14
0
[ANNOUNCE] xf86-video-v4l 0.3.0
...e source not in EXTRA_DIST
config: upgrade to util-macros 1.8 for additional man page support
config: update AC_PREREQ statement to 2.60
config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
config: remove unrequired AC_HEADER_STDC
config: remove unrequired AC_SUBST([XORG_CFLAGS])
config: complete AC_INIT m4 quoting
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
config: add comments for main statem...
2008 May 22
0
[ANNOUNCE] xorg-server 1.4.99.902
..._pixmap.
DRI2: Return event buffer head index in DRI2CreateDrawable.
GLX: Track changes to DRI_TEX_BUFFER extension.
DRI2: Add DRI2AuthConnection().
Implement DRI2 direct rendering and update AIGLX to DRI interface changes.
dri2: Unbreak glcore visual setup.
Add @XORG_CFLAGS@ to satisfy xf86* includes.
Send the GLX_EXT_texture_from_pixmap attributes to the client.
Pick up dri2proto from the standard proto header include path.
Only autoload RECORD if it was enabled.
Convert __DRIconfigs after we've made sure createNewScreen succeeded....