configure.ac, Makefile.am, plugins: move to pd-aubio
[aubio.git] / configure.ac
index 0afd04ba8698683ab0d3008db00b228e58aea676..71a1a6ac1c875ad5220b4e3e4ea8f77eb145d3e6 100644 (file)
@@ -31,7 +31,6 @@ AM_PROG_CC_C_O dnl compiling with per-target flag
 if test "$ac_cv_prog_cc" = "no" ; then
    AC_MSG_ERROR([*** No C compiler found !])
 fi
-AC_PROG_CXX
 AC_PROG_INSTALL
 
 AUBIO_CFLAGS=
@@ -245,10 +244,6 @@ dnl Check for docbook-to-man
 AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no)
 AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no")
 
-dnl Check for Puredata
-AC_CHECK_HEADER(m_pd.h,PUREDATA=y,AC_MSG_WARN([Puredata header not found.]))
-AM_CONDITIONAL(PUREDATAFOUND, test "${PUREDATA}" = "y")
-
 dnl Check for Java
 AC_CHECK_HEADER(jni.h,JAVAHEADERS=y,AC_MSG_WARN([Java header jni.h not found.]))
 AM_CONDITIONAL(JAVAFOUND, test "${JAVAHEADERS}" = "y")
@@ -260,19 +255,12 @@ AC_OUTPUT([
     examples/Makefile
     tests/Makefile
     tests/src/Makefile
-    tests/cpp/Makefile
     sounds/Makefile
     swig/Makefile
     python/Makefile
     python/aubio/Makefile
     interfaces/java/Makefile
     interfaces/java/aubio/Makefile
-    interfaces/cpp/Makefile
-    plugins/Makefile
-    plugins/audacity/Makefile
-    plugins/audacity/plug-ins/Makefile
-    plugins/wavesurfer/Makefile
-    plugins/puredata/Makefile
     doc/Makefile
   ])
 
@@ -309,10 +297,5 @@ if test "${HAVE_LASH}" = "1"; then
 else
   echo "Lash:                    no"
 fi
-if test "${PUREDATA}" = "y"; then
-  echo "PureData:                yes"
-else
-  echo "PureData:                no"
-fi
 echo "**************************************************************"
 echo Configuration completed successfully. Type \'make\' to build ${PACKAGE}