mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
[Imported from Perforce change 8324 at 2006-12-01 20:32:56] Subversion-branch: /trunk/polyorb Subversion-revision: 35922
15 lines
317 B
Plaintext
15 lines
317 B
Plaintext
dnl Determine whether libtool supports --tag
|
|
dnl $Id$
|
|
|
|
AC_DEFUN([AC_LIBTOOL_HAS_TAG],[
|
|
AC_MSG_CHECKING([whether libtool supports --tag])
|
|
if grep "[[-]]-tag" $srcdir/support/ltmain.sh > /dev/null; then
|
|
AC_MSG_RESULT([yes])
|
|
LIBTOOL_TAG=--tag=CC
|
|
else
|
|
AC_MSG_RESULT([no])
|
|
LIBTOOL_TAG=
|
|
fi
|
|
AC_SUBST(LIBTOOL_TAG)
|
|
])
|