Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/lgpl3/mpc/dist initial import of MPC 1.0.3 package....



details:   https://anonhg.NetBSD.org/src/rev/688ad28ad125
branches:  trunk
changeset: 826140:688ad28ad125
user:      mrg <mrg%NetBSD.org@localhost>
date:      Thu Aug 17 00:08:03 2017 +0000

description:
initial import of MPC 1.0.3 package.  changes since 1.0.1:

Changes in version 1.0.3:
  - Fixed mpc_pow, see
    http://lists.gforge.inria.fr/pipermail/mpc-discuss/2014-October/001315.html
  - #18257: Switched to libtool 2.4.5.

Changes in version 1.0.2:
  - Fixed mpc_atan, mpc_atanh for (+-0, +-1), see
    http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57994#c7
  - Fixed mpc_log10 for purely imaginary argument, see
    http://lists.gforge.inria.fr/pipermail/mpc-discuss/2012-September/001208.html

diffstat:

 external/lgpl3/mpc/dist/INSTALL              |     6 +-
 external/lgpl3/mpc/dist/Makefile.am          |     2 +-
 external/lgpl3/mpc/dist/Makefile.in          |   365 +-
 external/lgpl3/mpc/dist/Makefile.vc          |     4 +-
 external/lgpl3/mpc/dist/NEWS                 |    11 +
 external/lgpl3/mpc/dist/aclocal.m4           |   730 ++-
 external/lgpl3/mpc/dist/ar-lib               |     4 +-
 external/lgpl3/mpc/dist/compile              |   347 +
 external/lgpl3/mpc/dist/config.h.in          |     3 +-
 external/lgpl3/mpc/dist/configure            |  2910 +++++++-----
 external/lgpl3/mpc/dist/configure.ac         |     8 +-
 external/lgpl3/mpc/dist/depcomp              |   459 +-
 external/lgpl3/mpc/dist/doc/Makefile.in      |   204 +-
 external/lgpl3/mpc/dist/doc/mdate-sh         |    37 +-
 external/lgpl3/mpc/dist/doc/mpc.info         |   Bin 
 external/lgpl3/mpc/dist/doc/stamp-vti        |     8 +-
 external/lgpl3/mpc/dist/doc/texinfo.tex      |  2390 +++++++---
 external/lgpl3/mpc/dist/doc/version.texi     |     8 +-
 external/lgpl3/mpc/dist/install-sh           |   362 +-
 external/lgpl3/mpc/dist/ltmain.sh            |  5835 ++++++++++++++++---------
 external/lgpl3/mpc/dist/m4/libtool.m4        |  2841 +++++++-----
 external/lgpl3/mpc/dist/m4/ltoptions.m4      |   140 +-
 external/lgpl3/mpc/dist/m4/ltsugar.m4        |     7 +-
 external/lgpl3/mpc/dist/m4/ltversion.m4      |    12 +-
 external/lgpl3/mpc/dist/m4/lt~obsolete.m4    |     7 +-
 external/lgpl3/mpc/dist/m4/mpc.m4            |    22 +-
 external/lgpl3/mpc/dist/m4/valgrind-tests.m4 |    11 +-
 external/lgpl3/mpc/dist/missing              |   402 +-
 external/lgpl3/mpc/dist/src/Makefile.in      |   258 +-
 external/lgpl3/mpc/dist/src/atan.c           |    10 +-
 external/lgpl3/mpc/dist/src/get_version.c    |     5 +-
 external/lgpl3/mpc/dist/src/log10.c          |    19 +-
 external/lgpl3/mpc/dist/src/mpc.h            |     6 +-
 external/lgpl3/mpc/dist/src/pow.c            |    17 +-
 external/lgpl3/mpc/dist/test-driver          |   148 +
 external/lgpl3/mpc/dist/tests/Makefile.in    |  1346 ++++-
 external/lgpl3/mpc/dist/tests/atan.dat       |    12 +-
 external/lgpl3/mpc/dist/tests/atanh.dat      |     3 +-
 external/lgpl3/mpc/dist/tests/log10.dat      |     4 +
 external/lgpl3/mpc/dist/tests/pow.dat        |     1 +
 40 files changed, 12005 insertions(+), 6959 deletions(-)

diffs (truncated from 32547 to 300 lines):

diff -r e8c777fa2bd0 -r 688ad28ad125 external/lgpl3/mpc/dist/INSTALL
--- a/external/lgpl3/mpc/dist/INSTALL   Thu Aug 17 00:06:00 2017 +0000
+++ b/external/lgpl3/mpc/dist/INSTALL   Thu Aug 17 00:08:03 2017 +0000
@@ -1,4 +1,4 @@
-Copyright (C) INRIA 2003, 2005, 2007, 2008, 2009, 2010, 2011, 2012
+Copyright (C) INRIA 2003, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2014
 
 Copying and distribution of this file, with or without modification,
 are permitted in any medium without royalty provided the copyright
