summaryrefslogtreecommitdiffhomepage
path: root/contrib/zlib/4.examples.patch
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2024-03-12 22:07:03 +0100
committerAki <please@ignore.pl>2024-03-12 22:07:36 +0100
commit81bb6873f1c0291fecbf6e429ad15ac3db66a4c0 (patch)
treefd7552ecabeeffb45a1fbe3730ab62bc7a64dd85 /contrib/zlib/4.examples.patch
parentf43d32d6d2cc7ecd04f4f06f20d5a6fc2c87c9ae (diff)
downloadstarshatter-81bb6873f1c0291fecbf6e429ad15ac3db66a4c0.zip
starshatter-81bb6873f1c0291fecbf6e429ad15ac3db66a4c0.tar.gz
starshatter-81bb6873f1c0291fecbf6e429ad15ac3db66a4c0.tar.bz2
Legal notices updated
Rename contrib -> third-party intendes to express the origin and purpose of that part of the code better. I plan to readd contrib/ again but with more in-project things like bash-completions, dev workflow scripts etc.
Diffstat (limited to 'contrib/zlib/4.examples.patch')
-rw-r--r--contrib/zlib/4.examples.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/contrib/zlib/4.examples.patch b/contrib/zlib/4.examples.patch
deleted file mode 100644
index 3c21686..0000000
--- a/contrib/zlib/4.examples.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff '--color=auto' -arNu a/CMakeLists.txt b/CMakeLists.txt
---- a/CMakeLists.txt 2024-03-03 01:58:26.368799737 +0100
-+++ b/CMakeLists.txt 2024-03-03 01:58:33.615466706 +0100
-@@ -215,25 +215,3 @@
- if(NOT SKIP_INSTALL_FILES AND NOT SKIP_INSTALL_ALL )
- install(FILES ${ZLIB_PC} DESTINATION "${INSTALL_PKGCONFIG_DIR}")
- endif()
--
--#============================================================================
--# Example binaries
--#============================================================================
--
--add_executable(example test/example.c)
--target_link_libraries(example zlib)
--add_test(example example)
--
--add_executable(minigzip test/minigzip.c)
--target_link_libraries(minigzip zlib)
--
--if(HAVE_OFF64_T)
-- add_executable(example64 test/example.c)
-- target_link_libraries(example64 zlib)
-- set_target_properties(example64 PROPERTIES COMPILE_FLAGS "-D_FILE_OFFSET_BITS=64")
-- add_test(example64 example64)
--
-- add_executable(minigzip64 test/minigzip.c)
-- target_link_libraries(minigzip64 zlib)
-- set_target_properties(minigzip64 PROPERTIES COMPILE_FLAGS "-D_FILE_OFFSET_BITS=64")
--endif()