xserver-xorg-video-via: Changes to 'debian-unstable'

2008-07-03 Thread Julien Cristau
 debian/changelog   |   14 +
 debian/control |8 
 debian/patches/02_card32_redefine.diff |   12 -
 debian/patches/03_implicit_decls.diff  |   78 ++
 debian/patches/series  |1 
 debian/xsfbs/xsfbs-autoreconf.mk   |  150 
 debian/xsfbs/xsfbs.mk  |  121 +-
 debian/xsfbs/xsfbs.sh  |  394 +
 8 files changed, 331 insertions(+), 447 deletions(-)

New commits:
commit 9995a94d91dd4baf8b6491f73c047e13d4b3f87e
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Thu Jul 3 17:47:01 2008 +0200

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index 0140c5e..f9c9ddf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-via (1:0.2.2-6) UNRELEASED; urgency=low
+xserver-xorg-video-via (1:0.2.2-6) unstable; urgency=low
 
   [ Brice Goglin ]
   * Add upstream URL to debian/copyright.
@@ -12,7 +12,7 @@ xserver-xorg-video-via (1:0.2.2-6) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.7.3.
   * Drop the XS- prefix from Vcs-* control fields.
 
- -- Brice Goglin <[EMAIL PROTECTED]>  Sat, 15 Sep 2007 02:28:04 +0200
+ -- Julien Cristau <[EMAIL PROTECTED]>  Thu, 03 Jul 2008 17:46:58 +0200
 
 xserver-xorg-video-via (1:0.2.2-5) unstable; urgency=low
 

commit cbf0ffa914ec2942f0b25eb3f1bb38a151cbb6c2
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Thu Jul 3 17:46:14 2008 +0200

debian/control updates

* Add myself to Uploaders, remove Branden with his permission.
* Bump Standards-Version to 3.7.3.
* Drop the XS- prefix from Vcs-* control fields.

diff --git a/debian/changelog b/debian/changelog
index 6344fb1..0140c5e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,9 @@ xserver-xorg-video-via (1:0.2.2-6) UNRELEASED; urgency=low
 definition for uint32_t which is used in libdrm 2.3.1.
   * 03_implicit_decls.diff: fix a bunch of compiler warnings about implicit
 function declarations.
+  * Add myself to Uploaders, remove Branden with his permission.
+  * Bump Standards-Version to 3.7.3.
+  * Drop the XS- prefix from Vcs-* control fields.
 
  -- Brice Goglin <[EMAIL PROTECTED]>  Sat, 15 Sep 2007 02:28:04 +0200
 
diff --git a/debian/control b/debian/control
index 2f20b76..3977807 100644
--- a/debian/control
+++ b/debian/control
@@ -2,11 +2,11 @@ Source: xserver-xorg-video-via
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
-Uploaders: David Nusinow <[EMAIL PROTECTED]>, Branden Robinson <[EMAIL 
PROTECTED]>
+Uploaders: David Nusinow <[EMAIL PROTECTED]>, Julien Cristau <[EMAIL 
PROTECTED]>
 Build-Depends: debhelper (>= 5.0.0), pkg-config, xserver-xorg-dev (>= 2:1.4), 
libxvmc-dev, x11proto-xf86dri-dev, x11proto-gl-dev, x11proto-core-dev, 
x11proto-fonts-dev, x11proto-randr-dev, x11proto-render-dev, libdrm-dev (>> 
2.0) [!hurd-i386], libgl1-mesa-dev | libgl1-dev, quilt
-Standards-Version: 3.7.2.2
-XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-via
-XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-via.git
+Standards-Version: 3.7.3
+Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-via
+Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-via.git
 
 Package: xserver-xorg-video-via
 Architecture: any

commit b9e1a00e389e279dfe81818e7f6c3582b7143534
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Thu Jul 3 17:42:32 2008 +0200

03_implicit_decls.diff: fix a bunch of compiler warnings about implicit 
function declarations.

