blob: daf6677e1a521af605eb50f05c17e76d560b81cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#include "cm_parse_date.h"
// FIXME: This suppresses use of localtime_r because archive_parse_date.c
// depends the rest of libarchive's checks for that.
#define CM_PARSE_DATE
#define archive_parse_date cm_parse_date
#include "../Utilities/cmlibarchive/libarchive/archive_parse_date.c"
|