the libtoolX ports instead of the one included with each port. Ports that
set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of
the included version. To restore previous behavior, use the new macro,
USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version.
For example, to use the ports version of libtool-1.5, add the following to
your Makefile:
USE_LIBTOOL_VER= 15
To use the included version of libtool with extra hacks provided by
libtool-1.5, add the following to your Makefile:
USE_INC_LIBTOOL_VER= 15
With this change, ports that had to add additional libtool hacks to prevent
.la files from being installed or to fix certain threading issues can now
delete those hacks (after appropriate testing, of course).
PR: 63944
Based on work by:eik and marcus
Approved by: ade (autotools maintainer)
Tested by: kris on pointyhat
Bound to be hidden problems: You bet
basecalc came with Xlib Programming Manual from O'Reilly as an
example of X lib programming. mbasecalc is an immitation of basecalc
which is available on different platforms.
PR: ports/67993
Submitted by: Pierre-Paul Lavoie <ppl@nbnet.nb.ca>
o Upwardly binary compatible with 4.1.2, 4.1.1, 4.1, 4.0.1, 4.0, and 3.x versions.
o Bug fix to FFT multiplication code.
o Bug fix to K6 assembly code for gcd.
o Bug fix to IA-64 assembly code for population count.
o Portability improvements, most notably functional AMD64 support.
o Many minor bug fixes.
o Make portlint happy.
and is superseded by math/libgmp4. Other than libgmp-freebsd, libgmp4
builds on the main architectures supported by FreeBSD and is backwards-
compatible to the former. Therefore libgmp4 should be used by new ports
instead.
Set EXPIRATION_DATE arbitrarily to 2004-07-01.
Submitted by: marius
- Don't depend on math/libgmp-freebsd on FreeBSD <= 500023, use the base
libgmp instead. On FreeBSD > 500023 depend on math/libgmp4, as
math/libgmp-freebsd doesn't build on all architectures.
- Don't add PREFIX/include and PREFIX/lib to the search paths by default,
so on FreeBSD 4 the base libgmp is used. This protects from using one of
the libgmp ports if installed without registering a dependency on it.
- Keep from auto-detecting libgmp when WITHOUT_GMP is defined by specifying
the arithmetic to use.
Note: When using auto-detection and libgmp can't be found ndiff normally
would check for extended precision arithmetic first and succeed with it.
But using extended precision arithmetic causes the test suite to fail
(i.e. lots of differences) on all architectures expect sparc64. Therefore
specify double precision arithmetic for all other architectures when built
with WITHOUT_GMP.
Submitted by: marius