diff --git a/debian/changelog b/debian/changelog
index c1b9809..6344fb1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,8 @@ xserver-xorg-video-via (1:0.2.2-6) UNRELEASED; urgency=low
   [ Julien Cristau ]
   * 02_card32_redefine.diff: include  before  to get a
 definition for uint32_t which is used in libdrm 2.3.1.
+  * 03_implicit_decls.diff: fix a bunch of compiler warnings about implicit
+function declarations.
 
  -- Brice Goglin <[EMAIL PROTECTED]>  Sat, 15 Sep 2007 02:28:04 +0200
 
diff --git a/debian/patches/03_implicit_decls.diff 
b/debian/patches/03_implicit_decls.diff
new file mode 100644
index 000..332938c
--- /dev/null
+++ b/debian/patches/03_implicit_decls.diff
@@ -0,0 +1,78 @@
+Index: xserver-xorg-video-via/src/via_driver.c
+===
+--- xserver-xorg-video-via.orig/src/via_driver.c
 xserver-xorg-video-via/src/via_driver.c
+@@ -989,13 +989,13 @@
+ /* ActiveDevice Option for device selection */
+ pVia->ActiveDevice = 0x00;
+ if ((s = xf86GetOptValString(VIAOptions, OPTION_ACTIVEDEVICE))) {
+-  if (xf86strstr(s, "CRT"))
++  if (strstr(s, "CRT"))
+   pVia->ActiveDevice |= VIA_DEVICE_CRT;
+-  if (xf86strstr(s, "LCD"))
++  if (strstr(s, "LCD"))
+   pVia->ActiveDevice |= VIA_DEVICE_LCD;
+-  

xserver-xorg-video-via: Changes to 'debian-unstable'

2007-09-18 Thread Brice Goglin
 debian/changelog |6 ++
 debian/copyright |3 +++
 2 files changed, 9 insertions(+)

New commits:
commit 87a6c430220372c4e018399dad1fd255008d9822
Author: Brice Goglin <[EMAIL PROTECTED]>
Date:   Sat Sep 15 02:28:20 2007 +0200

Add upstream URL to debian/copyright

diff --git a/debian/changelog b/debian/changelog
index 9dda195..fd63bf0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-video-via (1:0.2.2-5) UNRELEASED; urgency=low
+
+  * Add upstream URL to debian/copyright.
+
+ -- Brice Goglin <[EMAIL PROTECTED]>  Sat, 15 Sep 2007 02:28:04 +0200
+
 xserver-xorg-video-via (1:0.2.2-4) experimental; urgency=low
 
   * Build against and build-dep on Xserver 1.4
diff --git a/debian/copyright b/debian/copyright
index 191fbd5..98fda90 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,3 +1,6 @@
+This package was downloaded from
+http://xorg.freedesktop.org/releases/individual/driver/
+
 Copyright 1998-2003 VIA Technologies, Inc. All Rights Reserved.
 Copyright (c) 2000 Intel Corporation. All rights reserved.
 Copyright 2001-2003 S3 Graphics, Inc. All Rights Reserved.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xserver-xorg-video-via: Changes to 'debian-unstable'

2007-09-16 Thread David Nusinow
 Makefile.in |  129 +-
 aclocal.m4  |  676 +++
 configure   | 1131 
 debian/changelog|   20 
 debian/control  |2 
 debian/patches/01_gen_pci_ids.diff  |   14 
 debian/patches/series   |1 
 debian/xserver-xorg-video-via.install.alpha |1 
 debian/xserver-xorg-video-via.install.amd64 |1 
 debian/xserver-xorg-video-via.install.arm   |1 
 debian/xserver-xorg-video-via.install.hppa  |1 
 debian/xserver-xorg-video-via.install.hurd-i386 |1 
 debian/xserver-xorg-video-via.install.i386  |1 
 debian/xserver-xorg-video-via.install.ia64  |1 
 debian/xserver-xorg-video-via.install.kfreebsd-i386 |1 
 debian/xserver-xorg-video-via.install.m68k  |1 
 debian/xserver-xorg-video-via.install.mips  |1 
 debian/xserver-xorg-video-via.install.mipsel|1 
 debian/xserver-xorg-video-via.install.powerpc   |1 
 debian/xserver-xorg-video-via.install.sparc |1 
 man/Makefile.in |   96 -
 src/Makefile.in |  191 +--
 src/xvmc/Makefile.in|  128 +-
 23 files changed, 1500 insertions(+), 901 deletions(-)

New commits:
commit 4ebb17c0e8e6a0152b69879c10f5dd423b1b63ea
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sun Sep 16 16:18:41 2007 -0400

* Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 9dda195..1c72130 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-video-via (1:0.2.2-5) unstable; urgency=low
+
+  * Upload to unstable
+
+ -- David Nusinow <[EMAIL PROTECTED]>  Sun, 16 Sep 2007 15:43:50 -0400
+
 xserver-xorg-video-via (1:0.2.2-4) experimental; urgency=low
 
   * Build against and build-dep on Xserver 1.4

commit c8edc1578a48a61e19910d8f51503a22f5532395
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sun Sep 9 21:24:54 2007 -0400

* Build against and build-dep on Xserver 1.4

diff --git a/debian/changelog b/debian/changelog
index 32c6345..9dda195 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-video-via (1:0.2.2-4) experimental; urgency=low
+
+  * Build against and build-dep on Xserver 1.4
+
+ -- David Nusinow <[EMAIL PROTECTED]>  Sun, 09 Sep 2007 21:15:57 -0400
+
 xserver-xorg-video-via (1:0.2.2-3) experimental; urgency=low
 
   * Build against xserver 2:1.3.99.0 and build-dep on that version
diff --git a/debian/control b/debian/control
index 7c08084..2f20b76 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force 
 Uploaders: David Nusinow <[EMAIL PROTECTED]>, Branden Robinson <[EMAIL 
PROTECTED]>
-Build-Depends: debhelper (>= 5.0.0), pkg-config, xserver-xorg-dev (>= 
2:1.3.99.0), libxvmc-dev, x11proto-xf86dri-dev, x11proto-gl-dev, 
x11proto-core-dev, x11proto-fonts-dev, x11proto-randr-dev, x11proto-render-dev, 
libdrm-dev (>> 2.0) [!hurd-i386], libgl1-mesa-dev | libgl1-dev, quilt
+Build-Depends: debhelper (>= 5.0.0), pkg-config, xserver-xorg-dev (>= 2:1.4), 
libxvmc-dev, x11proto-xf86dri-dev, x11proto-gl-dev, x11proto-core-dev, 
x11proto-fonts-dev, x11proto-randr-dev, x11proto-render-dev, libdrm-dev (>> 
2.0) [!hurd-i386], libgl1-mesa-dev | libgl1-dev, quilt
 Standards-Version: 3.7.2.2
 XS-Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-via
 XS-Vcs-Browser: 
http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-via.git

commit 9c1157215097f9239c60b2483956dd4cdfbdedc7
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sun Sep 9 21:21:03 2007 -0400

Also unapply patch 2 in the sources. grr

diff --git a/src/via_drmclient.h b/src/via_drmclient.h
index c34458c..2b7dbfb 100644
--- a/src/via_drmclient.h
+++ b/src/via_drmclient.h
@@ -26,7 +26,6 @@
 
 #include "drm.h"
 #include "xf86drm.h"
-#include 
 
 #if HAVE_INTTYPES_H
 #  include 

commit 80f7cc00ca6ef2c76df30bae60f46811d97c2b65
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sun Sep 9 21:18:03 2007 -0400

Don't commit the patch as part of the source

diff --git a/src/Makefile.am b/src/Makefile.am
index a980b96..c403cd4 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -79,9 +79,3 @@ EXTRA_DIST = \
  via_xvmc.c \
  via_xvmc.h 
 endif
-
-pcidatadir = $(datadir)/xserver-xorg/pci
-pcidata_DATA = via.ids
-
-via.ids : via_id.h
-   awk '/^#define.*PCI_CHIP/ {print $$3}' ${srcdir}/via_id.h | sed -e 
's/0x/1106/' > via.ids

commit dbd647ec2a9df8ac95f6ee390d1f7f7d602a2c0d
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sun Aug 19 15:37:49 2007 -0400

Fix merge goof

diff --git a/debian/control b/debian/control
index 56c83b6..7c08084 100644
-

xserver-xorg-video-via: Changes to 'debian-unstable'

2007-05-02 Thread Julien Cristau
 debian/changelog |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e47a70a6ec0f3644b2674d4fb629ded2d3b6b2b9
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Wed May 2 16:09:13 2007 +0200

Prepare changelog for upload.

diff --git a/debian/changelog b/debian/changelog
index 2e065b4..65af51d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-via (1:0.2.2-2) UNRELEASED; urgency=low
+xserver-xorg-video-via (1:0.2.2-2) unstable; urgency=low
 
   [ Timo Aaltonen ]
   * Replaces/Conflicts: xserver-xorg-driver-via.
@@ -12,7 +12,7 @@ xserver-xorg-video-via (1:0.2.2-2) UNRELEASED; urgency=low
 module in the long description.
   * Remove Fabio from uploaders with his permission. He's always welcome back.
 
- -- Brice Goglin <[EMAIL PROTECTED]>  Mon, 30 Apr 2007 12:41:51 +0200
+ -- Julien Cristau <[EMAIL PROTECTED]>  Wed, 02 May 2007 16:06:02 +0200
 
 xserver-xorg-video-via (1:0.2.2-1) experimental; urgency=low
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xserver-xorg-video-via: Changes to 'debian-unstable'

2007-04-30 Thread Brice Goglin
 ChangeLog | 1327 +-
 1 files changed, 972 insertions(+), 355 deletions(-)

New commits:
commit e2af3e3ba41cde7cbdd8312dab5a525f41bd0dc9
Author: Brice Goglin <[EMAIL PROTECTED]>
Date:   Mon Apr 30 12:59:55 2007 +0200

Update upstream ChangeLog

diff --git a/ChangeLog b/ChangeLog
index 1c85261..ecce85e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,355 +1,972 @@
-2006-05-23  Thomas Hellstrom  
-
-   * src/via_dri.c: (VIADRIFinishScreenInit):
-   Bugzilla #6668   
-   Fix critical unlibcwrap breakage. ("Morgoth")
-   
-2006-04-07  Adam Jackson  <[EMAIL PROTECTED]>
-
-   * configure.ac:
-   * src/via_driver.h:
-   Bump to 0.2.1 for Xv changes.
-
-2006-04-07  Aaron Plattner  <[EMAIL PROTECTED]>
-
-   * src/via_video.c: (viaReputImage), (viaPutImage):
-   * src/via_xvmc.c: (viaXvMCInterceptPutImage):
-   Add a DrawablePtr argument to the XV functions to pave the way for
-   redirected video.
-
-2006-04-07  Adam Jackson  <[EMAIL PROTECTED]>
-
-   * configure.ac:
-   * src/via.h:
-   * src/via_accel.c:
-   * src/via_dri.c:
-   * src/via_driver.h:
-   * src/via_memcpy.c:
-   * src/via_memory.c:
-   * src/via_mode.c:
-   * src/via_shadow.c:
-   * src/via_swov.c:
-   * src/via_vbe.c:
-   * src/via_vgahw.c:
-   * src/via_video.c:
-   * src/via_xvmc.c:
-   Unlibcwrap.  Bump server version requirement.  Bump to 0.2.0.
-
-2006-03-19  Thomas Hellstrom  
-
-   * src/via_accel.c: (viaAccelPlaneMaskHelper),
-   (viaSetupForSolidLine), (viaSubsequentSolidTwoPointLine),
-   (viaSetupForDashedLine), (viaPixelARGB),
-   (viaExaDownloadFromScreen), (viaExaTexUploadToScreen),
-   (viaExaUploadToScreen), (viaExaCheckComposite),
-   (viaExaPrepareComposite), (viaInitExa), (viaInitAccel),
-   (viaExitAccel), (viaFinishInitAccel):
-   * src/via_driver.h:
-   Fix for XAA solid lines broken by the EXA merge.
-   (Openchrome Chgset 170).
-   Indent.
-   
-2006-03-17  Thomas Hellstrom  
-
-   * src/via_driver.c:
-   Bugzilla #6291 
-   s/XF86_VERSION_CURRENT/XORG_VERSION_CURRENT/
-   (Reported by Eric Anholt)
-   
-2006-03-17  Thomas Hellstrom  
-
-   * src/via_accel.c: (viaInitExa):
-   * src/via_driver.c: (VIAPreInit):
-   Fix via EXA after API update.
-
-2006-03-08  Thomas Hellstrom  
-
-   * src/via_id.c:
-   Update PCI-ids from lists maintained at unichrome.sf.net by 
-   Luc Verhaegen and openchrome.org by Xavier Bachelot.
-   
-2006-03-08  Thomas Hellstrom  
-
-   * src/via_swov.c: 
-   * src/via_swov.h:
-   * src/via_video.c: 
-   * src/via_video.h:
-   * src/via_xvmc.c: 
-   * src/via_xvmc.h:
-   * src/via_xvpriv.h:
-   Indent above files after syncing them with openChrome.
-   
-2006-03-08  Thomas Hellstrom  
-
-   * man/via.man:
-   * src/via.h:
-   * src/via_accel.c: (viaExaDownloadFromScreen),
-   (viaExaUploadToScreen):
-   * src/via_driver.c: (VIAPreInit):
-   * src/via_driver.h:
-   * src/via_id.h:
-   * src/via_priv.h:
-   * src/via_swov.c: (viaWaitVideoCommandFire), (VIAVidHWDiffInit),
-   (viaOverlayGetV1V3Format), (viaOverlayGetSrcStartAddress),
-   (viaOverlayGetFetch), (viaCalculateVideoColor), (viaSetColorSpace),
-   (ViaInitVideoStatusFlag), (ViaSetVidCtl), (CreateSurface),
-   (ViaSwovSurfaceCreate), (ViaSwovSurfaceDestroy), (SetFIFO_V3),
-   (SetFIFO_V3_64or32or32), (SetFIFO_V3_64or32or16), (SetColorKey),
-   (SetChromaKey), (SetHQVFetch), (Upd_Video), (VIAVidUpdateOverlay),
-   (ViaOverlayHide):
-   * src/via_video.c: (DecideOverlaySupport), (viaXvError),
-   (viaInitVideo), (viaReputImage), (viaSetupAdaptors),
-   (viaStopVideo), (Flip), (nv12cp), (viaDmaBlitImage), (viaPutImage),
-   (viaQueryImageAttributes), (nv12Blit):
-   * src/via_video.h:
-   * src/via_xvmc.c: (ViaInitXVMC), (ViaXvMCCreateContext):
-   * src/via_xvpriv.h:
-   Sync Xv and man with openchrome revision 166.
-   
-   Xv RV32 support (Ivor Hewitt).
-   Xv VM800 support (Ivor Hewitt). Not enabled yet pending more testing.
-   A number of Xv Unichrome Pro Group A bugfixes.
-   Xv PCI DMAblit support. 
-   Fix DMAblit DRM version check.
-   Update manpage.
-   
-2006-02-27  Thomas Hellstrom  
-
-   * configure.ac:
-   * src/Makefile.am:
-   * src/xvmc/Makefile.am:
-   Build fixes. (Reported by Kurt B Cox)
-   
-2006-02-25  Thomas Hellstrom  
-
-   * src/via_dmabuffer.h:
-   Added missing file from previous commit.
-
-2006-02-22  Thomas Hellstrom  
-
-   * src/Makefile.am:
-   * src/via_3d.c: (via3DDstFormat), (via3DTexFormat),
-   (via3DDstSupported), (via3DTexSupported), (viaSet

xserver-xorg-video-via: Changes to 'debian-unstable'

2007-04-30 Thread Brice Goglin
 .gitignore |   21 
 ChangeLog  |6 
 aclocal.m4 |  147 +-
 autogen.sh |   12 
 config.guess   |  685 +++-
 config.h.in|9 
 config.sub |  240 +++-
 configure  | 1762 ++---
 configure.ac   |3 
 debian/changelog   |   23 
 debian/control |   14 
 debian/patches/01_missing_assert.diff  |   12 
 debian/patches/02_card32_redefine.diff |   10 
 debian/patches/series  |1 
 debian/rules   |4 
 debian/xsfbs/xsfbs.mk  |   28 
 ltmain.sh  |   12 
 man/.cvsignore |2 
 man/Makefile.am|2 
 man/Makefile.in|2 
 mkinstalldirs  |   89 +
 src/.cvsignore |6 
 src/via_dri.c  |   34 
 src/via_dri.h  |2 
 src/via_driver.h   |3 
 src/via_drmclient.h|8 
 src/via_memory.c   |   17 
 src/via_swov.c |4 
 src/via_xvmc.c |7 
 src/xvmc/.cvsignore|2 
 src/xvmc/Makefile.am   |8 
 src/xvmc/Makefile.in   |   10 
 src/xvmc/viaXvMC.c |2 
 33 files changed, 1527 insertions(+), 1660 deletions(-)

New commits:
commit 95fa54819997f015b15f1716b18266ee0f9e32f0
Author: Brice Goglin <[EMAIL PROTECTED]>
Date:   Mon Apr 30 12:43:40 2007 +0200

autoreconf

diff --git a/config.guess b/config.guess
index 396482d..0f0fe71 100755
--- a/config.guess
+++ b/config.guess
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 #   Inc.
 
-timestamp='2006-07-02'
+timestamp='2007-03-06'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -161,6 +161,7 @@ case 
"${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
arm*) machine=arm-unknown ;;
sh3el) machine=shl-unknown ;;
sh3eb) machine=sh-unknown ;;
+   sh5el) machine=sh5le-unknown ;;
*) machine=${UNAME_MACHINE_ARCH}-unknown ;;
esac
# The Operating System including object format, if it has switched
@@ -780,7 +781,7 @@ EOF
 i*:CYGWIN*:*)
