[Xquartz-changes] xserver: Branch 'master' - 4 commits

Jeremy Huddleston jeremyhu at freedesktop.org
Sun Nov 15 11:05:08 PST 2009


 .gitignore                         |  206 +++++++++++--------------------------
 Makefile.am                        |   12 +-
 configure.ac                       |    9 -
 dix/.gitignore                     |    3 
 doc/.gitignore                     |    4 
 hw/dmx/.gitignore                  |    4 
 hw/dmx/config/.gitignore           |   13 +-
 hw/dmx/doc/.gitignore              |    2 
 hw/dmx/examples/.gitignore         |   17 +++
 hw/kdrive/ephyr/.gitignore         |    2 
 hw/kdrive/fake/.gitignore          |    2 
 hw/kdrive/fbdev/.gitignore         |    2 
 hw/kdrive/sdl/.gitignore           |    2 
 hw/vfb/.gitignore                  |    5 
 hw/xfree86/.gitignore              |    7 +
 hw/xfree86/common/.gitignore       |    3 
 hw/xfree86/doc/man/.gitignore      |    8 -
 hw/xfree86/exa/.gitignore          |    2 
 hw/xfree86/fbdevhw/.gitignore      |    4 
 hw/xfree86/loader/.gitignore       |    3 
 hw/xfree86/os-support/.gitignore   |    2 
 hw/xfree86/ramdac/.gitignore       |    2 
 hw/xfree86/utils/cvt/.gitignore    |    3 
 hw/xfree86/utils/gtf/.gitignore    |    5 
 hw/xfree86/xaa/.gitignore          |    4 
 hw/xnest/.gitignore                |    5 
 hw/xquartz/mach-startup/.gitignore |    8 +
 hw/xwin/.gitignore                 |    5 
 include/.gitignore                 |    5 
 os/.gitignore                      |    2 
 test/.gitignore                    |    2 
 31 files changed, 182 insertions(+), 171 deletions(-)

New commits:
commit 801f0e59800ea4a3f6c85b22dea6f2c400bda703
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Wed Oct 28 14:09:11 2009 -0400

    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
    
    Add missing INSTALL file. Use standard GNU file on building tarball
    README may have been updated
    Remove AUTHORS file as it is empty and no content available yet.
    Remove NEWS file as it is empty and no content available yet.
    
    Reviewed-By: Jeremy Huddleston <jeremyhu at apple.com>
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/Makefile.am b/Makefile.am
index 3c58512..667c0de 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,4 @@
-AUTOMAKE_OPTIONS=dist-bzip2 foreign nostdinc
+AUTOMAKE_OPTIONS=nostdinc
 ACLOCAL_AMFLAGS = -I m4
 
 if COMPOSITE
@@ -58,12 +58,15 @@ DISTCHECK_CONFIGURE_FLAGS=\
 
 DISTCLEANFILES = doltcompile doltlibtool
 
-.PHONY: ChangeLog
+.PHONY: ChangeLog INSTALL
+
+INSTALL:
+	$(INSTALL_CMD)
 
 ChangeLog:
 	$(CHANGELOG_CMD)
 
-dist-hook: ChangeLog
+dist-hook: ChangeLog INSTALL
 
 DIST_SUBDIRS = \
 	doc \
diff --git a/configure.ac b/configure.ac
index 933609a..77ff466 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,7 +29,7 @@ AC_PREREQ(2.57)
 AC_INIT([xorg-server], 1.7.99.2, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xorg-server)
 RELEASE_DATE="(unreleased)"
 AC_CONFIG_SRCDIR([Makefile.am])
-AM_INIT_AUTOMAKE([dist-bzip2 foreign])
+AM_INIT_AUTOMAKE([foreign dist-bzip2])
 AM_MAINTAINER_MODE
 
 # Require xorg-macros: XORG_DEFAULT_OPTIONS
commit c93f516e850c2ef2b47cc2e282f9081ae7165ac7
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Tue Oct 27 15:07:26 2009 -0400

    Deploy the new XORG_DEFAULT_OPTIONS #24242
    
    This macro aggregate a number of existing macros that sets commmon
    X.Org components configuration options. It shields the configuration file from
    future changes.
    
    Reviewed-By: Jeremy Huddleston <jeremyhu at apple.com>
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/configure.ac b/configure.ac
index dda4f37..933609a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,9 +32,11 @@ AC_CONFIG_SRCDIR([Makefile.am])
 AM_INIT_AUTOMAKE([dist-bzip2 foreign])
 AM_MAINTAINER_MODE
 
