conf 952 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # Copyright (C) Igor Sysoev
  2. # Copyright (C) Nginx, Inc.
  3. if [ $USE_PCRE = YES -o $PCRE != NONE ]; then
  4. . auto/lib/pcre/conf
  5. else
  6. if [ $USE_PCRE = DISABLED -a $HTTP = YES -a $HTTP_REWRITE = YES ]; then
  7. cat << END
  8. $0: error: the HTTP rewrite module requires the PCRE library.
  9. You can either disable the module by using --without-http_rewrite_module
  10. option or you have to enable the PCRE support.
  11. END
  12. exit 1
  13. fi
  14. fi
  15. if [ $USE_OPENSSL = YES ]; then
  16. . auto/lib/openssl/conf
  17. fi
  18. if [ $USE_ZLIB = YES ]; then
  19. . auto/lib/zlib/conf
  20. fi
  21. if [ $USE_LIBXSLT != NO ]; then
  22. . auto/lib/libxslt/conf
  23. fi
  24. if [ $USE_LIBGD != NO ]; then
  25. . auto/lib/libgd/conf
  26. fi
  27. if [ $USE_PERL != NO ]; then
  28. . auto/lib/perl/conf
  29. fi
  30. if [ $USE_GEOIP != NO ]; then
  31. . auto/lib/geoip/conf
  32. fi
  33. if [ $NGX_GOOGLE_PERFTOOLS = YES ]; then
  34. . auto/lib/google-perftools/conf
  35. fi
  36. if [ $NGX_LIBATOMIC != NO ]; then
  37. . auto/lib/libatomic/conf
  38. fi