summaryrefslogtreecommitdiff
path: root/libarchive/archive_entry_copy_bhfi.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix build failure in aggressive warnings on msys.Michihiro NAKAJIMA2012-02-161-3/+3
|
* DO NOT USE C++ style comments like // in C code !Björn Jacke2011-02-171-1/+1
| | | | | | | | Not all C compilers are happy with them, lxc on AIX for example. There are much more of them in the testing code but the ones fixed with this commit make at least the most important things compile. SVN-Revision: 2986
* On Windows, set 'Creation time' to both birthtime and ctime, becauseMichihiro NAKAJIMA2011-01-221-0/+1
| | | | | | | CRT stat() Microsoft provides set 'Creation time' to st_ctime. It seems we should do that not to confuse applications about ctime. SVN-Revision: 2938
* Use macro for 64-bit integer literal suffixesBrad King2009-11-111-1/+2
| | | | | | | | | | | | | | Some compilers, such as Borland and VS 6, define __int64 instead of the more standard long long. Integer literals of type __int64 use the suffix 'i64' instead of 'll'. We define the helper macros ARCHIVE_LITERAL_LL(n) ARCHIVE_LITERAL_ULL(n) for 'long long' and 'unsigned long long' literals. The macros use the proper suffix for the current compiler. SVN-Revision: 1635
* Only build archive_entry_copy_bhfi.c on Windows platforms thatTim Kientzle2009-09-251-0/+3
| | | | | | | | | aren't Cygwin. Thanks to Charles Wilson for pointing this out and providing the Makefile.am fix. SVN-Revision: 1471
* New Windows-only support to populate an archive entry fromTim Kientzle2009-09-241-0/+70
a BY_HANDLE_FILE_INFORMATION structure (which is really the Windows version of "struct stat"). SVN-Revision: 1467