-# Require xorg-macros version 1.3.0 or newer for XORG_DEFAULT_OPTIONS
-m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.3 or later before running autoconf/autogen])])
+# Require xorg-macros: XORG_DEFAULT_OPTIONS
+m4_ifndef([XORG_MACROS_VERSION],
+          [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])])
 XORG_MACROS_VERSION(1.3)
+XORG_DEFAULT_OPTIONS
 
 m4_ifndef([XORG_FONT_MACROS_VERSION], [m4_fatal([must install fontutil 1.1 or later before running autoconf/autogen])])
 XORG_FONT_MACROS_VERSION(1.1)
@@ -76,7 +78,6 @@ AC_SYS_LARGEFILE
 XORG_PROG_RAWCPP
 AC_PATH_PROG(SED,sed)
 
-XORG_DEFAULT_OPTIONS
 # Quoted so that make will expand $(CWARNFLAGS) in makefiles to allow
 # easier overrides at build time.
 XSERVER_CFLAGS='$(CWARNFLAGS)'
commit 0f38159cdd154a29caab0342aee41378e9921929
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Tue Nov 10 09:12:27 2009 -0500

    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
    
    ChangeLog filename is known to Automake and requires no further
    coding in the makefile.
    
    Reviewed-By: Jeremy Huddleston <jeremyhu at apple.com>
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/Makefile.am b/Makefile.am
index a5e0730..3c58512 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -49,7 +49,7 @@ pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = xorg-server.pc
 endif
 
-EXTRA_DIST = xorg-server.pc.in xorg-server.m4 ChangeLog autogen.sh
+EXTRA_DIST = xorg-server.pc.in xorg-server.m4 autogen.sh
 
 DISTCHECK_CONFIGURE_FLAGS=\
 	--with-xkb-path=$(XKB_BASE_DIRECTORY) \
@@ -57,7 +57,6 @@ DISTCHECK_CONFIGURE_FLAGS=\
 	--with-xkb-output='$${datadir}/X11/xkb/compiled'
 
 DISTCLEANFILES = doltcompile doltlibtool
-MAINTAINERCLEANFILES=ChangeLog
 
 .PHONY: ChangeLog
 
commit c739beb439bb813e4c82b3216daee7e89aa96f2f
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Tue Nov 10 08:56:21 2009 -0500

    .gitignore: use common defaults with custom section #24239
    
    Using common defaults will reduce errors and maintenance.
    Only the very small or inexistent custom section need periodic maintenance
    when the structure of the component changes. Do not edit defaults.
    
    Reviewed-By: Jeremy Huddleston <jeremyhu at apple.com>
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/.gitignore b/.gitignore
index 7f48ad2..72390a0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,154 +1,80 @@
-ChangeLog
-Makefile
-Makefile.in
-.deps
-.libs
-.msg
-*.lo
-*.la
-*.a
-*.o
-*~
-.*sw?
-*.pbxuser
-*.mode1v3
-*.patch
-*.exe
-obj*
-build*
-cscope*
-local
+#
+#		X.Org module default exclusion patterns
+#		The next section if for module specific patterns
+#
+#	Do not edit the following section
+# 	GNU Build System (Autotools)
 aclocal.m4
-autom4te.cache
+autom4te.cache/
+autoscan.log
 ChangeLog
 compile
 config.guess
+config.h
+config.h.in
 config.log
+config-ml.in
+config.py
 config.status
+config.status.lineno
 config.sub
 configure
-configure.lineno
+configure.scan
 depcomp
-doltcompile
-doltlibtool
+.deps/
+INSTALL
 install-sh
+.libs/
 libtool
+libtool.m4
 ltmain.sh
+lt~obsolete.m4
+ltoptions.m4
+ltsugar.m4
+ltversion.m4
+Makefile
+Makefile.in
+mdate-sh
 missing
-TAGS
-tags
-cscope*
-ylwrap
-xorg-server.pc
-xorg-server-*.tar.bz2
-xorg-server-*.tar.gz
+mkinstalldirs
+*.pc
+py-compile
 stamp-h?
