gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, extgawk, updated. 502050948a347ef5c61888


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, extgawk, updated. 502050948a347ef5c618886cec1b83357ad7ac3f
Date: Tue, 24 Jul 2012 19:41:19 +0000

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, extgawk has been updated
       via  502050948a347ef5c618886cec1b83357ad7ac3f (commit)
      from  43a12b8c65b687489e0dbb29cd707eeff92e5865 (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=502050948a347ef5c618886cec1b83357ad7ac3f

commit 502050948a347ef5c618886cec1b83357ad7ac3f
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Jul 24 19:32:40 2012 +0300

    Fix plug-ins on Mac OS X.

diff --git a/ChangeLog b/ChangeLog
index c2ed6fe..4932033 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-07-24         Arnold D. Robbins     <address@hidden>
+
+       * configure.ac: Add crude but small hack to make plug-ins work
+       on Mac OS X.
+
 2012-07-20         Arnold D. Robbins     <address@hidden>
 
        * gawkapi.h: Rework table to not take up so much space.
diff --git a/configure b/configure
index 633ca99..d862f94 100755
--- a/configure
+++ b/configure
@@ -10853,6 +10853,10 @@ ac_config_headers="$ac_config_headers 
config.h:configh.in"
 
 
 
+case $acl_shlibext in
+dylib) acl_shlibext=so ;;      # force it
+esac
+
 ac_config_files="$ac_config_files Makefile awklib/Makefile doc/Makefile 
po/Makefile.in test/Makefile"
 
 
diff --git a/configure.ac b/configure.ac
index 90ad44b..a45e5c4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -356,6 +356,11 @@ AC_C_STRINGIZE
 AC_CONFIG_HEADERS([config.h:configh.in])
 AH_BOTTOM([#include "custom.h"])
 
+dnl Crude but small hack to make plug-ins work on Mac OS X
+case $acl_shlibext in
+dylib) acl_shlibext=so ;;      # force it
+esac
+
 AC_CONFIG_FILES(Makefile
        awklib/Makefile
        doc/Makefile

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

Summary of changes:
 ChangeLog    |    5 +++++
 configure    |    4 ++++
 configure.ac |    5 +++++
 3 files changed, 14 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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