forked from efficios/babeltrace
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Put the libbabeltrace-ctf specific parts of babeltrace.pc into a babe…
…ltrace-ctf.pc file On some distributions libbabeltrace and libbabeltrace-ctf are packaged into separate packages. This means they should have their own pkg-config file. The babeltrace-ctf.pc file requires the babeltrace.pc one. With this change, to have the ctf support in libbabeltrace a pkg-config user will need to specify the babeltrace-ctf package. To compile and link with only the base libbabeltrace, the package babeltrace would be used. Fixes #550 Signed-off-by: Yannick Brosseau <[email protected]> Signed-off-by: Mathieu Desnoyers <[email protected]>
- Loading branch information
1 parent
331d78f
commit e7a7efd
Showing
4 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
prefix=@prefix@ | ||
exec_prefix=@exec_prefix@ | ||
libdir=@libdir@ | ||
includedir=@includedir@ | ||
|
||
Name: Babeltrace CTF parser | ||
Description: libbabeltrace-ctf provides the specific bits necessary to read a Common Trace Format (CTF) trace. | ||
Version: @PACKAGE_VERSION@ | ||
Requires: babeltrace | ||
Requires.private: | ||
Libs: -L${libdir} -lbabeltrace-ctf | ||
Cflags: -I${includedir} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,5 +137,6 @@ AC_CONFIG_FILES([ | |
extras/Makefile | ||
extras/valgrind/Makefile | ||
babeltrace.pc | ||
babeltrace-ctf.pc | ||
]) | ||
AC_OUTPUT |