- Timestamp:
- 2009-11-12T11:41:54Z (15 years ago)
- Branches:
- master
- Children:
- 1b221e0, 2288705, 76c85b4c, c289b6f, ec29351
- Parents:
- fb51d85
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rfb51d85 r36cf9fd 267 267 detect_ldap() 268 268 { 269 TMPFILE= `mktemp`269 TMPFILE=$(mktemp) 270 270 if $CC -o $TMPFILE -shared -lldap 2>/dev/null >/dev/null; then 271 271 cat<<EOF>>Makefile.settings … … 280 280 ret=0 281 281 fi 282 } 283 284 RESOLV_TESTCODE=' 285 #include <arpa/nameser.h> 286 #include <resolv.h> 287 288 int main() 289 { 290 ns_initparse( NULL, 0, NULL ); 291 ns_parserr( NULL, ns_s_an, 0, NULL ); 292 } 293 ' 294 295 detect_resolv_dynamic() 296 { 297 echo "$RESOLV_TESTCODE" | $CC -o /dev/null -x c - -lresolv >/dev/null 2>/dev/null 298 if [ "$?" = "0" ]; then 299 echo 'EFLAGS+=-lresolv' >> Makefile.settings 300 return 0 301 fi 302 303 return 1 304 } 305 306 detect_resolv_static() 307 { 308 for i in $systemlibdirs; do 309 if [ -f $i/libresolv.a ]; then 310 echo "$RESOLV_TESTCODE" | $CC -o /dev/null -x c - -Wl,$i/libresolv.a >/dev/null 2>/dev/null 311 if [ "$?" = "0" ]; then 312 echo 'EFLAGS+='$i'/libresolv.a' >> Makefile.settings 313 return 0 314 fi 315 fi 316 done 317 318 return 1 282 319 } 283 320 … … 349 386 echo 'SSL_CLIENT=ssl_'$ssl'.o' >> Makefile.settings 350 387 351 for i in $systemlibdirs; do 352 if [ -f $i/libresolv.a ]; then 353 echo '#define HAVE_RESOLV_A' >> config.h 354 echo 'EFLAGS+='$i'/libresolv.a' >> Makefile.settings 355 break 356 fi 357 done 388 if detect_resolv_dynamic || detect_resolv_static; then 389 echo '#define HAVE_RESOLV_A' >> config.h 390 fi 358 391 359 392 STORAGES="text xml"
Note: See TracChangeset
for help on using the changeset viewer.