debrix configure.ac,1.2,1.3
Adam Jackson
xserver-commit at pdx.freedesktop.org
Tue Jun 15 17:25:16 PDT 2004
- Previous message: xserver/hw/kdrive/mga Makefile.am, 1.7, 1.8 mga.h, 1.7,
1.8 mgadraw.c, 1.8, 1.9
- Next message: debrix/Xext dpms.c, 1.3, 1.4 xf86bigfont.c, 1.3, 1.4 xf86misc.c, 1.2,
1.3 xf86vmode.c, 1.3, 1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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"])
- Previous message: xserver/hw/kdrive/mga Makefile.am, 1.7, 1.8 mga.h, 1.7,
1.8 mgadraw.c, 1.8, 1.9
- Next message: debrix/Xext dpms.c, 1.3, 1.4 xf86bigfont.c, 1.3, 1.4 xf86misc.c, 1.2,
1.3 xf86vmode.c, 1.3, 1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the xserver-commit
mailing list