* Some tweaks to configure/Makefile -- add -fPIC, change VAMP to Vamp

This commit is contained in:
Chris Cannam
2007-11-20 20:21:00 +00:00
parent 7c4fcd85da
commit 0aa2cdf03d
3 changed files with 49 additions and 49 deletions

View File

@@ -24,14 +24,14 @@ AC_SUBST(FFTW_LIBS)
AC_CHECK_HEADERS(ladspa.h)
PKG_CHECK_MODULES([VAMP],[vamp-sdk])
AC_SUBST(VAMP_CFLAGS)
AC_SUBST(VAMP_LIBS)
PKG_CHECK_MODULES([Vamp],[vamp-sdk])
AC_SUBST(Vamp_CFLAGS)
AC_SUBST(Vamp_LIBS)
changequote(,)dnl
if test "x$GCC" = "xyes"; then
case " $CXXFLAGS " in
*[\ \ ]-fPIC -Wall[\ \ ]*) ;;
*[\ \ ]-fPIC\ -Wall[\ \ ]*) ;;
*) CXXFLAGS="$CXXFLAGS -fPIC -Wall" ;;
esac
fi