diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-12-18 22:15:57 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-12-18 22:15:57 +0200 |
commit | dc30cc0563434212d57cdf9bafe0da50fa7dd477 (patch) | |
tree | d88100046035be82122b4f3ab428b7e60e636547 | |
parent | 2e682fb9757c571097608a5927e4ceaaae0b412f (diff) | |
download | egawk-dc30cc0563434212d57cdf9bafe0da50fa7dd477.tar.gz egawk-dc30cc0563434212d57cdf9bafe0da50fa7dd477.tar.bz2 egawk-dc30cc0563434212d57cdf9bafe0da50fa7dd477.zip |
Remove pc/gawkw32.def and use in pc/Makefile.
-rw-r--r-- | pc/ChangeLog | 5 | ||||
-rw-r--r-- | pc/Makefile | 3 | ||||
-rw-r--r-- | pc/gawkw32.def | 38 |
3 files changed, 5 insertions, 41 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index bcccabfe..e616ad28 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,8 @@ +Sat Dec 18 22:12:42 2010 Arnold Robbins <arnold@skeeve.com> + + * gawkw32.def: Removed. + * Makefile (gawk.exp): Removed target and rule. + Sat Dec 18 20:13:35 2010 Eli Zaretskii <eliz@gnu.org> * popen.h: Remove the parts conditioned by _MSC_VER and OS2. Use diff --git a/pc/Makefile b/pc/Makefile index 4e0511a7..8a8888e0 100644 --- a/pc/Makefile +++ b/pc/Makefile @@ -241,9 +241,6 @@ getopt1$O: getopt.h io$O: popen.h -gawk.exp: gawkw32.def - $(DYN_MAKEXP) - eval_p$O: eval.c profile_p$O: profile.c diff --git a/pc/gawkw32.def b/pc/gawkw32.def deleted file mode 100644 index 68c1118a..00000000 --- a/pc/gawkw32.def +++ /dev/null @@ -1,38 +0,0 @@ -;; export definitions for Windows32 gawk
-;; this is to support extension libraries -- this should generate a gawk.lib
-;; against which they can link
-;; don't change the ordinals (the numbers after the function names)
-
-EXPORTS
-
-;; functions related directly to adding external functions
-get_argument @1
-set_value @2
-make_builtin @3
-get_curfunc_arg_count @4
-
-;; functions for manipulating data types
-mk_number @11
-tmp_string @12
-unref @13
-r_force_string @14
-r_force_number @15
-nodetype2str @16
-
-
-;; incidental other functions
-assoc_lookup @31
-assoc_clear @32
-r_dupnode @33
-set_loc @34
-update_ERRNO @35
-r_fatal @36
-get_actual @37
-
-;; data -- note that this must be redeclared with __declspec(dllimport) in the extension
-;; library since the exported symbol is actually a pointer to the data
-
-CONVFMTidx @101
-lintfunc @102
-do_lint @103
-stack_ptr @104
|