In answer to my own issue, moving AC_ENABLE_SHARED and
AC_ENABLE_STATIC to before AC_LIBLTDL_CONVENIENCE elminates the
problem:
#
# Configure libtool and ltdl
#
AC_ENABLE_SHARED(no)
AC_ENABLE_STATIC(yes)
AC_LIBLTDL_CONVENIENCE
# Substitute INCLTDL and LIBLTDL in the Makefiles
AC_SUBST(INCLTDL)
AC
On 4 Apr 2000, Alexandre Oliva wrote:
> On Apr 4, 2000, Akim Demaille <[EMAIL PROTECTED]> wrote:
>
> >> "Bob" == Bob Friesenhahn <[EMAIL PROTECTED]> writes:
> Bob> I have been using AM_ENABLE_SHARED(no) AM_ENABLE_STATIC(yes)
> Bob> AC_PROG_LIBTOOL
>
> > Will probably disappear if you move
On Apr 4, 2000, Akim Demaille <[EMAIL PROTECTED]> wrote:
>> "Bob" == Bob Friesenhahn <[EMAIL PROTECTED]> writes:
Bob> I have been using AM_ENABLE_SHARED(no) AM_ENABLE_STATIC(yes)
Bob> AC_PROG_LIBTOOL
> Will probably disappear if you move to AC_, not AM_. Untested.
Why would it disappear?
On Apr 4, 2000, Tom Tromey <[EMAIL PROTECTED]> wrote:
Michael> - automake forces me to configure libtool for every package.
Michael> I cannot use a configured libtool installed in a base
Michael> package.
> You might be able to make this work somehow, but I don't know it
> offhand.
I *think* t
I am having all sorts of problems with shared libraries and C++ with the
multi-lang. branch.
PROBLEM 1
1) On many platforms libtool can create shared libraries for C but not for
C++
2) On many of the platforms which libtool does know how to create C++
shared libraries libstdc++ is not compiled
> "Erez" == Erez Zadok <[EMAIL PROTECTED]> writes:
>> configure.in:35: warning: The macro `AC_OUTPUT_COMMANDS' is
>> obsolete. You should run autoupdate. configure.in: 33:
>> `AM_PROG_LIBTOOL' is obsolete, use `AC_PROG_LIBTOOL' instead
>> configure.in:50: warning: The macro `AC_LANG_C' is o
> "Bob" == Bob Friesenhahn <[EMAIL PROTECTED]> writes:
Bob> I have been using AM_ENABLE_SHARED(no) AM_ENABLE_STATIC(yes)
Bob> AC_PROG_LIBTOOL
Will probably disappear if you move to AC_, not AM_. Untested.