From: Neels Hofmeyr neels@hofmeyr.de
Rebased the patches onto updated master, added a binary to .gitignore.
Neels Hofmeyr (2): add basic .gitignore configure.ac: check for boost/config.hpp header
.gitignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 3 +++ 2 files changed, 47 insertions(+) create mode 100644 .gitignore
From: Neels Hofmeyr neels@hofmeyr.de
--- .gitignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .gitignore
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e15c19b --- /dev/null +++ b/.gitignore @@ -0,0 +1,44 @@ +# build results +*.o +*.lo +*.la +Transceiver52M/osmo-trx + +# tests +CommonLibs/BitVectorTest +CommonLibs/ConfigurationTest +CommonLibs/F16Test +CommonLibs/InterthreadTest +CommonLibs/LogTest +CommonLibs/RegexpTest +CommonLibs/SocketsTest +CommonLibs/TimevalTest +CommonLibs/URLEncodeTest +CommonLibs/VectorTest + +# automake/autoconf +*.in +.deps +.libs +.dirstamp +*~ +Makefile +config.log +config.status +config.h +config.guess +config.sub +config/* +configure +compile +aclocal.m4 +autom4te.cache +depcomp +install-sh +libtool +ltmain.sh +missing +stamp-h1 + +# vim +*.sw?
From: Neels Hofmeyr neels@hofmeyr.de
--- configure.ac | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/configure.ac b/configure.ac index ad6bf9a..7e394c2 100644 --- a/configure.ac +++ b/configure.ac @@ -120,6 +120,9 @@ AM_CONDITIONAL(ARCH_ARM_A15, [test "x$with_neon_vfpv4" = "xyes"])
PKG_CHECK_MODULES(LIBUSB, libusb-1.0)
+AC_CHECK_HEADER([boost/config.hpp],[], + [AC_MSG_ERROR([boost/config.hpp not found, install e.g. libboost-dev])]) + dnl Output files AC_CONFIG_FILES([\ Makefile \
Merged.
-TT
On Tue, Jul 5, 2016 at 4:00 AM, Neels Hofmeyr nhofmeyr@sysmocom.de wrote:
From: Neels Hofmeyr neels@hofmeyr.de
Rebased the patches onto updated master, added a binary to .gitignore.
Neels Hofmeyr (2): add basic .gitignore configure.ac: check for boost/config.hpp header
.gitignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 3 +++ 2 files changed, 47 insertions(+) create mode 100644 .gitignore
-- 2.1.4