Commit 8e9f4dc5 authored by Sam Hocevar's avatar Sam Hocevar

* ./plugins/network/ipv4.c: fixed ipv4.so compilation under QNX.

  * ./configure.in: deactivated ipv6.so under QNX for now.
parent 8977670d
This diff is collapsed.
......@@ -765,9 +765,12 @@ AC_ARG_ENABLE(satellite,
fi])
dnl
dnl ipv6 plugin
dnl ipv6 plugin - not for QNX yet
dnl
AC_CHECK_FUNC(inet_pton,[PLUGINS="${PLUGINS} ipv6"])
if test x$SYS != xnto
then
AC_CHECK_FUNC(inet_pton,[PLUGINS="${PLUGINS} ipv6"])
fi
dnl
dnl AVI demux plugin
......
......@@ -2,7 +2,7 @@
* ipv4.c: IPv4 network abstraction layer
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: ipv4.c,v 1.11 2002/04/23 14:16:20 sam Exp $
* $Id: ipv4.c,v 1.12 2002/05/04 15:49:56 sam Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Mathias Kretschmer <mathias@research.att.com>
......@@ -46,7 +46,7 @@
# ifndef IN_MULTICAST
# define IN_MULTICAST(a) IN_CLASSD(a)
# endif
#elif !defined( SYS_NTO )
#else
# include <netdb.h> /* hostent ... */
# include <sys/socket.h>
# include <netinet/in.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment