Module: sems Branch: master Commit: 9d4fd32f3a2bf176035915590f04fb842ed91daa URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=9d4fd32f3a2bf176035915590f04fb842ed91daa
Author: Raphael Coeffic <[email protected]> Committer: Raphael Coeffic <[email protected]> Date: Tue Oct 4 13:17:25 2011 +0200 rtmp: added some help for the flash client making process. --- apps/rtmp/flash_phone/Makefile | 19 ++++++++++++++----- 1 files changed, 14 insertions(+), 5 deletions(-) diff --git a/apps/rtmp/flash_phone/Makefile b/apps/rtmp/flash_phone/Makefile index 4761929..0112306 100644 --- a/apps/rtmp/flash_phone/Makefile +++ b/apps/rtmp/flash_phone/Makefile @@ -1,12 +1,21 @@ +# +# The Sono flash app requires at least Flash player 10.3 (because of the AEC) +# +# In order to compile properly, following is required: +# - Flex SDK 4.5.1 (or higher) +# - playerglobal.swc for flash 10.3 (if not included) +# (download from http://www.adobe.com/support/flashplayer/downloads.html) +# (and install in FLEX_SDK/framworks/libs/player/10.3/) +# -FLEX_SDK=/opt/flex_sdk_4.5/bin +# Change this to your Flex SDK directory +FLEX_SDK=/opt/flex_sdk_4.5 -MXMLC=$(FLEX_SDK)/mxmlc +MXMLC=$(FLEX_SDK)/bin/mxmlc MXMLC_OPTS= \ --strict=true \ --as3=true \ - --target-player="10.3.0" \ - -swf-version=12 + --target-player="10.3" APP=sono SOURCES= $(APP).mxml $(wildcard *.as) @@ -17,4 +26,4 @@ clean: rm *.swf %.swf: $(SOURCES) Makefile - $(MXMLC) $(MXMLC_OPTS) $< \ No newline at end of file + $(MXMLC) $(MXMLC_OPTS) $< _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
