Attempt to solve the libtool problem on Solaris.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16364 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-09-15 06:19:53 +00:00
parent b016a376ab
commit 011f5ca2ca
2 changed files with 16920 additions and 4 deletions

View File

@ -6,7 +6,8 @@ AC_INIT([[[Stacker]]],[[[1.0]]],[rspencer@x10sys.com])
dnl Place all of the extra autoconf files into the config subdirectory
AC_CONFIG_AUX_DIR([autoconf])
dnl Configure a header file
dnl Verify that the source directory is valid
AC_CONFIG_SRCDIR([Makefile.common.in])
dnl Configure Makefiles
dnl List every Makefile that ecists within your source tree
@ -26,9 +27,19 @@ dnl **************************************************************************
dnl **************************************************************************
dnl * Check for programs.
dnl **************************************************************************
AC_PROG_LIBTOOL
dnl Get libtool's idea of what the shared library suffix is.
dnl (This is a hack; it relies on undocumented behavior.)
AC_MSG_CHECKING([for shared library suffix])
eval "SHLIBEXT=$shrext"
AC_MSG_RESULT($SHLIBEXT)
dnl Propagate it to the Makefiles and config.h (for gccld & bugpoint).
AC_SUBST(SHLIBEXT,$SHLIBEXT)
AC_DEFINE_UNQUOTED(SHLIBEXT,"$SHLIBEXT",
[Extension that shared libraries have,
e.g., ".so".])
dnl Verify that the source directory is valid
AC_CONFIG_SRCDIR([Makefile.common.in])
dnl **************************************************************************
dnl * Check for libraries.

File diff suppressed because it is too large Load Diff