aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-05-25 13:01:59 +0200
committerMattias Andrée <maandree@operamail.com>2014-05-25 13:01:59 +0200
commit8f317590e6792d40af7fcfccdabd4a119c4d0b2d (patch)
tree669a963cad079d17e19e05b75b31ea4ee47f114a /configure
parentmore restrict (diff)
downloadlibgamma-8f317590e6792d40af7fcfccdabd4a119c4d0b2d.tar.gz
libgamma-8f317590e6792d40af7fcfccdabd4a119c4d0b2d.tar.bz2
libgamma-8f317590e6792d40af7fcfccdabd4a119c4d0b2d.tar.xz
m + add test that lists adjustment methds
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 8a79c28..7221a93 100755
--- a/configure
+++ b/configure
@@ -110,7 +110,7 @@ fi
if [ ${enable_randr} = 1 ]; then
echo 'LIBOBJ += gamma-x-randr' >&3
echo 'DEFINITIONS += -DHAVE_GAMMA_METHOD_X_RANDR' >&3
- echo 'LIBS_LD += $$(pkg-config --cflags xcb xcb-randr)' >&3
+ echo 'LIBS_LD += $$(pkg-config --libs xcb xcb-randr)' >&3
echo 'LIBS_C += $$(pkg-config --cflags xcb xcb-randr)' >&3
echo '#define HAVE_GAMMA_METHOD_X_RANDR' >&4
have_randr='Yes'
@@ -118,7 +118,7 @@ fi
if [ ${enable_vidmode} = 1 ]; then
echo 'LIBOBJ += gamma-x-vidmode' >&3
echo 'DEFINITIONS += -DHAVE_GAMMA_METHOD_X_VIDMODE' >&3
- echo 'LIBS_LD += $$(pkg-config --cflags x11 xxf86vm)' >&3
+ echo 'LIBS_LD += $$(pkg-config --libs x11 xxf86vm)' >&3
echo 'LIBS_C += $$(pkg-config --cflags x11 xxf86vm)' >&3
echo '#define HAVE_GAMMA_METHOD_X_VIDMODE' >&4
have_vidmode='Yes'
@@ -126,7 +126,7 @@ fi
if [ ${enable_drm} = 1 ]; then
echo 'LIBOBJ += gamma-linux-drm' >&3
echo 'DEFINITIONS += -DHAVE_GAMMA_METHOD_LINUX_DRM' >&3
- echo 'LIBS_LD += $$(pkg-config --cflags libdrm)' >&3
+ echo 'LIBS_LD += $$(pkg-config --libs libdrm)' >&3
echo 'LIBS_C += $$(pkg-config --cflags libdrm)' >&3
echo '#define HAVE_GAMMA_METHOD_LINUX_DRM' >&4
have_drm='Yes'