diff options
author | Sami Kerola <kerolasa@iki.fi> | 2013-02-13 21:33:09 (GMT) |
---|---|---|
committer | Sami Kerola <kerolasa@iki.fi> | 2013-05-26 09:38:10 (GMT) |
commit | 9e5eddfc3d42afc7455cdccc4907ea57a98aeb47 (patch) | |
tree | 4888f208bbc8d7751ddf0f3126d0672b873a5249 /src/FbTk | |
parent | 22ddf8fd3650072c6243941f27617158e111b236 (diff) | |
download | fluxbox-9e5eddfc3d42afc7455cdccc4907ea57a98aeb47.zip fluxbox-9e5eddfc3d42afc7455cdccc4907ea57a98aeb47.tar.bz2 |
build-sys: use pkg-config to locate dependencies
This commit alters XRANDR (X Resize And Rotate) extension dependency,
which is expected to have at least version 1.4. Earlier old versions of
xrandr were supported, at least to some extent.
Diffstat (limited to 'src/FbTk')
-rw-r--r-- | src/FbTk/FbString.cc | 2 | ||||
-rw-r--r-- | src/FbTk/Makefile.am | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/FbTk/FbString.cc b/src/FbTk/FbString.cc index 5577f32..2bc7516 100644 --- a/src/FbTk/FbString.cc +++ b/src/FbTk/FbString.cc | |||
@@ -55,7 +55,7 @@ typedef int iconv_t; | |||
55 | #endif // HAVE_ICONV | 55 | #endif // HAVE_ICONV |
56 | 56 | ||
57 | #ifdef HAVE_FRIBIDI | 57 | #ifdef HAVE_FRIBIDI |
58 | #include <fribidi/fribidi.h> | 58 | #include <fribidi.h> |
59 | #endif | 59 | #endif |
60 | 60 | ||
61 | #ifdef DEBUG | 61 | #ifdef DEBUG |
diff --git a/src/FbTk/Makefile.am b/src/FbTk/Makefile.am index 3c34b22..983f923 100644 --- a/src/FbTk/Makefile.am +++ b/src/FbTk/Makefile.am | |||
@@ -3,7 +3,7 @@ noinst_LIBRARIES = libFbTk.a | |||
3 | AM_CPPFLAGS=-include $(top_builddir)/config.h | 3 | AM_CPPFLAGS=-include $(top_builddir)/config.h |
4 | 4 | ||
5 | if XFT | 5 | if XFT |
6 | xft_SOURCE= XftFontImp.hh XftFontImp.cc | 6 | xft_SOURCE = XftFontImp.hh XftFontImp.cc |
7 | endif | 7 | endif |
8 | if MULTIBYTE | 8 | if MULTIBYTE |
9 | xmb_SOURCE= XmbFontImp.hh XmbFontImp.cc | 9 | xmb_SOURCE= XmbFontImp.hh XmbFontImp.cc |
@@ -15,6 +15,8 @@ if IMLIB2 | |||
15 | imlib2_SOURCE= ImageImlib2.hh ImageImlib2.cc | 15 | imlib2_SOURCE= ImageImlib2.hh ImageImlib2.cc |
16 | endif | 16 | endif |
17 | 17 | ||
18 | libFbTk_a_CPPFLAGS = $(FREETYPE2_CFLAGS) $(FRIBIDI_CFLAGS) $(AM_CPPFLAGS) | ||
19 | |||
18 | libFbTk_a_SOURCES = App.hh App.cc \ | 20 | libFbTk_a_SOURCES = App.hh App.cc \ |
19 | Color.cc Color.hh Command.hh \ | 21 | Color.cc Color.hh Command.hh \ |
20 | ColorLUT.cc ColorLUT.hh \ | 22 | ColorLUT.cc ColorLUT.hh \ |