diff options
| author | Jelmer Vernooij <jelmer@samba.org> | 2006-05-26 17:46:23 +0200 | 
|---|---|---|
| committer | Jelmer Vernooij <jelmer@samba.org> | 2006-05-26 17:46:23 +0200 | 
| commit | aec56b0acf7965e7ec484b76ec1902603b8b3ea5 (patch) | |
| tree | 7eed8916b5d1862df594665c08cb86433b916bfe | |
| parent | 84eddeefb197efe9a44d5a866bca209156b52257 (diff) | |
Allow overriding --arch, support --arch=Windows
| -rwxr-xr-x | configure | 7 | 
1 files changed, 7 insertions, 0 deletions
| @@ -65,6 +65,8 @@ Option		Description				Default  --ssl=...	SSL library to use (gnutls, nss, openssl, sspi, bogus, auto)  							$ssl +--arch=...  Override target architecture $arch +  EOF  		exit;  	fi @@ -406,6 +408,11 @@ IRIX )  CYGWIN* )  	echo 'Cygwin is not officially supported.'  ;; +Windows ) +	echo OUTFILE=bitlbee.exe >> Makefile.settings +	echo LFLAGS+=-lwsock32 >> Makefile.settings +	echo EFLAGS+=-lsecur32 >> Makefile.settings +;;  * )  	echo 'We haven'\''t tested BitlBee on many platforms yet, yours is untested. YMMV.'  	echo 'Please report any problems at http://bugs.bitlbee.org/.' | 
