Re: autoreconf misses ltmain.sh

2002-09-25 Thread Akim Demaille


|  I have not read all the details yet, but does anybody know what we
|  must do to cope with Libtool 1.4.2?
| 
| How about this patch to Autoconf?  It should let us limp along until a
| new libtool version is published.
| 
| --- old/BUGS  2002-03-26 08:14:37.0 -0800
| +++ new/BUGS  2002-09-24 06:35:04.496461535 -0700
| @@ -38,3 +38,12 @@
|  /*--.
|  | Sane for full scale use.  |
|  `--*/
| +
| +* Interoperability bugs
| +
| +** AC_CONFIG_AUX_DIR and libtool 1.4.2.
| +
| +Autoconf-generated scripts that use AC_CONFIG_AUX_DIR do not work with
| +libtool 1.4.2.  Robert Boehne and Michael Matz have published a patch
| +for libtool in:
| +http://mail.gnu.org/pipermail/libtool-patches/2002-January/001659.html.

Please, install!


___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool



Re: Libtool 1.4.2 and EBCDIC

2002-09-25 Thread Robert Boehne

Howard,

This was installed already.

Thanks,
 
Robert Boehne Software Engineer
Ricardo Software   Chicago Technical Center
TEL: (630)789-0003 x. 238
FAX: (630)789-0127
email:  rboehne AT gnu DOT org


___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool



Re: Hey SEXY!

2002-09-25 Thread Jodana Cox

Yo Sexy Baby See My Nude Photos @ http://www.adultillusions.com


___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool



Automake 1.7 released

2002-09-25 Thread Alexandre Duret-Lutz

We're pleased to announce the release of Automake 1.7.  This release
contains many bug fixes and improvements.  The NEWS entry is appended.

You can find the new release here:

ftp://sources.redhat.com/pub/automake/automake-1.7.tar.gz
ftp://sources.redhat.com/pub/automake/automake-1.7.tar.bz2
ftp://ftp.gnu.org/gnu/automake/automake-1.7.tar.gz
ftp://ftp.gnu.org/gnu/automake/automake-1.7.tar.bz2

(Note that the files might not be already available at ftp.gnu.org by
the time you read this.)

Soon it will also appear on the sources and GNU mirrors.
Follow these links for a list of them:

http://sources.redhat.com/mirrors.html
http://www.gnu.org/order/ftp.html

Please report bugs by mail to [EMAIL PROTECTED], or (preferred)
at http://sources.redhat.com/cgi-bin/gnatsweb.pl?database=automake

 - Akim, Alexandre, and Tom

New in 1.7:
* Autoconf 2.54 is required.
* `aclocal' and `automake' will no longer warn about obsolete
  configure macros.  This is done by `autoconf -Wobsolete'.
* AM_CONFIG_HEADER, AM_SYS_POSIX_TERMIOS and
  AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL are obsolete (although still
  supported).  You should use AC_CONFIG_HEADERS, AC_SYS_POSIX_TERMIOS,
  and AC_HEADER_TIOCGWINSZ instead.  `autoupdate' can upgrade
  `configure.ac' for you.
* Support for per-program and per-library `_CPPFLAGS'.
* New `ctags' target (builds CTAGS files).
* Support for -Wmumble and -Wno-mumble, where mumble is a warning category
  (see `automake --help' or the manual for a list of them).
* Honor the WARNINGS environment variable.
* Omit the call to depcomp when using gcc3: call the compiler directly.
* A new option, std-options, tests that programs support --help and --version
  when `make installcheck' is run.  This is enabled by --gnits.
* Texinfo rules now support the `ps' and `pdf' targets.
* Info files are now created in the build directory, not the source directory.
* info_TEXINFOS supports files in subdirectories (this requires Texinfo 4.1
  or greater).
* `make distcheck' will enforce DESTDIR support by attempting
  a DESTDIR install.
* `+=' can be used in conditionals, even if the augmented variable
  was defined for another condition.
* Makefile fragments (inserted with `include') are always distributed.
* Use Autoconf's --trace interface to inspect configure.ac and get
  a more accurate view of it.
* Add support for extending aclocal's default macro search path
  using a `dirlist' file within the aclocal directory.
* automake --output-dir is deprecated.
* The part of the distcheck target that checks whether uninstall actually
  removes all installed files has been moved in a separate target,
  distuninstallcheck, so it can be overridden easily.
* Many bug fixes.



___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool



Re: [Mingw-users] Whats the latest on libtool and the stub dll libraries?

2002-09-25 Thread Elizabeth Barham

This is just a simple report-in about the errors I mentioned having
yesterday or the day before. The latest CVS libtool did not have any
trouble and made the DLL fine.

I'd also like to mention that the whole libtool seemed to work quicker
than before.

Thank you all very much and great job!

On a related note, I have been having to add a main function to the
DLL's like so:

#if defined(__MINGW32__)  defined(DLL_EXPORT)
int
main(int argc, char* argv[])
{
  return 0;
}
#endif

If I do not add this, it does not build the DLL. I'm concerned about
the export of this function, however - if more than one DLL uses this
method, could there be some kind of conflict and/or is there a better
way to deal with this?

Thank you,

Elizabeth


___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool



Re: autoreconf misses ltmain.sh

2002-09-25 Thread Paul Eggert

 From: Akim Demaille [EMAIL PROTECTED]
 Date: 25 Sep 2002 12:03:42 +0200
 
 Please, install!

OK, done.  I did find some errors in my proposed text (it didn't give
the obvious workaround, and it credited the wrong people for the patch
-- ouch!), so I installed the following patch instead.


--- BUGS26 Mar 2002 16:16:51 -  1.22
+++ BUGS26 Sep 2002 06:16:44 -  1.23
@@ -38,3 +38,12 @@ address them.
 /*--.
 | Sane for full scale use.  |
 `--*/
+
+* Interoperability bugs
+
+** libtool 1.4.2, configure.ac, and AC_CONFIG_AUX_DIR
+
+configure.ac files that use AC_CONFIG_AUX_DIR do not work with libtool
+1.4.2.  To work around the problem, you can rename configure.ac to
+configure.in.  Or you can apply Roger Leigh's patch to libtool; see
+http://mail.gnu.org/pipermail/libtool-patches/2002-January/001659.html.


___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool