debrix configure.ac,1.2,1.3
Adam Jackson <xserver-commit-u7BhqnqprCWvj1b/[email protected]>
| Newsgroups | gmane.comp.freedesktop.xserver.cvs |
|---|---|
| Message-ID | <[email protected]> |
Committed by: ajax Update of /cvs/xserver/debrix In directory pdx:/home/ajax/debrix Modified Files: configure.ac Log Message: Massive build fixes: - Properly set some defines for Xtrans - Sanitize included file paths - Unbreak extmod - Import of x86emu so int10 will work - Fix int10 to include x86emu headers Index: configure.ac =================================================================== RCS file: /cvs/xserver/debrix/configure.ac,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- configure.ac 12 Jun 2004 16:43:32 -0000 1.2 +++ configure.ac 16 Jun 2004 00:25:14 -0000 1.3 @@ -106,6 +106,20 @@ AC_ARG_ENABLE(dri, [ --enable-dri ],[DRI=$enableval],[DRI=no]) AC_ARG_ENABLE(xinerama, [ --disable-xinerama ],[XINERAMA=$enableval],[XINERAMA=yes]) +# Transport selection +AC_ARG_ENABLE(unix-transport,[ --disable-unix-transport ], [UNIXCONN=$enableval], [UNIXCONN=yes]) +AC_ARG_ENABLE(tcp-transport, [ --disable-tcp-transport ], [TCPCONN=$enableval], [TCPCONN=yes]) +AC_ARG_ENABLE(ipv6, [ --disable-ipv6 ], [IPV6CONN=$enableval], [IPV6CONN=yes]) +if test "$UNIXCONN" = "yes"; then + AC_DEFINE(UNIXCONN,1,[Support UNIX socket connections]) +fi +if test "$TCPCONN" = "yes"; then + AC_DEFINE(TCPCONN,1,[Support TCP socket connections]) +fi +if test "$IPV6CONN" = "yes"; then + AC_DEFINE(IPv6,1,[Support IPv6 for TCP connections]) +fi + AC_ARG_WITH(mesa-source, [ --with-mesa-source=PATH ], [MESA_SOURCE="$withval"], [MESA_SOURCE="\$(top_srcdir)/../Mesa"])