From 4331c3cb86283694e41194b1f3124648896d3764 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Sun, 6 Sep 2009 14:14:09 -0400 Subject: [PATCH] We have a symlink() emulation on Windows. Use it. SVN-Revision: 1435 --- libarchive/archive_windows.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libarchive/archive_windows.h b/libarchive/archive_windows.h index 6bdd87964..a95eb6a08 100644 --- a/libarchive/archive_windows.h +++ b/libarchive/archive_windows.h @@ -335,6 +335,9 @@ typedef struct { #ifndef HAVE_UTIMES #define HAVE_UTIMES 1 #endif +#ifndef HAVE_SYMLINK +#define HAVE_SYMLINK 1 +#endif /* Replacement POSIX function */ extern int __la_chdir(const char *path); -- 2.47.3