From: Tim Kientzle Date: Sun, 6 Sep 2009 18:14:09 +0000 (-0400) Subject: We have a symlink() emulation on Windows. Use it. X-Git-Tag: v2.8.0~373 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4331c3cb86283694e41194b1f3124648896d3764;p=thirdparty%2Flibarchive.git We have a symlink() emulation on Windows. Use it. SVN-Revision: 1435 --- 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);