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 | 7fb139695555db4feffa3db73d132d2787009a32 (patch) | |
tree | 3500599f96863bd3e819fe6f4d64c1c00bb3e59e /configure.ac | |
parent | 146ef7f5fa2f933491e55645ecfd68ac74a163fb (diff) |
check for mcopidl
Original commit message from CVS:
check for mcopidl
Diffstat (limited to 'configure.ac')
-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) |