diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-10-15 11:41:12 +0200 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-10-15 11:41:12 +0200 | 
| commit | 69cb62335f8bbe46b2879aabc5fdbe288891b02b (patch) | |
| tree | 38fcda3162027d741598536c28a2c0cd4c3f52c6 /configure | |
| parent | 695e39232324711816f1db8e25fdba59a0c6456f (diff) | |
| parent | e97827bee83d3a0663aa284e72a4f6c84b4b4dfe (diff) | |
Merging with storage-xml. It seems to be working pretty well, so maybe
this way more people will test it. :-)
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 186 | 
1 files changed, 112 insertions, 74 deletions
| @@ -30,6 +30,7 @@ strip=1  ipv6=1  events=glib +ldap=auto  ssl=auto  arch=`uname -s` @@ -66,6 +67,8 @@ Option		Description				Default  --ipv6=0/1	IPv6 socket support			$ipv6 +--ldap=0/1/auto	LDAP support				$ldap +  --events=...	Event handler (glib, libevent)		$events  --ssl=...	SSL library to use (gnutls, nss, openssl, bogus, auto)  							$ssl @@ -140,21 +143,23 @@ else  	echo 'CFLAGS=-O3' >> Makefile.settings  fi -echo CFLAGS+=-I`pwd` -I`pwd`/protocols -I. >> Makefile.settings +echo CFLAGS+=-I`pwd` -I`pwd`/lib -I`pwd`/protocols -I. >> Makefile.settings  echo CFLAGS+=-DHAVE_CONFIG_H >> Makefile.settings  if [ -n "$CC" ]; then -	echo "CC=$CC" >> Makefile.settings; +	CC=$CC  elif type gcc > /dev/null 2> /dev/null; then -	echo "CC=gcc" >> Makefile.settings; +	CC=gcc  elif type cc > /dev/null 2> /dev/null; then -	echo "CC=cc" >> Makefile.settings; +	CC=cc  else  	echo 'Cannot find a C compiler, aborting.'  	exit 1;  fi +echo "CC=$CC" >> Makefile.settings; +  if [ -n "$LD" ]; then  	echo "LD=$LD" >> Makefile.settings;  elif type ld > /dev/null 2> /dev/null; then @@ -231,66 +236,106 @@ EOF  	fi;  } -if [ "$msn" = 1 -o "$jabber" = 1 ]; then -	if [ "$ssl" = "auto" ]; then -		detect_gnutls -		if [ "$ret" = "0" ]; then -			detect_nss -		fi; -	elif [ "$ssl" = "gnutls" ]; then -		detect_gnutls; -	elif [ "$ssl" = "nss" ]; then -		detect_nss; -	elif [ "$ssl" = "openssl" ]; then -		echo -		echo 'No detection code exists for OpenSSL. Make sure that you have a complete' -		echo 'install of OpenSSL (including devel/header files) before reporting' -		echo 'compilation problems.' -		echo -		echo 'Also, keep in mind that the OpenSSL is, according to some people, not' -		echo 'completely GPL-compatible. Using GnuTLS or NSS is recommended and better' -		echo 'supported by us. However, on many BSD machines, OpenSSL can be considered' -		echo 'part of the operating system, which makes it GPL-compatible.' -		echo -		echo 'For more info, see: http://www.openssl.org/support/faq.html#LEGAL2' -		echo '                    http://www.gnome.org/~markmc/openssl-and-the-gpl.html' -		echo -		echo 'Please note that distributing a BitlBee binary which links to OpenSSL is' -		echo 'probably illegal. If you want to create and distribute a binary BitlBee' -		echo 'package, you really should use GnuTLS or NSS instead.' -		echo -		echo 'Also, the OpenSSL license requires us to say this:' -		echo ' *    "This product includes software developed by the OpenSSL Project' -		echo ' *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"' -		 -		echo 'EFLAGS+=-lssl -lcrypto' >> Makefile.settings -		 -		ret=1; -	elif [ "$ssl" = "bogus" ]; then -		echo -		echo 'Using bogus SSL code. This will not make the MSN module work, but it will' -		echo 'allow you to use the Jabber module - although without working SSL support.' -		 -		ret=1; +detect_ldap() +{ +	TMPFILE=`mktemp` +	if $CC -o $TMPFILE -shared -lldap 2>/dev/null >/dev/null; then +		cat<<EOF>>Makefile.settings +EFLAGS+=-lldap +CFLAGS+= +EOF +		ldap=1 +		rm -f $TMPFILE +		ret=1  	else -		echo -		echo 'ERROR: Unknown SSL library specified.' -		exit 1; +		ldap=0 +		ret=0  	fi -	 +} + +if [ "$ssl" = "auto" ]; then +	detect_gnutls  	if [ "$ret" = "0" ]; then +		detect_nss +	fi +elif [ "$ssl" = "gnutls" ]; then +	detect_gnutls +elif [ "$ssl" = "nss" ]; then +	detect_nss +elif [ "$ssl" = "openssl" ]; then +	echo +	echo 'No detection code exists for OpenSSL. Make sure that you have a complete' +	echo 'install of OpenSSL (including devel/header files) before reporting' +	echo 'compilation problems.' +	echo +	echo 'Also, keep in mind that the OpenSSL is, according to some people, not' +	echo 'completely GPL-compatible. Using GnuTLS or NSS is recommended and better' +	echo 'supported by us. However, on many BSD machines, OpenSSL can be considered' +	echo 'part of the operating system, which makes it GPL-compatible.' +	echo +	echo 'For more info, see: http://www.openssl.org/support/faq.html#LEGAL2' +	echo '                    http://www.gnome.org/~markmc/openssl-and-the-gpl.html' +	echo +	echo 'Please note that distributing a BitlBee binary which links to OpenSSL is' +	echo 'probably illegal. If you want to create and distribute a binary BitlBee' +	echo 'package, you really should use GnuTLS or NSS instead.' +	echo +	echo 'Also, the OpenSSL license requires us to say this:' +	echo ' *    "This product includes software developed by the OpenSSL Project' +	echo ' *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"' +	 +	echo 'EFLAGS+=-lssl -lcrypto' >> Makefile.settings +	 +	ret=1 +elif [ "$ssl" = "bogus" ]; then +	echo +	echo 'Using bogus SSL code. This means some features have to be disabled.' +	 +	## Yes, you, at the console! How can you authenticate if you don't have any SSL!? +	if [ "$msn" = "1" ]; then  		echo -		echo 'ERROR: Could not find a suitable SSL library (GnuTLS, libnss or OpenSSL).' -		echo '       This is necessary for MSN and full Jabber support. To continue,' -		echo '       install a suitable SSL library or disable MSN support (--msn=0).' -		echo '       If you want Jabber without SSL support you can try --ssl=bogus.' -		 -		exit 1; -	fi; +		echo 'Real SSL support is necessary for MSN authentication, will build without' +		echo 'MSN protocol support.' +		msn=0 +	fi +	 +	ret=1 +else +	echo +	echo 'ERROR: Unknown SSL library specified.' +	exit 1 +fi + +if [ "$ret" = "0" ]; then +	echo +	echo 'ERROR: Could not find a suitable SSL library (GnuTLS, libnss or OpenSSL).' +	echo '       Please note that this script doesn'\''t have detection code for OpenSSL,' +	echo '       so if you want to use that, you have to select it by hand. If you don'\''t' +	echo '       need SSL support, you can select the "bogus" SSL library. (--ssl=bogus)' -	echo 'SSL_CLIENT=ssl_'$ssl'.o' >> Makefile.settings +	exit 1 +fi; + +echo 'SSL_CLIENT=ssl_'$ssl'.o' >> Makefile.settings + +STORAGES="text xml" + +if [ "$ldap" = "auto" ]; then +	detect_ldap +fi + +if [ "$ldap" = 0 ]; then +	echo "#undef WITH_LDAP" >> config.h +elif [ "$ldap" = 1 ]; then +	echo "#define WITH_LDAP 1" >> config.h +	STORAGES="$STORAGES ldap"  fi +for i in $STORAGES; do +	STORAGE_OBJS="$STORAGE_OBJS storage_$i.o" +done +echo "STORAGE_OBJS="$STORAGE_OBJS >> Makefile.settings +  if [ "$strip" = 0 ]; then  	echo "STRIP=\# skip strip" >> Makefile.settings;  else @@ -303,8 +348,6 @@ else  		echo "STRIP=$STRIP" >> Makefile.settings;  	elif type strip > /dev/null 2> /dev/null; then  		echo "STRIP=strip" >> Makefile.settings; -	elif /bin/test -x /usr/ccs/bin/strip; then -		echo "STRIP=/usr/ccs/bin/strip" >> Makefile.settings;  	else  		echo  		echo 'No strip utility found, cannot remove unnecessary parts from executable.' @@ -383,7 +426,7 @@ fi  if [ "$protocols" = "PROTOCOLS = " ]; then  	echo "WARNING: You haven't selected any communication protocol to compile!" -	echo "         Bitlbee will run, but you will be unable to connect to IM servers!" +	echo "         BitlBee will run, but you will be unable to connect to IM servers!"  fi  echo "PROTOCOLS = $protocols" >> Makefile.settings @@ -418,28 +461,23 @@ echo  echo 'Configuration done:'  if [ "$debug" = "1" ]; then -	echo '  Debugging enabled.'; +	echo '  Debugging enabled.'  else -	echo '  Debugging disabled.'; +	echo '  Debugging disabled.'  fi  if [ "$strip" = "1" ]; then -	echo '  Binary stripping enabled.'; +	echo '  Binary stripping enabled.'  else -	echo '  Binary stripping disabled.'; +	echo '  Binary stripping disabled.'  fi -echo '  Using event handler: '$events; -echo '  Using SSL library: '$ssl; - -#if [ "$flood" = "0" ]; then -#	echo '  Flood protection disabled.'; -#else -#	echo '  Flood protection enabled.'; -#fi +echo '  Using event handler: '$events +echo '  Using SSL library: '$ssl +echo '  Building with these storage backends: '$STORAGES  if [ -n "$protocols" ]; then -	echo '  Building with these protocols:' $protocols; +	echo '  Building with these protocols:' $protocols  else -	echo '  Building without IM-protocol support. We wish you a lot of fun...'; +	echo '  Building without IM-protocol support. We wish you a lot of fun...'  fi | 