echo ${UNAME_MACHINE}-pc-cygwin
exit ;;
-i*:MINGW*:*)
+*:MINGW*:*)
echo ${UNAME_MACHINE}-pc-mingw32
exit ;;
 i*:windows32*:*)
@@ -790,12 +791,15 @@ EOF
 i*:PW*:*)
echo ${UNAME_MACHINE}-pc-pw32
exit ;;
-x86:Interix*:[3456]*)
-   echo i586-pc-interix${UNAME_RELEASE}
-   exit ;;
-EM64T:Interix*:[3456]*)
-   echo x86_64-unknown-interix${UNAME_RELEASE}
-   exit ;;
+*:Interix*:[3456]*)
+   case ${UNAME_MACHINE} in
+   x86) 
+   echo i586-pc-interix${UNAME_RELEASE}
+   exit ;;
+   EM64T | authenticamd)
+   echo x86_64-unknown-interix${UNAME_RELEASE}
+   exit ;;
+   esac ;;
 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
echo i${UNAME_MACHINE}-pc-mks
exit ;;
@@ -950,6 +954,9 @@ EOF
 x86_64:Linux:*:*)
echo x86_64-unknown-linux-gnu
exit ;;
+xtensa:Linux:*:*)
+   echo xtensa-unknown-linux-gnu
+   exit ;;
 i*86:Linux:*:*)
