diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-12-28 19:58:07 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-12-28 19:58:07 (GMT) |
commit | 18d31fd97c3305b54a6d1d56b6ef8600089ef6da (patch) | |
tree | fad65ce7d2ba37095405c27df79a9c7a5883f448 /Utilities/cmtar/CMakeLists.txt | |
parent | d715d52a11fbcbc3310412ae7c7ec1e71e5bcbed (diff) | |
download | CMake-18d31fd97c3305b54a6d1d56b6ef8600089ef6da.zip CMake-18d31fd97c3305b54a6d1d56b6ef8600089ef6da.tar.gz CMake-18d31fd97c3305b54a6d1d56b6ef8600089ef6da.tar.bz2 |
COMP: Several borland fixes
Diffstat (limited to 'Utilities/cmtar/CMakeLists.txt')
-rw-r--r-- | Utilities/cmtar/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Utilities/cmtar/CMakeLists.txt b/Utilities/cmtar/CMakeLists.txt index 48a3efa..7ffe0e1 100644 --- a/Utilities/cmtar/CMakeLists.txt +++ b/Utilities/cmtar/CMakeLists.txt @@ -290,7 +290,6 @@ SET(libtar_SRC output.c util.c wrapper.c - filesystem.c filesystem.h internal.h ${LIBTAR_BINARY_DIR}/libtar/config.h config.h.in @@ -304,6 +303,11 @@ SET(libtar_SRC # compat/strmode.c # compat/strsep.c ) +IF(NOT UNIX) + SET(libtar_SRC + ${libtar_SRC} + filesystem.c filesystem.h) +ENDIF(NOT UNIX) IF(NOT HAVE_STRLCPY) SET(libtar_SRC ${libtar_SRC} compat/strlcpy.c) |