Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 371941 | Differences between
and this patch

Collapse All | Expand All

(-)licq-1.3.9/plugins/console/configure.ac (-1 / +14 lines)
Lines 66-78 to compile this plugin. Sorry. Link Here
66
]))
66
]))
67
67
68
dnl check for cdk
68
dnl check for cdk
69
AC_CHECK_LIB(cdk, initCDKScreen,,
69
AC_CHECK_TOOL(CDK5_CONFIG, cdk5-config, none)
70
AS_IF([test "x$CDK5_CONFIG" = xnone],[
71
AC_SEARCH_LIBS(initCDKScreen, [cdkw cdk],,
70
  AC_MSG_ERROR([
72
  AC_MSG_ERROR([
71
73
72
I can't find the cdk library. This is needed if you want
74
I can't find the cdk library. This is needed if you want
73
to compile this plugin. Sorry. Try to get it from here:
75
to compile this plugin. Sorry. Try to get it from here:
74
http://freshmeat.net/projects/libcdk/
76
http://freshmeat.net/projects/libcdk/
75
]))
77
]))
78
],[
79
AC_MSG_CHECKING([cdk5 libs])
80
CDK5_LIBS="`$CDK5_CONFIG --libs`"
81
AC_MSG_RESULT([$CDK5_LIBS])
82
LIBS="$CDK5_LIBS LIBS"
83
AC_MSG_CHECKING([cdk5 cpp flags])
84
dnl cdk5-config returns its -I flags for --cflags, and has no --cppflags
85
CDK5_CFLAGS="`$CDK5_CONFIG --cflags`"
86
AC_MSG_RESULT([$CDK5_CFLAGS])
87
CPPFLAGS="$CDK5_CFLAGS $CPPFLAGS"
88
])
76
89
77
AC_OUTPUT(
90
AC_OUTPUT(
78
  src/Makefile \
91
  src/Makefile \

Return to bug 371941