diff options
author | A. Maitland Bottoms <bottoms@debian.org> | 2015-12-07 11:53:35 -0500 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-12-11 12:00:20 -0800 |
commit | 578fcb99217bdbc4501e620ade7665242f793c71 (patch) | |
tree | d09c481de0603131a337e5d4675814b38ef35a58 /gr-vocoder/swig | |
parent | 11169b55d16c1785c89e03f6cf58b3aa440c68d0 (diff) |
Fixes for ABI compliance checker
do not install obsolete headers
Some header files in atsc and qtgui are installed, but have references
to obsolete paths and are therefore uncompilable. These files should
probably be removed from the checked-out source trees to complete the
refactoring, but this patch merely omits them from the install step.
This allows the abi-compliance-checker to run over the installed header
files.
codec2 embedding fixups
Only use and install the embedded copy of codec2.h when using an
embedded copy of the codec2 library. Use cmake to propagate conditional
paths from lib directory to swig directory.
make acc happy
The abi-compliance-checker operates in installed headers. So sys_pri.h
needs to look for gnuradio/realtime.h and be explicit about structure
definitions. py_feval.h needs to explicitly include Python.h.
Diffstat (limited to 'gr-vocoder/swig')
-rw-r--r-- | gr-vocoder/swig/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-vocoder/swig/CMakeLists.txt b/gr-vocoder/swig/CMakeLists.txt index 26623969a7..4e15442c59 100644 --- a/gr-vocoder/swig/CMakeLists.txt +++ b/gr-vocoder/swig/CMakeLists.txt @@ -25,6 +25,7 @@ include(GrSwig) set(GR_SWIG_INCLUDE_DIRS ${GR_VOCODER_INCLUDE_DIRS} + ${EMBEDDED_CODEC2_INCLUDE_DIRS} ${GNURADIO_RUNTIME_SWIG_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS} ) |