diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-09-26 09:54:46 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-09-26 09:54:46 +0000 |
commit | add278ab66888dd413539b8ad7e7fd7caafbfe51 (patch) | |
tree | 815fb0d74d3d62f8d908b68d4234cf00b81550f0 /TOOLS | |
parent | 862537d24095490c8bca03628421cfa2f1a5aa86 (diff) |
-lpthread --> $(ARCH_LIB), helps linking on systems without pthread.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13471 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rw-r--r-- | TOOLS/netstream/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TOOLS/netstream/Makefile b/TOOLS/netstream/Makefile index 6a269a6aaa..520c75f31f 100644 --- a/TOOLS/netstream/Makefile +++ b/TOOLS/netstream/Makefile @@ -19,7 +19,7 @@ all: netstream netstream: $(MPROOT)/libmpdemux/libmpdemux.a netstream.o # FIXME: linking is a mess that should be fixed properly some day # it does not work with either GUI, live.com or libavformat enabled - $(CC) $(CFLAGS) netstream.o -o netstream $(MPROOT)/libmpdemux/libmpdemux.a $(MPROOT)/libmpdvdkit2/libmpdvdkit.a $(MPROOT)/libmpcodecs/native/minilzo.o $(MPROOT)/libvo/aclib.o $(MPROOT)/libmpcodecs/img_format.o $(MPROOT)/liba52/liba52.a $(MPROOT)/libao2/afmt.o $(MPROOT)/m_option.o $(MPROOT)/m_struct.o $(MPROOT)/subreader.o $(MPROOT)/mp_msg.o $(MPROOT)/osdep/shmem.o $(MPROOT)/osdep/timer-*.o $(MPROOT)/osdep/strl.o $(VORBIS_LIB) $(CDPARANOIA_LIB) $(Z_LIB) $(GIF_LIB) $(SMBSUPPORT_LIB) $(LIVE_LIBS) -lpthread $(COMMON_LIBS) -lm + $(CC) $(CFLAGS) netstream.o -o netstream $(MPROOT)/libmpdemux/libmpdemux.a $(MPROOT)/libmpdvdkit2/libmpdvdkit.a $(MPROOT)/libmpcodecs/native/minilzo.o $(MPROOT)/libvo/aclib.o $(MPROOT)/libmpcodecs/img_format.o $(MPROOT)/liba52/liba52.a $(MPROOT)/libao2/afmt.o $(MPROOT)/m_option.o $(MPROOT)/m_struct.o $(MPROOT)/subreader.o $(MPROOT)/mp_msg.o $(MPROOT)/osdep/shmem.o $(MPROOT)/osdep/timer-*.o $(MPROOT)/osdep/strl.o $(VORBIS_LIB) $(CDPARANOIA_LIB) $(Z_LIB) $(GIF_LIB) $(SMBSUPPORT_LIB) $(LIVE_LIBS) $(ARCH_LIB) $(COMMON_LIBS) -lm clean: rm -f *.o *.a *~ |