summaryrefslogtreecommitdiff
path: root/hardinfo2/configure
diff options
context:
space:
mode:
authorLeandro A. F. Pereira <leandro@hardinfo.org>2007-06-30 15:08:22 +0000
committerLeandro A. F. Pereira <leandro@hardinfo.org>2007-06-30 15:08:22 +0000
commit1794035a988ed89cd8400930d75e054c6f39c5ad (patch)
treee0d65b0227f93d122a6eb4944369548879b0bbb9 /hardinfo2/configure
parent52b133d9d7fb007075f05b8289be517db6574fd3 (diff)
Make libsoup optional (disables Network Updater if not found).
Diffstat (limited to 'hardinfo2/configure')
-rwxr-xr-xhardinfo2/configure10
1 files changed, 5 insertions, 5 deletions
diff --git a/hardinfo2/configure b/hardinfo2/configure
index a5ac9eb8..42dfa9ad 100755
--- a/hardinfo2/configure
+++ b/hardinfo2/configure
@@ -167,11 +167,7 @@ done
# --------------------------------------------------------------------------
if [ $SOUP -eq -1 ]; then
- echo -e "\nYou need the libsoup library, including the development stuff."
- echo "If you're using Debian, running the command as root:"
- echo -e "\n\taptitude install libsoup2.2-dev\n"
- echo "Will do the trick."
- exit 1
+ echo "Disabling libsoup support. (Network Manager won't be available.)"
fi
# --------------------------------------------------------------------------
@@ -193,6 +189,10 @@ echo "#define HOSTNAME \"`hostname`\"" >> config.h
echo "#define PREFIX \"/usr/share/hardinfo/\"" >> config.h
echo "#define LIBPREFIX \"/usr/lib/hardinfo/\"" >> config.h
+if [ "$SOUP" == "1" ]; then
+ echo "#define HAS_LIBSOUP" >> config.h
+fi
+
if [ "$RELEASE" == "1" ]; then
echo "#define DEBUG(...)" >> config.h
else