[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, master, updated. 038e70b403210a1ad298666
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, master, updated. 038e70b403210a1ad298666b61369e03fb6d6ca6 |
Date: |
Mon, 11 Feb 2013 18:59:14 +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 038e70b403210a1ad298666b61369e03fb6d6ca6 (commit)
from 4d8fd72d6cdd54aec2881ef5ecb17cad0e595f99 (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=038e70b403210a1ad298666b61369e03fb6d6ca6
commit 038e70b403210a1ad298666b61369e03fb6d6ca6
Author: Arnold D. Robbins <address@hidden>
Date: Mon Feb 11 20:58:51 2013 +0200
Add pc/dlfcn.h.
diff --git a/pc/dlfcn.h b/pc/dlfcn.h
new file mode 100644
index 0000000..64ef4bc
--- /dev/null
+++ b/pc/dlfcn.h
@@ -0,0 +1,12 @@
+/* dlfcn.h replacement for MS-Windows build. */
+#ifndef DLFCN_H
+#define DLFCN_H
+
+#define RTLD_LAZY 1
+
+extern void *dlopen (const char *, int);
+extern int dlclose (void *);
+extern void *dlsym (void *, const char *);
+extern char *dlerror (void);
+
+#endif /* DLFCN_H */
-----------------------------------------------------------------------
Summary of changes:
pc/dlfcn.h | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
create mode 100644 pc/dlfcn.h
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, master, updated. 038e70b403210a1ad298666b61369e03fb6d6ca6,
Arnold Robbins <=