summaryrefslogtreecommitdiff
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-07-19 22:23:40 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-07-19 22:23:40 +0000
commite1707f52d5a431bd645eb6026801e1ddaf9c79c5 (patch)
tree811d91e85319d3e234906ed0c8a4fd0ab3d89436 /libavcodec/Makefile
parenteddbd7e5a09a11fab04f55222f1efa14426f49fe (diff)
BeOS patches by "shatty" <shatty at myrealbox.com>
1. errno's are negative on beos, so negating them gives positive values. 2. the -shared flag is -nostart on beos. 3. building the shared lib on beos requires -fomit-frame-pointer 4. beos doesn't have oss support Originally committed as revision 779 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 6d54abb953..989381d882 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -85,7 +85,7 @@ $(LIB): $(OBJS)
$(AR) rc $@ $(OBJS)
$(SLIB): $(OBJS)
- $(CC) -shared -o $@ $(OBJS) $(EXTRALIBS)
+ $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS)
dsputil.o: dsputil.c dsputil.h