@@ -19,8 +19,8 @@
 
 1. In the directory of the GNU MPC archive, type
 
-      tar xzf mpc-1.0.1.tar.gz
-      cd mpc-1.0.1
+      tar xzf mpc-1.0.3.tar.gz
+      cd mpc-1.0.3
       ./configure
       make
 
diff -r e8c777fa2bd0 -r 688ad28ad125 external/lgpl3/mpc/dist/Makefile.am
--- a/external/lgpl3/mpc/dist/Makefile.am       Thu Aug 17 00:06:00 2017 +0000
+++ b/external/lgpl3/mpc/dist/Makefile.am       Thu Aug 17 00:08:03 2017 +0000
@@ -20,7 +20,7 @@
 ACLOCAL_AMFLAGS = -I m4
 
 # version number for distribution tarball
-VERSION = @VERSION@@SVNVERSION@
+VERSION = @VERSION@@GITVERSION@
 
 SUBDIRS = src tests doc
 
diff -r e8c777fa2bd0 -r 688ad28ad125 external/lgpl3/mpc/dist/Makefile.in
--- a/external/lgpl3/mpc/dist/Makefile.in       Thu Aug 17 00:06:00 2017 +0000
+++ b/external/lgpl3/mpc/dist/Makefile.in       Thu Aug 17 00:08:03 2017 +0000
@@ -1,9 +1,8 @@
-# Makefile.in generated by automake 1.11.6 from Makefile.am.
+# Makefile.in generated by automake 1.15 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
+# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -16,23 +15,61 @@
 @SET_MAKE@
 
 VPATH = @srcdir@
-am__make_dryrun = \
-  { \
-    am__dry=no; \
+am__is_gnu_make = { \
+  if test -z '$(MAKELEVEL)'; then \
+    false; \
+  elif test -n '$(MAKE_HOST)'; then \
+    true; \
+  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+    true; \
+  else \
+    false; \
+  fi; \
+}
+am__make_running_with_option = \
+  case $${target_option-} in \
+      ?) ;; \
+      *) echo "am__make_running_with_option: internal error: invalid" \
+              "target option '$${target_option-}' specified" >&2; \
+         exit 1;; \
+  esac; \
+  has_opt=no; \
+  sane_makeflags=$$MAKEFLAGS; \
+  if $(am__is_gnu_make); then \
+    sane_makeflags=$$MFLAGS; \
+  else \
     case $$MAKEFLAGS in \
       *\\[\ \  ]*) \
