0001-configure.ac-remove-conditional-lib-inclusion.patch 539 B

123456789101112131415161718192021
  1. Removed header Include path from the configure file as path was
  2. from the host, which is wrong for the cross compilation.
  3. Upstream: None
  4. Signed-off-by: Nitin Mendiratta <nitin.mendiratta@rockwellcollins.com>
  5. diff --git a/configure.ac b/configure.ac
  6. index 10ff870..27b9957 100644
  7. --- a/configure.ac
  8. +++ b/configure.ac
  9. @@ -1145,9 +1145,7 @@ have_lininn=no
  10. have_inn_parsedate=no
  11. oCPPFLAGS="$CPPFLAGS"
  12. -if test -d /usr/include/inn; then
  13. - CPPFLAGS="$CPPFLAGS -I/usr/include/inn"
  14. -fi
  15. +
  16. AC_CHECK_HEADER(libinn.h)
  17. CPPFLAGS="$oCPPFLAGS"