File: configure.ac

package info (click to toggle)
audacity 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 44,240 kB
  • sloc: cpp: 182,841; ansic: 120,375; sh: 26,421; lisp: 7,495; makefile: 1,606; python: 240; xml: 104; perl: 31
file content (88 lines) | stat: -rw-r--r-- 2,411 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88

AC_INIT(vamp-plugin-sdk, 2.0, cannam@all-day-breakfast.com)

AC_CONFIG_SRCDIR(vamp/vamp.h)
AC_PROG_CXX
AC_HEADER_STDC
AC_C_BIGENDIAN

if pkg-config --modversion vamp-sdk >/dev/null 2>&1; then
  echo "WARNING: A version of the Vamp plugin SDK is already installed."
  echo "         Expect worries and sorrows if you install a new version"
  echo "         without removing the old one first.  (Continuing)"
fi

AC_SEARCH_LIBS([dlopen],[dl])

TARGETS="plugins"
dnl to start with, example plug-ins. Next bit will build a list
dnl of other things like static and dynamic SDKs

dnl See if the user wants to build static SDK
AC_ARG_ENABLE(static,	[AS_HELP_STRING([--enable-static],
	[enable building of static linked vamp SDK [default=no]])],
	SSDK_ARGUMENT=$enableval,
	SSDK_ARGUMENT="no")

if test "x$SSDK_ARGUMENT" = "xyes" ; then
	TARGETS="$TARGETS sdkstatic"
fi

dnl See if the user wants to build shared SDK
AC_ARG_ENABLE(shared,	[AS_HELP_STRING([--enable-shared],
	[enable building of dynamic linked vamp SDK [default=yes]])],
	DSDK_ARGUMENT=$enableval,
	DSDK_ARGUMENT="yes")

if test "x$DSDK_ARGUMENT" = "xyes" ; then
	TARGETS="$TARGETS sdk"
fi

dnl See if the user wants to build static SDK
AC_ARG_ENABLE(static-sdk,	[AS_HELP_STRING([--enable-static-sdk],
	[enable building of static linked vamp SDK [default=no]])],
	SSDK_ARGUMENT=$enableval,
	SSDK_ARGUMENT="no")

if test "x$SSDK_ARGUMENT" = "xyes" ; then
	TARGETS="$TARGETS sdkstatic"
fi


dnl See if the user wants to build programs
AC_ARG_ENABLE(programs,	[AS_HELP_STRING([--enable-programs],
	[enable building of example host and RDF generator [default=yes]])],
	PROGS_ARGUMENT=$enableval,
	PROGS_ARGUMENT="yes")



dnl if the user wants progs, then we need to check for libsndfile
if test "x$PROGS_ARGUMENT" = "xyes" ; then 
	PKG_CHECK_MODULES([SNDFILE],[sndfile], 
					  have_sndfile="yes", have_sndfile="no")
	if test "x$have_sndfile" = "xyes" ; then
			dnl all good, build everything (test depends on host)
		TARGETS="$TARGETS host rdfgen test"
	else
		dnl no libsndfile - can't build host!
		AC_MSG_ERROR([libsndfile not found - cannot build example Vamp host!])
	fi
fi

AC_SUBST(SNDFILE_CFLAGS)
AC_SUBST(SNDFILE_LIBS)
AC_SUBST(TARGETS)


changequote(,)dnl
if test "x$GCC" = "xyes"; then
  case " $CXXFLAGS " in
    *[\ \	]-fPIC\ -Wall[\ \	]*) ;;
    *) CXXFLAGS="$CXXFLAGS -fPIC -Wall" ;;
  esac
fi
changequote([,])dnl

AC_OUTPUT([Makefile])