diff options
author | Tanya Lattner <tonic@nondot.org> | 2009-01-22 20:09:20 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2009-01-22 20:09:20 +0000 |
commit | 32aaee684d3fd24a7fb6e385877f113f2bd41ed6 (patch) | |
tree | b11340390f0c87a0600d72bd1a7049bbd9e77306 /autoconf | |
parent | b67c95834226fc44c435ca97dc5a536bccb30bbf (diff) |
Revert r62553 and r62616 due to issues with portability.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62777 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 5d551a7069..3a218eaeb9 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -717,11 +717,6 @@ AC_SEARCH_LIBS(dlopen,dl,AC_DEFINE([HAVE_DLOPEN],[1], [Define if dlopen() is available on this platform.]), AC_MSG_WARN([dlopen() not found - disabling plugin support])) -dnl libffi is optional; used to call external functions from the interpreter -AC_SEARCH_LIBS(ffi_call,ffi,AC_DEFINE([HAVE_LIBFFI],[1], - [Define to 1 if you have the libffi library (-lffi).]), - AC_MSG_WARN([libffi not found - disabling external calls from interpreter])) - dnl mallinfo is optional; the code can compile (minus features) without it AC_SEARCH_LIBS(mallinfo,malloc,AC_DEFINE([HAVE_MALLINFO],[1], [Define if mallinfo() is available on this platform.])) @@ -784,10 +779,6 @@ else AC_SUBST(HAVE_PTHREAD, 0) fi -dnl Debian vs. the world. -AC_CHECK_HEADER(ffi/ffi.h, AC_DEFINE(FFI_HEADER, ["ffi/ffi.h"], [Path to ffi.h])) -AC_CHECK_HEADER(ffi.h, AC_DEFINE(FFI_HEADER, ["ffi.h"], [Path to ffi.h])) - dnl===-----------------------------------------------------------------------=== dnl=== dnl=== SECTION 7: Check for types and structures |