aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2011-04-12 02:16:35 +0200
committerMiklos Vajna <vmiklos@frugalware.org>2011-04-12 02:16:35 +0200
commit370899f9368cdcb0bb43fd1510b0ea44c08027ec (patch)
treec49421e586f607eebd220952c4178a69e2adb245 /configure
parent43b1cd7ac2a55145f9a80c5af505308c788f4b90 (diff)
Add build system support for building the skype plugin
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure13
1 files changed, 13 insertions, 0 deletions
diff --git a/configure b/configure
index 77dc560a..535ca0d3 100755
--- a/configure
+++ b/configure
@@ -35,6 +35,7 @@ strip=1
gcov=0
plugins=1
otr=0
+skype=0
events=glib
ldap=0
@@ -82,6 +83,8 @@ Option Description Default
--plugins=0/1 Disable/enable plugins support $plugins
--otr=0/1/auto/plugin
Disable/enable OTR encryption support $otr
+--skype=0/plugin
+ Disable/enable Skype support $skype
--events=... Event handler (glib, libevent) $events
--ssl=... SSL library to use (gnutls, nss, openssl, bogus, auto)
@@ -537,6 +540,10 @@ elif [ "$otr" = "plugin" ]; then
echo 'OTR_PI=otr.so' >> Makefile.settings
fi
+if [ "$skype" = "plugin" ]; then
+ echo 'SKYPE_PI=skype.so' >> Makefile.settings
+fi
+
if [ ! -e doc/user-guide/help.txt ] && ! type xmlto > /dev/null 2> /dev/null; then
echo
echo 'WARNING: Building from an unreleased source tree without prebuilt helpfile.'
@@ -739,6 +746,12 @@ else
echo ' Off-the-Record (OTR) Messaging disabled.'
fi
+if [ "$skype" = "plugin" ]; then
+ echo ' Skype enabled (as a plugin).'
+else
+ echo ' Skype disabled.'
+fi
+
if [ -n "$systemdsystemunitdir" ]; then
echo ' systemd enabled.'
else