summaryrefslogtreecommitdiff
path: root/lib/avtp_pipeline
diff options
context:
space:
mode:
authorLevi Pearson <levi.pearson@harman.com>2016-06-16 16:26:53 -0600
committerMarcin Miklas <marcin@miklas.pl>2016-09-12 21:37:11 +0200
commitb77be74f98c8097f59926b06078d12a6938ad88f (patch)
treea31d8562945a67e502b76fcb48babadc78ee640c /lib/avtp_pipeline
parent7b422abf268b574e7d40a6a086243f6699904775 (diff)
downloadOpen-AVB-b77be74f98c8097f59926b06078d12a6938ad88f.tar.gz
avtp_pipeline: Fix CMake and init for intf_tonegen
Diffstat (limited to 'lib/avtp_pipeline')
-rw-r--r--lib/avtp_pipeline/platform/Linux/CMakeLists.txt2
-rw-r--r--lib/avtp_pipeline/platform/Linux/avb_host/openavb_host.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/avtp_pipeline/platform/Linux/CMakeLists.txt b/lib/avtp_pipeline/platform/Linux/CMakeLists.txt
index 585ed769..047b6a76 100644
--- a/lib/avtp_pipeline/platform/Linux/CMakeLists.txt
+++ b/lib/avtp_pipeline/platform/Linux/CMakeLists.txt
@@ -247,7 +247,7 @@ if ( AVB_FEATURE_PCAP )
endif ()
add_library ( avbTl ${SRC_FILES} )
-target_link_libraries ( avbTl dl )
+target_link_libraries ( avbTl dl m )
install ( TARGETS avbTl ARCHIVE DESTINATION ${AVB_INSTALL_LIB_DIR} )
diff --git a/lib/avtp_pipeline/platform/Linux/avb_host/openavb_host.c b/lib/avtp_pipeline/platform/Linux/avb_host/openavb_host.c
index e1eec996..54995b7a 100644
--- a/lib/avtp_pipeline/platform/Linux/avb_host/openavb_host.c
+++ b/lib/avtp_pipeline/platform/Linux/avb_host/openavb_host.c
@@ -204,7 +204,7 @@ int main(int argc, char *argv[])
registerStaticIntfModule(openavbIntfCtrlInitialize);
registerStaticIntfModule(openavbIntfLoggerInitialize);
registerStaticIntfModule(openavbIntfNullInitialize);
- //registerStaticIntfModule(openavbIntfToneGenInitialize);
+ registerStaticIntfModule(openavbIntfToneGenInitialize);
registerStaticIntfModule(openavbIntfViewerInitialize);
registerStaticIntfModule(openavbIntfAlsaInitialize);
registerStaticIntfModule(openavbIntfMjpegGstInitialize);