[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-283
From: |
Eli Zaretskii |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2834-gfe60f21 |
Date: |
Tue, 14 Nov 2017 12:07:54 -0500 (EST) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, gawk-4.2-stable has been updated
via fe60f215f0dc446e39d69d4663cbb8c5ef406535 (commit)
from 3f5b8e508f0fcaba4447ed98193e2ea3b8560ad9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=fe60f215f0dc446e39d69d4663cbb8c5ef406535
commit fe60f215f0dc446e39d69d4663cbb8c5ef406535
Author: Juan Manuel Guerrero <address@hidden>
Date: Tue Nov 14 19:07:12 2017 +0200
Support building with MPFR in the DJGPP port.
diff --git a/README_d/ChangeLog b/README_d/ChangeLog
index 2b88d42..0bc7514 100644
--- a/README_d/ChangeLog
+++ b/README_d/ChangeLog
@@ -1,3 +1,7 @@
+2017-11-13 Juan Manuel Guerrero <address@hidden>
+
+ * README.mpfr: Add info that DJGPP port compiles with MPFR support.
+
2017-10-21 Arnold D. Robbins <address@hidden>
* README.os2: Updated with email from Andreas.
diff --git a/README_d/README.mpfr b/README_d/README.mpfr
index 892a22a..ea787b6 100644
--- a/README_d/README.mpfr
+++ b/README_d/README.mpfr
@@ -1,3 +1,21 @@
+2017-11-13
+==========
+The DJGPP port of Gawk has been compiled and tested using the
+following combinations of MPFR and GMP versions on FreeDOS and
+other versions of the DOS operating system:
+GNU MPFR 3.1.6, GNU MP 6.1.2
+
+Precompiled binaries of GMP and MPFR for DJGPP are available
+from DJ Delorie's ftp server and mirrors:
+
+ http://www.delorie.com/pub/djgpp/current/v2gnu/gmp612b.zip
+ http://www.delorie.com/pub/djgpp/current/v2gnu/mpfr316b.zip
+
+No previous versions of these libraries are supported.
+Newer versions should work.
+
+----
+
Sat Mar 17 07:32:01 CDT 2012
=============================
diff --git a/pc/ChangeLog b/pc/ChangeLog
index 51a71d9..155c9dc 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,9 @@
+2017-11-13 Juan Manuel Guerrero <address@hidden>
+
+ * Makefile (default): Add a line for the djgpp-mpfr target.
+ (djgpp-mpfr): New target, passes -DHAVE_MPFR to the
+ compiler and adds -lmpfr -lgmp to the linker command line.
+
2017-11-11 Juan Manuel Guerrero <address@hidden>
* pc/Makefile.tst (sigpipe1): Exclude DJGPP from the sigpipe1 test.
diff --git a/pc/Makefile b/pc/Makefile
index bdec371..8b53cda 100644
--- a/pc/Makefile
+++ b/pc/Makefile
@@ -21,6 +21,8 @@ default:
@echo "Enter $(MAK) target "
@echo " where 'target' is chosen from "
@echo " djgpp ... DOS 32-bit exe [GNU C, Delorie, v2] "
+ @echo " djgpp-mpfr . Like djgpp, but with MPFR "
+ @echo " [You will need to have GNU MPFR library installed.] "
@echo " emx ..... OS/2 32-bit exe [emx/gcc; uses emxlibc.dll] "
@echo " emxnt ... NT exe [emx/gcc with RSXNT] "
@echo " emxbnd .. OS/2 and DOS 32-bit exe [emx/gcc] "
@@ -125,6 +127,12 @@ djgpp-debug:
LNK=LDJG LF2=-lm \
BIND=BDJG
+djgpp-mpfr:
+ $(MAK) all \
+ CC=gcc O=.o CF='-O2 -DHAVE_MPFR' \
+ LNK=LDJG LF=-s LF2="-lmpfr -lgmp -lm" \
+ BIND=BDJG
+
#========================================================================
#========================== EMX =========================================
#========================================================================
-----------------------------------------------------------------------
Summary of changes:
README_d/ChangeLog | 4 ++++
README_d/README.mpfr | 18 ++++++++++++++++++
pc/ChangeLog | 6 ++++++
pc/Makefile | 8 ++++++++
4 files changed, 36 insertions(+)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2834-gfe60f21,
Eli Zaretskii <=