summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-02-03 23:10:19 +0000
committerCarl Hetherington <cth@carlh.net>2019-12-03 17:01:32 +0100
commit22cfc449c60d0e10c7be84f3c19b132117c63558 (patch)
tree10e5551863f131ca8ced71dc094931ebc6a7b00f
parent6c88c6eaf593dcf2aae70b829bbcc5e0d236ad17 (diff)
Missing edit to libasdcp-cth.pc.in.
-rw-r--r--libasdcp-cth.pc.in2
-rw-r--r--wscript6
2 files changed, 4 insertions, 4 deletions
diff --git a/libasdcp-cth.pc.in b/libasdcp-cth.pc.in
index 9a7a13e..9ef5f44 100644
--- a/libasdcp-cth.pc.in
+++ b/libasdcp-cth.pc.in
@@ -7,4 +7,4 @@ Description: asdcplib with patches by cth@carlh.net
Version: @version@
Requires: openssl
Libs: @libs@
-Cflags: -I${includedir}
+Cflags: -I${includedir} @cflags@
diff --git a/wscript b/wscript
index 869e499..89f2709 100644
--- a/wscript
+++ b/wscript
@@ -63,16 +63,16 @@ def configure(conf):
def build(bld):
if bld.env.TARGET_WINDOWS:
boost_lib_suffix = '-mt'
- cflags = '-DKM_WIN32'
+ flags = '-DKM_WIN32'
else:
boost_lib_suffix = ''
- cflags = ''
+ flags = ''
bld(source='libasdcp-cth.pc.in',
version=VERSION,
includedir='%s/include/libasdcp-cth' % bld.env.PREFIX,
libs="-L${libdir} -lasdcp-cth -lkumu-cth -lboost_system%s" % boost_lib_suffix,
- cflags=cflags,
+ cflags=flags,
install_path='${LIBDIR}/pkgconfig')
bld.recurse('src')