misc/sysmobts: Another small change to help in finding the header

We could have a dedicated configure/cflag for the header files
but for now search in the standard directories.
This commit is contained in:
Holger Hans Peter Freyther 2014-03-12 16:51:27 +01:00
parent 06387d89e8
commit 4e3aa93681
1 changed files with 3 additions and 0 deletions

View File

@ -52,8 +52,11 @@ AC_CHECK_HEADER([openbsc/gsm_data_shared.h],[],
CPPFLAGS=$oldCPPFLAGS
# Check for the sbts2050_header.h that was added after the 3.6 release
oldCPPFLAGS=$CPPFLAGS
CPPFLAGS="$CPPFLAGS -I$OPENBSC_INCDIR $LIBOSMOCORE_CFLAGS"
AC_CHECK_HEADER([sysmocom/femtobts/sbts2050_header.h],
[sysmo_uc_header="yes"],[])
CPPFLAGS=$oldCPPFLAGS
if test "$sysmo_uc_header" = "yes" ; then
AC_DEFINE(BUILD_SBTS2050, 1, [Define if we want to build SBTS2050])