# The BFD linker knows what the default object file format is, so
# first see if it will tell us. cd to the root directory to prevent
@@ -1208,6 +1215,15 @@ EOF
 SX-6:SUPER-UX:*:*)
echo sx6-nec-superux${UNAME_RELEASE}
exit ;;
+SX-7:SUPER-UX:*:*)
+   echo sx7-nec-superux${UNAME_RELEASE}
+   exit ;;
+SX-8:SUPER-UX:*:*)
+   echo sx8-nec-superux${UNAME_RELEASE}
+   exit ;;
+SX-8R:SUPER-UX:*:*)
+   echo sx8r-nec-superux${UNAME_RELEASE}
+   exit ;;
 Power*:Rhapsody:*:*)
echo powerpc-apple-rhapsody${UNAME_RELEASE}
exit ;;
diff --git a/config.sub b/config.sub
index fab0aa3..5defff6 100755
--- a/config.sub
+++ b/config.sub
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 #   Inc.
 
-timestamp='2006-09-20'
+timestamp='2007-01-18'
 
 # This file is (in principle) common to ALL GNU software.
 # The presence of a machine in this file suggests that SOME GNU software
@@ -245,12 +245,12 @@ case $basic_machine in
| bfin \
| c4x | clipper \
| d10v | d30v | dlx | dsp16xx \
-   | fr30 | frv \
+   | fido | fr30 | frv \
| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0

