[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-2838-gebfe279 |
Date: |
Sun, 19 Nov 2017 11:00:24 -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 ebfe279f3de64dcf53279669e61cd8db8e82db66 (commit)
from fac131ce0d9b4cae007f6f84b084973319f97d62 (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=ebfe279f3de64dcf53279669e61cd8db8e82db66
commit ebfe279f3de64dcf53279669e61cd8db8e82db66
Author: Juan Manuel Guerrero <address@hidden>
Date: Sun Nov 19 17:58:44 2017 +0200
Support building the DJGPP port with Readline.
diff --git a/pc/ChangeLog b/pc/ChangeLog
index 155c9dc..4f081b4 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,13 @@
+2017-11-19 Juan Manuel Guerrero <address@hidden>
+
+ * pc/Makefile (default): Add lines for the djgpp-readline-mpfr
+ and the djgpp-readline targets.
+ (djgpp-readline): New target, passes -DHAVE_LIBREADLINE to the
+ compiler and adds -lreadline to the linker command line.
+ (djgpp-readline-mpfr): New target, passes -DHAVE_LIBREADLINE and
+ -DHAVE_MPFR to the compiler and adds -lreadline -lmpfr -lgmp to
+ the linker command line.
+
2017-11-13 Juan Manuel Guerrero <address@hidden>
* Makefile (default): Add a line for the djgpp-mpfr target.
diff --git a/pc/Makefile b/pc/Makefile
index 8b53cda..fb34965 100644
--- a/pc/Makefile
+++ b/pc/Makefile
@@ -23,6 +23,9 @@ default:
@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 " djgpp-readline . Like djgpp, but with readline "
+ @echo " [You will need to have GNU readline library installed.] "
+ @echo " djgpp-readline-mpfr . djgpp with readline and MPFR "
@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] "
@@ -133,6 +136,18 @@ djgpp-mpfr:
LNK=LDJG LF=-s LF2="-lmpfr -lgmp -lm" \
BIND=BDJG
+djgpp-readline:
+ $(MAK) all \
+ CC=gcc O=.o CF='-O2 -DHAVE_LIBREADLINE' \
+ LNK=LDJG LF=-s LF2="-lreadline -lm" \
+ BIND=BDJG
+
+djgpp-readline-mpfr:
+ $(MAK) all \
+ CC=gcc O=.o CF='-O2 -DHAVE_LIBREADLINE -DHAVE_MPFR' \
+ LNK=LDJG LF=-s LF2="-lreadline -lmpfr -lgmp -lm" \
+ BIND=BDJG
+
#========================================================================
#========================== EMX =========================================
#========================================================================
-----------------------------------------------------------------------
Summary of changes:
pc/ChangeLog | 10 ++++++++++
pc/Makefile | 15 +++++++++++++++
2 files changed, 25 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-2838-gebfe279,
Eli Zaretskii <=