gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, master, updated. a2e0c35036b884486d05cbb


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. a2e0c35036b884486d05cbb4f71fc041dd30b98b
Date: Tue, 27 Nov 2012 19:29: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, master has been updated
       via  a2e0c35036b884486d05cbb4f71fc041dd30b98b (commit)
       via  d991932774cf1a8e82affcbf88c08122eafc8588 (commit)
      from  7af1da783175273a26609911c3a95975ed0f5c13 (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=a2e0c35036b884486d05cbb4f71fc041dd30b98b

commit a2e0c35036b884486d05cbb4f71fc041dd30b98b
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Nov 27 21:28:56 2012 +0200

    Doc updates.

diff --git a/TODO b/TODO
index 4098f84..676e56a 100644
--- a/TODO
+++ b/TODO
@@ -20,7 +20,7 @@ Minor Cleanups and Code Improvements
 
        API:
                awk_true and awk_false ???
-               Update doc to use gcc -o filefuncs.so -shared filefuncs.o
+               DONE: Update doc to use gcc -o filefuncs.so -shared filefuncs.o
                        instead of ld ...
                ??? #if !defined(GAWK) && !defined(GAWK_OMIT_CONVENIENCE_MACROS)
 
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 4f38e31..56a3a6f 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2012-11-27         Arnold D. Robbins     <address@hidden>
+
+       * gawk.texi: API chapter. Change command for making shared libs
+       to use gcc, not ld. Thanks to Nelson Beebe.
+
 2012-11-24         Arnold D. Robbins     <address@hidden>
 
        * gawk.texi (Future Extensions): Point to TODO file in the
diff --git a/doc/gawk.info b/doc/gawk.info
index 0b7fd8c..12ca6b4 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -24148,7 +24148,7 @@ is the location of the `gawkapi.h' header file, the 
following steps(1)
 create a GNU/Linux shared library:
 
      $ gcc -fPIC -shared -DHAVE_CONFIG_H -c -O -g -IIDIR filefuncs.c
-     $ ld -o filefuncs.so -shared filefuncs.o -lc
+     $ gcc -o filefuncs.so -shared filefuncs.o
 
    Once the library exists, it is loaded by using the address@hidden' keyword.
 
@@ -32198,78 +32198,78 @@ Node: Internal File Description956926
 Node: Internal File Ops960614
 Ref: Internal File Ops-Footnote-1972061
 Node: Using Internal File Ops972201
-Ref: Using Internal File Ops-Footnote-1974557
-Node: Extension Samples974823
-Node: Extension Sample File Functions976266
-Node: Extension Sample Fnmatch984739
-Node: Extension Sample Fork986465
-Node: Extension Sample Ord987679
-Node: Extension Sample Readdir988455
-Node: Extension Sample Revout989959
-Node: Extension Sample Rev2way990552
-Node: Extension Sample Read write array991242
-Node: Extension Sample Readfile993125
-Node: Extension Sample API Tests993880
-Node: Extension Sample Time994405
-Node: gawkextlib995712
-Node: Language History998093
-Node: V7/SVR3.1999615
-Node: SVR41001936
-Node: POSIX1003378
-Node: BTL1004386
-Node: POSIX/GNU1005120
-Node: Common Extensions1010655
-Node: Ranges and Locales1011762
-Ref: Ranges and Locales-Footnote-11016380
-Ref: Ranges and Locales-Footnote-21016407
-Ref: Ranges and Locales-Footnote-31016667
-Node: Contributors1016888
-Node: Installation1021184
-Node: Gawk Distribution1022078
-Node: Getting1022562
-Node: Extracting1023388
-Node: Distribution contents1025080
-Node: Unix Installation1030302
-Node: Quick Installation1030919
-Node: Additional Configuration Options1032881
-Node: Configuration Philosophy1034358
-Node: Non-Unix Installation1036700
-Node: PC Installation1037158
-Node: PC Binary Installation1038457
-Node: PC Compiling1040305
-Node: PC Testing1043249
-Node: PC Using1044425
-Node: Cygwin1048610
-Node: MSYS1049610
-Node: VMS Installation1050124
-Node: VMS Compilation1050727
-Ref: VMS Compilation-Footnote-11051734
-Node: VMS Installation Details1051792
-Node: VMS Running1053427
-Node: VMS Old Gawk1055034
-Node: Bugs1055508
-Node: Other Versions1059360
-Node: Notes1064675
-Node: Compatibility Mode1065334
-Node: Additions1066117
-Node: Accessing The Source1067044
-Node: Adding Code1068647
-Node: New Ports1074689
-Node: Derived Files1078824
-Ref: Derived Files-Footnote-11084132
-Ref: Derived Files-Footnote-21084166
-Ref: Derived Files-Footnote-31084766
-Node: Future Extensions1084864
-Node: Implementation Limitations1085445
-Node: Basic Concepts1086672
-Node: Basic High Level1087353
-Ref: figure-general-flow1087624
-Ref: figure-process-flow1088223
-Ref: Basic High Level-Footnote-11091452
-Node: Basic Data Typing1091637
-Node: Glossary1094992
-Node: Copying1120303
-Node: GNU Free Documentation License1157860
-Node: Index1182997
+Ref: Using Internal File Ops-Footnote-1974554
+Node: Extension Samples974820
+Node: Extension Sample File Functions976263
+Node: Extension Sample Fnmatch984736
+Node: Extension Sample Fork986462
+Node: Extension Sample Ord987676
+Node: Extension Sample Readdir988452
+Node: Extension Sample Revout989956
+Node: Extension Sample Rev2way990549
+Node: Extension Sample Read write array991239
+Node: Extension Sample Readfile993122
+Node: Extension Sample API Tests993877
+Node: Extension Sample Time994402
+Node: gawkextlib995709
+Node: Language History998090
+Node: V7/SVR3.1999612
+Node: SVR41001933
+Node: POSIX1003375
+Node: BTL1004383
+Node: POSIX/GNU1005117
+Node: Common Extensions1010652
+Node: Ranges and Locales1011759
+Ref: Ranges and Locales-Footnote-11016377
+Ref: Ranges and Locales-Footnote-21016404
+Ref: Ranges and Locales-Footnote-31016664
+Node: Contributors1016885
+Node: Installation1021181
+Node: Gawk Distribution1022075
+Node: Getting1022559
+Node: Extracting1023385
+Node: Distribution contents1025077
+Node: Unix Installation1030299
+Node: Quick Installation1030916
+Node: Additional Configuration Options1032878
+Node: Configuration Philosophy1034355
+Node: Non-Unix Installation1036697
+Node: PC Installation1037155
+Node: PC Binary Installation1038454
+Node: PC Compiling1040302
+Node: PC Testing1043246
+Node: PC Using1044422
+Node: Cygwin1048607
+Node: MSYS1049607
+Node: VMS Installation1050121
+Node: VMS Compilation1050724
+Ref: VMS Compilation-Footnote-11051731
+Node: VMS Installation Details1051789
+Node: VMS Running1053424
+Node: VMS Old Gawk1055031
+Node: Bugs1055505
+Node: Other Versions1059357
+Node: Notes1064672
+Node: Compatibility Mode1065331
+Node: Additions1066114
+Node: Accessing The Source1067041
+Node: Adding Code1068644
+Node: New Ports1074686
+Node: Derived Files1078821
+Ref: Derived Files-Footnote-11084129
+Ref: Derived Files-Footnote-21084163
+Ref: Derived Files-Footnote-31084763
+Node: Future Extensions1084861
+Node: Implementation Limitations1085442
+Node: Basic Concepts1086669
+Node: Basic High Level1087350
+Ref: figure-general-flow1087621
+Ref: figure-process-flow1088220
+Ref: Basic High Level-Footnote-11091449
+Node: Basic Data Typing1091634
+Node: Glossary1094989
+Node: Copying1120300
+Node: GNU Free Documentation License1157857
+Node: Index1182994
 
 End Tag Table
diff --git a/doc/gawk.texi b/doc/gawk.texi
index fb008d7..6de0f9d 100644
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@ -31255,7 +31255,7 @@ the tools.} create a GNU/Linux shared library:
 
 @example
 $ @kbd{gcc -fPIC -shared -DHAVE_CONFIG_H -c -O -g address@hidden filefuncs.c}
-$ @kbd{ld -o filefuncs.so -shared filefuncs.o -lc}
+$ @kbd{gcc -o filefuncs.so -shared filefuncs.o}
 @end example
 
 Once the library exists, it is loaded by using the @code{@@load} keyword.

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=d991932774cf1a8e82affcbf88c08122eafc8588

commit d991932774cf1a8e82affcbf88c08122eafc8588
Author: Arnold D. Robbins <address@hidden>
Date:   Mon Nov 26 19:58:20 2012 +0200

    Record more TODOs.

diff --git a/TODO b/TODO
index f62f02f..4098f84 100644
--- a/TODO
+++ b/TODO
@@ -14,6 +14,18 @@ TODO
 
 Minor Cleanups and Code Improvements
 ------------------------------------
+       Fix all *assoc_lookup() = xxx  calls.
+
+       Make GAWKDEBUG pass the test suite.
+
+       API:
+               awk_true and awk_false ???
+               Update doc to use gcc -o filefuncs.so -shared filefuncs.o
+                       instead of ld ...
+               ??? #if !defined(GAWK) && !defined(GAWK_OMIT_CONVENIENCE_MACROS)
+
+       Make fflush() and fflush("") both flush all files, as in BWK awk.
+
        ?? Add debugger commands to reference card
 
        FIX regular field splitting to use FPAT algorithm.

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

Summary of changes:
 TODO          |   12 +++++
 doc/ChangeLog |    5 ++
 doc/gawk.info |  148 ++++++++++++++++++++++++++++----------------------------
 doc/gawk.texi |    2 +-
 4 files changed, 92 insertions(+), 75 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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