xserver-xorg-video-via: Changes to 'debian-unstable'

2007-04-24 Thread Timo Aaltonen
 debian/changelog |6 ++
 debian/control   |3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

New commits:
commit bd2d144211f46ef1b1294dd8e7052ab53411f0a8
Author: Timo Aaltonen <[EMAIL PROTECTED]>
Date:   Tue Apr 24 14:43:35 2007 +0300

Replaces/Conflicts: xserver-xorg-driver-via.

diff --git a/debian/changelog b/debian/changelog
index b64ee94..ba849f3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-video-via (1:0.2.1-7) UNRELEASED; urgency=low
+
+  * Replaces/Conflicts: xserver-xorg-driver-via.
+
+ -- Timo Aaltonen <[EMAIL PROTECTED]>  Tue, 24 Apr 2007 14:43:10 +0300
+
 xserver-xorg-video-via (1:0.2.1-6) unstable; urgency=low
 
   [ Julien Cristau ]
diff --git a/debian/control b/debian/control
index 36d417d..f24e7be 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,8 @@ Package: xserver-xorg-video-via
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, xserver-xorg-core (>= 2:1.1.1-11)
 Provides: xserver-xorg-video-1.0
-Replaces: xserver-xorg (<< 6.8.2-35)
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-via
+Conflicts: xserver-xorg-driver-via
 Description: X.Org X server -- VIA display driver
  This driver for the X.Org X server (see xserver-xorg for a further 
description)
  provides support for VIA/S3 CLE266/KM400/K8M800/UniChrome cards, which are


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xserver-xorg-video-via: Changes to 'debian-unstable'

