diff options
author | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-11-23 01:29:25 +0000 |
---|---|---|
committer | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-11-23 01:29:25 +0000 |
commit | 47930f093e478dd600d0dd7bcfca0ab81e884ead (patch) | |
tree | 416dd1bccdd138c518d951b66d00b1a9cc81e29a /vhook/Makefile | |
parent | 9c76bd48aa318eaf74a3d9c4cac3d8a9ada3fe04 (diff) | |
download | ffmpeg-streaming-47930f093e478dd600d0dd7bcfca0ab81e884ead.zip ffmpeg-streaming-47930f093e478dd600d0dd7bcfca0ab81e884ead.tar.gz |
Applied changes to make it compile on darwin
Originally committed as revision 1270 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook/Makefile')
-rw-r--r-- | vhook/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/vhook/Makefile b/vhook/Makefile index 5f19805..296127d 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -2,6 +2,11 @@ include ../config.mak CFLAGS=-fPIC $(OPTFLAGS) -g -Wall -I.. -I../libav -I../libavcodec -DHAVE_AV_CONFIG_H +ifeq ($(CONFIG_DARWIN),yes) +LDFLAGS+=-bundle -flat_namespace -undefined suppress +else +LDFLAGS+=-shared +endif HOOKS=null.so fish.so ifeq ($(HAVE_IMLIB2),yes) @@ -14,11 +19,11 @@ install: install -s -m 755 $(HOOKS) $(INSTDIR) imlib2.so: imlib2.o - $(CC) -g -o $@ -shared $< -lImlib2 + $(CC) -g -o $@ $(LDFLAGS) $< -lImlib2 rm $< %.so: %.o - $(CC) -g -o $@ -shared $< + $(CC) -g -o $@ $(LDFLAGS) $< %.html: %.texi texi2html -monolithic -number $< |