diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-14 03:55:26 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-14 03:55:26 +0000 |
commit | 2e1913b193b67f974de82922ef4852bc742a5100 (patch) | |
tree | 2f92e123c5ae939928a7b56583eee26ccdcf5b81 /libavformat/Makefile | |
parent | fa28bc16f0d18ab1ce7aa2e608757d809f737394 (diff) | |
download | ffmpeg-2e1913b193b67f974de82922ef4852bc742a5100.tar.gz |
check for inet_aton in configure
Originally committed as revision 7049 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 647383aace..cbfb9002d8 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -167,7 +167,7 @@ ifeq ($(CONFIG_PROTOCOLS),yes) OBJS+= file.o ifeq ($(CONFIG_NETWORK),yes) OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o mpegts.o base64.o rtp_h264.o -ifeq ($(NEED_INET_ATON),yes) +ifneq ($(HAVE_INET_ATON),yes) OBJS+= barpainet.o endif endif |