2007-02-03 Thread David Nusinow
New branch 'debian-unstable' available with the following commits:
commit 5cbdb59cf8253592019037e2aa8ee07358dc2f11
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sat Nov 25 18:08:23 2006 +

* Remove extra build-dep on libdrm-dev
* Don't build-dep on libdrm-dev on hurd-i386. Thanks Michael Banck.
  Closes: #392859
* Bump standards version to 3.7.2.2. No changes needed.

commit ca060b34c2b863601c8e3c9d7b78aa27421e1b1a
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Tue Nov 7 06:46:29 2006 +

For each driver, add a symlink to xserver-xorg-core's bug script, so that 
each
new bugreport contains the user's config and log files.  Bump dependencies 
on
xserver-xorg-core to >= 2:1.1.1-11, to make sure that the bug script is
present.

commit efef3473d4927c9485050e3713f63757260da450
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sat Sep 30 18:26:02 2006 +

* Add 01_remove_assert.diff Thanks Starling for an alternate patch, but
  this patch is stolen from upstream. Closes: #389335
* Add 02_card32_redefine.diff because via_drmclient.h defines CARD32 if
  uint32_t isn't defined. This patch includes stdint.h in the file so this
  doesn't come in to play, thus fixing an FTBFS.

commit 3fc2f0d2e9718c56fcdca11c6a9fd5f8e42010d5
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sat Sep 30 16:05:49 2006 +

