Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitur Kirov <dkirov@gmail.com>2006-10-15 14:32:17 +0400
committerDimitur Kirov <dkirov@gmail.com>2006-10-15 14:32:17 +0400
commitf04b5c39028103ddecf3d4822c6004ae28a264a2 (patch)
tree466ad86e54f6a3f941b90441177cc025694ed223 /autogen.sh
parent1fcea90561c5a9337f86beff7b9048da6d8ed7a5 (diff)
check for pkg-config in autogen.sh
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index 757dab7f2..dbf2cc812 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -3,6 +3,11 @@
&& ls -1 -U data/gajim.desktop.in.in data/glade/*.glade \
src/*py src/common/*py src/common/zeroconf/*.py >> \
po/POTFILES.in || exit 1
+ if test -z `which pkg-config 2>/dev/null`;then
+ echo "***Error: pkg-config not found***"
+ echo "See README.html for build requirements."
+ exit 1
+ fi
set -x
intltoolize --force --automake \
&& aclocal -I ./m4 \