aboutsummaryrefslogtreecommitdiff
path: root/ports/avro-c/fix-build-error.patch
diff options
context:
space:
mode:
authorMichael Spector <mispecto@microsoft.com>2020-03-19 08:06:04 +0200
committerGitHub <noreply@github.com>2020-03-18 23:06:04 -0700
commitb5e59140cbc69a0b5cf70669e01affe1f1b201ed (patch)
tree608c0d799fb9369214ec6251be04381c6f798eea /ports/avro-c/fix-build-error.patch
parent7029557ee77182d2b086839fce6409fbb211fc5a (diff)
downloadvcpkg-b5e59140cbc69a0b5cf70669e01affe1f1b201ed.tar.gz
vcpkg-b5e59140cbc69a0b5cf70669e01affe1f1b201ed.zip
Upgrade Avro to 1.9.2 release (#10380)
* Upgrade Avro to 1.9.2 release * Apply CR fixes * Applied CR recommendations
Diffstat (limited to 'ports/avro-c/fix-build-error.patch')
-rw-r--r--ports/avro-c/fix-build-error.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/ports/avro-c/fix-build-error.patch b/ports/avro-c/fix-build-error.patch
deleted file mode 100644
index 6e07310fa..000000000
--- a/ports/avro-c/fix-build-error.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/lang/c/src/CMakeLists.txt b/lang/c/src/CMakeLists.txt
-index c21f1ce..accb0e3 100644
---- a/lang/c/src/CMakeLists.txt
-+++ b/lang/c/src/CMakeLists.txt
-@@ -85,13 +85,13 @@ source_group(Avro FILES ${AVRO_SRC})
- string(REPLACE ":" "." LIBAVRO_DOT_VERSION ${LIBAVRO_VERSION})
-
- add_library(avro-static STATIC ${AVRO_SRC})
--target_link_libraries(avro-static ${JANSSON_LIBRARIES} ${CODEC_LIBRARIES} ${THREADS_LIBRARIES})
-+target_link_libraries(avro-static jansson::jansson ${CODEC_LIBRARIES} ${THREADS_LIBRARIES})
- set_target_properties(avro-static PROPERTIES OUTPUT_NAME avro)
-
- if (NOT WIN32)
- # TODO: Create Windows DLLs. See http://www.cmake.org/Wiki/BuildingWinDLL
- add_library(avro-shared SHARED ${AVRO_SRC})
--target_link_libraries(avro-shared ${JANSSON_LIBRARIES} ${CODEC_LIBRARIES} ${THREADS_LIBRARIES})
-+target_link_libraries(avro-shared jansson::jansson ${CODEC_LIBRARIES} ${THREADS_LIBRARIES})
- set_target_properties(avro-shared PROPERTIES
- OUTPUT_NAME avro
- SOVERSION ${LIBAVRO_DOT_VERSION})