* Add 01_missing_assert.diff to add missing include to via_dri.c. Thanks
  Starling. Closes: #389335

commit 1a4e015b1e003e7c43390bf855f79cd279faad5f
Author: Thierry Reding <[EMAIL PROTECTED]>
Date:   Tue Sep 26 10:26:34 2006 +

Add some more watch files.

commit c46ce523befe4e796b58201ad44900c7759bd118
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Fri Sep 22 03:36:10 2006 +

* Bump standards version to 3.7.2.0. No changes necessary.

commit 5d988c48eda3105f62dac8c647c911ce892096c4
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Fri Sep 22 03:35:31 2006 +

* Don't install the XvMC stuff on anything but i386 and amd64, since that's
  all that builds it in the usptream packaging right now.

commit 5ae5507fd26c4bc6266adbde33601cedd404f1d3
Author: Steve Langasek <[EMAIL PROTECTED]>
Date:   Fri Sep 22 02:40:03 2006 +

nope, wrong reason for build failure, reverting

commit 6d1bc922d114f3a7902923148bde4663952db2e0
Author: Steve Langasek <[EMAIL PROTECTED]>
Date:   Fri Sep 22 02:37:15 2006 +

Add missing build-deps on quilt

commit 47e6539a774cbc23ce34452e606e46e3f6b3eb1d
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Tue Sep 19 00:39:01 2006 +

