diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-04-27 20:58:44 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-04-27 20:58:44 +0200 |
commit | e42433d7127f9a50b5dae57fff331ecfdc9883c4 (patch) | |
tree | 81cc6860ef65e4077ce59a190d3bbf7166400959 /package/rtsp/Makefile | |
parent | 4b2636bd2aea3aa4f5844083a1de0e9283f31a7a (diff) |
iptv via natting now works at last sometime.
alice iptv seems to use destination=ip:port instead of client_port=port, like
RFC suggesting it. But destination= is also used by STUN method.
As a quick hack I commented out STUN method to avoid crashes.
Now at least I can see some tv streams. still not 100% good.
Diffstat (limited to 'package/rtsp/Makefile')
-rw-r--r-- | package/rtsp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/rtsp/Makefile b/package/rtsp/Makefile index c28467b9b..994852f04 100644 --- a/package/rtsp/Makefile +++ b/package/rtsp/Makefile @@ -22,10 +22,10 @@ BUILD_STYLE:= manual INSTALL_STYLE:= manual pre-build: - V=1 ARCH=${ARCH} KERNELDIR=${LINUX_DIR} \ + ARCH=${ARCH} KERNELDIR=${LINUX_DIR} \ PREFIX=/usr CROSS_COMPILE="${TARGET_CROSS}" \ - LD=$(TARGET_CROSS)gcc LDFLAGS="" \ - $(MAKE) -C ${WRKBUILD} debug + LD=$(TARGET_CROSS)gcc LDFLAGS="" CFLAGS="-Wall" \ + $(MAKE) -C ${WRKBUILD} debug V=1 do-install: ${INSTALL_DIR} ${IDIR_KMOD_RTSP}/etc/modules.d/ |