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:
authorjs <js-gajim@webkeks.org>2008-05-22 15:26:03 +0400
committerjs <js-gajim@webkeks.org>2008-05-22 15:26:03 +0400
commite672c81b44d4285f107f6e1aa6fe1428d9396ead (patch)
tree6792e4f9e8ce66516d62cf2a1f92d0641284e352 /autogen.sh
parent21f332221e3774f1558bf3b2b688de736e0ab37f (diff)
Not everybody who's got OS X has native GTK, mkay?
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 22a7fa1c0..a3ce4b5df 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
AM_ARGS="--add-missing --gnu --copy"
CONF_ARGS=""
- if test x`uname -s 2>/dev/null` = 'xDarwin';then
+ if test x`uname -s 2>/dev/null` = 'xDarwin' -a -f /Library/Frameworks/GTK+.framework/Versions/Current/env; then
. /Library/Frameworks/GTK+.framework/Versions/Current/env
AM_ARGS="${AM_ARGS} --ignore-deps"
CONF_ARGS="${CONF_ARGS} --disable-idle --without-x"