diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-27 16:58:50 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-27 16:58:50 +0000 |
commit | dc668592183fce4b63112bc89a59405a66d6ed0c (patch) | |
tree | ebc4213c498a9cf1d389a04fdabb84a77e99a35a /configure.in | |
parent | db2c082136011b7267db3419bf2bc82308684875 (diff) | |
download | ATCD-dc668592183fce4b63112bc89a59405a66d6ed0c.tar.gz |
* configure.in:
Temorarily removed my experimental C++ libtool support so that
I can get a semi-working test distribution out on the net.
* ltconfig:
* ltmain.sh:
Reverted to more stable version, i.e. w/o my C++ support.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.in b/configure.in index bbff4cf2845..d4fef8a8469 100644 --- a/configure.in +++ b/configure.in @@ -936,9 +936,17 @@ AC_DISABLE_STATIC dnl Enable Libtool module support AC_LIBTOOL_DLOPEN +dnl FIXME: Temporary hack to make libtool work with g++. +dnl Shared library support will only work with GNU g++ and GNU ld +dnl right now. +save_CC="$CC" +CC="$CXX" + dnl Check for libtool and turn on Automake processing for Libtool AC_PROG_LIBTOOL +CC="$save_CC" + dnl dnl SECTION 5: checks for header files dnl |