diff options
author | François Revol <revol@free.fr> | 2002-11-05 00:56:08 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-11-05 00:56:08 +0000 |
commit | 9eb826478c0fea0137eacad09c662682b80ad216 (patch) | |
tree | 1db9d4c7a151217a5c184378bd566f7c93c969d6 | |
parent | dfdfa47cd1e8887a99e19ba9291a8ffc52dd251c (diff) | |
download | ffmpeg-9eb826478c0fea0137eacad09c662682b80ad216.tar.gz |
MIN/MAX sys/param.h patch by (François Revol <revol at free dot fr>)
Originally committed as revision 1164 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffserver.c | 8 | ||||
-rw-r--r-- | libav/http.c | 2 | ||||
-rw-r--r-- | libav/rtp.c | 2 | ||||
-rw-r--r-- | libav/rtpproto.c | 2 | ||||
-rw-r--r-- | libav/rtsp.c | 2 | ||||
-rw-r--r-- | libav/tcp.c | 2 | ||||
-rw-r--r-- | libav/udp.c | 2 |
7 files changed, 12 insertions, 8 deletions
diff --git a/ffserver.c b/ffserver.c index aa8e72c896..33508ec5eb 100644 --- a/ffserver.c +++ b/ffserver.c @@ -17,10 +17,10 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #define HAVE_AV_CONFIG_H +#include <netinet/in.h> #include "avformat.h" #include <stdarg.h> -#include <netinet/in.h> #include <unistd.h> #include <fcntl.h> #include <sys/ioctl.h> @@ -31,7 +31,11 @@ #include <sys/types.h> #include <sys/socket.h> #include <sys/wait.h> -#include <arpa/inet.h> +#ifndef __BEOS__ +# include <arpa/inet.h> +#else +# include "libav/barpainet.h" +#endif #include <netdb.h> #include <ctype.h> #include <signal.h> diff --git a/libav/http.c b/libav/http.c index 7271a6da81..64025f2258 100644 --- a/libav/http.c +++ b/libav/http.c @@ -16,11 +16,11 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include <sys/socket.h> #include "avformat.h" #include <unistd.h> #include <ctype.h> #include <sys/types.h> -#include <sys/socket.h> #include <netinet/in.h> #ifndef __BEOS__ # include <arpa/inet.h> diff --git a/libav/rtp.c b/libav/rtp.c index 714787c88b..b42065fbea 100644 --- a/libav/rtp.c +++ b/libav/rtp.c @@ -16,11 +16,11 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include <sys/socket.h> #include "avformat.h" #include <unistd.h> #include <sys/types.h> -#include <sys/socket.h> #include <netinet/in.h> #ifndef __BEOS__ # include <arpa/inet.h> diff --git a/libav/rtpproto.c b/libav/rtpproto.c index 41823fc829..25b10b8bf2 100644 --- a/libav/rtpproto.c +++ b/libav/rtpproto.c @@ -16,12 +16,12 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include <sys/socket.h> #include "avformat.h" #include <unistd.h> #include <stdarg.h> #include <sys/types.h> -#include <sys/socket.h> #include <netinet/in.h> #ifndef __BEOS__ # include <arpa/inet.h> diff --git a/libav/rtsp.c b/libav/rtsp.c index 81b59f8916..667a3c095a 100644 --- a/libav/rtsp.c +++ b/libav/rtsp.c @@ -16,10 +16,10 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include <netinet/in.h> #include "avformat.h" #include <sys/time.h> -#include <netinet/in.h> #include <sys/socket.h> #ifndef __BEOS__ # include <arpa/inet.h> diff --git a/libav/tcp.c b/libav/tcp.c index 61d8665525..6f4c037dcb 100644 --- a/libav/tcp.c +++ b/libav/tcp.c @@ -16,11 +16,11 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include <sys/socket.h> #include "avformat.h" #include <unistd.h> #include <ctype.h> #include <sys/types.h> -#include <sys/socket.h> #include <netinet/in.h> #ifndef __BEOS__ # include <arpa/inet.h> diff --git a/libav/udp.c b/libav/udp.c index 8df93a8a8a..6e91a22350 100644 --- a/libav/udp.c +++ b/libav/udp.c @@ -16,10 +16,10 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include <sys/socket.h> #include "avformat.h" #include <unistd.h> #include <sys/types.h> -#include <sys/socket.h> #include <netinet/in.h> #ifndef __BEOS__ # include <arpa/inet.h> |