diff options
author | Harald Welte <laforge@gnumonks.org> | 2014-12-04 14:15:36 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2014-12-04 14:15:36 +0100 |
commit | e15ac060e7ae78d4c3569d7fc9071bcf49807e05 (patch) | |
tree | a90fc81b1197e28b668a98f175543d705edf775f /configure.ac | |
parent | 20144f7bc5c04e57da36cd7d7883f576510f0298 (diff) |
fix libosmocore build for NuttX target
this fixes some compilation issues with libosmocore under NuttX,
particularly as some #defines are missing or some header files are
slightly different.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ef74932b..acd153d1 100644 --- a/configure.ac +++ b/configure.ac @@ -31,7 +31,7 @@ AC_SUBST(LTLDFLAGS_OSMOGSM) dnl checks for header files AC_HEADER_STDC -AC_CHECK_HEADERS(execinfo.h sys/select.h sys/socket.h syslog.h ctype.h) +AC_CHECK_HEADERS(execinfo.h sys/select.h sys/socket.h syslog.h ctype.h netinet/tcp.h) # for src/conv.c AC_FUNC_ALLOCA AC_SEARCH_LIBS([dlopen], [dl dld], [LIBRARY_DL="$LIBS";LIBS=""]) |