diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-10-07 19:46:28 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-10-07 19:46:28 +0200 |
commit | 36e9f62a6e6fdb1217b3b819320ac5a94025c448 (patch) | |
tree | c91d57d1f8fa144e1ffce2ae3143de5b30460b0c /configure | |
parent | 090f1cbe72373b31e753af4a1442ddd53b02791b (diff) |
Added SRV lookups to automatically find out the correct server for a
domain.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -318,6 +318,14 @@ fi; echo 'SSL_CLIENT=ssl_'$ssl'.o' >> Makefile.settings +for i in /lib /usr/lib /usr/local/lib; do + if [ -e $i/libresolv.a ]; then + echo '#define HAVE_RESOLV_A' >> config.h + echo 'EFLAGS+='$i'/libresolv.a' >> Makefile.settings + break + fi +done + STORAGES="text xml" if [ "$ldap" = "auto" ]; then |