diff options
author | Berke Viktor <berkeviktor@aol.com> | 2011-12-11 18:04:35 +0100 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2011-12-11 18:04:35 +0100 |
commit | 13ee029364b37eca95c43641420e75c872b32653 (patch) | |
tree | ef13e150cc5d2e15d4c879af644d9ba242c9c182 /plugins/perl | |
parent | 132ef6cb50201cb6ab8ab0609a88ccce62aa6a21 (diff) |
some more multiplatform support
Diffstat (limited to 'plugins/perl')
-rw-r--r-- | plugins/perl/makefile-512.mak | 2 | ||||
-rw-r--r-- | plugins/perl/makefile-514.mak | 2 | ||||
-rw-r--r-- | plugins/perl/perl.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/perl/makefile-512.mak b/plugins/perl/makefile-512.mak index 677c9073..7f2fbe04 100644 --- a/plugins/perl/makefile-512.mak +++ b/plugins/perl/makefile-512.mak @@ -1,6 +1,6 @@ include "..\..\src\makeinc.mak" -DIRENTLIB = ..\..\src\common\dirent.lib +DIRENTLIB = ..\..\src\common\dirent-win32.lib TARGET = $(PERL512OUTPUT) all: $(TARGET) diff --git a/plugins/perl/makefile-514.mak b/plugins/perl/makefile-514.mak index c31a7ec4..4c8d0ebd 100644 --- a/plugins/perl/makefile-514.mak +++ b/plugins/perl/makefile-514.mak @@ -1,6 +1,6 @@ include "..\..\src\makeinc.mak" -DIRENTLIB = ..\..\src\common\dirent.lib +DIRENTLIB = ..\..\src\common\dirent-win32.lib TARGET = $(PERL514OUTPUT) all: $(TARGET) diff --git a/plugins/perl/perl.c b/plugins/perl/perl.c index a2763771..719ef292 100644 --- a/plugins/perl/perl.c +++ b/plugins/perl/perl.c @@ -28,7 +28,7 @@ #ifdef WIN32 #include <windows.h> #define _INC_DIRENT /* disable inclusion of perl's dirent.h, we use an own version for win32 */ -#include "../../src/common/dirent.h" +#include "../../src/common/dirent-win32.h" #else #include <dirent.h> #endif |