summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-25 20:21:53 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-25 20:21:53 +0000
commit4a41586769ee66f4b2ba57a1b126506e14cda351 (patch)
tree13a8370ae3a7e9edeeb40e0e20ffb49e9a06c5f5 /autoconf
parent07accb5a60092159600e54da3aca49ed024b9e43 (diff)
downloadllvm-4a41586769ee66f4b2ba57a1b126506e14cda351.tar.gz
llvm-4a41586769ee66f4b2ba57a1b126506e14cda351.tar.bz2
llvm-4a41586769ee66f4b2ba57a1b126506e14cda351.tar.xz
Remove HAVE_BZLIB and HAVE_BZIP2. We always have bzip2 now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18254 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac19
1 files changed, 0 insertions, 19 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 4f300b75c7..82aaf98f3f 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -326,25 +326,6 @@ dnl===-----------------------------------------------------------------------===
dnl libelf is for sparc only; we can ignore it if we don't have it
AC_CHECK_LIB(elf, elf_begin)
-dnl Check for bzip2 and zlib compression libraries needed for archive
-dnl and bytecode compression.
-AC_CHECK_LIB(z,gzopen,[zlib_found=1],[zlib_found=0])
-if test $zlib_found -eq 1; then
- AC_DEFINE([HAVE_ZLIB],[1],
- [Define if zlib library is available on this platform.])
- AC_SUBST([HAVE_ZLIB],[1])
-else
- AC_SUBST([HAVE_ZLIB],[0])
-fi
-AC_CHECK_LIB(bz2,BZ2_bzCompressInit,[bzip2_found=1],[bzip2_found=0])
-if test $bzip2_found -eq 1 ; then
- AC_DEFINE([HAVE_BZIP2],[1],
- [Define if bzip2 library is available on this platform.])
- AC_SUBST([HAVE_BZIP2],[1])
-else
- AC_SUBST([HAVE_BZIP2],[0])
-fi
-
dnl lt_dlopen may be required for plugin support.
AC_SEARCH_LIBS(lt_dlopen,ltdl,AC_DEFINE([HAVE_LT_DLOPEN],[1],
[Define if lt_dlopen() is available on this platform]),