-dix/Xserver-dtrace.h
-do-not-use-config.h
-do-not-use-config.h.in
-dix/dix.c
-os/os.c
-doc/Xserver.1x
-doc/Xserver.man
-hw/dmx/Xdmx
-hw/dmx/Xdmx.1x
-hw/dmx/config/dmxtodmx
-hw/dmx/config/dmxtodmx.1x
-hw/dmx/config/parser.c
-hw/dmx/config/parser.h
-hw/dmx/config/scanner.c
-hw/dmx/config/vdltodmx
-hw/dmx/config/vdltodmx.1x
-hw/dmx/config/xdmxconfig
-hw/dmx/config/xdmxconfig.1x
-hw/dmx/examples/dmxaddinput
-hw/dmx/examples/dmxaddscreen
-hw/dmx/examples/dmxreconfig
-hw/dmx/examples/dmxresize
-hw/dmx/examples/dmxrminput
-hw/dmx/examples/dmxrmscreen
-hw/dmx/examples/dmxwininfo
-hw/dmx/examples/ev
-hw/dmx/examples/evi
-hw/dmx/examples/res
-hw/dmx/examples/xbell
-hw/dmx/examples/xdmx
-hw/dmx/examples/xinput
-hw/dmx/examples/xled
-hw/dmx/examples/xtest
-hw/kdrive/ephyr/Xephyr
-hw/kdrive/fake/Xfake
-hw/kdrive/fbdev/Xfbdev
-hw/kdrive/vesa/Xvesa
-hw/vfb/Xvfb
-hw/vfb/Xvfb.1x
-hw/vfb/Xvfb.man
-hw/xfree86/Xorg
-hw/xfree86/common/xf86Build.h
-hw/xfree86/common/xf86DefModeSet.c
-hw/xfree86/doc/man/Xorg.1x
-hw/xfree86/doc/man/Xorg.man
-hw/xfree86/doc/man/xorg.conf.5x
-hw/xfree86/doc/man/xorg.conf.man
-hw/xfree86/exa/exa.4
-hw/xfree86/exa/exa.4x
-hw/xfree86/exa/exa.man
-hw/xfree86/fbdevhw/fbdevhw.4x
-hw/xfree86/fbdevhw/fbdevhw.man
-hw/xfree86/os-support/xorgos.c
-hw/xfree86/osandcommon.c
-hw/xfree86/ramdac/xf86BitOrder.c
-hw/xfree86/utils/cvt/cvt
-hw/xfree86/utils/cvt/cvt.man
-hw/xfree86/utils/gtf/gtf
-hw/xfree86/utils/gtf/gtf.1x
-hw/xfree86/utils/gtf/gtf.man
-hw/xfree86/xaa/l-xaaBitmap.c
-hw/xfree86/xaa/l-xaaStipple.c
-hw/xfree86/xaa/l-xaaTEGlyph.c
-hw/xfree86/xaa/l3-xaaBitmap.c
-hw/xfree86/xaa/l3-xaaStipple.c
-hw/xfree86/xaa/lf-xaaBitmap.c
-hw/xfree86/xaa/lf-xaaStipple.c
-hw/xfree86/xaa/lf-xaaTEGlyph.c
-hw/xfree86/xaa/lf3-xaaBitmap.c
-hw/xfree86/xaa/lf3-xaaStipple.c
-hw/xfree86/xaa/m-xaaBitmap.c
-hw/xfree86/xaa/m-xaaStipple.c
-hw/xfree86/xaa/m-xaaTEGlyph.c
-hw/xfree86/xaa/m3-xaaBitmap.c
-hw/xfree86/xaa/m3-xaaStipple.c
-hw/xfree86/xaa/mf-xaaBitmap.c
-hw/xfree86/xaa/mf-xaaStipple.c
-hw/xfree86/xaa/mf-xaaTEGlyph.c
-hw/xfree86/xaa/mf3-xaaBitmap.c
-hw/xfree86/xaa/mf3-xaaStipple.c
-hw/xfree86/xaa/s-xaaDashLine.c
-hw/xfree86/xaa/s-xaaLine.c
-hw/xfree86/xorg.c
-hw/xfree86/libxorg.c
-hw/xfree86/loader/sdksyms.c
-hw/xfree86/xorg.conf.example
-hw/xfree86/xorg.conf.example.pre
-hw/xnest/Xnest
-hw/xnest/Xnest.1x
-hw/xnest/Xnest.man
-hw/xquartz/bundle/Info.plist
-hw/xquartz/mach-startup/mach_startup.h
-hw/xquartz/mach-startup/mach_startupServer.c
-hw/xquartz/mach-startup/mach_startupServer.h
-hw/xquartz/mach-startup/mach_startupUser.c
-hw/xquartz/mach-startup/X11.bin
-hw/xquartz/mach-startup/Xquartz
-hw/xquartz/doc/Xquartz.1
-hw/xwin/winprefslex.c
-hw/xwin/winprefsyacc.c
-hw/xwin/winprefsyacc.h
-include/dix-config.h
-include/kdrive-config.h
-include/version-config.h
-include/xkb-config.h
-include/xorg-config.h
-include/xorg-server.h
-include/xwin-config.h
-sdksyms.dep
+symlink-tree
+texinfo.tex
+ylwrap
+
+#	Do not edit the following section
+# 	Edit Compile Debug Document Distribute
+*~
+*.[0-9]
+*.[0-9]x
+*.bak
+*.bin
+core
+*.dll
+*.exe
+*-ISO*.bdf
+*-JIS*.bdf
+*-KOI8*.bdf
+*.kld
+*.ko
+*.ko.cmd
+*.lai
+*.l[oa]
+*.[oa]
+*.obj
+*.patch
+*.so
+*.pcf.gz
+*.pdb
+*.tar.bz2
+*.tar.gz
+#
+#		Add & Override patterns for xserver 
+#
+#		Edit the following section as needed
+# For example, !report.pc overrides *.pc. See 'man gitignore'
+# 
+doltcompile
+doltlibtool
diff --git a/dix/.gitignore b/dix/.gitignore
new file mode 100644
index 0000000..63ee767
--- /dev/null
+++ b/dix/.gitignore
@@ -0,0 +1,3 @@
+#		Add & Override for this directory and it's subdirectories
+dix.c
+Xserver-dtrace.h
diff --git a/doc/.gitignore b/doc/.gitignore
index fa5407d..952f528 100644
--- a/doc/.gitignore
+++ b/doc/.gitignore
@@ -1,2 +1,2 @@
-Xserver.1
-Xserver.1x
+#		Add & Override for this directory and it's subdirectories
+Xserver.man
diff --git a/hw/dmx/.gitignore b/hw/dmx/.gitignore
index 9763d86..4dd9b03 100644
--- a/hw/dmx/.gitignore
+++ b/hw/dmx/.gitignore
@@ -1,2 +1,2 @@
-Xdmx.1
-Xdmx.1x
+#		Add & Override for this directory and it's subdirectories
+Xdmx
diff --git a/hw/dmx/config/.gitignore b/hw/dmx/config/.gitignore
index bb129df..0860622 100644
--- a/hw/dmx/config/.gitignore
+++ b/hw/dmx/config/.gitignore
@@ -1,6 +1,7 @@
-dmxtodmx.1
-dmxtodmx.1x
-vdltodmx.1
-vdltodmx.1x
-xdmxconfig.1
-xdmxconfig.1x
+#		Add & Override for this directory and it's subdirectories
+dmxtodmx
+parser.c
+parser.h
+scanner.c
+vdltodmx
+xdmxconfig
diff --git a/hw/dmx/doc/.gitignore b/hw/dmx/doc/.gitignore
new file mode 100644
index 0000000..5bfaef3
--- /dev/null
+++ b/hw/dmx/doc/.gitignore
@@ -0,0 +1,2 @@
+#		Add & Override for this directory and it's subdirectories
+html/
diff --git a/hw/dmx/examples/.gitignore b/hw/dmx/examples/.gitignore
new file mode 100644
index 0000000..5a86a71
--- /dev/null
+++ b/hw/dmx/examples/.gitignore
@@ -0,0 +1,17 @@
+#		Add & Override for this directory and it's subdirectories
+dmxaddinput
+dmxaddscreen
+dmxreconfig
+dmxresize
+dmxrminput
+dmxrmscreen
+dmxwininfo
+ev
+evi
+res
+xbell
+xdmx
+xinput
+xled
+xtest
+
diff --git a/hw/kdrive/ephyr/.gitignore b/hw/kdrive/ephyr/.gitignore
new file mode 100644
index 0000000..f35f006
--- /dev/null
+++ b/hw/kdrive/ephyr/.gitignore
@@ -0,0 +1,2 @@
+#		Add & Override for this directory and it's subdirectories
+Xephyr
diff --git a/hw/kdrive/fake/.gitignore b/hw/kdrive/fake/.gitignore
new file mode 100644
index 0000000..12a25cc
--- /dev/null
+++ b/hw/kdrive/fake/.gitignore
@@ -0,0 +1,2 @@
+#		Add & Override for this directory and it's subdirectories
+Xfake
diff --git a/hw/kdrive/fbdev/.gitignore b/hw/kdrive/fbdev/.gitignore
new file mode 100644
index 0000000..80ad266
--- /dev/null
+++ b/hw/kdrive/fbdev/.gitignore
@@ -0,0 +1,2 @@
+#		Add & Override for this directory and it's subdirectories
+Xfbdev
diff --git a/hw/kdrive/sdl/.gitignore b/hw/kdrive/sdl/.gitignore
new file mode 100644
index 0000000..072341b
--- /dev/null
+++ b/hw/kdrive/sdl/.gitignore
@@ -0,0 +1,2 @@
+#		Add & Override for this directory and it's subdirectories
+Xsdl
diff --git a/hw/vfb/.gitignore b/hw/vfb/.gitignore
index e3225f6..55076f0 100644
--- a/hw/vfb/.gitignore
+++ b/hw/vfb/.gitignore
@@ -1,2 +1,3 @@
-Xvfb.1
-Xvfb.1x
+#		Add & Override for this directory and it's subdirectories
+Xvfb
+Xvfb.man
diff --git a/hw/xfree86/.gitignore b/hw/xfree86/.gitignore
new file mode 100644
index 0000000..813af0b
--- /dev/null
+++ b/hw/xfree86/.gitignore
@@ -0,0 +1,7 @@
+#		Add & Override for this directory and it's subdirectories
+libxorg.c
+Xorg
+xorg.c
+xorg.conf.example
+xorg.conf.example.pre
+
diff --git a/hw/xfree86/common/.gitignore b/hw/xfree86/common/.gitignore
new file mode 100644
index 0000000..81e8416
--- /dev/null
+++ b/hw/xfree86/common/.gitignore
@@ -0,0 +1,3 @@
+#		Add & Override for this directory and it's subdirectories
+xf86Build.h
+xf86DefModeSet.c
diff --git a/hw/xfree86/doc/man/.gitignore b/hw/xfree86/doc/man/.gitignore
index d412e51..7a16e4a 100644
--- a/hw/xfree86/doc/man/.gitignore
+++ b/hw/xfree86/doc/man/.gitignore
@@ -1,4 +1,4 @@
-Xorg.1
-Xorg.1x
-xorg.conf.5
-xorg.conf.5x
+#		Add & Override for this directory and it's subdirectories
+Xorg
+Xorg.man
+xorg.conf.man
diff --git a/hw/xfree86/exa/.gitignore b/hw/xfree86/exa/.gitignore
new file mode 100644
index 0000000..d20a82f
--- /dev/null
+++ b/hw/xfree86/exa/.gitignore
@@ -0,0 +1,2 @@
+#		Add & Override for this directory and it's subdirectories
+exa.man
diff --git a/hw/xfree86/fbdevhw/.gitignore b/hw/xfree86/fbdevhw/.gitignore
index 4c8446c..88d61c6 100644
--- a/hw/xfree86/fbdevhw/.gitignore
+++ b/hw/xfree86/fbdevhw/.gitignore
@@ -1,2 +1,2 @@
-fbdevhw.4
-fbdevhw.4x
+#		Add & Override for this directory and it's subdirectories
+fbdevhw.man
diff --git a/hw/xfree86/loader/.gitignore b/hw/xfree86/loader/.gitignore
new file mode 100644
index 0000000..6b38d9e
--- /dev/null
+++ b/hw/xfree86/loader/.gitignore
@@ -0,0 +1,3 @@
+#		Add & Override for this directory and it's subdirectories
+sdksyms.c
+sdksyms.dep
diff --git a/hw/xfree86/os-support/.gitignore b/hw/xfree86/os-support/.gitignore
new file mode 100644
index 0000000..f2206cd
--- /dev/null
+++ b/hw/xfree86/os-support/.gitignore
@@ -0,0 +1,2 @@
+#		Add & Override for this directory and it's subdirectories
+xorgos.c
diff --git a/hw/xfree86/ramdac/.gitignore b/hw/xfree86/ramdac/.gitignore
new file mode 100644
index 0000000..c55c8c1
--- /dev/null
+++ b/hw/xfree86/ramdac/.gitignore
@@ -0,0 +1,2 @@
+#		Add & Override for this directory and it's subdirectories
+xf86BitOrder.c
diff --git a/hw/xfree86/utils/cvt/.gitignore b/hw/xfree86/utils/cvt/.gitignore
new file mode 100644
index 0000000..7816fd7
--- /dev/null
+++ b/hw/xfree86/utils/cvt/.gitignore
@@ -0,0 +1,3 @@
+#		Add & Override for this directory and it's subdirectories
+cvt
+cvt.man
diff --git a/hw/xfree86/utils/gtf/.gitignore b/hw/xfree86/utils/gtf/.gitignore
index 741071d..9aebbbb 100644
--- a/hw/xfree86/utils/gtf/.gitignore
+++ b/hw/xfree86/utils/gtf/.gitignore
@@ -1,2 +1,3 @@
-gtf.1
-gtf.1x
+#		Add & Override for this directory and it's subdirectories
+gtf
+gtf.man
diff --git a/hw/xfree86/xaa/.gitignore b/hw/xfree86/xaa/.gitignore
new file mode 100644
index 0000000..1211d01
--- /dev/null
+++ b/hw/xfree86/xaa/.gitignore
@@ -0,0 +1,4 @@
+#		Add & Override for this directory and it's subdirectories
+[lms]-xaa*.c
+[lm]f3-xaa*.c
+[lm][f3]-xaa*.c
diff --git a/hw/xnest/.gitignore b/hw/xnest/.gitignore
index fc92eb1..16db15e 100644
--- a/hw/xnest/.gitignore
+++ b/hw/xnest/.gitignore
@@ -1,2 +1,3 @@
-Xnest.1
-Xnest.1x
+#		Add & Override for this directory and it's subdirectories
+Xnest
+Xnest.man
diff --git a/hw/xquartz/mach-startup/.gitignore b/hw/xquartz/mach-startup/.gitignore
new file mode 100644
index 0000000..374abbf
--- /dev/null
+++ b/hw/xquartz/mach-startup/.gitignore
@@ -0,0 +1,8 @@
+#		Add & Override for this directory and it's subdirectories
+mach_startup.h
+mach_startupServer.c
+mach_startupServer.h
+mach_startupUser.c
+X11.bin
+Xquartz
+
diff --git a/hw/xwin/.gitignore b/hw/xwin/.gitignore
new file mode 100644
index 0000000..a996950
--- /dev/null
+++ b/hw/xwin/.gitignore
@@ -0,0 +1,5 @@
+#		Add & Override for this directory and it's subdirectories
+winprefslex.c
+winprefsyacc.c
+winprefsyacc.h
+
diff --git a/include/.gitignore b/include/.gitignore
new file mode 100644
index 0000000..dc9067a
--- /dev/null
+++ b/include/.gitignore
@@ -0,0 +1,5 @@
+#		Add & Override for this directory and it's subdirectories
+*-config.h
+do-not-use-config.h.in
+xorg-server.h
+
diff --git a/os/.gitignore b/os/.gitignore
new file mode 100644
index 0000000..74b1d14
--- /dev/null
+++ b/os/.gitignore
@@ -0,0 +1,2 @@
+#		Add & Override for this directory and it's subdirectories
+os.c
diff --git a/test/.gitignore b/test/.gitignore
new file mode 100644
index 0000000..ed97e81
--- /dev/null
+++ b/test/.gitignore
@@ -0,0 +1,2 @@
+#		Add & Override for this directory and it's subdirectories
+libxservertest.c


More information about the Xquartz-changes mailing list