summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--m4/module.c2
-rw-r--r--m4/path.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/m4/module.c b/m4/module.c
index 6f2a2a9e..ac1b58c7 100644
--- a/m4/module.c
+++ b/m4/module.c
@@ -265,7 +265,7 @@ compare_builtin_CB (const void *a, const void *b)
m4_module *
m4__module_open (m4 *context, const char *name, m4_obstack *obs)
{
- static const char * suffixes[] = { "", ".so", NULL };
+ static const char * suffixes[] = { "", ".so", ".dll", NULL };
m4_module * module = NULL;
assert (context);
diff --git a/m4/path.c b/m4/path.c
index 3a932897..0858cfdf 100644
--- a/m4/path.c
+++ b/m4/path.c
@@ -42,6 +42,7 @@ static const char *FILE_SUFFIXES[] = {
".m4f",
".m4",
".so",
+ ".dll",
NULL
};