1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 09:13:06 +00:00

Add a big-ass warning for linux users that can't read.

This commit is contained in:
Josh Elsasser 2007-04-05 00:41:32 +00:00
parent 74bd6755ba
commit 2947c32902

12
configure vendored
View file

@ -324,10 +324,20 @@ fi
# GTK+ settings # GTK+ settings
# #
echo -n "GTK+: " echo -n "GTK+: "
if [ "$GTK" = no ]; then if [ "x$GTK" = xno ]; then
echo "disabled" echo "disabled"
else else
gtk_test gtk_test
if [ "x$GTK" = xno ] && [ "x$SYSTEM" = xLinux ]; then
cat <<EOF
*** GTK+ was not found, transmission-gtk will NOT be built. If you
*** want to use the graphical version of Transmission" then you will
*** need to install GTK+ headers and libraries. Try installing looking
*** for a package called libgtk2.0-dev or gtk2-devel and installing
*** it, then re-running this script.
EOF
fi
fi fi
# #