[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, feature/minrx, updated. gawk-4.1.0-5936-g9689093e
From: |
Arnold Robbins |
Subject: |
[SCM] gawk branch, feature/minrx, updated. gawk-4.1.0-5936-g9689093e |
Date: |
Thu, 6 Feb 2025 04:21:42 -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, feature/minrx has been updated
via 9689093e068ccdea3c545f886984f09174232a0c (commit)
from 6edad81812780af6bfe7e7e7c1839e85cf4e3362 (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=9689093e068ccdea3c545f886984f09174232a0c
commit 9689093e068ccdea3c545f886984f09174232a0c
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Thu Feb 6 11:21:13 2025 +0200
Have CXXFLAGS also handle debug correctly.
diff --git a/ChangeLog b/ChangeLog
index 393553ae..20087bb6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2025-02-06 Arnold D. Robbins <arnold@skeeve.com>
+
+ * configure.ac: Update CXXFLAGS for debug also, not just CFLAGS.
+
2025-02-05 Arnold D. Robbins <arnold@skeeve.com>
Bug fixes for indirect calls of match and patsplit.
diff --git a/configure b/configure
index b38b4433..4890f1c7 100755
--- a/configure
+++ b/configure
@@ -15815,7 +15815,8 @@ EOF
fi
for i in . support extension
do
- sed -e '/-O2/s///' -e '/^CFLAGS = /s//&${DEBUG} /' $i/Makefile
> foo
+ sed -e '/-O2/s///' -e '/^CFLAGS = /s//&${DEBUG} /' \
+ -e '/^CXXFLAGS = /s//&${DEBUG} /' $i/Makefile > foo
mv foo $i/Makefile
done
elif test "$GCC" = yes
diff --git a/configure.ac b/configure.ac
index bb9dd9a6..2c0da124 100644
--- a/configure.ac
+++ b/configure.ac
@@ -519,7 +519,8 @@ EOF
fi
for i in . support extension
do
- sed -e '/-O2/s///' -e '/^CFLAGS = /s//&${DEBUG} /' $i/Makefile
> foo
+ sed -e '/-O2/s///' -e '/^CFLAGS = /s//&${DEBUG} /' \
+ -e '/^CXXFLAGS = /s//&${DEBUG} /' $i/Makefile > foo
mv foo $i/Makefile
done
elif test "$GCC" = yes
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
configure | 3 ++-
configure.ac | 3 ++-
3 files changed, 8 insertions(+), 2 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, feature/minrx, updated. gawk-4.1.0-5936-g9689093e,
Arnold Robbins <=