Prepare changelog for upload to unstable

commit 16fcc43a6326890acd4717a3334f866bc2b00590
Author: Steve Langasek <[EMAIL PROTECTED]>
Date:   Mon Sep 18 12:37:19 2006 +

merge via 7.1 video driver to trunk for upload to unstable

commit 3e75d963fe722e1b56d013ef4163e1f503670728
Author: Steve Langasek <[EMAIL PROTECTED]>
Date:   Mon Sep 18 06:33:05 2006 +

more fixes for unversioned directory names

commit 09626ffd348fd8bd1ccd2e99915420554a02903c
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sat Apr 22 22:33:27 2006 +

Prepare changelog for release

commit 27f54363808dbbe47e3858f4b140b0223c4991b6
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sat Apr 22 21:58:10 2006 +

* Add call to dh_makeshlibs. Re-order dh_shlibdeps and dh_installdeb so that
  ldconfig is called in postinst. Thanks Justin Pryzby and Steve Langasek.
  (closes: #364013)

commit 607eee2b1c85a9d4c7664ae2d8972b48c071507a
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Wed Apr 5 00:10:22 2006 +

Prepare changelogs for upload to unstable

commit 29b92a173b91851b81b7bbea11307d07b3470628
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Mon Feb 13 03:46:16 2006 +

Fix Branden's email address

commit 4d43c04f52ec5738df07ceb03685e85cf59d76ae
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sun Feb 12 16:24:02 2006 +

Move all install files for renaming scheme and delete v4l driver which 
doesn't currently have packaging

commit 1232b7555b10e1337f77aab691ea08f9c5e78887
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Fri Feb 10 03:40:14 2006 +

Change driver package names to new scheme

commit 6d862d256d4a829ef1524ef91ddbe1f06ea79bee
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Mon Jan 30 02:24:55 2006 +

Move .install files to new naming scheme for drivers

commit d58e3712d854ade010d5b98861d8fba86d04b0de
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sun Jan 29 21:21:32 2006 +

Pull in and use xsfbs

commit 4e479598e72ef919d2f7ec19cb935e344f0a2aef
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sun Jan 29 20:36:06 2006 +

* Rename driver packages to be more consistent and intuitive
  + Video drivers are now named xorg-video-driver-foo and input drivers are
now named xorg-input-driver-foo
  + Video drivers provide xorg-video-driver and input drivers provide