-        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
-          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
-      *) \
-        for am__flg in $$MAKEFLAGS; do \
-          case $$am__flg in \
-            *=*|--*) ;; \
-            *n*) am__dry=yes; break;; \
-          esac; \
-        done;; \
+        bs=\\; \
+        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+          | sed "s/$$bs$$bs[$$bs $$bs  ]*//g"`;; \
     esac; \
-    test $$am__dry = yes; \
-  }
+  fi; \
+  skip_next=no; \
+  strip_trailopt () \
+  { \
+    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+  }; \
+  for flg in $$sane_makeflags; do \
+    test $$skip_next = yes && { skip_next=no; continue; }; \
+    case $$flg in \
+      *=*|--*) continue;; \
+        -*I) strip_trailopt 'I'; skip_next=yes;; \
+      -*I?*) strip_trailopt 'I';; \
+        -*O) strip_trailopt 'O'; skip_next=yes;; \
+      -*O?*) strip_trailopt 'O';; \
+        -*l) strip_trailopt 'l'; skip_next=yes;; \
+      -*l?*) strip_trailopt 'l';; \
+      -[dEDm]) skip_next=yes;; \
+      -[JT]) skip_next=yes;; \
+    esac; \
+    case $$flg in \
+      *$$target_option*) has_opt=yes; break;; \
+    esac; \
+  done; \
+  test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -52,11 +89,6 @@
 build_triplet = @build@
 host_triplet = @host@
 subdir = .
-DIST_COMMON = README $(am__configure_deps) $(include_HEADERS) \
-       $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
-       $(srcdir)/config.h.in $(top_srcdir)/configure AUTHORS \
-       COPYING.LESSER ChangeLog INSTALL NEWS TODO ar-lib config.guess \
-       config.sub depcomp install-sh ltmain.sh missing
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_c_check_flag.m4 \
        $(top_srcdir)/m4/ax_gcc_option.m4 \
@@ -67,21 +99,36 @@
        $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
+       $(am__configure_deps) $(include_HEADERS) $(am__DIST_COMMON)
 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  configure.lineno config.status.lineno
 mkinstalldirs = $(install_sh) -d
 CONFIG_HEADER = config.h
 CONFIG_CLEAN_FILES =
 CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo "  GEN     " $@;
+am__v_GEN_1 = 
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 = 
 SOURCES =
 DIST_SOURCES =
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
-       html-recursive info-recursive install-data-recursive \
-       install-dvi-recursive install-exec-recursive \
-       install-html-recursive install-info-recursive \
-       install-pdf-recursive install-ps-recursive install-recursive \
-       installcheck-recursive installdirs-recursive pdf-recursive \
-       ps-recursive uninstall-recursive
+RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
+       ctags-recursive dvi-recursive html-recursive info-recursive \
+       install-data-recursive install-dvi-recursive \
+       install-exec-recursive install-html-recursive \
+       install-info-recursive install-pdf-recursive \
+       install-ps-recursive install-recursive installcheck-recursive \
+       installdirs-recursive pdf-recursive ps-recursive \
+       tags-recursive uninstall-recursive
 am__can_run_installinfo = \
   case $$AM_UPDATE_INFO_DIR in \
     n|no|NO) false;; \
@@ -118,12 +165,38 @@
 HEADERS = $(include_HEADERS)
 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive        \
   distclean-recursive maintainer-clean-recursive
-AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
-       $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
-       distdir dist dist-all distcheck
+am__recursive_targets = \
+  $(RECURSIVE_TARGETS) \
+  $(RECURSIVE_CLEAN_TARGETS) \
+  $(am__extra_recursive_targets)
+AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
+       cscope distdir dist dist-all distcheck
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
+       $(LISP)config.h.in
+# Read a list of newline-separated strings from the standard input,
+# and print each of them once, without duplicates.  Input order is
+# *not* preserved.
+am__uniquify_input = $(AWK) '\
+  BEGIN { nonempty = 0; } \
+  { items[$$0] = 1; nonempty = 1; } \
+  END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique.  This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+  list='$(am__tagged_files)'; \
+  unique=`for i in $$list; do \
+    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+  done | $(am__uniquify_input)`
 ETAGS = etags
 CTAGS = ctags
+CSCOPE = cscope
 DIST_SUBDIRS = $(SUBDIRS)
+am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \
+       COPYING.LESSER ChangeLog INSTALL NEWS README TODO ar-lib \
+       compile config.guess config.sub depcomp install-sh ltmain.sh \
+       missing
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
 top_distdir = $(distdir)
@@ -133,6 +206,7 @@
       && rm -rf "$(distdir)" \
       || { sleep 5 && rm -rf "$(distdir)"; }; \
   else :; fi
+am__post_remove_distdir = $(am__remove_distdir)
 am__relativize = \
   dir0=`pwd`; \
   sed_first='s,^\([^/]*\)/.*$$,\1,'; \
@@ -160,12 +234,14 @@
   reldir="$$dir2"
 DIST_ARCHIVES = $(distdir).tar.gz
 GZIP_ENV = --best
+DIST_TARGETS = dist-gzip
 distuninstallcheck_listfiles = find . -type f -print
 am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
   | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
 distcleancheck_listfiles = find . -type f -print
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 AR = @AR@
 AS = @AS@
 AUTOCONF = @AUTOCONF@
@@ -190,8 +266,9 @@
 EXEEXT = @EXEEXT@
 FGREP = @FGREP@
 GCC_VERSION = @GCC_VERSION@
+GITVERSION = @GITVERSION@
 GREP = @GREP@
-HASSVNVERSION = @HASSVNVERSION@
+HASGIT = @HASGIT@
 INSTALL = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
@@ -205,6 +282,7 @@
 LIPO = @LIPO@
 LN_S = @LN_S@
 LTLIBOBJS = @LTLIBOBJS@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
 MANIFEST_TOOL = @MANIFEST_TOOL@
@@ -230,11 +308,10 @@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
 STRIP = @STRIP@
-SVNVERSION = @SVNVERSION@
 VALGRIND = @VALGRIND@
 
 # version number for distribution tarball
-VERSION = @VERSION@@SVNVERSION@
+VERSION = @VERSION@@GITVERSION@
 abs_builddir = @abs_builddir@
 abs_srcdir = @abs_srcdir@
 abs_top_builddir = @abs_top_builddir@
@@ -311,7 +388,6 @@
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
        $(am__cd) $(top_srcdir) && \
          $(AUTOMAKE) --gnu Makefile
-.PRECIOUS: Makefile
 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
        @case '$?' in \
          *config.status*) \
@@ -332,8 +408,8 @@
 $(am__aclocal_m4_deps):
 
 config.h: stamp-h1
-       @if test ! -f $@; then rm -f stamp-h1; else :; fi
-       @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
+       @test -f $@ || rm -f stamp-h1
+       @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
 
 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
        @rm -f stamp-h1
@@ -377,22 +453,25 @@
        dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
 
 # This directory's subdirectories are mostly independent; you can cd



Home | Main Index | Thread Index | Old Index