build: fix gdkpixbuf dependency
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
2f04baed34
commit
533dee543f
|
@ -130,8 +130,6 @@ pkg_check_modules(AWESOME_REQUIRED REQUIRED
|
||||||
glib-2.0
|
glib-2.0
|
||||||
cairo
|
cairo
|
||||||
pango
|
pango
|
||||||
gdk-2.0>=2.2
|
|
||||||
gdk-pixbuf-2.0>=2.2
|
|
||||||
xcb
|
xcb
|
||||||
xcb-event
|
xcb-event
|
||||||
xcb-randr
|
xcb-randr
|
||||||
|
@ -214,6 +212,18 @@ if(WITH_IMLIB2)
|
||||||
message(STATUS "Imlib2 not found. Disabled.")
|
message(STATUS "Imlib2 not found. Disabled.")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(NOT WITH_IMLIB2)
|
||||||
|
pkg_check_modules(GDK_PIXBUF REQUIRED gdk-2.0>=2.2 gdk-pixbuf-2.0>=2.2)
|
||||||
|
if(GDK_PIXBUF_FOUND)
|
||||||
|
set(AWESOME_OPTIONAL_LIBRARIES ${AWESOME_OPTIONAL_LIBRARIES}
|
||||||
|
${GDK_PIXBUF_LIBRARIES})
|
||||||
|
set(AWESOME_OPTIONAL_INCLUDE_DIRS ${AWESOME_OPTIONAL_INCLUDE_DIRS}
|
||||||
|
${GDK_PIXBUF_INCLUDE_DIRS})
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "GdkPixBuf not found.")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
# {{{ Install path and configuration variables
|
# {{{ Install path and configuration variables
|
||||||
|
|
Loading…
Reference in New Issue