summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2005-10-03Add missing ] (Dawid Gajownik)Alan Coopersmith1-0/+5
Add getconfig (Dawid Gajownik)
2005-10-02Fix include path for commit of bug #4616.Eric Anholt1-0/+5
2005-09-28Add kbd_mode build systemAlan Coopersmith1-0/+7
2005-09-27Fix distcheck build and install errors.Kevin E Martin1-0/+22
2005-09-27Fix make dist to include only sgml files.Kevin E Martin1-0/+6
2005-09-27Add build system for building docs and fix setuid issues.Kevin E Martin1-0/+12
Add build system for sgml docs.
2005-09-26Take care of more files from monolith's Xserver/hw/xfree86/etc dir:Alan Coopersmith1-0/+14
hw/xfree86/utils/ioport/Makefile.am Add ioport and pcitweak utils from monolith hw/xfree86/etc dir. Generate xf86DefModeSet.c from vesamodes & extramodes Add apSolaris.shar to EXTRA_DIST
2005-09-25Add SecurityPolicy file for XCSECURITY extension.Alan Coopersmith1-0/+8
Add README to EXTRA_DIST
2005-09-24Add scanpci, xorgcfg, & xorgconfig utilities.Alan Coopersmith1-0/+15
2005-09-21Accept --with-xkb-output argument to specify output dir for compiled xkbKristian Høgsberg1-0/+10
keymaps. Define XKM_OUTPUT_DIR and XKB_BIN_DIRECTORY. Add XKM_OUTPUT_DIR and XKB_BIN_DIRECTORY. Add XKB_CFLAGS.
2005-09-21Bug #4487: Add the bsd subdir to DIST_SUBDIRS. (Joshua Baergen)Adam Jackson1-0/+5
2005-09-21Bug #4257: Move cfbcmap.c to cfb_common_sources.Adam Jackson1-0/+6
2005-09-20Add --disable-install-setuid option so you can build as non-root andAlan Coopersmith1-0/+9
chown/chmod later. Also disable by default on platforms that don't need setuid root X servers (Darwin & SPARC's, according to InstallXserverSetUID settings in the old Imake config files).
2005-09-19Linux/Alpha support (Stefaan De Roeck)Alan Coopersmith1-0/+7
2005-09-15Bug #3990: Require glproto in the cases that it's necessary (DRI or DMXEric Anholt1-0/+6
with GLX). (spyderous)
2005-09-15Bug #4046: Install the X.Org server setuid root. (David Schleef)Eric Anholt1-1/+6
2005-09-15Bug #3889: Create the log dir on install, and allow configuringEric Anholt1-0/+8
specifically that directory. Failure to have the directory keeps the xorg server from starting.
2005-09-15Don't put a version number on the module filename.Eric Anholt1-0/+5
2005-09-14Build xf8_32bpp, which is wanted by the mga driver, and export elf.h, whichEric Anholt1-0/+9
is wanted by the rendition driver.
2005-09-13Turn on DRI by default on Linux, NetBSD, FreeBSD, and fix the build of theEric Anholt1-0/+10
module for FreeBSD by setting some missing defines (XFree86Module, IN_MODULE) in the dri directory. Note that those missing defines should be somewhere generic, since there are other consumers of them, but I haven't figured out where.
2005-09-13Add some initial BSD support for the xorg server. Incomplete on NetBSD,Eric Anholt1-0/+12
OpenBSD, and non-i386/amd64 FreeBSD for sure. Plus I haven't actually run it yet.
2005-09-13Don't define POSIX_SOURCE on any BSDs, since it breaks things.Eric Anholt1-0/+12
Define NO_SYS_HEADERS, as the monolithic build does. Helps FreeBSD. Don't include validate.c in the library, since it seems to be a userland test program.
2005-09-12Add missing fontsproto and fontenc to REQUIRED_MODULES.Daniel Stone1-1/+2
2005-09-12Add missing resourceproto to REQUIRED_MODULES.Daniel Stone1-1/+1
2005-09-12Define WITH_VGAHW, since we always build it; add to Xorg headers.Daniel Stone1-0/+5
2005-09-12Put DMX AC_CONDITIONALS at the top level, since they must always be called.Daniel Stone1-0/+6
2005-09-11use RGB_DB not RGB_PATH as that's what it's looking forDaniel Stone1-0/+6
define HAVE_XKB_CONFIG_H so setting xkb-path works (Jürg Billeter)
2005-09-03Use macros from xtrans.m4, issue error if not found.Alan Coopersmith1-0/+5
2005-09-02Add -include dix-config.h to GL/mesa/X to catch _XSERVER64, et al.Daniel Stone1-0/+6
2005-09-01Make RGB_PATH configurable.Daniel Stone1-0/+9
Move I2C modules back to $(moduledir)/multimedia.
2005-08-30Use the $(moduledir) makefile variable instead of @moduledir@ so it can beKristian Høgsberg1-0/+11
overridden at make install time. Remove driverdir and inputdir from pkg-config file. The directory layout of moduledir is fixed and well known by drivers.
2005-08-25Thu Aug 25 17:15:01 2005 Søren Sandmann <sandmann@redhat.com>Søren Sandmann Pedersen1-0/+6
Add all the drivers to the module_LTLIBRARIES instead of having separate variables for them. Pointed out by Kristian Høgsberg.
2005-08-25Remove sun_inout.s so make dist works (discussed with Alan Coopersmith).Kristian Høgsberg1-0/+5
2005-08-24Wed Aug 24 15:39:07 2005 Søren Sandmann <sandmann@redhat.com>Søren Sandmann Pedersen1-0/+6
Add GLX_{INC,LIBS} for xprint. Add @DIX_FLAGS@ to AM_CFLAGS
2005-08-24Don't try to build dmx/input/lnx-*.c if <linux/keyboard.h> isn't foundAlan Coopersmith1-0/+11
Don't try to build dmx/input/usb-*.c if <linux/input.h> isn't found Replace -rdynamic with $(LD_EXPORT_SYMBOLS_FLAG) for compatibility with compilers other than gcc
2005-08-22Fix linking errors for xprint.Kevin E Martin1-0/+5
2005-08-21Huge cleanup. Group into sections: hardware feature detection, extensionDaniel Stone1-0/+16
detection/configuration, DDX options. Make building of Xorg DDX fully optional. Clarify and correct some help texts. Change all comments to use dnl instead of #. Quote all tests correctly, and guard pure-variable tests with 'x' (e.g. test $DMX = yes -> test "x$DMX" = xyes). Since the DDXes seem to have pretty divergent extension support these days, get rid of EXTENSION_LIBS, DMX_EXTENSIONS and XPRINT_EXTENSIONS, and go back to building extension lists by hand in the DDX-specific sections. Use portable POSIX constructs everywhere (e.g. test foo && test bar, instead of test foo -a bar). Clean up old cruft. Set _XSERVER64 on 64-bit architectures, and use x86_64 for host_cpu instead of amd64 (Jürg Billeter).
2005-08-21Change xorg_bus_sbus to xorg_bus_sparc; build sparcPci.c on all SPARCs.Daniel Stone1-1/+3
2005-08-21Add test for SPARC. Build SparcMulDiv.S on all SPARCs.Daniel Stone1-1/+10
Make the default font path configurable.
2005-08-20Add sparcPci.c to EXTRA_DIST.Adam Jackson1-1/+6
2005-08-20Make DRI/GLcore builds srcdir != builddir safe, and invoke symlink-mesa.shDaniel Stone1-0/+6
in our builddir, not our srcdir.
2005-08-20Build libxkbstubs.la to stub XKB DDX functions (e.g. VT switches), andDaniel Stone1-0/+8
build libxorggxkb.la from within the Xorg DDX to replace the previous xf86VT.o, et al, hacks.
2005-08-19Really hopefully the last xorg-commit test.Daniel Stone1-1/+1
2005-08-19Another test commit for xorg-commit.Daniel Stone1-1/+1
2005-08-19Testing xorg-commit, nothing else.Daniel Stone1-1/+1
2005-08-19Fix dates on Søren's entries.Daniel Stone1-5/+5
2005-08-19Make symlink-mesa.sh call srcdir != objdir safe. Remove requirement forDaniel Stone1-0/+7
XF86Rush protocol headers, which we don't even use.
2005-08-18Thu Aug 18 17:27:09 2005 Søren Sandmann <sandmann@redhat.com>Søren Sandmann Pedersen1-0/+6
Move fbmmx to a convenience library since the mmx flags may be harmful when applied to non-mmx code.
2005-08-17Add buildsystem for Xprint, and:Søren Sandmann Pedersen1-0/+6
Wed Aug 17 14:50:58 2005 Soren Sandmann <sandmann@redhat.com> Include <X11/extensions/Print{,str}.h> instead of "Print{,str}.h" Include <X11/fonts/fontstruct.h> isntead of "fonts/fontstruct.h" Wed Aug 17 14:54:49 2005 Søren Sandmann <sandmann@redhat.com> Conditionally compile in xprint.c Add Xprint
2005-08-16symlink.sh: Temporarily disable xkbdata, add type1mod.cSøren Sandmann Pedersen1-0/+4
Tue Aug 16 12:09:09 2005 Søren Sandmann <sandmann@redhat.com> Add ft and type1 modules.