The NetBSD Project

CVS log for pkgsrc/devel/gmp/Makefile

[BACK] Up to [cvs.netbsd.org] / pkgsrc / devel / gmp

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.63 / (download) - annotate - [select for diffs], Fri May 11 14:08:59 2012 UTC (12 days, 22 hours ago) by drochner
Branch: MAIN
CVS Tags: HEAD
Changes since 1.62: +2 -2 lines
Diff to previous 1.62 (colored)

update to 5.0.5
changes: bugfixes, in particular for glitches with newer CPUs

Revision 1.62 / (download) - annotate - [select for diffs], Tue Feb 21 13:18:19 2012 UTC (3 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base, pkgsrc-2012Q1
Changes since 1.61: +2 -3 lines
Diff to previous 1.61 (colored)

update to 5.0.4
changes:
-bugfixes
-New CPUs recognised

Revision 1.61 / (download) - annotate - [select for diffs], Wed Nov 16 21:30:07 2011 UTC (6 months, 1 week ago) by is
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base, pkgsrc-2011Q4
Changes since 1.60: +2 -1 lines
Diff to previous 1.60 (colored)

Make this work on thumbless CPUs.

Revision 1.60 / (download) - annotate - [select for diffs], Sun May 8 20:50:09 2011 UTC (12 months, 2 weeks ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2
Changes since 1.59: +2 -2 lines
Diff to previous 1.59 (colored)

Update GMP to version 5.0.2


Changes between GMP version 5.0.1 and 5.0.2

  BUGS FIXED
  * Many minor bugs related to portability fixed.

  * The support for HPPA 2.0N now works, after an assembly bug fix.

  * A test case type error has been fixed.  The symptom of this bug
    was spurious 'make check' failures.

  SPEEDUPS
  * None, except indirectly through recognition of new CPUs.

  FEATURES
  * Fat builds are now supported for 64-bit x86 processors also under Darwin.

  MISC
  * None.

Revision 1.59 / (download) - annotate - [select for diffs], Fri Sep 24 14:27:35 2010 UTC (19 months, 4 weeks ago) by jwise
Branch: MAIN
CVS Tags: pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3
Changes since 1.58: +3 -2 lines
Diff to previous 1.58 (colored)

Fix build on Solaris 10.

Unfortunately, with recent gcc, the x86 version of mpn fails to build on
Solaris.  Add it to Darwin on the list of platforms for which we build a
generic mpn instead.

Revision 1.58 / (download) - annotate - [select for diffs], Sat Feb 13 09:43:40 2010 UTC (2 years, 3 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1
Changes since 1.57: +2 -2 lines
Diff to previous 1.57 (colored)

Update to GMP 5.0.1


Changes in GMP 5.0.1

BUGS FIXED

  - Fat builds fixed.
  - Fixed crash for huge multiplies when old FFT_TABLE2 type of parameter selection tables' sentinel was smaller than multiplied
    operands.
  - The solib numbers now reflect the removal of the documented but preliminary mpn_bdivmod function; we correctly flag
    incompatibility with GMP 4.3. GMP 5.0.0 has this wrong, and should perhaps be uninstalled to avoid confusion.

SPEEDUPS

  - Multiplication of large numbers has indirectly been sped up through better FFT tuning and processor recognition. Since many
    operations depend on multiplication, there will be a general speedup.

FEATURES

  - More Core i3, i5 an Core i7 processor models are recognised.
  - Fixes and workarounds for Mac OS quirks should make this GMP version build using many of the different versions of "Xcode".

MISC

  - The amount of scratch memory needed for multiplication of huge numbers have been reduced substantially (but is still larger
    than in GMP 4.3.)
  - Likewise, the amount of scratch memory needed for division of large numbers have been reduced substantially.
  - The FFT tuning code of tune/tuneup.c has been completely rewritten, and new, large FFT parameter selection tables are provided
    for many machines.
  - Upgraded to the latest autoconf, automake, libtool.


Changes in GMP 5.0.0

BUGS FIXED

  - None (contains the same fixes as release 4.3.2).

SPEEDUPS

  - Multiplication has been overhauled:
     1. Multiplication of larger same size operands has been improved with the addition of two new Toom functions and a new
        internal function mpn_mulmod_bnm1 (computing U * V mod (B^n-1), B being the word base. This latter function is used for the
        largest products, waiting for a better Schoenhage-Strassen U * V mod (B^n+1) implementation.
     2. Likewise for squaring.
     3. Multiplication of different size operands has been improved with the addition of many new Toom function, and by selecting
        underlying functions better from the main multiply functions.
  - Division and mod have been overhauled:
     1. Plain "schoolbook" division is reimplemented using faster quotient approximation.
     2. Division Q = N/D, R = N mod D where both the quotient and remainder are needed now runs in time O(M(log(N))). This is an
        improvement of a factor log(log(N))
     3. Division where just the quotient is needed is now O(M(log(Q))) on average.
     4. Modulo operations using Montgomery REDC form now take time O(M(n)).
     5. Exact division Q = N/D by means of mpz_divexact has been improved for all sizes, and now runs in time O(M(log(N))).
  - The function mpz_powm is now faster for all sizes. Its complexity has gone from O(M(n)log(n)m) to O(M(n)m) where n is the size
    of the modulo argument and m is the size of the exponent. It is also radically faster for even modulus, since it now partially
    factors such modulus and performs two smaller modexp operations, then uses CRT.
  - The internal support for multiplication yielding just the lower n limbs has been improved by using Mulders' algorithm.
  - Computation of inverses, both plain 1/N and 1/N mod B^n have been improved by using well-tuned Newton iterations, and
    wrap-around multiplication using mpn_mulmod_bnm1.
  - A new algorithm makes mpz_perfect_power_p asymptotically faster.
  - The function mpz_remove uses a much faster algorithm, is better tuned, and also benefits from the division improvements.
  - Intel Atom and VIA Nano specific optimisations.
  - Plus hundreds of smaller improvements and tweaks!

FEATURES

  - New mpz function: mpz_powm_sec for side-channel quiet modexp computations.
  - New mpn functions: mpn_sqr, mpn_and_n, mpn_ior_n, mpn_xor_n, mpn_nand_n, mpn_nior_n, mpn_xnor_n, mpn_andn_n, mpn_iorn_n,
    mpn_com, mpn_neg, mpn_copyi, mpn_copyd, mpn_zero.
  - The function mpn_tdiv_qr now allows certain argument overlap.
  - Support for fat binaries for 64-bit x86 processors has been added.
  - A new type, mp_bitcnt_t for bignum bit counts, has been introduced.
  - Support for Windows64 through mingw64 has been added.
  - The cofactors of mpz_gcdext and mpn_gcdext are now more strictly normalised, returning to how GMP 4.2 worked. (Note that also
    release 4.3.2 has this change.)

MISC

  - The mpn_mul function should no longer be used for squaring, instead use the new mpn_sqr.
  - The algorithm selection has been improved, the number of thresholds have more than doubled, and the tuning and use of existing
    thresholds have been improved.
  - The tune/speed program can measure many of new functions.
  - The mpn_bdivmod function has been removed. We do not consider this an incompatible change, since the function was marked as
    preliminary.
  - The testsuite has been enhanced in various ways.


Changes in GMP 4.3.2

Bugs:

  - Fixed bug in mpf_eq.
  - Fixed overflow issues in mpz_set_str, mpz_inp_str, mpf_set_str, and mpf_get_str.
  - Avoid unbounded stack allocation for unbalanced multiplication.
  - Fixed bug in FFT multiplication.

Speedups:

  - None, except that improved processor recognition helps affected processors.

Features:

  - Recognise more "Core 2" processor variants.
  - The cofactors of mpz_gcdext and mpn_gcdext are now more strictly normalised, returning to how GMP 4.2 worked.

Revision 1.57 / (download) - annotate - [select for diffs], Sun Aug 16 13:42:33 2009 UTC (2 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3
Changes since 1.56: +3 -9 lines
Diff to previous 1.56 (colored)

Update to 4.3.1. Add gnu-gpl-v3 to LICENSE, since README claims it
also affects some files.

Changes between GMP version 4.3.0 and 4.3.1

  Bugs:
  * Fixed bug in mpn_gcdext, affecting also mpz_gcdext and mpz_invert.
    The bug could cause a cofactor to have a leading zero limb, which
    could lead to crashes or miscomputation later on.
  * Fixed some minor documentation issues.

  Features:
  * Workarounds for various issues with Mac OS X's build tools.
  * Recognise more IBM "POWER" processor variants.


Changes between GMP version 4.2.X and 4.3.0

  Bugs:
  * Fixed bug in mpz_perfect_power_p with recognition of negative perfect
    powers that can be written both as an even and odd power.
  * We might accidentally have added bugs since there is a large amount of
    new code in this release.

  Speedups:
  * Vastly improved assembly code for x86-64 processors from AMD and Intel.
  * Major improvements also for many other processor families, such as
    Alpha, PowerPC, and Itanium.
  * New sub-quadratic mpn_gcd and mpn_gcdext, as well as improved basecase
    gcd code.
  * The multiply FFT code has been slightly improved.
  * Balanced multiplication now uses 4-way Toom in addition to schoolbook,
    Karatsuba, 3-way Toom, and FFT.
  * Unbalanced multiplication has been vastly improved.
  * Improved schoolbook division by means of faster quotient approximation.
  * Several new algorithms for division and mod by single limbs, giving
    many-fold speedups.
  * Improved nth root computations.
  * The mpz_nextprime function uses sieving and is much faster.
  * Countless minor tweaks.

  Features:
  * Updated support for fat binaries for x86_32 include current processors
  * Lots of new mpn internal interfaces.  Some of them will become public
    in a future GMP release.
  * Support for the 32-bit ABI under x86-apple-darwin.
  * x86 CPU recognition code should now default better for future
    processors.
  * The experimental nails feature does not work in this release, but
    it might be re-enabled in the future.

  Misc:
  * The gmp_version variable now always contains three parts.  For this
    release, it is "4.3.0".

Revision 1.56 / (download) - annotate - [select for diffs], Tue May 19 08:59:09 2009 UTC (3 years ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base, pkgsrc-2009Q2
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored)

Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT
block). Uncomment some commented out LICENSE lines while here.

Revision 1.55 / (download) - annotate - [select for diffs], Tue Jan 20 17:51:12 2009 UTC (3 years, 4 months ago) by sketch
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base, pkgsrc-2009Q1
Changes since 1.54: +11 -3 lines
Diff to previous 1.54 (colored)

Disable C++ and fat binary support when using Sun Studio, they don't build.

Revision 1.54 / (download) - annotate - [select for diffs], Fri Nov 21 11:27:31 2008 UTC (3 years, 6 months ago) by bjs
Branch: MAIN
CVS Tags: pkgsrc-2008Q4-base, pkgsrc-2008Q4
Changes since 1.53: +17 -7 lines
Diff to previous 1.53 (colored)

Enable building the fat binary unless we're using Darwin;
this seems to make the most sense for bulk builds to me.
Should any other platforms fail, we can make a note of it
and exclude them along with Darwin.

Also, add two distribution patches from upstream:

[2008-11-09]
	When calling mpf_set_str (perhaps indirectly via
	mpf_init_set_str or mpf_inp_str, or via the C++ interface) with the
	argument for the base set to 0, any exponent will be ignored.
[2008-11-08]
	The mpf_eq function sometimes compares too few bits, not
	just too many (the latter is documented).
	This might lead to precision loss. When the experimental
	--enable-nails feature is enabled at the same time --enable-cxx is
	enabled, make check fails. This failure is actually due to bugs
	in tests/cxx/t-prec.cc, which makes it use mpf_eq incorrectly.
	This patch makes mpf_eq compare the right number of bits,
	neither too few, nor to many.
	The patch also fixes the test case, and documentation.

	(not strictly necessary, but I figured I'd keep in line with
	their recommendations)

PKGREVISION++

Revision 1.53 / (download) - annotate - [select for diffs], Thu Oct 9 10:56:16 2008 UTC (3 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.52: +2 -2 lines
Diff to previous 1.52 (colored)

Update to 4.2.4:

Changes between GMP version 4.2.3 and 4.2.4

  Bugs:
  * Fix bug with parsing exponent '+' sign in mpf.
  * Fix an allocation bug in mpf_set_str, also affecting mpf_init_set_str, and
    mpf_inp_str.

  Speedups:
  * None, except that proper processor recognition helps affected processors.

  Features:
  * Recognize new AMD processors.

Revision 1.52 / (download) - annotate - [select for diffs], Sun Aug 17 07:56:11 2008 UTC (3 years, 9 months ago) by bjs
Branch: MAIN
CVS Tags: pkgsrc-2008Q3-base, pkgsrc-2008Q3, cube-native-xorg-base, cube-native-xorg
Changes since 1.51: +9 -9 lines
Diff to previous 1.51 (colored)

Update to gmp-4.2.3.

Changes between GMP version 4.2.2 and 4.2.3:

  Bugs:
  * Fix x86 CPU recognition code to properly identify recent AMD and Intel
    64-bit processors.
  * The >> operator of the C++ wrapper gmpxx.h now does floor rounding, not
    truncation.
  * Inline semantics now follow the C99 standard, and works with recent GCC
    releases.
  * C++ bitwise logical operations work for more types.
  * For C++, gmp.h now includes cstdio, improving compiler compatibility.
  * Bases > 36 now work properly in mpf_set_str.

  Speedups:
  * None, except that proper processor recognition helps affected processors.

  Features:
  * The allocation functions now detect overflow of the mpz_t type.  This means
    that overflow will now cause an abort, except when the allocation
    computation itself overflows.  (Such overflow can probably only happen in
    powering functions; we will detect powering overflow in the future.)

Revision 1.51 / (download) - annotate - [select for diffs], Tue Apr 1 00:57:09 2008 UTC (4 years, 1 month ago) by bjs
Branch: MAIN
CVS Tags: pkgsrc-2008Q2-base, pkgsrc-2008Q2, pkgsrc-2008Q1-base, pkgsrc-2008Q1, cwrapper
Changes since 1.50: +6 -1 lines
Diff to previous 1.50 (colored)


Add distribution patch (from gmplib.org) for the following bug:

    When using mpf_set_str, mpf_init_set_str, or mpf_inp_str
    with a base > 36, the supplied base will actually be ignored,
    and the exponent 0 will be supplanted. [2007-12-10]

All tests pass on NetBSD/amd64 4.99.58.

Bump revision.

Revision 1.50 / (download) - annotate - [select for diffs], Tue Mar 11 18:47:40 2008 UTC (4 years, 2 months ago) by tnn
Branch: MAIN
Changes since 1.49: +2 -2 lines
Diff to previous 1.49 (colored)

Put back a couple of IRIX conditionals the way they used to behave,
e.g. match IRIX 5.x but not 6.x. Some of these may indeed apply to 6.x
too, but let's be conservative. PR pkg/38224.

Revision 1.49 / (download) - annotate - [select for diffs], Sun Dec 2 13:04:08 2007 UTC (4 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2007Q4-base, pkgsrc-2007Q4
Changes since 1.48: +2 -2 lines
Diff to previous 1.48 (colored)

Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev.

Revision 1.48 / (download) - annotate - [select for diffs], Sun Nov 25 08:35:31 2007 UTC (4 years, 5 months ago) by rillig
Branch: MAIN
Changes since 1.47: +5 -2 lines
Diff to previous 1.47 (colored)

Sunpro accepts __attribute__((mode ...)), but ignores it. Fixed the
configure test and reported it upstream.

Revision 1.47 / (download) - annotate - [select for diffs], Wed Nov 7 00:18:17 2007 UTC (4 years, 6 months ago) by gdt
Branch: MAIN
Changes since 1.46: +2 -2 lines
Diff to previous 1.46 (colored)

comment out LICENESE for now.

Revision 1.46 / (download) - annotate - [select for diffs], Tue Oct 30 01:36:59 2007 UTC (4 years, 6 months ago) by bjs
Branch: MAIN
Changes since 1.45: +21 -3 lines
Diff to previous 1.45 (colored)


Update to version 4.2.2.  Support DESTDIR installation.  Add option
to build a "fat" binary on (${MACHINE_ARCH} == "i386" && ${OPSYS} != "Darwin").
This isn't enabled by default now, but it might be useful for build builds,
as it uses cpuid at runtime to choose the most appropriate assembler code.
Insofar as I can tell, no BUILDLINK_A[BP]I_DEPENDS bump is necessary.

NOTE: Support for Darwin-*-i386 and Darwin-*-x86_64 has been improved,
see below.  Thus, I recommend that we test building the assembler code
on Darwin at some point.

Changes between GMP version 4.2.1 and 4.2.2:
	* License is now LGPL version 3.
Bugs:
	* Shared library numbers corrected for libcxx.
	* Fixed serious bug in gmpxx.h where a=a+b*c would generate garbage.
	  Note that this only affects C++ programs.
	* Fix crash in mpz_set_d for arguments with large negative exponent.
	* Fix 32-bit ABI bug with Itanium assembly for popcount and hamdist.
	* Fix assembly syntax problem for powerpc-ibm-aix with AIX
	  native assembler.
	* Fix problems with x86 --enable-fat, where the compiler where told to
	  generate code for the build machine, not plain i386 code as it should.
	* Improved recognition of powerpc systems wrt Altivec/VMX capability.
	* Misc minor fixes, mainly workarounds for compiler/assembler bugs.
Speedups:
	* "Core 2" and Pentium 4 processors, running in 64-bit mode will get a
	  slight boost as they are now specifically recognized.
Features:
	* New support for x86_64-solaris
	* New, rudimentary support for x86-apple-darwin and x86_64-apple-darwin.
	  (Please see http://gmplib.org/macos.html for more information.)

Revision 1.45 / (download) - annotate - [select for diffs], Tue Oct 16 23:49:02 2007 UTC (4 years, 7 months ago) by tnn
Branch: MAIN
Changes since 1.44: +2 -2 lines
Diff to previous 1.44 (colored)

Fix abusers of LOWER_OPSYS to check OPSYS or MACHINE_PLATFORM instead.

Revision 1.44 / (download) - annotate - [select for diffs], Mon Jun 18 02:45:31 2007 UTC (4 years, 11 months ago) by schmonz
Branch: MAIN
CVS Tags: pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2
Changes since 1.43: +6 -1 lines
Diff to previous 1.43 (colored)

Don't use x86 assembly on Darwin, as it doesn't build.

Revision 1.43 / (download) - annotate - [select for diffs], Thu Feb 22 19:01:17 2007 UTC (5 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2007Q1-base, pkgsrc-2007Q1
Changes since 1.42: +2 -2 lines
Diff to previous 1.42 (colored)

pkglint cleanup; update HOMEPAGE/MASTER_SITES.
From Sergey Svishchev in private mail.

Revision 1.42 / (download) - annotate - [select for diffs], Sat Dec 9 03:38:16 2006 UTC (5 years, 5 months ago) by jnemeth
Branch: MAIN
CVS Tags: pkgsrc-2006Q4-base, pkgsrc-2006Q4
Changes since 1.41: +2 -3 lines
Diff to previous 1.41 (colored)

Update to GNU MP 4.2.1

Changes between GMP version 4.2 and 4.2.1

  Bugs:
  * Shared library numbers corrected.
  * Broken support for 32-bit AIX fixed.
  * Misc minor fixes.

  Speedups:
  * Exact division (mpz_divexact) now falls back to plain division for large
    operands.

  Features:
  * Support for some new systems.


Changes between GMP version 4.1.4 and 4.2

  Bugs:
  * Minor bug fixes and code generalizations.
  * Expanded and improved test suite.

  Speedups:
  * Many minor optimizations, too many to mention here.
  * Division now always subquadratic.
  * Computation of n-factorial much faster.
  * Added basic x86-64 assembly code.
  * Floating-point output is now subquadratic for all bases.
  * FFT multiply code now about 25% faster.
  * Toom3 multiply code faster.

  Features:
  * Much improved configure.
  * Workarounds for many more compiler bugs.
  * Temporary allocations are now made on the stack only if small.
  * New systems supported: HPPA-2.0 gcc, IA-64 HP-UX, PowerPC-64 Darwin,
    Sparc64 GNU/Linux.
  * New i386 fat binaries, selecting optimised code at runtime (--enable-fat).
  * New build option: --enable-profiling=instrument.
  * New memory function: mp_get_memory_functions.
  * New Mersenne Twister random numbers: gmp_randinit_mt, also now used for
    gmp_randinit_default.
  * New random functions: gmp_randinit_set, gmp_urandomb_ui, gmp_urandomm_ui.
  * New integer functions: mpz_combit, mpz_rootrem.
  * gmp_printf etc new type "M" for mp_limb_t.
  * gmp_scanf and friends now accept C99 hex floats.
  * Numeric input and output can now be in bases up to 62.
  * Comparisons mpz_cmp_d, mpz_cmpabs_d, mpf_cmp_d recognise infinities.
  * Conversions mpz_get_d, mpq_get_d, mpf_get_d truncate towards zero,
    previously their behaviour was unspecified.
  * Fixes for overflow issues with operands >= 2^31 bits.

  Caveats:
  * mpfr is gone, and will from now on be released only separately.  Please see
    www.mpfr.org.

Revision 1.41 / (download) - annotate - [select for diffs], Sat Dec 2 22:32:59 2006 UTC (5 years, 5 months ago) by jschauma
Branch: MAIN
Changes since 1.40: +2 -8 lines
Diff to previous 1.40 (colored)

Instead of setting compiler flags in each package if it uses C99,
allow USE_LANGUAGES+=c99 and let gcc and mipspro do the right thing.
May need to be reviewed/added for other compilers.
ok rillig@

Revision 1.40 / (download) - annotate - [select for diffs], Sun Oct 22 19:49:07 2006 UTC (5 years, 7 months ago) by schwarz
Branch: MAIN
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)


corrected LOWER_OPSYS matching for IRIX 5

Revision 1.39 / (download) - annotate - [select for diffs], Thu Mar 30 03:44:43 2006 UTC (6 years, 1 month ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2
Changes since 1.38: +2 -3 lines
Diff to previous 1.38 (colored)

* Honor PKGINFODIR.
* List the info files directly in the PLIST.

Revision 1.38 / (download) - annotate - [select for diffs], Sat Mar 4 21:29:15 2006 UTC (6 years, 2 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored)

Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.

Revision 1.37 / (download) - annotate - [select for diffs], Fri Oct 21 15:46:43 2005 UTC (6 years, 7 months ago) by jschauma
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base, pkgsrc-2005Q4
Changes since 1.36: +7 -1 lines
Diff to previous 1.36 (colored)

Make this work on IRIX, by passing -c99 (if mipspro is used) and by
ensuring that the conftests are actually removed and therefor capabilities
can actually be detected (rather than configure failing for them)

Revision 1.36 / (download) - annotate - [select for diffs], Sun May 22 20:07:51 2005 UTC (7 years ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base, pkgsrc-2005Q3, pkgsrc-2005Q2-base, pkgsrc-2005Q2
Changes since 1.35: +2 -2 lines
Diff to previous 1.35 (colored)

Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:

	USE_GNU_TOOLS	-> USE_TOOLS
	awk		-> gawk
	m4		-> gm4
	make		-> gmake
	sed		-> gsed
	yacc		-> bison

Revision 1.35 / (download) - annotate - [select for diffs], Mon Apr 11 21:45:24 2005 UTC (7 years, 1 month ago) by tv
Branch: MAIN
Changes since 1.34: +1 -2 lines
Diff to previous 1.34 (colored)

Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.

Revision 1.34 / (download) - annotate - [select for diffs], Tue Mar 15 15:51:30 2005 UTC (7 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1
Changes since 1.33: +2 -1 lines
Diff to previous 1.33 (colored)

Add patch provided by Richard Earnshaw in PR 23181:
"GMP does not handle pure-endian FP on ARM"
Bump PKGREVISION.

Revision 1.33 / (download) - annotate - [select for diffs], Mon Feb 21 20:26:10 2005 UTC (7 years, 3 months ago) by hubertf
Branch: MAIN
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored)

Sign over maintainership to tech-pkg@

Revision 1.32 / (download) - annotate - [select for diffs], Sat Dec 18 15:43:19 2004 UTC (7 years, 5 months ago) by grant
Branch: MAIN
CVS Tags: pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.31: +6 -1 lines
Diff to previous 1.31 (colored)

set ABI=o32 on irix5, as gmp only supports o32 on irix5.

fixes PR pkg/28072 from Georg Schwarz.

Revision 1.31 / (download) - annotate - [select for diffs], Mon Nov 22 13:58:28 2004 UTC (7 years, 6 months ago) by adam
Branch: MAIN
Changes since 1.30: +2 -4 lines
Diff to previous 1.30 (colored)

Changes 4.1.4:
* Bug fix to FFT multiplication code (crash for huge operands).
* Bug fix to mpf_sub (miscomputation).
* Support for powerpc64-gnu-linux.
* Better support for AMD64 in 32-bit mode.
* Upwardly binary compatible with 4.1.3, 4.1.2, 4.1.1, 4.1, 4.0.1, 4.0,
  and 3.x versions.

Revision 1.30 / (download) - annotate - [select for diffs], Sun Oct 3 00:13:28 2004 UTC (7 years, 7 months ago) by tv
Branch: MAIN
Changes since 1.29: +2 -1 lines
Diff to previous 1.29 (colored)

Libtool fix for PR pkg/26633, and other issues.  Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.

Revision 1.29 / (download) - annotate - [select for diffs], Wed Aug 18 12:41:32 2004 UTC (7 years, 9 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base, pkgsrc-2004Q3
Changes since 1.28: +9 -9 lines
Diff to previous 1.28 (colored)

Changes 4.1.3:
* Bug fixes.
* mpz_export allows NULL for countp parameter.

Revision 1.28 / (download) - annotate - [select for diffs], Sat Feb 14 17:21:37 2004 UTC (8 years, 3 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base, pkgsrc-2004Q2, pkgsrc-2004Q1-base, pkgsrc-2004Q1
Changes since 1.27: +1 -3 lines
Diff to previous 1.27 (colored)

LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globs
relative to ${WRKSRC}.  Remove redundant LIBTOOL_OVERRIDE settings that
are automatically handled by the default setting in bsd.pkg.mk.

Revision 1.27 / (download) - annotate - [select for diffs], Thu Feb 12 09:00:29 2004 UTC (8 years, 3 months ago) by jlam
Branch: MAIN
Changes since 1.26: +5 -5 lines
Diff to previous 1.26 (colored)

This package uses C++.  Also some reorg to improve readability.

Revision 1.26 / (download) - annotate - [select for diffs], Sun Feb 1 01:43:28 2004 UTC (8 years, 3 months ago) by jlam
Branch: MAIN
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored)

In the new compiler selection framework, GCC_REQD is appended to, not
overridden.

Revision 1.25 / (download) - annotate - [select for diffs], Mon Jan 19 13:15:52 2004 UTC (8 years, 4 months ago) by jlam
Branch: MAIN
Changes since 1.24: +4 -2 lines
Diff to previous 1.24 (colored)

bl3ify

Revision 1.24 / (download) - annotate - [select for diffs], Tue Dec 2 21:57:26 2003 UTC (8 years, 5 months ago) by salo
Branch: MAIN
Changes since 1.23: +7 -5 lines
Diff to previous 1.23 (colored)

Add math to CATEGORIES.
Style nits.

Revision 1.23 / (download) - annotate - [select for diffs], Tue Oct 28 22:33:57 2003 UTC (8 years, 6 months ago) by kristerw
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base, pkgsrc-2003Q4
Changes since 1.22: +6 -1 lines
Diff to previous 1.22 (colored)

The configure script thinks gcc 2.95 for ARM is too buggy to use,
so require gcc 3 for arm.

Revision 1.22 / (download) - annotate - [select for diffs], Sat Sep 27 15:09:05 2003 UTC (8 years, 7 months ago) by grant
Branch: MAIN
Changes since 1.21: +3 -5 lines
Diff to previous 1.21 (colored)

use tools.mk for GNU m4.

move a line for clarity.

Revision 1.21 / (download) - annotate - [select for diffs], Wed Sep 17 16:24:37 2003 UTC (8 years, 8 months ago) by grant
Branch: MAIN
Changes since 1.20: +4 -2 lines
Diff to previous 1.20 (colored)

add USE_GCC_SHLIB, reorder some lines a bit for clarity.

Revision 1.20 / (download) - annotate - [select for diffs], Thu Aug 21 20:09:29 2003 UTC (8 years, 9 months ago) by heinz
Branch: MAIN
Changes since 1.19: +3 -1 lines
Diff to previous 1.19 (colored)

Add correct TEST_TARGET

Revision 1.19 / (download) - annotate - [select for diffs], Sat Aug 9 10:44:42 2003 UTC (8 years, 9 months ago) by seb
Branch: MAIN
Changes since 1.18: +1 -2 lines
Diff to previous 1.18 (colored)

USE_NEW_TEXINFO is unnecessary now.

Revision 1.18 / (download) - annotate - [select for diffs], Thu Jul 17 21:30:48 2003 UTC (8 years, 10 months ago) by grant
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored)

s/netbsd.org/NetBSD.org/

Revision 1.17 / (download) - annotate - [select for diffs], Mon Jun 23 11:02:22 2003 UTC (8 years, 11 months ago) by seb
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored)

Convert to USE_NEW_TEXINFO.

Revision 1.16 / (download) - annotate - [select for diffs], Fri Feb 21 12:25:22 2003 UTC (9 years, 3 months ago) by mycroft
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored)

Update to gmp 4.1.2.  Many changes, but the relevant bug fixes seems to be:

	* mpn/generic/rootrem.c: In Newton loop, pad qp with leading zero.

	* mpn/generic/rootrem.c: Allocate 1.585 (log2(3)) times more space
        for pp temporary to allow for worst case overestimate of root.
	Add some asserts.

	* tests/mpz/t-root.c: Generalize and speed up.

        * mpfr/pow.c: Fixed bug (infinite loop) for exact powers.

	* mpfr/sub.c: Fixed wrong inexact flag for a - b where a and b are of
        different signs and EXP(a) < EXP(b).

	* printf/printffuns.c (gmp_fprintf_reps): Make it actually work
	for padding > 256.

        * gmp-impl.h (USE_LEADING_REGPARM): Disable for PIC code generation.

	* mpn/generic/tdiv_qr.c: Remove a bogus assert.

	* mpn/generic/mode1o.c, mpn/alpha/ev5/mode1o.c: Correction to ASSERTs.
	Reported by Christoph Ludwig.

	* mpf/urandomb.c: Truncate nbits to precision of rop.

	* configure.in (sparc v9 *bsd*): Add NetBSD and OpenBSD sparc64.
	(x86 openbsd*): Extra underscore for _GLOBAL_OFFSET_TABLE_.

	* mpn/generic/rootrem.c: Avoid overflow in xnb calculation.
	* mpz/root.c: Avoid overflow in rootnb calculation.

	* gmpxx.h (__gmp_binary_equal, __gmp_binary_not_equal): Fix broken
	mpq/double functions.

	* mpn/m68k/lshift.asm: Fix typo in !scale_available_p code.
        * mpn/m68k/rshift.asm: Likewise.

	* mpz/remove.c: Make src==0 return 0, not do DIVIDE_BY_ZERO.

	* mpfr/acinclude.m4 (MPFR_CONFIGS): Patch by Vincent for an apparent
	float rounding gremlin on powerpc.

	* mpf/inp_str.c: Fix returned count of chars read, reported by Paul
	Zimmermann.  Also fix a memory leak for invalid input.

	* mpfr/set_q.c: Allow for 1 bit numerator or denominator.

Revision 1.15 / (download) - annotate - [select for diffs], Thu Jan 2 20:30:59 2003 UTC (9 years, 4 months ago) by hubertf
Branch: MAIN
CVS Tags: netbsd-1-6-1-base, netbsd-1-6-1
Changes since 1.14: +2 -2 lines
Diff to previous 1.14 (colored)

fix dependency for m4

Revision 1.14 / (download) - annotate - [select for diffs], Sun Aug 25 21:49:41 2002 UTC (9 years, 9 months ago) by jlam
Branch: MAIN
Changes since 1.13: +2 -2 lines
Diff to previous 1.13 (colored)

Merge packages from the buildlink2 branch back into the main trunk that
have been converted to USE_BUILDLINK2.

Revision 1.12.2.2 / (download) - annotate - [select for diffs], Sun Aug 25 21:20:03 2002 UTC (9 years, 9 months ago) by jlam
Branch: buildlink2
Changes since 1.12.2.1: +3 -3 lines
Diff to previous 1.12.2.1 (colored) to branchpoint 1.12 (colored) next main 1.13 (colored)

Merge changes in the main trunk into the buildlink2 branch for those
packages that have been converted to USE_BUILDLINK2.

Revision 1.13 / (download) - annotate - [select for diffs], Sat Aug 24 00:39:06 2002 UTC (9 years, 9 months ago) by mjl
Branch: MAIN
CVS Tags: buildlink2-base
Changes since 1.12: +4 -4 lines
Diff to previous 1.12 (colored)

Update to 4.1

* Bug fixes.
* Speed improvements.
* Upwardly binary compatible with 4.0, 4.0.1, and 3.x versions.
* Asymptotically fast conversion to/from strings (mpz, mpq, mpn levels), but
  also major speed improvements for tiny operands.
* mpn_get_str parameter restrictions relaxed.
* Major speed improvments for HPPA 2.0 systems.
* Major speed improvments for UltraSPARC systems.
* Major speed improvments for IA-64 systems (but still sub-optimal code).
* Extended test suite.
* mpfr is back, with many bug fixes and portability improvements.
* New function: mpz_ui_sub.
* New functions: mpz_export, mpz_import.
* Optimization for nth root functions (mpz_root, mpz_perfect_power_p).
* Optimization for extended gcd (mpz_gcdext, mpz_invert, mpn_gcdext).
* Generalized low-level number format, reserving a `nails' part of each
  limb.  (Please note that this is really experimental; some functions
  are likely to compute garbage when nails are enabled.)
* Nails-enabled Alpha 21264 assembly code, allowing up to 75% better
  performance.  (Use --enable-nails=4 to enable it.)

Revision 1.12.2.1 / (download) - annotate - [select for diffs], Sun Jun 23 06:29:49 2002 UTC (9 years, 11 months ago) by jlam
Branch: buildlink2
Changes since 1.12: +3 -3 lines
Diff to previous 1.12 (colored)

Convert to use buildlink2 framework.

Revision 1.12 / (download) - annotate - [select for diffs], Fri Apr 12 14:12:18 2002 UTC (10 years, 1 month ago) by jschauma
Branch: MAIN
CVS Tags: pkgviews-base, pkgviews, netbsd-1-6-RELEASE-base, netbsd-1-6, netbsd-1-5-PATCH003
Branch point for: buildlink2
Changes since 1.11: +2 -1 lines
Diff to previous 1.11 (colored)



Build C++ library, too.
(Commit approved by hubertf)

Revision 1.11 / (download) - annotate - [select for diffs], Wed Apr 10 12:37:53 2002 UTC (10 years, 1 month ago) by hubertf
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

Update gmp to 4.0.1. Changes:

* Bug fixes.
* Speed improvements.
* Upwardly binary compatible with 3.x versions.
* New CPU support: IA-64, Pentium 4.
* Improved CPU support: 21264, Cray vector systems.
* Support for all MIPS ABIs: o32, n32, 64.
* New systems supported: Darwin, SCO, Windows DLLs.
* New divide-and-conquer square root algorithm.
* New algorithms chapter in the manual.
* New malloc reentrant temporary memory method.
* New C++ class interface by Gerardo Ballabio (beta).
* Revamped configure, featuring ABI selection.
* Speed improvements for mpz_powm and mpz_powm_ui (mainly affecting small
  operands).
* mpz_perfect_power_p now properly recognizes 0, 1, and negative perfect
  powers.
* mpz_hamdist now supports negative operands.
* mpz_jacobi now accepts non-positive denominators.
* mpz_powm now supports negative exponents.
* mpn_mul_1 operand overlap requirements relaxed.
* Float input and output uses locale specific decimal point where available.
* New gmp_printf, gmp_scanf and related functions.
* New division functions: mpz_cdiv_q_2exp, mpz_cdiv_r_2exp, mpz_divexact_ui.
* New divisibility tests: mpz_divisible_p, mpz_divisible_ui_p,
  mpz_divisible_2exp_p, mpz_congruent_p, mpz_congruent_ui_p,
  mpz_congruent_2exp_p.
* New Fibonacci function: mpz_fib2_ui.
* New Lucas number functions: mpz_lucnum_ui, mpz_lucnum2_ui.
* Other new integer functions: mpz_cmp_d, mpz_cmpabs_d, mpz_get_d_2exp,
  mpz_init2, mpz_kronecker, mpz_lcm_ui, mpz_realloc2.
* New rational I/O: mpq_get_str, mpq_inp_str, mpq_out_str, mpq_set_str.
* Other new rational functions: mpq_abs, mpq_cmp_si, mpq_div_2exp,
  mpq_mul_2exp, mpq_set_f.
* New float tests: mpf_integer_p, mpf_fits_sint_p, mpf_fits_slong_p,
  mpf_fits_sshort_p, mpf_fits_uint_p, mpf_fits_ulong_p, mpf_fits_ushort_p.
* Other new float functions: mpf_cmp_d, mpf_get_default_prec, mpf_get_si,
  mpf_get_ui, mpf_get_d_2exp.
* New random functions: gmp_randinit_default, gmp_randinit_lc_2exp_size.
* New demo expression string parser (see demos/expr).
* New preliminary perl interface (see demos/perl).
* Tuned algorithm thresholds for many more CPUs.

Revision 1.10 / (download) - annotate - [select for diffs], Mon Feb 18 15:14:11 2002 UTC (10 years, 3 months ago) by seb
Branch: MAIN
Changes since 1.9: +3 -1 lines
Diff to previous 1.9 (colored)

Introduce new framework for handling info files generation and installation.

Summary of changes:
- removal of USE_GTEXINFO
- addition of mk/texinfo.mk
- inclusion of this file in package Makefiles requiring it
- `install-info' substituted by `${INSTALL_INFO}' in PLISTs
- tuning of mk/bsd.pkg.mk:
    removal of USE_GTEXINFO
    INSTALL_INFO added to PLIST_SUBST
    `${INSTALL_INFO}' replace `install-info' in target rules
    print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info'
- a couple of new patch files added for a handful of packages
- setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it
- devel/cssc marked requiring texinfo 4.0
- a couple of packages Makefiles were tuned with respect of INFO_FILES and
  makeinfo command usage

See -newly added by this commit- section 10.24 of Packages.txt for
further information.

Revision 1.9 / (download) - annotate - [select for diffs], Mon Jul 2 16:46:02 2001 UTC (10 years, 10 months ago) by jlam
Branch: MAIN
Changes since 1.8: +2 -1 lines
Diff to previous 1.8 (colored)

Mark as USE_BUILDLINK_ONLY.

Revision 1.8 / (download) - annotate - [select for diffs], Tue Mar 27 03:19:51 2001 UTC (11 years, 2 months ago) by hubertf
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH001
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored)

Change BUILD_DEPENDS semantics:
first component is now a package name+version/pattern, no more
executable/patchname/whatnot.

While there, introduce BUILD_USES_MSGFMT as shorthand to pull in
devel/gettext unless /usr/bin/msgfmt exists (i.e. on post-1.5 -current).

Patch by Alistair Crooks <agc@netbsd.org>

Revision 1.7 / (download) - annotate - [select for diffs], Fri Feb 23 14:15:28 2001 UTC (11 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.6: +4 -1 lines
Diff to previous 1.6 (colored)

Use GNU m4; on macppc, NetBSD m4 seems to have a problem here.

Revision 1.6 / (download) - annotate - [select for diffs], Fri Feb 16 14:38:28 2001 UTC (11 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.5: +2 -1 lines
Diff to previous 1.5 (colored)

Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.

Revision 1.5 / (download) - annotate - [select for diffs], Sun Dec 31 14:05:29 2000 UTC (11 years, 4 months ago) by skrll
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

Update to 3.1.1.

Split patch-aa into a patch per file while I'm here.

Revision 1.4 / (download) - annotate - [select for diffs], Fri Jun 30 16:52:53 2000 UTC (11 years, 10 months ago) by danw
Branch: MAIN
CVS Tags: netbsd-1-5-RELEASE, netbsd-1-4-PATCH003
Changes since 1.3: +9 -7 lines
Diff to previous 1.3 (colored)

Update to gmp-3.0.1, including new functions, autoconf/libtool support,
and a shared version of the library.

Revision 1.3 / (download) - annotate - [select for diffs], Sun Dec 26 18:07:19 1999 UTC (12 years, 5 months ago) by tron
Branch: MAIN
CVS Tags: netbsd-1-4-PATCH002
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

Use "${MASTER_SITE_GNU}" instead of hard coding "ftp.gnu.org".

Revision 1.2 / (download) - annotate - [select for diffs], Fri Apr 30 01:51:59 1999 UTC (13 years ago) by simonb
Branch: MAIN
CVS Tags: netbsd-1-4-RELEASE, netbsd-1-4-PATCH001, comdex-fall-1999
Changes since 1.1: +2 -1 lines
Diff to previous 1.1 (colored)

Add a homepage while I'm here.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Mon Apr 5 19:48:59 1999 UTC (13 years, 1 month ago) by hubertf
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

GNU Multiple Precision Arithmetic Library

Revision 1.1 / (download) - annotate - [select for diffs], Mon Apr 5 19:48:59 1999 UTC (13 years, 1 month ago) by hubertf
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>