Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
2e1913b1
Commit
2e1913b1
authored
Nov 14, 2006
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
check for inet_aton in configure
Originally committed as revision 7049 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
fa28bc16
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
8 deletions
+3
-8
configure
configure
+2
-7
Makefile
libavformat/Makefile
+1
-1
No files found.
configure
View file @
2e1913b1
...
...
@@ -411,6 +411,7 @@ HAVE_LIST='
freetype2
gprof
imlib2
inet_aton
localtime_r
lrintf
malloc_h
...
...
@@ -567,7 +568,6 @@ mpegaudio_hp="yes"
SHFLAGS
=
'-shared -Wl,-soname,$@'
VHOOKSHFLAGS
=
'$(SHFLAGS)'
beos_netserver
=
"no"
need_inet_aton
=
"no"
protocols
=
"yes"
ffmpeg
=
"yes"
ffserver
=
"yes"
...
...
@@ -631,7 +631,6 @@ if (echo $BEINCLUDES|grep 'headers/be/bone' >/dev/null); then
extralibs
=
"-lbind -lsocket"
else
beos_netserver
=
"yes"
need_inet_aton
=
"yes"
extralibs
=
"-lnet"
fi
;;
SunOS
)
...
...
@@ -643,7 +642,6 @@ make="gmake"
FFLDFLAGS
=
""
FFSERVERLDFLAGS
=
""
SHFLAGS
=
"-shared -Wl,-h,
\$
@"
need_inet_aton
=
"yes"
add_extralibs
"-lsocket -lnsl"
;;
NetBSD
)
...
...
@@ -1419,6 +1417,7 @@ fi
check_header byteswap.h
&&
byteswap_h
=
yes
||
byteswap_h
=
no
check_func inet_aton
&&
inet_aton
=
yes
||
inet_aton
=
no
check_func localtime_r
&&
localtime_r
=
yes
||
localtime_r
=
no
enabled zlib
&&
check_lib zlib.h zlibVersion
-lz
||
zlib
=
"no"
...
...
@@ -2010,10 +2009,6 @@ if test "$targetos" = "Darwin"; then
echo
"#define CONFIG_DARWIN 1"
>>
$TMPH
fi
if
test
"
$need_inet_aton
"
=
"yes"
;
then
echo
"NEED_INET_ATON=yes"
>>
config.mak
fi
echo
"#define restrict
$_restrict
"
>>
$TMPH
if
test
"
$optimize
"
=
"small"
;
then
...
...
libavformat/Makefile
View file @
2e1913b1
...
...
@@ -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
if
eq
($(NEED
_INET_ATON),yes)
if
neq
($(HAVE
_INET_ATON),yes)
OBJS
+=
barpainet.o
endif
endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment