summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2009-06-01 16:37:49 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2009-06-01 16:37:49 +0100
commit03da163b1c3f7a6973d4a139800e89f0d0aaca9a (patch)
tree0b65519e549a9c000e6c08e69dbb56eaa3a31335 /autogen.sh
parentf9f82de09673a8d97486a679adb54040b6f3f102 (diff)
downloadtelepathy-mission-control-03da163b1c3f7a6973d4a139800e89f0d0aaca9a.tar.gz
Add a configure option for whether to support plugins
In Debian we don't want to support MC's plugin architecture yet (if at all), to reduce the amount of API/ABI exposed. When plugins are disabled, we don't need GModule, libmissioncontrol-server doesn't need to be installed or be a shared library, and the headers don't need to be installed either.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 6a545f2e..4229f569 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -31,6 +31,6 @@ for arg in $*; do
done
if test $run_configure = true; then
- echo "Running ./configure --enable-gtk-doc $*"
- ./configure --enable-gtk-doc "$@"
+ echo "Running ./configure --enable-gtk-doc --enable-plugins $*"
+ ./configure --enable-gtk-doc --enable-plugins "$@"
fi