[llvm-commits] CVS: llvm/autoconf/configure.ac
Reid Spencer
reid at x10sys.com
Thu Nov 25 12:22:05 PST 2004
Changes in directory llvm/autoconf:
configure.ac updated: 1.133 -> 1.134
---
Log message:
Remove HAVE_BZLIB and HAVE_BZIP2. We always have bzip2 now.
---
Diffs of the changes: (+0 -19)
Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.133 llvm/autoconf/configure.ac:1.134
--- llvm/autoconf/configure.ac:1.133 Thu Nov 25 01:28:19 2004
+++ llvm/autoconf/configure.ac Thu Nov 25 14:21:53 2004
@@ -326,25 +326,6 @@
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]),
More information about the llvm-commits
mailing list