~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to kmid/configure.in.in

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_MSG_CHECKING(if kmid would compile)
 
2
CPPFLAGS="$CPPFLAGS $KDE_INCLUDES"
 
3
AC_CACHE_VAL(kde_kmid_compiles,
 
4
[
 
5
AC_TRY_COMPILE([
 
6
#include <libkmid/libkmid.h>
 
7
],
 
8
[
 
9
],
 
10
  kde_mid_compiles=yes,
 
11
kde_mid_compiles=no)
 
12
])
 
13
AC_MSG_RESULT($kde_mid_compiles)
 
14
if test $kde_mid_compiles = no; then
 
15
  DO_NOT_COMPILE="$DO_NOT_COMPILE kmid"
 
16
fi
 
17