1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00

devel/avro-c: Fix avro-c.pc

- Bump PORTREVISION for package change

PR:		269873
Reported by:	pi
This commit is contained in:
Po-Chuan Hsieh 2023-04-09 21:29:41 +08:00
parent f30628bc88
commit 556e3c7b4f
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
2 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,6 @@
PORTNAME= avro
PORTVERSION= 1.11.1
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= APACHE/avro/stable/c
PKGNAMESUFFIX= -c

View File

@ -9,6 +9,15 @@
add_definitions(-DSNAPPY_CODEC)
include_directories(${SNAPPY_INCLUDE_DIRS})
message("Enabled snappy codec")
@@ -176,7 +176,7 @@ else (LZMA_FOUND)
endif (LZMA_FOUND)
set(CODEC_LIBRARIES ${ZLIB_LIBRARIES} ${LZMA_LIBRARIES} ${SNAPPY_LIBRARIES})
-set(CODEC_PKG "@ZLIB_PKG@ @LZMA_PKG@ @SNAPPY_PKG@")
+set(CODEC_PKG ${ZLIB_PKG} ${LZMA_PKG} ${SNAPPY_PKG})
# Jansson JSON library
pkg_check_modules(JANSSON jansson>=2.3)
@@ -192,7 +192,6 @@ endif (JANSSON_FOUND)
add_subdirectory(src)
add_subdirectory(examples)