gawk-diffs
[Top][All Lists]
Advanced

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

[SCM] gawk branch, feature/pma2, updated. gawk-4.1.0-4750-gde7bb7ee


From: Arnold Robbins
Subject: [SCM] gawk branch, feature/pma2, updated. gawk-4.1.0-4750-gde7bb7ee
Date: Wed, 15 Jun 2022 07:16:28 -0400 (EDT)

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/pma2 has been updated
       via  de7bb7ee3e6d69c6c7985f43a0f06527f438e43d (commit)
      from  d78e8b44f8b470d894b46a0ff4cafc88ce8eed29 (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=de7bb7ee3e6d69c6c7985f43a0f06527f438e43d

commit de7bb7ee3e6d69c6c7985f43a0f06527f438e43d
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Wed Jun 15 14:16:07 2022 +0300

    Add cygwin case to m4/pma.m4.

diff --git a/configure b/configure
index 926d561c..f9e8affe 100755
--- a/configure
+++ b/configure
@@ -12575,6 +12575,9 @@ printf "%s\n" "#define USE_PERSISTENT_MALLOC 1" 
>>confdefs.h
                        LDFLAGS="${LDFLAGS} -Xlinker -no_pie"
                        export LDFLAGS
                        ;;
+               *cygwin* | *CYGWIN*)
+                       true    # nothing do, Cygwin exes are not PIE
+                       ;;
                # Other OS's go here...
                *)
                        # For now, play it safe
diff --git a/m4/ChangeLog b/m4/ChangeLog
index 8872a909..aaac3b88 100644
--- a/m4/ChangeLog
+++ b/m4/ChangeLog
@@ -1,3 +1,7 @@
+2022-06-15         Arnold D. Robbins     <arnold@skeeve.com>
+
+       * pma.m4: Add case for Cygwin.
+
 2022-06-14         Arnold D. Robbins     <arnold@skeeve.com>
 
        * pma.m4: Put -no-pie inside additional check for gcc and clang.
diff --git a/m4/pma.m4 b/m4/pma.m4
index 4260c4e8..f6f6e969 100644
--- a/m4/pma.m4
+++ b/m4/pma.m4
@@ -34,6 +34,9 @@ then
                        LDFLAGS="${LDFLAGS} -Xlinker -no_pie"
                        export LDFLAGS
                        ;;
+               *cygwin* | *CYGWIN*)
+                       true    # nothing do, Cygwin exes are not PIE
+                       ;;
                # Other OS's go here...
                *)
                        # For now, play it safe

-----------------------------------------------------------------------

Summary of changes:
 configure    | 3 +++
 m4/ChangeLog | 4 ++++
 m4/pma.m4    | 3 +++
 3 files changed, 10 insertions(+)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]