summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2007-11-26Darwin,Rootless: Makefile cleanupJeremy Huddleston1-0/+2
(cherry picked from commit 9c6d8a035b712b219833653ac637b89703a9b0c3)
2007-11-26registry: swap out the DTRACE XErrorDB stuff for the new registry call.Eamon Walsh1-7/+0
2007-11-26registry: rename the SERVERCONFIGdir and relocate it to /usr/lib/xorgEamon Walsh1-3/+4
by default.
2007-11-21Darwin: Dead code removal, Code cleanup, Added launcherJeremy Huddleston1-106/+115
Imported changes from xorg-server-1.2-apple to make master more current wrt file layout, build system changes, and dead code removal.
2007-11-20Enable use of /dev/urandom on Solaris as wellAlan Coopersmith1-3/+7
2007-11-19Merge branch 'master' into XACE-SELINUXEamon Walsh1-3/+7
Conflicts: hw/xnest/Pixmap.c include/dix.h
2007-11-16Bug #1612: Use a stronger PRNG.Adam Jackson1-0/+6
Currently just reads from /dev/urandom, and only on Linux.
2007-11-15Clean up some garbage in driver enumeration.Adam Jackson1-2/+0
2007-11-14Start 1.4.99Adam Jackson1-1/+1
2007-11-14Merge branch 'master' into XACE-SELINUXEamon Walsh1-2/+6
Conflicts: Xext/xace.c Xext/xace.h
2007-11-08fixing GLX in XquartzBen Byer1-1/+2
2007-11-08Restore the XC-SECURITY option in configure.ac, but disabled by default.Eamon Walsh1-2/+2
2007-11-08Xephyr: do not AM_CONDITIONAL inside a shell if branchDodji Seketeli1-1/+1
2007-11-07Xephyr: don't use Xv or GL when those are disabled.Dodji Seketeli1-0/+3
2007-11-07Xnest: fix lib dependancy to make libtool happyDodji Seketeli1-1/+1
This fixes an undefined symbol error happening when compiling the server with the --disable-xv configure switch. Basically, xnest was linking against @XSERVER_LIBS@ and @XNEST_LIBS@ and the order of the libraries given to the linker at the end of the process was bogus. * configure.ac: make XNEST_LIBS contain the $XSERVER_LIBS re-ordered in such a way that the linker finds the symbols of all the libs contained in $XNEST_LIBS. * hw/xnest/Makefile.am: don't link against @XSERVER_LIBS@ anymore because XNEST_LIBS contains the right thing.
2007-11-05Merge branch 'master' into XACE-SELINUXEamon Walsh1-11/+14
Conflicts: dix/dispatch.c dix/property.c hw/xfree86/common/xf86VidMode.c include/xkbsrv.h render/glyph.c xkb/xkbActions.c
2007-11-05Export the server ABI versions from xorg-server.pcAdam Jackson1-0/+11
2007-11-05Remove all traces of external RGB database (and Speedo)Daniel Stone1-10/+0
Remove all references to an external RGB database (which hasn't been enabled for a very long time). Also get rid of some references to Speedo fonts.
2007-10-28configure.ac/XFree86: Only build XF86Misc and XF86VidMode when appropriateDaniel Stone1-1/+3
Don't build XF86Misc or XF86Vidmode in hw/xfree86/dixmod when it's been explicitly disabled in configure, or we don't have the proto modules installed.
2007-10-25Merge branch 'master' into XACE-SELINUXEamon Walsh1-2/+7
Conflicts: GL/glx/glxscreens.c hw/xnest/Screen.c render/glyph.c render/glyphstr.h render/render.c
2007-10-21Make PCI text file directory configurableDavid Nusinow1-0/+5
2007-10-19Merge branch 'master' into glyph-pixmapsEric Anholt1-5/+14
Conflicts: configure.ac
2007-10-17Merge branch 'master' into XACE-SELINUXEamon Walsh1-6/+16
Conflicts: os/access.c
2007-10-17xselinux: Started reworking extension using new XACE hooks.Eamon Walsh1-1/+1
2007-10-17KDRIVE_LOCAL_LIBS includes some system libraries, not just internal x server ↵Keith Packard1-2/+2
libs
2007-10-12Implement GLX pbuffers.Kristian Høgsberg1-1/+1
2007-10-11dix: Add a new "registry" mechanism for registering string names of things.Eamon Walsh1-0/+5
Supports protocol requests, events, and errors, and resource names. Modify XRES extension to use it.
2007-10-09Sun bug 6589829: include zoneid of shm segment in access policy for MIT-SHMAlan Coopersmith1-1/+1
<http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6589829> <http://www.opensolaris.org/os/community/arc/caselog/2007/500/>
2007-10-09FreeBSD/alpha server build requires libio (missed in modularization).Christian Weisgerber1-0/+1
2007-10-03Merge Xephyr-XV/GL stuff into masterDodji Seketeli1-2/+10
2007-10-02Just link against libcrypto instead of relying on openssl pkg-config.Eric Anholt1-3/+3
Also fix incorrect library inclusion by kdrive which broke the build.
2007-10-02Merge branch 'glyph-pixmaps'Eric Anholt1-1/+1
Conflicts: configure.ac exa/exa_render.c
2007-10-02Do not build hw/xfree86/os-support/bus/ix86Pci.c on Linux.Keith Packard1-1/+2
Linux has custom PCI bus support functions, so this generic code is unnecessary.
2007-10-02make xephyr talk DRI protocol with hostXDodji Seketeli1-0/+7
* configure.ac,include/dix-config.h.in: define the XEPHYR_DRI macro. define it when --enable-xephyr and --enable-dri are both turned on. * hw/kdrive/ephyr/XF86dri.c: copy this from mesa source to enable Xephyr to talk DRI protocol the host X. In mesa, this is used by libGL.so to talk DRI protocol with the server. * hw/kdrive/ephyr/ephyr.c: finally initialise the DRI extension in the ephyrInitScreen() function. * hw/kdrive/ephyr/ephyrdri.c,ephyrdriext.c: safeguard the compilation using the XEPHYR_DRI macro.
2007-10-02link and init xvDodji Seketeli1-2/+3
2007-09-27Rework local client id finding code to be more uniformAlan Coopersmith1-1/+1
2007-09-26Merge branch 'master' into XACE-SELINUXEamon Walsh1-2/+16
Conflicts: dix/devices.c
2007-09-19Merge branch 'master' into XACE-SELINUXEamon Walsh1-242/+230
Conflicts: afb/afbpntwin.c afb/afbscrinit.c afb/afbwindow.c cfb/cfb.h cfb/cfballpriv.c cfb/cfbscrinit.c cfb/cfbwindow.c configure.ac fb/wfbrename.h hw/xfree86/xf4bpp/ppcIO.c hw/xfree86/xf4bpp/ppcPntWin.c hw/xfree86/xf4bpp/ppcWindow.c hw/xfree86/xf8_32bpp/cfbscrinit.c mfb/mfb.h mfb/mfbpntwin.c mfb/mfbscrinit.c mfb/mfbwindow.c mi/miexpose.c Note: conflicts caused by devPrivates rework vs. paintwindow changes.
2007-09-19xserver: don't force DTRACE detection by defaultDodji Seketeli1-1/+0
this fixes a breakage caused by 7a4ec34e256bf36b041c011a083916ad75a1d8bc. When running a non DTRACE aware system that is not darwin*, DTRACE was getting required. Now it is not anymore.
2007-09-18XDarwin: We build many many different targets, let's break them out into ↵Ben Byer1-1/+5
autoconf conditionals
2007-09-18XDarwin: Disable dtrace support on Darwin 9 (since it doesn't work ... yet ...)Ben Byer1-0/+7
2007-09-18XDarwin: changed XF86BigFont support default from yes to auto so XDarwin can ↵Ben Byer1-1/+5
disable it
2007-09-11xserver: test presence of strlcpy in configureDodji Seketeli1-0/+1
* configure.ac: define HAVE_STRLCPY when function strlcat is present this serves at least to unbreak libxtrans code compilation.
2007-09-09fixed cut-and-paste typoBen Byer1-3/+1
2007-09-06Fix Xdmx buildAlan Hourihane1-1/+1
2007-09-06DDX changes for XDarwinBen Byer1-65/+72
Creating a real DDX section for XDarwin instead of stuffing it into the XORG section in a half-assed manner.
2007-09-05Revert "configure.ac: exclude pci-access dependency from XDarwin"Ben Byer1-6/+2
This reverts commit 20c6677d1b5f8d77325dd878ffa3df1d0fb01864.
2007-09-05XDARWIN: Add launchd supportBen Byer1-0/+4
This adds a bit of glue to configure.ac to support launchd detection; on OS X (or other platforms which choose to implement launchd), this allows the system to automagically start the Xserver as necessary to serve clients.
2007-09-05added HAVE_LAUNCHD check to configure.ac (mostly for OSX)Ben Byer1-0/+2
2007-09-05added an exclusion for setting XORG on darwinBen Byer1-0/+1