diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-01-03 16:47:38 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-01-03 16:47:38 +0000 |
commit | 4261f3048f980830b59276a9d096186840ccbc0f (patch) | |
tree | 14946d254aa68cb6edb17adb08692d207ce27c1c | |
parent | e33e0aa4efefeecd21375fd81121fffafc542e26 (diff) | |
download | gst-plugins-bad-4261f3048f980830b59276a9d096186840ccbc0f.tar.gz gst-plugins-bad-4261f3048f980830b59276a9d096186840ccbc0f.tar.bz2 gst-plugins-bad-4261f3048f980830b59276a9d096186840ccbc0f.zip |
check for mcopidl
Original commit message from CVS:
check for mcopidl
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 2c7d1284..0fd2bd1b 100644 --- a/configure.ac +++ b/configure.ac @@ -345,6 +345,12 @@ translit(dnm, m, l) AM_CONDITIONAL(USE_ARTS, true) GST_CHECK_FEATURE(ARTS, [arts plugins], arts, [ AM_PATH_ARTS(, HAVE_ARTS=yes, HAVE_ARTS=no) ]) +dnl if mcopidl can't be found there's no use in compiling it +AC_PATH_PROG(MCOPIDL, mcopidl, yes, no) +if test "xHAVE_MCOPIDL" = "xno"; +then + USE_ARTS=NO +fi dnl *** artsc *** translit(dnm, m, l) AM_CONDITIONAL(USE_ARTSC, true) |