add swig includes for gnuradio >=v3.5.3

Otherwise the build will fail.

Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
Steve Markgraf 2012-05-30 21:55:05 +02:00
parent 4fcf7a4498
commit 4cd1abcc96
2 changed files with 3 additions and 1 deletions

View File

@ -35,7 +35,8 @@ AM_CPPFLAGS = \
STD_DEFINES_AND_INCLUDES = \
$(DEFINES) \
-I$(GNURADIO_CORE_INCLUDEDIR) \
-I$(GNURADIO_CORE_INCLUDEDIR)/swig
-I$(GNURADIO_CORE_INCLUDEDIR)/swig \
-I$(GRUEL_INCLUDEDIR)/gruel/swig
# includes
grincludedir = $(includedir)/gnuradio

View File

@ -115,5 +115,6 @@ m4_define([GR_STANDALONE],
AM_CONDITIONAL([HAS_XMLTO], [test x$XMLTO = xyes])
PKG_CHECK_MODULES(GNURADIO_CORE, gnuradio-core >= 3)
PKG_CHECK_MODULES(GRUEL, gruel >= 3)
LIBS="$LIBS $GNURADIO_CORE_LIBS"
])