Commit d4bb448c authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Fix liveMedia on all platforms now hopefully

parent 45cf5c0d
...@@ -1017,17 +1017,17 @@ live: live555-$(LIVEDOTCOM_VERSION).tar.gz ...@@ -1017,17 +1017,17 @@ live: live555-$(LIVEDOTCOM_VERSION).tar.gz
patch -p 0 < Patches/live-osx.patch patch -p 0 < Patches/live-osx.patch
.live: live .live: live
ifeq ($(HOST),powerpc-apple-darwin8) ifdef HAVE_WIN32
(cd $<; sed -e 's%EXTRA_CFLAGS%$(EXTRA_CFLAGS)%' -e 's%EXTRA_LDFLAGS%$(EXTRA_LDFLAGS)%' -i.orig config.macosx) (cd $<;./genMakefiles mingw && make $(HOSTCC))
(cd $<; ./genMakefiles macosx && make)
else else
ifeq ($(HOST),powerpc-apple-darwin*) ifeq ($(HOST),ppc-darwin)
(cd $<; ./genMakefiles macosx-before-version-10.4 && make ) (cd $<; ./genMakefiles macosx-before-version-10.4 && make )
else else
ifdef HAVE_WIN32 ifdef HAVE_DARWIN_OS
(cd $<;./genMakefiles mingw && make $(HOSTCC)) (cd $<; sed -e 's%EXTRA_CFLAGS%$(EXTRA_CFLAGS)%' -e 's%EXTRA_LDFLAGS%$(EXTRA_LDFLAGS)%' -i.orig config.macosx)
(cd $<; ./genMakefiles macosx && make)
else else
(cd $<;./genMakefiles linux && make ) (cd $<;./genMakefiles linux && make $(HOSTCC))
endif endif
endif endif
endif endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment