Provide some more feedback to the user.

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@201 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Matt Chapman 2002-09-26 14:01:42 +00:00
parent 9365833f59
commit c6038854b1

15
configure vendored
View File

@ -5,6 +5,9 @@
# Copyright (C) Matthew Chapman 1999-2001
#
echo "rdesktop build configuration script"
echo
echo "# Generated by $0 $*" >Makeconf
@ -44,8 +47,6 @@ case $arg in
--without-debug*)
;;
*)
echo "rdesktop build configuration script"
echo
echo "Target directories:"
echo " --prefix=PREFIX location for architecture-independent files"
echo " --exec-prefix=EPREFIX location for architecture-dependent files"
@ -100,6 +101,11 @@ if [ -z "$xdir" ]; then
exit 1
fi
echo "X Window System:"
echo " includes $xdir/include"
echo " libraries $xdir/lib"
echo
if [ $xdir != "/usr" ]; then
cflags="$cflags -I$xdir/include"
ldflags="$ldflags -L$xdir/lib"
@ -128,6 +134,11 @@ if [ -z "$ssldir" ]; then
echo "Using in-tree crypto; installing OpenSSL is recommended."
echo
else
echo "OpenSSL:"
echo " includes $ssldir/include"
echo " libraries $ssldir/lib"
echo
echo "CRYPTOBJ =" >>Makeconf
if [ $ssldir != "/usr" ]; then