Skip to content

Commit 1ac26e7

Browse files
seanmdzenanz
authored andcommitted
ENH: eliminate last uses of kwiml
Now that we require at least C++11, it's not really needed anymore.
1 parent 20249ec commit 1ac26e7

File tree

7 files changed

+1
-38
lines changed

7 files changed

+1
-38
lines changed

Modules/Bridge/VtkGlue/itk-module-init.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ set(_required_vtk_libraries
5252
)
5353
if(ITK_WRAP_PYTHON)
5454
list(APPEND _required_vtk_libraries ${_target_prefix}WrappingPythonCore
55-
${_target_prefix}CommonCore ${_target_prefix}CommonDataModel ${_target_prefix}kwiml ${_target_prefix}CommonExecutionModel)
55+
${_target_prefix}CommonCore ${_target_prefix}CommonDataModel ${_target_prefix}CommonExecutionModel)
5656
endif()
5757
if(NOT VTK_RENDERING_BACKEND STREQUAL "None")
5858
list(APPEND _required_vtk_libraries

Modules/Core/Common/itk-module.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ itk_module(ITKCommon
1414
ENABLE_SHARED
1515
DEPENDS
1616
ITKEigen3
17-
ITKKWIML
1817
${ITKCOMMON_TBB_DEPENDS}
1918
PRIVATE_DEPENDS
2019
ITKDoubleConversion

Modules/IO/LSM/itk-module.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ itk_module(ITKIOLSM
99
ENABLE_SHARED
1010
PRIVATE_DEPENDS
1111
ITKIOImageBase
12-
ITKKWIML
1312
ITKTIFF
1413
TEST_DEPENDS
1514
ITKTestKernel

Modules/ThirdParty/TIFF/itk-module.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ image file format library.")
44

55
itk_module(ITKTIFF
66
DEPENDS
7-
ITKKWIML
87
ITKZLIB
98
ITKJPEG
109
DESCRIPTION

Modules/ThirdParty/TIFF/src/itktiff/tif_config.h.in

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -335,41 +335,25 @@ the sizes can be different.*/
335335

336336
/* Signed 16-bit type */
337337
#undef TIFF_INT16_T
338-
#if defined( HAVE_STDINT_H )
339338
#define TIFF_INT16_T int16_t
340-
#else
341-
#define TIFF_INT16_T KWIML_INT_int16_t
342-
#endif
343339

344340
/* Signed 32-bit type formatter */
345341
#define TIFF_INT32_FORMAT "%d"
346342

347343
/* Signed 32-bit type */
348344
#undef TIFF_INT32_T
349-
#if defined( HAVE_STDINT_H )
350345
#define TIFF_INT32_T int32_t
351-
#else
352-
#define TIFF_INT32_T KWIML_INT_int32_t
353-
#endif
354346

355347
/* Signed 64-bit type formatter */
356348
#define TIFF_INT64_FORMAT "%ld"
357349

358350
/* Signed 64-bit type */
359351
#undef TIFF_INT64_T
360-
#if defined( HAVE_STDINT_H )
361352
#define TIFF_INT64_T int64_t
362-
#else
363-
#define TIFF_INT64_T KWIML_INT_int64_t
364-
#endif
365353

366354
/* Signed 8-bit type */
367355
#undef TIFF_INT8_T
368-
#if defined( HAVE_STDINT_H )
369356
#define TIFF_INT8_T int8_t
370-
#else
371-
#define TIFF_INT8_T KWIML_INT_int8_t
372-
#endif
373357

374358
/* Pointer difference type formatter */
375359
#define TIFF_PTRDIFF_FORMAT "%ld"
@@ -386,41 +370,25 @@ the sizes can be different.*/
386370

387371
/* Unsigned 16-bit type */
388372
#undef TIFF_UINT16_T
389-
#if defined( HAVE_STDINT_H )
390373
#define TIFF_UINT16_T uint16_t
391-
#else
392-
#define TIFF_UINT16_T KWIML_INT_uint16_t
393-
#endif
394374

395375
/* Unsigned 32-bit type formatter */
396376
#define TIFF_UINT32_FORMAT "%d"
397377

398378
/* Unsigned 32-bit type */
399379
#undef TIFF_UINT32_T
400-
#if defined( HAVE_STDINT_H )
401380
#define TIFF_UINT32_T uint32_t
402-
#else
403-
#define TIFF_UINT32_T KWIML_INT_uint32_t
404-
#endif
405381

406382
/* Unsigned 64-bit type formatter */
407383
#define TIFF_UINT64_FORMAT "%ld"
408384

409385
/* Unsigned 64-bit type */
410386
#undef TIFF_UINT64_T
411-
#if defined( HAVE_STDINT_H )
412387
#define TIFF_UINT64_T uint64_t
413-
#else
414-
#define TIFF_UINT64_T KWIML_INT_uint64_t
415-
#endif
416388

417389
/* Unsigned 8-bit type */
418390
#undef TIFF_UINT8_T
419-
#if defined( HAVE_STDINT_H )
420391
#define TIFF_UINT8_T uint8_t
421-
#else
422-
#define TIFF_UINT8_T KWIML_INT_uint8_t
423-
#endif
424392

425393
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
426394
#cmakedefine TIME_WITH_SYS_TIME

Utilities/Hooks/post-commit

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ third_party_contrib_urls=( "DCMTK:https://github.com/InsightSoftwareConsortium/D
2929
"GDCM:http://gdcm.sourceforge.net/wiki/index.php/Git"
3030
"GoogleTest:https://github.com/google/googletest/blob/master/CONTRIBUTING.md"
3131
"HDF5:https://github.com/HDFGroup/hdf5"
32-
"KWIML:https://gitlab.kitware.com/utils/kwiml.git"
3332
"KWSys:https://gitlab.kitware.com/utils/kwsys/-/blob/master/CONTRIBUTING.rst"
3433
"libLBFGS:https://github.com/chokkan/liblbfgs"
3534
"MetaIO:https://github.com/Kitware/MetaIO/blob/master/CONTRIBUTING.rst"

Utilities/Maintenance/UpdateZenodo.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"HDF5 Maintainers",
2121
"Google double-conversion Maintainers",
2222
"GoogleTest Upstream",
23-
"KWIML Upstream",
2423
"LIBPNG Upstream",
2524
"Zlib Upstream",
2625
"ITK Developers",

0 commit comments

Comments
 (0)