Advertisement
svenhoefer

Untitled

Feb 28th, 2017
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.16 KB | None | 0 0
  1. diff --git a/make/neutrino.mk b/make/neutrino.mk
  2. index 285caf4..d5d2348 100644
  3. --- a/make/neutrino.mk
  4. +++ b/make/neutrino.mk
  5. @@ -4,6 +4,7 @@ NEUTRINO_DEPS = libcurl freetype libjpeg giflib ffmpeg openthreads openssl libdv
  6.  ifeq ($(BOXSERIES), hd2)
  7.         NEUTRINO_DEPS += libiconv
  8.  endif
  9. +NEUTRINO_DEPS += libcoolstream
  10.  
  11.  N_CFLAGS = -Wall -W -Wshadow -D__KERNEL_STRICT_NAMES -D__STDC_CONSTANT_MACROS -DENABLE_FREESATEPG
  12.  ifeq ($(BOXSERIES), hd1)
  13. @@ -35,6 +36,13 @@ else
  14.         N_LDFLAGS += -Wl,-O2,-rpath-link,$(TARGETLIB)
  15.  endif
  16.  
  17. +N_CONFIGURE_DEBUG =
  18. +ifeq ($(DEBUG), yes)
  19. +       N_CONFIGURE_DEBUG += \
  20. +               --enable-libcoolstream-static \
  21. +               --with-libcoolstream-static-dir=$(TARGETLIB)
  22. +endif
  23. +
  24.  # finally we can build outside of the source directory
  25.  N_OBJDIR = $(BUILD_TMP)/$(FLAVOUR)
  26.  
  27. @@ -57,6 +65,7 @@ endif
  28.                         --host=$(TARGET) \
  29.                         --build=$(BUILD) \
  30.                         --prefix= \
  31. +                       $(N_CONFIGURE_DEBUG) \
  32.                         --enable-silent-rules \
  33.                         --enable-mdev \
  34.                         --enable-maintainer-mode \
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement