-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Okay to commit (as a single patch merged with --patch-32 posted earlier)?
* tests/demo-pic.test, tests/demo-nopic.test: Use new
`--enable-pic' style syntax.
* docs/libtool.texi (LT_INIT): Update documentation to actually
match the new syntax.
* NEWS: Update.
- --
Gary V. Vaughan ())_. [EMAIL PROTECTED],gnu.org}
Research Scientist ( '/ http://tkd.kicks-ass.net
GNU Hacker / )= http://www.gnu.org/software/libtool
Technical Author `(_~)_ http://sources.redhat.com/autobook
_________________________________________________________
This patch notification generated by tlaapply version 0.9
http://tkd.kicks-ass.net/arch/[EMAIL PROTECTED]/cvs-utils--tla--1.0
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (Darwin)
iD8DBQFDFHLkFRMICSmD1gYRAvR1AJ9Z57/46XPigGK6V+FQVV+z1lyA9ACdFUTB
xqBpPZba3C5IdSGIkSitCqE=
=urqd
-----END PGP SIGNATURE-----
* looking for [EMAIL PROTECTED]/libtool--gary--1.0--patch-32 to compare with
* comparing to [EMAIL PROTECTED]/libtool--gary--1.0--patch-32
M NEWS
M doc/libtool.texi
M tests/demo-nopic.test
M tests/demo-pic.test
M ChangeLog
* modified files
Index: Changelog
from Gary V. Vaughan <[EMAIL PROTECTED]>
* tests/demo-pic.test, tests/demo-nopic.test: Use new
`--enable-pic' style syntax.
* docs/libtool.texi (LT_INIT): Update documentation to actually
match the new syntax.
* NEWS: Update.
--- orig/NEWS
+++ mod/NEWS
@@ -4,6 +4,9 @@
* New tests for support of Automake subdir-objects.
* Support for Portland Group compiler on GNU/Linux.
* Fix libltdl on static platforms.
+* New `--enable-pic' and `--disable-pic' configure time options for libtool
+ client package configure scripts for controlling generation of PIC/non-PIC
+ code. (The old `--with-pic' syntax is now deprecated.)
* Support for linux-dietlibc (`diet' as well as `diet-dyn', separately).
* Shell optimizations which break use of the stdin file descriptor in libtool.
* `libtoolize --install' now also installs `install-sh'.
--- orig/doc/libtool.texi
+++ mod/doc/libtool.texi
@@ -1962,12 +1962,12 @@
@item pic-only
Change the default behaviour for @command{libtool} to try to use only
@sc{pic} objects. The user may still override this default by specifying
[EMAIL PROTECTED] to @command{configure}.
[EMAIL PROTECTED] to @command{configure}.
@item no-pic
Change the default behaviour of @command{libtool} to try to use only
[EMAIL PROTECTED] objects. The user may still override this default by
-specifying @option{--without-pic} to @command{configure}.
+specifying @option{--enable-pic} to @command{configure}.
@end table
--- orig/tests/demo-nopic.test
+++ mod/tests/demo-nopic.test
@@ -35,6 +35,6 @@
func_rmprefixdir
func_cd "tests/demo"
func_make_distclean
-func_configure "--with-pic=no"
+func_configure "--disable-pic"
exit 0
--- orig/tests/demo-pic.test
+++ mod/tests/demo-pic.test
@@ -26,6 +26,6 @@
func_rmprefixdir
func_cd "tests/demo"
func_make_distclean
-func_configure "--with-pic=yes"
+func_configure "--enable-pic=yes"
exit 0