--- wine-1.2~winehq0~ubuntu~8.04.orig/config.guess +++ wine-1.2~winehq0~ubuntu~8.04/config.guess @@ -0,0 +1,1533 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# Free Software Foundation, Inc. + +timestamp='2009-06-10' + +# 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 +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Originally written by Per Bothner . +# Please send patches to . Submit a context +# diff and a properly formatted ChangeLog entry. +# +# This script attempts to guess a canonical system name similar to +# config.sub. If it succeeds, it prints the system name on stdout, and +# exits with 0. Otherwise, it exits with 1. +# +# The plan is that this can be called by configure scripts if you +# don't specify an explicit build system type. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + 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 + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ELF__ + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + exit ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; + arm:riscos:*:*|arm:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[456]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep -q __LP64__ + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) + case ${UNAME_MACHINE} in + pc98) + echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:[3456]*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + EM64T | authenticamd | genuineintel) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-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 ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; + arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + cris:Linux:*:*) + echo cris-axis-linux-gnu + exit ;; + crisv32:Linux:*:*) + echo crisv32-axis-linux-gnu + exit ;; + frv:Linux:*:*) + echo frv-unknown-linux-gnu + exit ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + mips:Linux:*:* | mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=${UNAME_MACHINE}el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=${UNAME_MACHINE} + #else + CPU= + #endif + #endif +EOF + eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' + /^CPU/{ + s: ::g + p + }'`" + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + or32:Linux:*:*) + echo or32-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-gnu + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; + esac + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux + exit ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; + x86_64:Linux:*:*) + echo x86_64-unknown-linux-gnu + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-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 + # problems with other programs or directories called `ld' in the path. + # Set LC_ALL=C to ensure ld outputs messages in English. + ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ + | sed -ne '/supported targets:/!d + s/[ ][ ]*/ /g + s/.*supported targets: *// + s/ .*// + p'` + case "$ld_supported_targets" in + elf32-i386) + TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" + ;; + esac + # Determine whether the default compiler is a.out or elf + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + #ifdef __ELF__ + # ifdef __GLIBC__ + # if __GLIBC__ >= 2 + LIBC=gnu + # else + LIBC=gnulibc1 + # endif + # else + LIBC=gnulibc1 + # endif + #else + #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) + LIBC=gnu + #else + LIBC=gnuaout + #endif + #endif + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' + /^LIBC/{ + s: ::g + p + }'`" + test x"${LIBC}" != x && { + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit + } + test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } + ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit ;; + 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 ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + unknown) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NSE-?:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; +esac + +#echo '(No uname command or uname output not recognized.)' 1>&2 +#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 + +eval $set_cc_for_build +cat >$dummy.c < +# include +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix\n"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + c34*) + echo c34-convex-bsd + exit ;; + c38*) + echo c38-convex-bsd + exit ;; + c4*) + echo c4-convex-bsd + exit ;; + esac +fi + +cat >&2 < in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: --- wine-1.2~winehq0~ubuntu~8.04.orig/config.sub +++ wine-1.2~winehq0~ubuntu~8.04/config.sub @@ -0,0 +1,1693 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# Free Software Foundation, Inc. + +timestamp='2009-06-11' + +# This file is (in principle) common to ALL GNU software. +# The presence of a machine in this file suggests that SOME GNU software +# can handle that machine. It does not imply ALL GNU software can. +# +# 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 +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Please send patches to . Submit a context +# diff and a properly formatted ChangeLog entry. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.sub ($timestamp) + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ + uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray) + os= + basic_machine=$1 + ;; + -bluegene*) + os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nios | nios2 \ + | ns16k | ns32k \ + | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ + | pyramid \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu | strongarm \ + | tahoe | thumb | tic4x | tic80 | tron \ + | v850 | v850e \ + | we32k \ + | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12) + # Motorola 68HC11/12. + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + ms1) + basic_machine=mt-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64octeon-* | mips64octeonel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ + | pyramid-* \ + | romp-* | rs6000-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ + | tahoe-* | thumb-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ + | tron-* \ + | v850-* | v850e-* | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aros) + basic_machine=i386-pc + os=-aros + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; +# I'm not sure what "Sysv32" means. Should this be sysv3.2? + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc) basic_machine=powerpc-unknown + ;; + ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tic54x | c54x*) + basic_machine=tic54x-unknown + os=-coff + ;; + tic55x | c55x*) + basic_machine=tic55x-unknown + os=-coff + ;; + tic6x | c6x*) + basic_machine=tic6x-unknown + os=-coff + ;; + tile*) + basic_machine=tile-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ + | -kopensolaris* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* | -aros* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ + | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe + ;; + -dicos*) + os=-dicos + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + # This also exists in the configure program, but was not the + # default. + # os=-sunos4 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-haiku) + os=-haiku + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -cnk*|-aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wineserver-restart-required.update-notifier +++ wine-1.2~winehq0~ubuntu~8.04/debian/wineserver-restart-required.update-notifier @@ -0,0 +1,8 @@ +Name: WineServer restart required +Priority: High +Terminal: False +DontShowAfterReboot: True +Description: Wine has been upgraded and you are running wineserver. + Please reboot your computer or restart wineserver. +END + --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.dirs.i386 +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.dirs.i386 @@ -0,0 +1,7 @@ +usr/bin +usr/share +usr/share/man +usr/share/man/man1 +usr/share/man/man5 +usr/lib +usr/lib/wine --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.mime +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.mime @@ -0,0 +1,11 @@ +application/x-msdos-program; /usr/bin/wine '%s'; description=Windows Executable +application/x-msdownload; /usr/bin/wine '%s'; description=Windows Executable +application/exe; /usr/bin/wine '%s'; description=Windows Executable +application/x-exe; /usr/bin/wine '%s'; description=Windows Executable +application/dos-exe; /usr/bin/wine '%s'; description=Windows Executable +vms/exe; /usr/bin/wine '%s'; description=Windows Executable +application/x-winexe; /usr/bin/wine '%s'; description=Windows Executable +application/msdos-windows; /usr/bin/wine '%s'; description=Windows Executable +application/x-msdos-program; /usr/bin/wine '%s'; description=Windows Executable +application/x-msi; /usr/bin/wine '%s'; description=Windows Installer archive + --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/changelog +++ wine-1.2~winehq0~ubuntu~8.04/debian/changelog @@ -0,0 +1,3688 @@ +wine (1.2~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + * Build-depend on libtiff4-dev + + -- Scott Ritchie Wed, 21 Jul 2010 11:30:53 -0700 + +wine (1.1.42~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Support for shared 32/64-bit setups. + - Dwarf debug info support for better backtraces. + - More standard actions supported in MSI. + - Support for TIFF image format in WinCodecs. + - A number of Direct3D improvements. + - Shell fixes for better Internet Explorer support. + - Various bug fixes. + + -- Scott Ritchie Wed, 14 Apr 2010 18:41:57 -0700 + +wine (1.1.41~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - A wide range of Direct3D improvements. + - Support for SHA-256, SHA-384, and SHA-512 algorithms. + - A number of MSHTML fixes. + - Support for mp3 decoding on Mac OS X. + - Various widl improvements. + - More typelib fixes. + - OLE storage improvements. + - Various bug fixes. + + -- Scott Ritchie Thu, 25 Mar 2010 22:05:38 -0700 + +wine (1.1.40~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Support for Wow64 registry redirection. + - Increased coverage of MSI standard actions. + - Various Wordpad improvements. + - Many shell fixes for better IE support. + - Improved support for typelibs. + - Better GL card detection. + - Various bug fixes. + + -- Scott Ritchie Fri, 05 Mar 2010 17:14:06 -0800 + +wine (1.1.39~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Support for registry symbolic links. + - Many MSI fixes. + - Build process improvements. + - MSXML cleanups and fixes. + - A number of MSHTML improvements. + - Various bug fixes. + + -- Scott Ritchie Fri, 19 Feb 2010 16:30:40 -0800 + +wine (1.1.38~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Better support for memory allocations debugging. + - Improved MIDI support. + - A wide range of Direct3D fixes. + - OLEDB fixes (should fix Clipart in Office). + - Improved debugger support on x86-64. + - Many MSI fixes. + - Various bug fixes. + + -- Scott Ritchie Wed, 10 Feb 2010 17:10:02 -0800 + +wine (1.1.37~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - A number of fixes in AVI file support. + - Several MSXML improvements. + - A few MSI fixes. + - Various bug fixes. + + -- Scott Ritchie Wed, 27 Jan 2010 16:23:46 -0800 + +wine (1.1.36~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Completion of the 16-bit separation. + - Improved Shader Model 4 support. + - A ton of memory leak fixes. + - Improved debugging support for MinGW. + - A number of MSHTML fixes. + - Various bug fixes. + + -- Scott Ritchie Sat, 09 Jan 2010 13:14:01 -0800 + +wine (1.1.35~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Support for OLE transacted storage. + - Better certificate checking on secure connections. + - More progress on the 16-bit separation. + - Left 4 Dead 2 DRM really supported now. + - MSI performance improvements. + - 64-bit fixes in debugger support. + - Various bug fixes. + + -- Scott Ritchie Fri, 18 Dec 2009 22:17:24 -0800 + +wine (1.1.34~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Many fixes for crypto certificates support. + - A lot of MSHTML improvements. + - Various fixes to support the Left 4 Dead 2 DRM. + - A number of OLE marshalling fixes. + - More Listview improvements. + - Various bug fixes. + + -- Scott Ritchie Thu, 10 Dec 2009 19:38:22 -0800 + +wine (1.1.33~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Gecko now installed at wineprefix creation time. + - Better support for certificates in crypt32. + - Improved sound support in mciwave. + - Some more Direct3D 10 functions. + - Many cleanups for issues spotted by Valgrind. + - Various bug fixes. + * Remove errant debian/steamfix patch + + -- Scott Ritchie Sat, 14 Nov 2009 12:01:55 -0800 + +wine (1.1.32~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Many crypto fixes, particularly on 64-bit. + - Improved DVD access on Mac OS. + - Several common controls improvements. + - Various HTML support improvements. + - More DIB optimizations. + - Various bug fixes. + + -- Scott Ritchie Sun, 25 Oct 2009 04:24:09 -0700 + +wine (1.1.31~winehq0~ubuntu~8.04-0ubuntu2) hardy; urgency=low + + * build-depend on libopenal-dev + + -- Scott Ritchie Mon, 12 Oct 2009 17:27:22 -0700 + +wine (1.1.31~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Vastly improved monthcal control. + - Performance improvements for DIB sections. + - Several sound driver fixes. + - Beginning of ActiveX support in JScript. + - More Direct3D 10 work. + - More 16-bit dlls split off to separate modules. + - Support for attachments in MAPI. + - Various bug fixes. + + -- Scott Ritchie Sun, 11 Oct 2009 02:29:11 -0700 + +wine (1.1.30~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Support for OpenAL. + - Many improvements in HTML and JavaScript support. + - Many common controls fixes and improvements. + - More Direct3D 10 work. + - Better MAPI support. + - Various bug fixes. + * Drop Roderick's patch as it's integrated upstream. + + -- Scott Ritchie Sun, 27 Sep 2009 07:59:56 -0700 + +wine (1.1.29~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Improved Gecko integration by using Wine's network layers. + - Use of external libmpg123 for mp3 decoding. + - Support for JPEG and PNG formats in WindowsCodecs. + - Many regression test fixes for Win64 and Windows 7. + - Various bug fixes. + * Include patch for a regression in Steam + + -- Scott Ritchie Fri, 04 Sep 2009 22:02:53 -0700 + +wine (1.1.28~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Support for IRDA protocol. + - Faster initial wineprefix creation. + - Axis remapping with evdev joysticks. + - More image formats in WindowsCodecs. + - Various bug fixes. + * Build depend on libgsm1-dev + + -- Scott Ritchie Sat, 22 Aug 2009 12:04:47 -0700 + +wine (1.1.27~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - New version of the Gecko engine. + - New GSM 06.10 codec support. + - Improved support for the disk volume APIs. + - Support for XShm pixmaps for better performance. + - Various bug fixes. + + -- Scott Ritchie Sat, 08 Aug 2009 05:29:36 -0700 + +wine (1.1.26~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Still more translation updates. + - Faster bitmap stretching using XRender. + - Proxy support in WinHTTP. + - Many more JScript functions. + - Various bug fixes. + + -- Scott Ritchie Fri, 17 Jul 2009 17:19:44 -0700 + +wine (1.1.25~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - A ton of translation updates. + - Support for various Unicode file encodings in Notepad. + - Improved memory management, especially for OpenGL. + - Desktop menus now cleaned up automatically. + - Beginnings of a windowscodecs DLL implementation. + - Various bug fixes. + + -- Scott Ritchie Fri, 03 Jul 2009 13:17:10 -0500 + +wine (1.1.24~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Support for freedesktop file associations. + - Support for exception handling on 64-bit. + - Improved ARB shaders. + - Fixes for the FBO mode. + - Many listview improvements. + - Various bug fixes. + + -- Scott Ritchie Sun, 21 Jun 2009 13:11:36 -0700 + +wine (1.1.23~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Support for registering MIME types with the Linux desktop. + - FBO mode is now the default for Direct3D. + - Support for COM proxy delegation. + - Improved support for the Mingw cross-compile. + - Proper fullscreen mode for the virtual desktop. + - Various bug fixes. + + -- Scott Ritchie Fri, 05 Jun 2009 19:03:54 -0700 + +wine (1.1.22~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - More improvements to OLE copy/paste. + - Beginnings of x86_64 exception handling. + - Direct3D locking fixes. + - ARB shaders improvements. + - Better OpenGL pixel format support. + - Various bug fixes. + + -- Scott Ritchie Fri, 22 May 2009 17:05:29 -0700 + +wine (1.1.21~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Beginnings of shader model 4 support. + - Support for copying/pasting images from X11 applications. + - A number of GDIPlus improvements. + - Various listview fixes. + - 64-bit support in winemaker. + - Support for building on Mac OS X Snow Leopard. + - Various bug fixes. + * New icons from Christian Dannie for wine, winecfg, winefile, and notepad + - No small sized icons yet; they will be pushed upstream + - No icon for uninstall (will be phased out) + + + -- Scott Ritchie Fri, 08 May 2009 15:29:37 -0700 + +wine (1.1.20~winehq0~ubuntu~8.04-0ubuntu2) hardy; urgency=low + + * debian/control: add missing , after build-depends gnutls + + -- Scott Ritchie Sun, 03 May 2009 16:39:57 -0700 + +wine (1.1.20~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Show a dialog on application crashes. + - Much improved OLE copy/paste support. + - Various listview improvements. + - More Direct3D code cleanups. + - Various bug fixes. + * New icons taken from the ubuntustudio-icon-theme package + * Remove unused wine-regedit, wine-winehelp, and wine-winemine icons + * debian/copyright: mention ubuntustudio icons CC-by-SA license + + -- Scott Ritchie Fri, 24 Apr 2009 23:07:54 -0700 + +wine (1.1.19~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Support for Visual C++ project files in winemaker. + - Improvements to the Esound driver. + - Many Direct3D code cleanups. + - Fixes to OLE clipboard handling. + - OpenBSD compilation fixed. + - Various bug fixes. + + -- Scott Ritchie Sun, 12 Apr 2009 15:32:46 -0700 + +wine (1.1.18~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - RPC over HTTP support. + - Improved support for upgrades in MSI. + - Debug symbols in WineDbg on Mac OS X. + - Many Direct3D code cleanups. + - Various bug fixes. + + -- Scott Ritchie Fri, 27 Mar 2009 19:44:44 -0700 + +wine (1.1.17~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Joystick support on Mac OS X. + - Implementation of iphlpapi on Solaris. + - A number of 64-bit improvements. + - Obsolete LinuxThreads support has been removed. + - Many fixes to the regression tests on Windows. + - Various bug fixes. + + -- Scott Ritchie Fri, 13 Mar 2009 14:34:48 -0700 + +wine (1.1.16~winehq0~ubuntu~8.04-0ubuntu2) hardy; urgency=low + + * debian/wine-uninstaller.desktop: correct exec link + + -- Scott Ritchie Wed, 04 Mar 2009 10:47:16 -0800 + +wine (1.1.16~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Improved SANE scanner support. + - Support for digital CD audio playback. + - Improved cookies management in Wininet. + - Support for building stand-alone 16-bit modules. + - Many fixes to the regression tests on Windows. + - Various bug fixes. + * Reverse previous patch as it's now included + + -- Scott Ritchie Fri, 27 Feb 2009 21:58:42 -0800 + +wine (1.1.15~winehq0~ubuntu~8.04-0ubuntu2) hardy; urgency=low + + * Include a cherry picked patch needed for building + - Will be in 1.1.16 by default + + -- Scott Ritchie Wed, 18 Feb 2009 16:20:17 -0800 + +wine (1.1.15~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Gecko engine update. + - Better region support in GdiPlus. + - Support for cross-compilation in winegcc. + - Beginnings of MS Text Framework support. + - Many fixes to the regression tests on Windows. + - Various bug fixes. + * Gecko package will be updated separately + + -- Scott Ritchie Sat, 14 Feb 2009 02:24:14 -0800 + +wine (1.1.14~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Various bug fixes for Internet Explorer 7. + - Many crypt32 improvements, including new export wizard. + - Better support for windowless Richedit. + - Improvements to the print dialog. + - Many fixes to the regression tests on Windows. + - Various bug fixes. + + -- Scott Ritchie Fri, 30 Jan 2009 10:49:22 -0800 + +wine (1.1.13~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Freedesktop.org-compliant startup notifications. + - Many fixes for 64-bit application support. + - Improved graphics support in Internet Explorer. + - Various Richedit improvements. + - Better certificate manager dialog. + - Various bug fixes. + + -- Scott Ritchie Sat, 17 Jan 2009 13:32:08 -0800 + +wine (1.1.12~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Some simple 64-bit apps should now run. + - Support for subpixel font rendering. + - 64-bit code generation in the IDL compiler. + - New version of the Gecko engine. + - Various bug fixes. + * wine-gecko will be updated separately + + -- Scott Ritchie Fri, 02 Jan 2009 22:29:07 -0800 + +wine (1.1.10~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Support for virtual memory write watches. + - Workarounds for the WINAPI compiler bug on Mac OS. + - Several fixes for the 64-bit build. + - Some more GdiPlus functions. + - Various bug fixes. + + -- Scott Ritchie Fri, 05 Dec 2008 13:56:11 -0800 + +wine (1.1.9~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - A large number of regression test fixes. + - Performance improvements in memory management. + - Improved POP3 support in inetcomm. + - Initial implementation of the XInput DLL. + - Various bug fixes. + * Build-depend on libgnutls-dev + * Add 32-bit libgnutls.so link in debian/rules + + -- Scott Ritchie Fri, 21 Nov 2008 11:24:35 -0800 + +wine (1.1.8~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Substantial parts of inetcomm implemented (for Outlook). + - Still better crypt32 support. + - Memory management improvements. + - Theming support for buttons. + - Various bug fixes. + + -- Scott Ritchie Fri, 07 Nov 2008 14:33:23 -0800 + +wine (1.1.7~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * New upstream release + - Improved device management for DOS drives. + - Many Richedit fixes. + - Various installer fixes, particularly for IE 7. + - First steps of Direct3D 10 implementation. + - Various bug fixes. + * Recommend wine-gecko (hopefully this will be in hardy-updates soon) + + -- Scott Ritchie Fri, 24 Oct 2008 15:10:19 -0700 + +wine (1.1.6~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * This is a beta release of Wine. If you do not wish to beta test, disable + the winehq apt repository with: sudo rm /etc/apt/sources.list.d/winehq.list + Wine 1.0 is available through hardy-backports, and will also be available + as a regular update once that receives sufficient testing. + * New upstream release + - Beginnings of schannel implementation using GnuTLS. + - Many fixes from various code analysis tools. + - Support for X11 desktop work area. + - Fixes for Richedit tables. + - More complete JavaScript support. + - Various bug fixes. + + -- Scott Ritchie Fri, 10 Oct 2008 13:33:17 -0700 + +wine (1.1.5~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * This is a beta release of Wine. If you do not wish to beta test, disable + the winehq apt repository with: sudo rm /etc/apt/sources.list.d/winehq.list + Wine 1.0 is available through hardy-backports, and will also be available + as a regular update once that receives sufficient testing. + * New upstream release + - Substantial JavaScript implementation. + - Partial support for layered windows. + - Support for Unicode file export in Regedit. + - Proper exception handling in widl-generated code. + - Asynchronous requests and cookies support in WinHTTP. + - Various bug fixes. + + -- Scott Ritchie Sat, 20 Sep 2008 00:43:44 -0700 + +wine (1.1.4~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * This is a beta release of Wine. If you do not wish to beta test, disable + the winehq apt repository with: sudo rm /etc/apt/sources.list.d/winehq.list + Wine 1.0 is available through hardy-backports, and will also be available + as a regular update once that receives sufficient testing. + * New upstream release + - Substantial chunks of WinHTTP are implemented. + - More JavaScript support. + - Beginnings of shell AppBar implementation. + - Several fixes for Google Chrome support. + - Chinese translations. + - Various bug fixes. + + -- Scott Ritchie Fri, 05 Sep 2008 13:01:21 -0700 + +wine (1.1.3~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * This is a beta release of Wine. If you do not wish to beta test, disable + the winehq apt repository with: sudo rm /etc/apt/sources.list.d/winehq.list + Wine 1.0 is available through hardy-backports, and will also be available + as a regular update once that receives sufficient testing. + * New upstream release + - Beginnings of ddraw overlay support. + - Many more crypt32 functions. + - Improved support for tables in Richedit. + - Support for NETWM window maximization. + - Many installer fixes. + - Tweaks for better PulseAudio support. + - Various bug fixes. + * winbind is now a recommends + + -- Scott Ritchie Fri, 22 Aug 2008 10:44:14 -0700 + +wine (1.1.2~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * This is a beta release of Wine. If you do not wish to beta test, disable + the winehq apt repository with: sudo rm /etc/apt/sources.list.d/winehq.list + Wine 1.0 is available through hardy-backports, and will also be available + as a regular update once that receives sufficient testing. + * New upstream release + - Control panel improvements and new appwiz panel. + - Restructurations of state handling in Direct3D. + - Support for timer queue functions. + - Many MSXML improvements. + - Several fixes to Solaris support. + - Various bug fixes. + + -- Scott Ritchie Fri, 25 Jul 2008 13:50:58 -0700 + +wine (1.1.1~winehq0~ubuntu~8.04-0ubuntu1) hardy; urgency=low + + * This is a beta release of Wine. If you do not wish to beta test, disable + the winehq apt repository with: sudo rm /etc/apt/sources.list.d/winehq.list + Wine 1.0 is available through hardy-backports, and will also be available + as a regular update once that receives sufficient testing. + * New upstream release + - Fixes for Photoshop CS3 and Office 2007 installers. + - More progress on gdiplus. + - Support for Unicode files in regedit. + - Improved video playback. + - Many Richedit fixes and improvements. + - Various bug fixes. + + -- Scott Ritchie Fri, 11 Jul 2008 15:45:47 -0700 + +wine (1.1.0~winehq0~ubuntu~8.04-1) hardy; urgency=low + + * This is a beta release of Wine. If you do not wish to beta test, disable + the winehq apt repository with: sudo rm /etc/apt/sources.list.d/winehq.list + Wine 1.0 is available through hardy-backports, and will also be available + as a regular update once that receives sufficient testing. + * New upstream release + - Many more gdiplus functions implemented. + - Improved graphics tablet support. + - Many Richedit fixes and improvements. + - Support for HWND_MESSAGE windows. + - A lot of new MSHTML functions. + - Many fixes in MSI registry handling. + - Initial implementation of the inetmib1 DLL. + - Improvements to the quartz renderers. + - Various bug fixes. + * Remove desktop patch since it's part of upstream now + * debian/rules: re-add dh_installchangelogs for this changelog + * debian/wine.mime: associate Wine with .msi files + + -- Scott Ritchie Fri, 27 Jun 2008 20:23:26 -0700 + +wine (1.0.0~winehq0~ubuntu~8.04-1) hardy; urgency=low + + * New upstream release + - This is the final release of Wine 1.0. Users of the Hardy winehq APT + repository will continue to get new beta releases when available. + + -- Scott Ritchie Tue, 17 Jun 2008 10:27:54 -0700 + +wine (1.0~rc5~winehq0~ubuntu~8.04-1) hardy; urgency=low + + * New upstream release + - Bugfixes only due to feature freeze pending 1.0 release + + -- Scott Ritchie Fri, 13 Jun 2008 13:22:23 -0700 + +wine (1.0~rc4~winehq0~ubuntu~8.04-1ubuntu1) hardy; urgency=low + + * Remove dh_installchangelogs since the changelog is online now + + -- Scott Ritchie Fri, 06 Jun 2008 15:55:00 -0700 + +wine (1.0~rc4~winehq0~ubuntu~8.04-1) hardy; urgency=low + + * New upstream release + - Bugfixes only due to feature freeze pending 1.0 release + + -- Scott Ritchie Fri, 06 Jun 2008 10:31:00 -0700 + +wine (1.0~rc3~winehq0~ubuntu~8.04-1) hardy; urgency=low + + * New upstream release + - Bugfixes only due to feature freeze pending 1.0 release + + -- Scott Ritchie Fri, 30 May 2008 08:53:15 -0700 + +wine (1.0~rc2~winehq0~ubuntu~8.04-1) hardy; urgency=low + + * New upstream release + - Bugfixes only due to feature freeze pending 1.0 release + + -- Scott Ritchie Fri, 23 May 2008 19:26:46 -0700 + +wine (1.0~rc1~winehq0~ubuntu~8.04-1ubuntu1) hardy; urgency=low + + * Depend explicitly on winbind package for ntlm_auth + - This provides some added functionality, even though Wine doesn't use it + at build time, which is why it isn't included with shlibs:Depends + * Build-depend on libx86-dev for vm86 support + - This may or may not help issues with 16 bit copy protection on amd64 + + -- Scott Ritchie Sat, 17 May 2008 14:44:47 -0700 + +wine (1.0~rc1~winehq0~ubuntu~8.04-1) hardy; urgency=low + + * New upstream release + - Bugfixes only due to feature freeze pending 1.0 release + + -- Scott Ritchie Fri, 09 May 2008 15:02:02 -0700 + +wine (0.9.61~winehq0~ubuntu~8.04-1) hardy; urgency=low + + * Added lib32dns-mdns to dependencies for amd64 version + - Internet applications doing domain lookups should work now on amd64 + * New upstream release + - Automatic updating of the WINEPREFIX directory. + - Winhelp now uses Richedit as display engine. + - Many RichEdit fixes. + - More improvements to IME support. + - More quartz fixes. + - Implementation for many more Gdiplus functions. + - Lots of bug fixes. + + -- Scott Ritchie Sat, 03 May 2008 02:17:45 -0700 + +wine (0.9.60~winehq0~ubuntu~8.04-1ubuntu1) hardy; urgency=low + + * Pre-Depends on newer dpkg instead of lzma + + -- Scott Ritchie Fri, 18 Apr 2008 22:05:58 -0700 + +wine (0.9.60~winehq0~ubuntu~8.04-1) hardy; urgency=low + + * New upstream release + - Better support for Windows IMEs. + - Option for Windows-style window decorations. + - Improved system tray behavior. + - Window management fixes. + - Improved quartz audio support. + - Better support for launching apps from Unix file managers. + - Lots of bug fixes. + * The backported system tray regression patch no longer applies + * Compress package with lzma and add Pre-Depends: lzma + + -- Scott Ritchie Fri, 18 Apr 2008 10:27:19 -0700 + +wine (0.9.59-0ubuntu4) hardy; urgency=low + + * Remove MIME entry for application/x-zip-compressed (LP: #213062) + * Fix the 32 bit links for libldap, libldap_r, and liblber in amd64 version + + -- Scott Ritchie Thu, 10 Apr 2008 03:40:33 -0700 + +wine (0.9.59-0ubuntu3) hardy; urgency=low + + * Backport patch to fix system tray regression (LP: #214659) + * Delete old font patches in debian/patches + + -- Scott Ritchie Thu, 10 Apr 2008 01:53:33 -0700 + +wine (0.9.59-0ubuntu2) hardy; urgency=low + + * Re-introduced lpia changes which were forgotten with last upload + + -- Stephan Hermann Wed, 09 Apr 2008 18:21:35 +0200 + +wine (0.9.59-0ubuntu1) hardy; urgency=low + + * New upstream release + - Improved support for the .NET framework. + - Better services handling through a separate services.exe process. + - Support for ATI fragment shader. + - Better support for http proxies. + - Window management fixes. + - Pre-compiled fonts are now available in the source tree. + - Lots of bug fixes. + * The old font patches are gone now since they're included + + -- Scott Ritchie Sat, 05 Apr 2008 23:58:26 -0700 + +wine (0.9.58-0ubuntu3) hardy; urgency=low + + * Make Wine Ready for LPIA + + debian/control: + - added to some build-deps the lpia arch where it's + necessary + - added myself to uploaders + + debian/*.lpia: + - copied *.i386 suffixed files to *.lpia suffixed files to install wine + correctly on lpia + + -- Stephan Hermann Fri, 04 Apr 2008 15:57:20 +0200 + +wine (0.9.58-0ubuntu2) hardy; urgency=low + + * add lithuanian glyphs to fonts file. + For reference the patch is in debian/patches/ and will go away with 0.9.59 + + -- Stephan Hermann Wed, 26 Mar 2008 11:26:42 +0100 + +wine (0.9.58-0ubuntu1) hardy; urgency=low + + * New upstream release + - The default version is now Windows XP. + - Many Richedit improvements. + - Beginning of jscript dll support. + - Shell folders now respect XDG directory configuration. + - Many translation updates. + - Lots of bug fixes. + + -- Scott Ritchie Fri, 21 Mar 2008 23:45:25 -0700 + +wine (0.9.57-0ubuntu3) hardy; urgency=low + + * debian/wine-*.desktop: + - fixed some broken utf8 chars in catalan translation in .desktop files + (LP: #199211) + + -- Stephan Hermann Wed, 19 Mar 2008 21:05:35 +0100 + +wine (0.9.57-0ubuntu2) hardy; urgency=low + + * debian/control: + - added libxi-dev and libxinerama-dev to let wine recognize both libs on + i386 + * debian/wine-*.desktop: + - fixed some broken utf8 characters inside .desktop files (LP: #198761) + + + -- Stephan Hermann Wed, 19 Mar 2008 20:41:57 +0100 + +wine (0.9.57-0ubuntu1) hardy; urgency=low + + [Stephan Hermann] + * Add catalanian translation (LP: #199211) + + [Scott Ritchie] + * New upstream release + - Support for multiple OpenGL pixel formats. + - Improved support for color profiles. + - Many window management fixes. + - Better fullscreen support. + - Lots of bug fixes. + * Reverse dlls/winealsa.drv/waveinit.c patch as it is now upstream + * debian/rules: + - Add 64 bit symlink for libcapi20.so, libjack.so, libodbc.so + - Now Wine builds with capi20, jack, and odbc support on amd64 + * debian/control: + - Update the package description text to be clear and simple (LP: #159412) + * fonts/Makefile.in: + - Workaround an incompatible change in fontforge (LP: #199331) + * Add Polish translation to .desktop files (LP: #198761) + - The translation to wine.desktop was sent upstream + + -- Scott Ritchie Fri, 07 Mar 2008 17:43:22 -0800 + +wine (0.9.56-0ubuntu1) hardy; urgency=low + + * New upstream release (LP: #197588) + - Proper handling of OpenGL/Direct3D windows with menu bars. + - Stubs for all the d3dx9_xx dlls. + - Several graphics optimizations. + - Many installer fixes. + - Improved MIME message support. + - Lots of bug fixes. + * debian/rules: + - reset LDFLAGS to let wine not crash anymore, (LP: #191575) + thx to Albert Damen who came up with this solution. + (http://www.winehq.org/pipermail/wine-bugs/2007-July/062505.html) + - adjust dh_strip call (LP: #185513) + * debian/control: + - remove gcc-3.4 build-dep + - get rid of quilt + * cleaned debian/patches + * Add finnish translation to desktop files (LP: #196916) + * dlls/winealsa.drv/waveinit.c: (LP: #195507) + - let wine use the default alsa device + (http://bugs.winehq.org/show_bug.cgi?id=10942) + * Preloader warning (preloader: Warning: failed to reserve range + 00000000-60000000) does not occure anymore (LP: #114025) + + -- Stephan Hermann Fri, 22 Feb 2008 20:10:36 +0100 + +wine (0.9.55-0ubuntu1) hardy; urgency=low + + The "Just before FF" Release + * New upstream release + - Direct3D improvements, including driver version emulation. + - Beginnings of support for OLE objects in Richedit. + - Several fixes to the animation control. + - A bunch of fixes for regression test failures. + - Lots of bug fixes. + + -- Stephan Hermann Wed, 13 Feb 2008 21:00:57 +0100 + +wine (0.9.54-0ubuntu4) hardy; urgency=low + + * debian/rules: + - revert dh_shlibdeps change from 0.9.54-0ubuntu3 + - synced with scotts list of symlinks + - for amd64 arch: (LP: #187222) + + removed dh_shlibdeps because of a broken shlibs handling in ia32-libs + it failes + + instead add shlibs:Depends=* to dh_gencontrol -- -V + * debian/control: + - added unixodbc-dev to b-d (needed for a configure check against libodbc) + + -- Stephan Hermann Wed, 30 Jan 2008 19:35:31 +0100 + +wine (0.9.54-0ubuntu3) hardy; urgency=low + + * debian/rules: + - dh_shlibdeps: add -Xusr/lib32/wine/ to ignore the wine dll dir + + -- Stephan Hermann Mon, 28 Jan 2008 01:42:28 +0100 + +wine (0.9.54-0ubuntu2) hardy; urgency=low + + * debian/rules: + - amd64 specific: + + added symlink for libjpeg (LP: #144419) + + added symlink for libcups (LP: #155665) + + added symlink for libxml2 (LP: #135417) + * debian/control: + - add quilt to build-dep as patch system + * debian/patches/01_ubuntu_fix_libpng_check.patch: + - added patch to fix the libpng check to actually catch libpng12 + * debian/patches/90_ubuntu_update_configure.patch: + - configure patch after "autoconf" run to use the updated libpng12 fix + * debian/wine-*.desktop + - Added Swedish Translation (LP: #152745) + - Added German Translation + + -- Stephan Hermann Sun, 27 Jan 2008 16:35:13 +0100 + +wine (0.9.54-0ubuntu1) hardy; urgency=low + + * New upstream version: + - Photoshop CS/CS2 should now work, please help us testing it. + See http://wiki.winehq.org/AdobePhotoshop for details. + - A number of RPC fixes. + - Various improvements to the debugger support. + - Lots of bug fixes. + + * debian/control: + - get rid of libjpeg-mmx-dev + + -- Stephan Hermann Fri, 25 Jan 2008 19:32:45 +0100 + +wine (0.9.53-0ubuntu1) hardy; urgency=low + + * New upstream version + - RunOnce and Run entries now executed on startup. + - Beginnings of support for emulated disk devices. + - Many Richedit improvements. + - Nicer looking color dialog. + - Lots of bug fixes. + + -- Stephan Hermann Sat, 12 Jan 2008 17:21:50 +0100 + +wine (0.9.52-0ubuntu1) hardy; urgency=low + + [ Stephan Hermann ] + [Scott Ritchie] + * New upstream version + - Improved graphics tablet support. + - Support for RPC context handles. + - Fixes for some longstanding screen depth issues. + - Implementation of "My Network Places" shell folder. + - Lots of bug fixes. + * Use bzip2 compression rather than gzip for deb to save bandwidth + * Use gcc-3.4 to actually fix copy protection + + [Stephan Hermann] + * debian/control: + - Bumped Standards-Version to 3.7.3 + - Changed giflib3g-dev to libgif-dev + + [ Scott Kitterman ] + * debian/control: + - Prefer libgif-dev to libungif4-dev in build-dep to avoid later problem + with fontforge needing libgif which conflicts with libungif4 + + -- Scott Kitterman Sat, 05 Jan 2008 11:55:30 -0500 + +wine (0.9.51-0ubuntu1) hardy; urgency=low + + * New Upstream Release + - Using Scott Ritchies packages from winehq.org + * debian/rules: + - Changed dh_iconcache to dh_icons + - Added dh_desktop because we install some .desktop files + + + -- Stephan Hermann Sat, 22 Dec 2007 14:32:10 +0100 + +wine (0.9.51~winehq0~ubuntu~7.10-1) gutsy; urgency=low + + * New upstream release + - A bunch of WinHelp improvements. + - Better Japanese font support. + - A ton of rpcrt4 fixes. + - Several Alsa capture fixes. + - Improved support for screen resolution changes. + - Lots of bug fixes. + + -- Scott Ritchie Fri, 14 Dec 2007 15:32:11 -0800 + +wine (0.9.50~winehq0~ubuntu~7.10-2) gutsy; urgency=low + + * Use gcc-4.2 instead of default to fix copy protection + + -- Scott Ritchie Tue, 11 Dec 2007 15:18:44 -0800 + +wine (0.9.50~winehq0~ubuntu~7.10-1) gutsy; urgency=low + + * New upstream release + - Completed I/O completion. + - Improved user credentials management, including Mac Keychain support. + - More Valgrinding. + - Lots of bug fixes. + + -- Scott Ritchie Fri, 30 Nov 2007 21:38:43 -0800 + +wine (0.9.46-0ubuntu1) gutsy; urgency=low + + * New upstream release + - A variety of fixes to improve Photoshop CS2 support. + - More complete support for device installation in setupapi. + - New Bidi text implementation that doesn't depend on libicu. + - The usual assortment of Direct3D improvements. + - Beginning of I/O completion ports support. + - Lots of bug fixes. + * Remove libicu36-dev from build depends - Wine no longer uses it + * Remove libgl1-mesa-dev | libgl-dev from build depends - it was a duplicate + * Link to the ssl and crypto libraries on amd64 + * Added all the pretty icons someone sent to the wine mailing list a while ago + * Modified the .desktop files to use the pretty icons + - Also changed the location of some of the tools to more logical places + - And removed some of the unimportant ones + * Added dh_installmime to rules to make the .mime file actually work + * Created a wine.menu file to make the Applications->Wine folder system-wide + + -- Scott Ritchie Fri, 28 Sep 2007 14:47:50 -0700 + +wine (0.9.45-0ubuntu1) gutsy; urgency=low + + * New upstream release + - Better heuristics for making windows managed. + - Automatic detection of timezone parameters. + - Improvements to the builtin WordPad. + - Better signatures support in crypt32. + - Still more gdiplus functions. + - Lots of bug fixes. + * Incorporate the 32 bit building procedure from winehq packages + - This procedure works around the lack of .so links in /usr/lib32 + - Configure requires .so files, so we make temp .so's in a temp folder + * Comment out the --enable-win64 in 64 bit configure + - Support for Win 64 bit binaries is completely broken in Wine at the moment + - 64 mode prevents Wine from working with 32 bit binaries, making it nearly worthless. + * Updated the build depends: + - Added libpng12-dev (Wine now uses it) + - Removed freeglut (Wine now doesn't use it) + - Added many amd64 specific ones for packages that have 32 bit versions + - Added gcc-multilib [amd64] + * Set myself as uploader rather than original maintainer + * Removed libwine and libwine-dev dummy packages + - They were only needed to work around bugs in apt when users had an old libwine-* package + - Feisty users won't have them, so they're no longer needed + - Removed libwine.links and libwine-dev.links as well + * Added the wine.mime file from upstream to handle .exe files + * The 64 bit package should install libraries into /usr/lib32 now + - Removed wine.install, wine-dev.install, wine.dirs + - And then replaced them with wine.install.i386, wine.install.amd64, etc + + -- Scott Ritchie Tue, 18 Sep 2007 21:11:38 -0700 + +wine (0.9.42-0ubuntu1) gutsy; urgency=low + + * New upstream release. (LP: #128980) + * Changes from upstream: + - Support for activation contexts and side-by-side assemblies. + - Many more gdiplus functions. + - More messaging support in crypt32.dll. + - Many HTTP protocol handling fixes. + - Lots of bug fixes. + + -- Arthur Loiret Fri, 27 Jul 2007 18:23:02 +0200 + +wine (0.9.41-0ubuntu2) gutsy; urgency=low + + * debian/rules: ignore dh_strip errors to fix FTBFS in buildds + + -- Arthur Loiret Sun, 15 Jul 2007 06:33:51 +0200 + +wine (0.9.41-0ubuntu1) gutsy; urgency=low + + * New upstream release + * debian/rules: + - Remove comments in binary-arch target + - Fix debian-rules-ignores-make-clean-error + * debian/control: + - Make wine-dev bin-NMU safe + - Add Uploaders field + * Changes from version 0.9.40: + - Many MSHTML improvements. + - A few more sound fixes. + - Many Direct3D fixes. + - Lots of bug fixes. + * Changes from version 0.9.41: + - A number of gdiplus functions. + - More complete pdh.dll implementation. + - Support for MSI remote calls. + - Messaging support in crypt32.dll. + - Lots of bug fixes. + + -- Arthur Loiret Sat, 14 Jul 2007 14:27:25 +0200 + +wine (0.9.39-0ubuntu1) gutsy; urgency=low + + * New upstream release + * Add debian/watch + * Update Standards-Version to 3.7.2 + * Update compat and debhelper version to 5 + * debian/control: + - remove duplicate Depends on libstdc++6 + - Add homepage to extended description + * debian/libwine{,-dev}.links: link /usr/share/doc/libwine{,-dev} to + /usr/share/doc/wine{,-dev} to fix missing debian changelogs. + * Changes from upstream: + - Many MSHTML improvements. + - Several improvements to the sound support. + - A number of Winsock fixes. + - Several new supported constructs in the IDL compiler. + - Many Direct3D threading fixes. + - Lots of bug fixes. + + -- Arthur Loiret Sun, 17 Jun 2007 11:23:24 +0200 + +wine (0.9.38-0ubuntu1) gutsy; urgency=low + + * New Upstream Version + * Changes from Upstream: + - Beginnings of support for copy protected kernel drivers + - More MSI automation support + - Many 64-bit compilation fixes + - A number of OLE fixes + - Lots of bug fixes + + -- Stephan Hermann Sat, 2 Jun 2007 08:41:21 +0000 + +wine (0.9.37-0ubuntu3) gutsy; urgency=low + + * debian/wine.binfmt: + - changed /usr/bin/wine-auto to /usr/bin/wine + + -- Stephan Hermann Fri, 25 May 2007 11:52:01 +0200 + +wine (0.9.37-0ubuntu2) gutsy; urgency=low + + * debian/control: + - Added libstdc++6-4.1-dev to build-dep for easier backports to Ubuntu + releases < Gutsy Gibbon + * Added debian/wineserver-restart-required.update-notifier for notifiying + the user when wine is upgraded + * debian/wine.postinst: + - added rule for package upgrade to copy + usr/share/wine/wineserver-restart-required.update-notifier to + var/lib/update-notifier/user.d/wineserver-restart-required + * debian/rules: + - removed -fno-stack-protector + + (Upstream Fix: http://bugs.winehq.org/show_bug.cgi?id=6035) + + (Ubuntu Closes: LP #56965) + - copied debian/winserver-restart-required.update-notifier to usr/share/wine + + -- Stephan Hermann Fri, 18 May 2007 06:36:52 +0000 + +wine (0.9.37-0ubuntu1) gutsy; urgency=low + + * New Upstream Release + - MSI automation with JScript/VBScript support. + - Various MSHTML improvements. + - The usual assortment of Direct3D fixes. + - Support for a few more exe protection schemes. + - Lots of bug fixes. + + -- Stephan Hermann Sat, 12 May 2007 14:18:53 +0200 + +wine (0.9.36-0ubuntu2) gutsy; urgency=low + + * Removed debian/patches/* completly and updated debian/rules accordingly + Fixes were applied upstream + * Removed dpatch from build-deps + + -- Stephan Hermann Wed, 2 May 2007 10:08:23 +0200 + +wine (0.9.36-0ubuntu1) gutsy; urgency=low + + * New Upstream release + * Merged with winehq package again + * debian/control: + - Changed libstdc++-4.0-dev to libstdc++-4.2-dev + + -- Stephan Hermann Sun, 29 Apr 2007 14:49:53 +0200 + +wine (0.9.36~winehq0~ubuntu~7.04-1) feisty; urgency=low + + * Add missing build depends libesd0-dev libxrandr-dev liblcms1-dev + x11proto-xinerama-dev + * Should fix issues with screen scrolling, color management, multiple + monitors and esd + * Remove one of the duplicate build-depends libxt-dev + * Updated the list of debian split libwine-* packages this replaces + * New upstream release + - Midi support in the CoreAudio driver. + - Mixer support in the Alsa driver. + - A lot of MSI fixes. + - Implementation for most D3DRM functions. + - The usual assortment of Direct3D fixes. + - Lots of bug fixes. + + -- Scott Ritchie Fri, 27 Apr 2007 11:34:05 -0700 + +wine (0.9.35-0ubuntu1) gutsy; urgency=low + + * New Upstream Version + * Added additional xrender.c patch to wine-0.9.35 + (http://www.winehq.org/pipermail/wine-devel/2007-April/055637.html) + + -- Stephan Hermann Sun, 15 Apr 2007 11:30:19 +0200 + +wine (0.9.35~winehq0~ubuntu~6.10-1) edgy; urgency=low + + * New upstream release + - Broken aRts sound driver now removed for good. + - Many fixes to the Quartz DLL sound support. + - File I/O performance improvements. + - The usual assortment of Direct3D fixes. + - Lots of bug fixes. + * Removed no longer needed build-depends: libarts1-dev + + -- Scott Ritchie Fri, 13 Apr 2007 21:54:02 -0700 + +wine (0.9.34-0ubuntu1) feisty; urgency=low + + * New Upstream Release + + -- Stephan Hermann Fri, 6 Apr 2007 14:26:57 +0200 + +wine (0.9.34~winehq0~ubuntu~6.10-1) edgy; urgency=low + + * New upstream release + - Support for Xcursor. + - A range of fixes for various installers. + - New builtin xcopy tool. + - The usual assortment of Direct3D fixes. + - Lots of bug fixes. + + -- Scott Ritchie Fri, 30 Mar 2007 18:43:45 -0700 + +wine (0.9.33-0ubuntu1) feisty; urgency=low + + * New Upstream Release + - Many Direct3D fixes and performance improvements. + - More comctl32 tests and some bug fixes. + - Compatibility improvements in cmd.exe. + - Still more fixes to builtin OLE. + - Support for process control on Solaris. + - Lots of bug fixes. + + -- Stephan Hermann Mon, 19 Mar 2007 19:39:57 +0100 + +wine (0.9.32-0ubuntu1) feisty; urgency=low + + * New Upstream Release + - Remaining Ubuntu Changes: + * debian/wine.mime, debian/rules: stop MIME-based execution, drop + upstream .desktop file. + * debian/wine.prerm, debian/wine.postinst, debian/wine.binfmt, + debian/rules, debian/control: adding execution via binfmt-support + (LP: #85338). + * debian/control: dropped libjpeg-mmx-dev; no longer in archives. + * debian/wine-*.desktop: + - Added desktopfiles (Closes: LP #82776, #82778, #82778, #82779, + #82780, #82781) + * debian/control: + - added | libstdc++6-dev to build deps + * debian/rules: + - copy desktop files to the right position + - added dh_iconcache + + + -- Stephan Hermann Sat, 3 Mar 2007 18:08:28 +0100 + +wine (0.9.32~winehq0~ubuntu~6.10-1) edgy; urgency=low + + * New upstream release + - Many Direct3D fixes and performance improvements. + - Several new features in the builtin cmd.exe. + - Improvements to HTML help support. + - Lots of bug fixes. + + -- Scott Ritchie Fri, 2 Mar 2007 13:51:43 -0800 + +wine (0.9.31-0ubuntu1) feisty; urgency=low + + * New Upstream release + - Remaining Ubuntu Changes: + * debian/wine.mime, debian/rules: stop MIME-based execution, drop + upstream .desktop file. + * debian/wine.prerm, debian/wine.postinst, debian/wine.binfmt, + debian/rules, debian/control: adding execution via binfmt-support + (LP: #85338). + * debian/control: dropped libjpeg-mmx-dev; no longer in archives. + * debian/wine-*.desktop: + - Added desktopfiles (Closes: LP #82776, #82778, #82778, #82779, #82780, + #82781) + * debian/control: + - added | libstdc++6-dev to build deps + * debian/rules: + - copy desktop files to the right position + - added dh_iconcache + + -- Stephan Hermann Wed, 28 Feb 2007 14:08:56 +0100 + +wine (0.9.31~winehq0~ubuntu~6.10-1) edgy; urgency=low + + * New upstream release + - Many Direct3D fixes and performance improvements. + - Several new comctl32 test cases. + - IDL compiler improvements. + - More OLE32 marshalling fixes. + - Lots of bug fixes. + * Removed build depend libxxf86dga-dev, depend libxxf86dga1 + + -- Scott Ritchie Fri, 16 Feb 2007 18:57:10 -0800 + +wine (0.9.30-0ubuntu4) feisty; urgency=low + + * debian/wine.mime, debian/rules: stop MIME-based execution, drop + upstream .desktop file. + * debian/wine.prerm, debian/wine.postinst, debian/wine.binfmt, + debian/rules, debian/control: adding execution via binfmt-support + (LP: #85338). + * debian/control: dropped libjpeg-mmx-dev; no longer in archives. + + -- Kees Cook Fri, 16 Feb 2007 11:17:03 -0800 + +wine (0.9.30-0ubuntu3) feisty; urgency=low + + * debian/wine-*.desktop: + - Added desktopfiles (Closes: LP #82776, #82778, #82778, #82779, #82780, + #82781) + * debian/control: + - added | libstdc++6-dev to build deps + * debian/rules: + - copy desktop files to the right position + - added dh_iconcache + + -- Stephan Hermann Thu, 8 Feb 2007 10:57:25 +0100 + +wine (0.9.30-0ubuntu2) feisty; urgency=low + + * debian/rules: + - Removed dpatch rules + + -- Stephan Hermann Fri, 26 Jan 2007 19:27:06 +0100 + +wine (0.9.30-0ubuntu1) feisty; urgency=low + + * New Upstream release + * What's new in this release: + - Many improvements to Direct3D shaders and state management. + - Support for inter-process memory allocations. + - OLE32 marshalling fixes. + - Lots of bug fixes. + * debian/control: + - Removed dpatch from build-deps + - Removed debian/patches/ directory, because all bugfixes are now in + upstream. + + -- Stephan Hermann Fri, 26 Jan 2007 17:45:43 +0100 + +wine (0.9.29-0ubuntu3) feisty; urgency=low + + * debian/control: introduced dpatch to build-deps + * added 01_ubuntu_mdi_c.dpatch (Closes: LP #81182) + + -- Stephan Hermann Thu, 25 Jan 2007 09:41:25 +0100 + +wine (0.9.29-0ubuntu2) feisty; urgency=low + + * debian/control: + - Added Suggest: xdg-utils (Closed: LP #80849) + + -- Stephan Hermann Tue, 23 Jan 2007 11:33:21 +0100 + +wine (0.9.29-0ubuntu1) feisty; urgency=low + + * New Upstream release + + -- Stephan Hermann Thu, 11 Jan 2007 13:30:36 +0100 + +wine (0.9.29~winehq0~ubuntu~6.10-1) edgy; urgency=low + + * New upstream release + - More work on the new Direct3D state management. + - Debugger support for Mac OS. + - Many OLE fixes and improvements. + - Audio input support on Mac OS. + - Lots of bug fixes. + + -- Scott Ritchie Tue, 9 Jan 2007 21:09:52 -0800 + +wine (0.9.28-0ubuntu1) feisty; urgency=low + + * New Upstream release + + -- Stephan Hermann Mon, 8 Jan 2007 13:33:11 +0100 + +wine (0.9.28~winehq0~ubuntu~6.10-1) edgy; urgency=low + + * New upstream release + - OpenGL in child windows should work again. + - Better mouse support in games. + - Beginnings of new state management in Direct3D. + - Improved audio and font support on Mac OS. + - Lots of bug fixes. + + -- Scott Ritchie Sat, 23 Dec 2006 21:48:25 -0800 + +wine (0.9.27-0ubuntu1) feisty; urgency=low + + * New Upstream Release + + -- Stephan Hermann Wed, 13 Dec 2006 13:30:08 +0100 + +wine (0.9.27~winehq0~ubuntu~6.10-1) edgy; urgency=low + + * New upstream release + - Better support for noexec kernels. + - Better Dwarf support in dbghelp. + - Several Winsock fixes. + - Various code cleanups. + - Lots of bug fixes. + + -- Scott Ritchie Sat, 9 Dec 2006 16:32:53 -0800 + +wine (0.9.26-0ubuntu1) feisty; urgency=low + + * New Upstream Release + + -- Stephan Hermann Thu, 30 Nov 2006 11:01:59 +0100 + + +wine (0.9.26~winehq0~ubuntu~6.10-1) edgy; urgency=low + + * New upstream release + - Better support for Unix locale settings. + - Improved X11 keyboard support. + - Various MSI fixes. + - Winecfg improvements. + - Lots of bug fixes. + + -- Scott Ritchie Mon, 27 Nov 2006 23:25:44 -0800 + +wine (0.9.25-0ubuntu1) feisty; urgency=low + + * New Upstream release + * debian/control: + - Changed build-deps + + linux-kernel-headers => linux-libc-dev + + libfontconfig-dev => libfontconfig1-dev + + -- Stephan Hermann Fri, 24 Nov 2006 10:05:00 +0100 + +wine (0.9.25~winehq0~ubuntu~6.10-1) edgy; urgency=low + + * New upstream release + - Many more fixes for installer support. + - Many MSHTML improvements. + - Support for NTLMv2. + - RPC over TCP improvements. + - Lots of bug fixes. + + -- Scott Ritchie Sat, 11 Nov 2006 17:33:14 -0800 + +wine (0.9.24~winehq0~ubuntu~6.10-1) edgy; urgency=low + + * New upstream release + - Support for multiple monitors using Xinerama. + - Various MSI fixes and improvements. + - A ton of memory leaks fixed. + - Many common controls fixes. + - Lots of bug fixes. + + -- Scott Ritchie Sun, 29 Oct 2006 17:12:35 -0800 + +wine (0.9.22-0ubuntu4) feisty; urgency=low + + * Rebuild for ldbl128 change on powerpc and sparc. + + -- Matthias Klose Thu, 2 Nov 2006 10:27:26 +0000 + + +wine (0.9.22-0ubuntu3) edgy; urgency=low + + * Re-apply dropped change from dapper: (Closes: Ubuntu #63492) + + Remove insecure mailcap entries; MS Windows '.exe' files should be run + using 'binfmt-misc' support instead. (Closes: Ubuntu #24829) + + -- Paul Sladen Fri, 13 Oct 2006 02:15:26 +0100 + +wine (0.9.22-0ubuntu2) edgy; urgency=low + + * Fixed diff.gz + + -- Stephan Hermann Wed, 11 Oct 2006 14:03:46 +0200 + +wine (0.9.22-0ubuntu1) edgy; urgency=low + + * New Upstream Release + - The usual assortment of MSI improvements. + - Several bug fixes to the various common controls. + - Pixel shaders enabled by default in D3D. + - Various improvements to the build process. + - Many translation updates. + - Lots of bug fixes. + + Thx Scott Ritchie + * debian/control: + - added build-deps libhal-dev, libhal-storage-dev, libgphoto2-2-dev + + -- Stephan Hermann Fri, 6 Oct 2006 15:49:27 +0200 + +wine (0.9.21-0ubuntu1) edgy; urgency=low + + * New upstream version + * Changelog from Upstream: + - OpenGL restructurations. + - The usual assortment of MSI improvements. + - Several Richedit fixes. + - WCMD Winelib app renamed to CMD for compatibility. + - Many improvements to the Wintrust DLL. + - Some code cleanups. + - Lots of bug fixes. + + -- Stephan Hermann Thu, 14 Sep 2006 14:39:06 +0200 + +wine (0.9.20-0ubuntu3) edgy; urgency=low + + * debian/rules: changed x86_64 to amd64 to provide amd64 packages + + -- Stephan Hermann Tue, 12 Sep 2006 12:42:46 +0200 + +wine (0.9.20-0ubuntu2) edgy; urgency=low + + * debian/rules: changed ARCH = $(DEB_BUILD_ARCH) to + ARCH += $(DEB_BUILD_ARCH) (trying to fix amd64 build) + + -- Stephan Hermann Mon, 11 Sep 2006 15:20:47 +0200 + +wine (0.9.20-0ubuntu1) edgy; urgency=low + + * New WineHQ Release + * debian/rules: + - added to CFLAGS -fno-stack-protector + - added some code to build wine on x86_64 archs + * debian/control: + - Removed libjack0.80.0-dev from build-deps + + -- Stephan Hermann Wed, 30 Aug 2006 12:47:41 +0200 + +wine (0.9.20~winehq0~ubuntu~6.06-1) unstable; urgency=low + + * New upstream release + - XEmbed system tray support. + - Many improvements to NTLM support. + - Many messages made localizable instead of hardcoded to English. + - Improved support for various OpenGL platforms. + - More improvements to the IDL compiler. + - Lots of bug fixes. + + -- Scott Ritchie Thu, 24 Aug 2006 16:06:35 -0700 + +wine (0.9.19~winehq0~ubuntu~6.06-2) unstable; urgency=low + + * Added my own patch to make Full Tilt Poker work + + -- Scott Ritchie Fri, 11 Aug 2006 00:19:57 -0700 +wine (0.9.19-0ubuntu3) edgy; urgency=low + + * debian/rules: Added -fno-stack-protector to CFLAGS to fix segmentation + faults (Closes: lp #56965) + + -- Stephan Hermann Wed, 23 Aug 2006 13:15:31 +0200 + +wine (0.9.19-0ubuntu2) edgy; urgency=low + + * debian/rules: Fix rules file to determina $DEB_BUILD_ARCH and build wine + for 64bit + + -- Stephan Hermann Sun, 20 Aug 2006 10:19:05 +0200 + +wine (0.9.19-0ubuntu1) edgy; urgency=low + + * New upstream version + * debian/control: + - Removed libicu28-dev,libjack0.80.0-dev from build-dep + + -- Stephan Hermann Sat, 19 Aug 2006 23:14:28 +0200 + +wine (0.9.19~winehq0~ubuntu~6.06-1) unstable; urgency=low + + * New upstream release + - Support for a proper Trash folder. + - Many improvements to the IDL compiler. + - Better FreeBSD support. + - A number of MSI bug fixes. + - Many RichEdit improvements. + + -- Scott Ritchie Thu, 10 Aug 2006 23:20:48 -0700 + +wine (0.9.18~winehq0~ubuntu~6.06-1) unstable; urgency=low + + * New upstream release + - Still more work on Direct3D. + - A lot of MSI bug fixes and improvements. + - More compatible memory management. + - Several fixes for Win64 support. + - Some performance improvements. + + -- Scott Ritchie Sat, 29 Jul 2006 20:34:02 -0700 + +wine (0.9.17~winehq0~ubuntu~6.06-1) unstable; urgency=low + + * New upstream release + - Still more work on Direct3D shaders. + - Now using the Gecko engine directly for MSHTML. + - Better support for apps switching to full screen mode. + - Support for multiple joysticks. + + -- Scott Ritchie Wed, 12 Jul 2006 21:36:19 -0700 + +wine (0.9.16~winehq0~ubuntu~6.06-1) unstable; urgency=low + + * New upstream release + - More work on Direct3D shaders. + - Major DirectDraw rewrite on top of Direct3D. + - Support for debug information in Dwarf format. + - Beginnings of an OleView Winelib application. + - Lots of bug fixes. + + -- Scott Ritchie Thu, 22 Jun 2006 00:44:54 -0700 + +wine (0.9.15~winehq0~ubuntu~6.06-1) unstable; urgency=low + + * New upstream release + - More MS/RPC improvements. + - Core Audio driver for Mac OS X. + - More complete DNSAPI dll. + - Improvements to Web browser support. + - Lots of bug fixes. + + -- Scott Ritchie Thu, 8 Jun 2006 16:30:06 -0700 + +wine (0.9.14~winehq1~ubuntu~6.06-1) unstable; urgency=low + + * New upstream release + - Better MS/RPC compatibility. + - Many fixes to Direct3D shaders. + - Several improvements to the header control. + - Lots of bug fixes. + * Added libgl-dev, libicu-dev, libjack-dev, freeglut-dev virtual packages as + options in build-depends + * Added ${shlibs:Depends} to depends + + -- Scott Ritchie Sun, 28 May 2006 21:26:30 -0700 + +wine (0.9.13~winehq1~ubuntu~6.06-1) unstable; urgency=low + + * New upstream release + - New GPhoto backend for TWAIN. + - Dynamic drive configuration using HAL. + - A gazillion Direct3D fixes. + - New TCP transport for RPC. + - Lots of bug fixes. + + -- Scott Ritchie Sat, 13 May 2006 02:16:47 -0700 + +wine (0.9.12~winehq2~ubuntu~6.06-1) unstable; urgency=low + + * Changed libicu28-dev to libicu34-dev + * Package is now separate from the Breezy version + * This is the first package to enter the winehq dapper repo + + -- Scott Ritchie Thu, 4 May 2006 01:04:44 -0700 + +wine (0.9.12~winehq1-1) unstable; urgency=low + + * New upstream release + - New Winelib Internet Explorer application (all 5 lines of it). + - Several improvements to the font support. + - More work on the IDL compiler. + - Faster drawing of the cards in Solitaire (very important feature). + - A number of fixes for issues found by the Coverity code cheker. + + -- Scott Ritchie Mon, 17 Apr 2006 01:17:15 -0700 + +wine (0.9.11~winehq1-1) unstable; urgency=low + + * New upstream release + - Fake dll files created in the system directory to help installers. + - Desktop mode now properly supports multiple processes. + - Better type parsing in dbghelp. + - Several OpenGL fixes. + - A bunch of Unicode functions in advpack. + - Lots of bug fixes. + + -- Scott Ritchie Fri, 31 Mar 2006 15:18:06 -0800 + +wine (0.9.10~winehq1-2) unstable; urgency=low + + * Added new build depends, libglut3-dev | freeglut3-dev + + -- Scott Ritchie Mon, 20 Mar 2006 10:15:13 -0800 + +wine (0.9.10~winehq1-1) unstable; urgency=low + + * New upstream release + - Improved ESD audio driver. + - More Web browser improvements in mshtml and wininet. + - Direct3D fixes and preparation for ddraw code migration. + - Explorer process now managing the desktop window. + - Lots of bug fixes. + * New naming scheme uses ~winehq1 at end of version name. This should make Dapper packages replace. + + -- Scott Ritchie Wed, 15 Mar 2006 23:04:54 -0800 + +wine (0.9.9-winehq-2) unstable; urgency=low + + * Adjusted build depends to make compatible with Dapper by allowing different packages + - libjack0.80.0-dev | libjack0.100.0-dev + - libicu28-dev | libicu34-dev + * Next release will use newer version numbering system to make Dapper have higher numbers (-00winehq) + + -- Scott Ritchie Sun, 12 Mar 2006 12:41:39 -0800 + +wine (0.9.9-winehq-1) unstable; urgency=low + + * New upstream release + - Many new features and improvements in Richedit. + - More Web browser support. + - Recursive directory change notifications. + - Wine installation is now fully relocatable. + - Direct3D 8 and 9 now use the same code. + - Many debugger improvements. + - Systray is now handled by the explorer process. + - Lots of bug fixes. + + -- Scott Ritchie Fri, 3 Mar 2006 18:05:17 -0800 + +wine (0.9.8-winehq-1) unstable; urgency=low + + * New upstream release + - Better Web browser support. + - Beginnings of a Wordpad application. + - Many richedit improvements. + - A number of Direct3D fixes. + - A few more options in winecfg. + - Lots of bug fixes. + + -- Scott Ritchie Wed, 15 Feb 2006 21:45:23 -0800 + +wine (0.9.7-winehq-1) unstable; urgency=low + + * New upstream release + - Directory change notifications can use inotify now. + - Hardware breakpoints in the Wine debugger. + - Beginnings of support for tape APIs. + - A bunch of improvements to the IDL compiler. + - Better scheme for mapping My Documents etc. to Unix directories. + - Lots of bug fixes. + * The BUGS textfile is gone, and is now removed from the docs file + -- Scott Ritchie Thu, 2 Feb 2006 18:01:46 -0800 + +wine (0.9.6-winehq-1) unstable; urgency=high + + * New upstream release + - A bunch of OLE fixes and improvements. + - DirectSound improvements, including full duplex support. + - Fix for the Windows metafile vulnerability. + - Many static control improvements. + - Some fixes for copy protection support. + - Lots of bug fixes. + * Package now replaces libwine-gl properly + -- Scott Ritchie Thu, 19 Jan 2006 22:01:04 -0800 + +wine (0.9.5-winehq-1) unstable; urgency=low + + * New upstream release + - A number of MSI fixes. + - More improvements to the IDL compiler. + - Lots of bug fixes. + -- Scott Ritchie Wed, 4 Jan 2006 08:34:21 -0800 + +wine (0.9.4-winehq-1) unstable; urgency=low + + * New upstream release + - Improvements to the IDL compiler. + - Some infrastructure work for loadable driver support. + - The usual assortment of Direct3D improvements. + - IME support in the edit control. + - Better support for AVI animations. + - Debugging support improvements. + - Relay traces now work on NX platforms. + + -- Scott Ritchie Thu, 29 Dec 2005 18:44:00 -0800 + +wine (0.9.3-winehq-1) unstable; urgency=low + + * New upstream release + - Many marshalling fixes in rpcrt4. + - Various OLE improvements and fixes. + - Better audio driver management in winecfg. + - Many wininet fixes. + - Several Web browser improvements. + - More dbghelp APIs implemented. + - Directory objects in wineserver. + - Lots of bug fixes. + * Add new build depends: prelink, libsane-dev, libsane-extras-dev. + * Remove build-dependency valgrind. Doesn't have any use in a binary package. + * The above two should make some things faster and scanners work. + + -- Scott Ritchie Thu, 8 Dec 2005 21:49:54 -0800 + +wine (0.9.2-winehq-1) unstable; urgency=low + + * New upstream release + - Winelib Explorer app (just a wrapper around winefile for now). + - Debugger cleanups and improvements. + - Many wininet fixes. + - Better autogenerated API manpages. + - A bunch of Korean translations. + - Lots of bug fixes. + * Added missing build depends: libxt-dev + + -- Scott Ritchie Mon, 28 Nov 2005 18:10:51 -0800 + +wine (0.9.1-winehq-3) unstable; urgency=low + + * Added a dependency on libxxf86dga1, since it is now required. + In the future, I may make a Wine package without X at all, but + when X is compiled in we need to have it as a dependency here. + + -- Scott Ritchie Sat, 12 Nov 2005 11:52:17 -0800 + +wine (0.9.1-winehq-2) unstable; urgency=low + + * Added some missing build-depends: libldap2-dev, libxml2-dev, + libxslt1-dev, valgrind, libxxf86vm-dev, libxxf86dga-dev + * Replaced build dependency mesa-common-dev with the package that + replaces it, libgl1-mesa-dev + -- Scott Ritchie Thu, 10 Nov 2005 23:02:55 -0800 + +wine (0.9.1-winehq-1) unstable; urgency=low + + * New upstream release + - Support for Find function in regedit. + - Winelib app to eject a CD. + - Many MSI improvements. + - Better support for running text-mode apps without X. + - Improved support for various code obfuscation tools. + + -- Scott Ritchie Thu, 10 Nov 2005 12:52:27 -0800 + +wine (0.9.0-winehq-2) unstable; urgency=low + + * Wine now depends on libstc++6 + * Added missing build-depend libstdc++6-4.0-dev + * Since Mono no longer attempts to use Wine, libwine-cil is added to + conflicts and replaces section like the other legacy libwine-* packages + * xwine is also added to the replaces and conflicts section, since it + does nothing just like winesetuptk. + + -- Scott Ritchie Tue, 1 Nov 2005 15:04:32 -0800 + +wine (0.9.0-winehq-1) unstable; urgency=low + + * MASSIVE New upstream release + - This is Wine's first beta release, meaning things + are going to be a lot more stable, and further + regressions in numbered versions shouldn't happen. + - Too many changes to list. + + -- Scott Ritchie Tue, 25 Oct 2005 12:14:34 -0700 + +wine (0.0.20050725-winehq-1) unstable; urgency=low + + * Actually two new upstream releases in this one - I skipped the last due to + all the config file weirdness. + * New upstream release (older one): + - Configuration settings moved to the registry. + - Graphical Wine configuration tool is now enabled. + - More MSI and OLE improvements. + - Reorganisation of the DirectDraw directory. + - Initial support for webcams. + - Lots of bug fixes. + * New upstream release (newer one): + - Beginnings of theme support in common controls. + - Many MSHTML improvements. + - A bunch of OLE fixes for InstallShield installers. + - Many Direct3D fixes and improvements. + - Beginnings of LDAP support. + - Various cleanups after removal of the config file. + - Lots of bug fixes. + + -- Scott Ritchie Thu, 28 Jul 2005 11:58:28 -0700 + +wine (0.0.20050524-winehq-1) unstable; urgency=low + + * New upstream release + - Many MSI improvements. + - More features in the file manager. + - Better compatibility for Winelib import libraries. + - SGML documentation moved out of the source tree. + - Header files cleanups. + - Lots of bug fixes. + * Documentation files have been moved into a seperate package due to upstream + changes + + -- Scott Ritchie Tue, 31 May 2005 20:09:53 -0700 + +wine (0.0.20050419-winehq-1) unstable; urgency=low + + * New upstream release + - Mailslot support. + - Support for side mouse buttons (X buttons). + - More Richedit improvements. + - Loading of Windows registry files disabled for now. + - Many code cleanups. + - Lots of bug fixes. + * Now use winehq version numbering (-winehq) to not create weirdness with + other packages at same version number + + -- Scott Ritchie Sun, 8 May 2005 15:21:46 -0700 + +wine (0.0.20050310-1) unstable; urgency=low + + * New upstream release + - Initial implementation of a true Richedit control. + - Shell extension for browsing Unix directories. + - More MSI work. + - PBuffer support in OpenGL. + - Window painting regressions should be fixed. + - Lots of bug fixes + + -- Scott Ritchie Fri, 11 Mar 2005 00:11:06 -0800 + +wine (0.0.20050211-1) unstable; urgency=low + + * New upstream release + - Still more work on the MSI dll. + - More OLE work, including a builtin stdole32.tlb. + - Fixed inter-process window resize and repaint. + - Lots of bug fixes. + * Changed dummy packages to architecture "all", set rules file's + dh_installchangelog to only do architecture dependant ones. This should + keep the changelog out of the dummy packages, making them a good meg smaller + * Added MIME types application/x-msdownload, application/exe, + application/x-exe, application/dos-exe, vms/exe, application/x-winexe, + application/msdos-windows, application/x-msdos-program, + and application/x-zip-compressed + + -- Scott Ritchie Fri, 11 Feb 2005 23:19:14 -0800 + +wine (0.0.20050111-1) unstable; urgency=low + + * New upstream release + - Many OLE bug fixes and improvements. + - A lot more work on the MSI dll. + - Update regions now handled in the Wine server. + - Beginnings of typelib generation in the IDL compiler. + - Many janitorial cleanups. + - Lots of bug fixes. + + -- Scott Ritchie Tue, 11 Jan 2005 12:32:08 -0800 + +wine (0.0.20041201-1) unstable; urgency=high + + * New maintainer Scott Ritchie + * New Upstream release 20041201 + -Many changes since last package, most notably setup is much simpler and no + longer requires special tools or configuration files. + * Removed deprecated winesetuptk and wine-utils. + * Removed deprecated libwine-* packages, which are now merged into wine. + -Wine's binaries were required for running winelib compiled packages anyway + * Changed libwine-dev to wine-dev, all proper development files should now + be there (everything from /usr/include and the library symlinks). + * Merged libwine into wine upon advice from upstream authors, as all binaries + in wine were required by winelib compiled packages anyway. This package + should now replace everything wine related that is older. + * Added dummy packages libwine (which depends on wine) and libwine-dev (which + depends on wine-dev) in order to ease upgrade from older versions. + * Removed old Debian hacks into the source code - the source code should be + the standard winehq.org source now. + * Changed the package format to a more standard one - as wine was changed + upstream to be built more consistantly now, and a separate wine-docs package + is no longer needed. + -Wine docs such as the user guide are now in /usr/share/doc/wine along with + the rest of the documentation. + -Wine development docs such as the winelib user guide are now in + /usr/share/doc/wine-dev + * Updated build depends due to upstream changes + * Upstream wineprefixcreate program now removes the need for the package + maintainer to create special directories and configuration + * Many old bugs should be gone due to above changes + * Upgraded to new standards version of Debian Policy (also removing manual + prompting code that took place in preinstall script.) + + -- Scott Ritchie Mon, 22 Nov 2004 20:30:57 -0800 + +wine (0.0.20040716-1.3) unstable; urgency=high + + * NMU. + * Build against changed libcapi20 API. + + -- Matthias Klose Wed, 10 Nov 2004 19:21:13 +0100 + +wine (0.0.20040716-1.2) unstable; urgency=low + + * NMU. + * Change libcapi20 build dependency to libcapi20-dev. + + -- Matthias Klose Sat, 4 Sep 2004 10:16:31 +0200 + +wine (0.0.20040716-1.1) unstable; urgency=high + + * NMU. + * Fix libcapi build dependency (closes: #267536). + + -- Matthias Klose Sat, 28 Aug 2004 02:04:55 +0200 + +wine (0.0.20040716-1) unstable; urgency=low + + * New upstream release 20040716 (closes: #261547) + - Implementation of the Microsoft Installer dll. + - Beginnings of proper inter-process window repaints. + - Several DirectSound improvements. + - Fixes for the regressions caused by the new filesystem support. + - Lots of bug fixes. + * Applied winelauncher patch from Kevin Shanahan which allows + each $WINEPREFIX to have its own flag files to disable + prelaunch and debug windows. + * Remove binfmt-support-specific doubledash hack from winelauncher, + it's apparently no longer needed (nor does it work anymore). + Closes: #261855. + * Added Turkish debconf translation. Closes: #252942. + + -- Ove Kaaven Sat, 14 Aug 2004 17:11:52 +0200 + +wine (0.0.20040615-1) unstable; urgency=low + + * New upstream release 20040615 + - Major winedbg rewrite using the dbghelp dll. + - New Wine preloader to reserve memory areas at startup. + - Many improvements to the audio support. + - Lots of bug fixes. + * Acknowledge NMU (closes: #251107), which although imperfectly + executed, was well meant. + * Install wine-preloader into libwine. + * Add GLUT to build dependencies. Closes: #253715. + * Remove mention of unmaintained daily CVS builds from README.Debian. + Closes: #252370. + * Mention wineprefixcreate in README.Debian. + * Change default winebrowser registry key to "sensible-browser" instead + of a hardcoded list of common browsers. Closes: #249583. + This may not change existing installations, it may be necessary for + you to change the registry entry yourself on existing installations. + I've mentioned how to do this in README.Debian. + (It may be possible to make winebrowser ignore the registry entry + entirely and hardcode it to always use sensible-browser, but I + am not sure if that's a good idea.) + + -- Ove Kaaven Thu, 17 Jun 2004 08:22:56 +0200 + +wine (0.0.20040505-2) unstable; urgency=low + + * NMU. + * Rebuild against libcupsys2-gnutls10 (fixed: Bug#251107) + + -- Kenshi Muto Sun, 13 Jun 2004 03:45:00 +0000 + +wine (0.0.20040505-1) unstable; urgency=low + + * New upstream release 20040505 (Closes: #248554) + - Many more filesystem improvements, including autodetection + of drive types and devices, and support for editing the drive + configuration with winecfg. + - Many Direct3D improvements. + - Several fixes to the various sound drivers. + - Lots of bug fixes. + + -- Ove Kaaven Wed, 12 May 2004 02:04:29 +0200 + +wine (0.0.20040408-1) unstable; urgency=low + + * New upstream release 20040408 (Closes: #245679) + - DOS devices and drives are now configured through symlinks. + - Many shell32 improvements. + - New task manager merged from ReactOS. + - First version of wineprefixcreate tool for initial setup. + - Lots of bug fixes. + * Redirect errors from final "kill" command in winelauncher to + /dev/null, since any failures there should be harmless. + Closes: #238065. + * Install taskmgr into wine-utils. + * Set ICUUC_LIB and ICUDATA_LIB variables for configure, + needed to compile this Wine release against the old ICU + version in Debian, as instructed by Shachar Shemesh. + * Adapted skeleton wine configuration in /usr/share/wine/skel + to contain DOS device and drive symlinks. For existing + installs, it seems wine will convert the old config to the + new symlink-based scheme automatically, for a limited + transition period. But I thought it best to update the + packaging now anyway, to make sure I got it right before + it's too late. + * Install wineprefixcreate into wine. This seems to be + an alternative to copying /usr/share/wine/skel into ~/.wine. + * Added Danish debconf translation. Closes: #234064. + + -- Ove Kaaven Tue, 20 Apr 2004 15:14:11 +0200 + +wine (0.0.20040309-1) unstable; urgency=low + + * New upstream release 20040309 + - Much improved winegcc tool, now used to build Wine itself. + - VxDs are now separate libraries for better modularity. + - Improvements and simplifications to the drive configuration. + - New setupapi INF script to create the initial registry. + - Many improvements to the various multimedia dlls. + - Lots of bug fixes. + * Moved skeleton wine configuration from /usr/share/wine to + /usr/share/wine/skel. Updated README.Debian to reflect this. + * Install patched tools/wineinstall into /usr/share/wine. + If the script happens to work, it might be better to use it + than copying the /usr/share/wine/skel into ~/.wine, since + it would also be able to upgrade an old installation, and + has more tweaks, but I haven't tested this script much lately. + * Moved wineconf from /usr/lib/wine to /usr/share/wine. + * Install generic.ppd and wine.inf in /usr/share/wine. + * There's no longer a winedefault.reg. Everything is handled by + wine.inf. Added explanation on how to use wine.inf to + README.Debian. + * Create program symlinks manually in debian/rules instead of + using dh_link, since these symlinks must be absolute, otherwise + they won't work when "cp -r"-ed into ~/.wine. Closes: #235406. + * Try to make winelauncher look for an existing config file + in $WINEPREFIX (before complaining that you have to run + winesetup). Closes: #235405. + * There's now a man page for widl. + * There's now a man page for winebuild. Closes: #114673. + * Update libwine-* package list in README.Debian. + + -- Ove Kaaven Wed, 10 Mar 2004 22:10:06 +0100 + +wine (0.0.20040213-1) unstable; urgency=low + + * New upstream release 20040213 + - Improved support for screen resolution changes. + - More shell32 improvements. + - Several Winelib compatibility fixes. + - Beginnings of support for typelib creation. + - Lots of bug fixes. + * Moved wine.bin, wine-[kp]thread and wineserver from wine to libwine, + since these are going to be needed for Winelib programs too. + * Added winebrowser and expand to the wine package. + * Added libfontconfig1-dev, libssl-dev, and libcapi20-2 to + Build-Depends. + * Added new package libwine-capi to contain the capi20 module. + + -- Ove Kaaven Tue, 24 Feb 2004 14:09:34 +0100 + +wine (0.0.20040121-2) unstable; urgency=high + + * Urgency high since this should hit testing as + soon as possible (both to help jack migration, and + to supersede the currently NPTL-incompatible version + in testing). + * Fixed debian/rules to also make libwine-jack depend + on libjack0.80.0-0. Sorry for the mistake. + * Put dlls/twain/README into the libwine-twain package. + Closes: #224941. + + -- Ove Kaaven Tue, 27 Jan 2004 18:46:48 +0100 + +wine (0.0.20040121-1) unstable; urgency=low + + * New upstream release 20040121 + - Many improvements in the shell32 dll. + - Better support for constructors in C++ Winelib apps. + - Improved Regedit tool. + - Full support for graphic tablets. + - Lots of DirectMusic improvements. + - Better support for video playback. + - Full IME support for Asian locales. + - Lots of bug fixes. + * The exec shield workaround was also disabled again upstream + "because it caused too much trouble". Perhaps #224837 was + some of that trouble. Need verification. + * Build-Depend on libjack0.80.0-dev instead of libjack0.71.2-dev. + Closes: #228786. + + -- Ove Kaaven Thu, 22 Jan 2004 05:08:49 +0100 + +wine (0.0.20031212-1) unstable; urgency=low + + * New upstream release 20031212 + - Initial implementation of XDND drag&drop support. + - Improved startup performance on remote displays. + - Major improvements in the oleaut32 dll. + - Some support for Netbios functions. + - Work around for Exec Shield and prelinking troubles. + - Many code cleanups. + - Lots of bug fixes. + * It seems regapi is no more, have to remove it from the + packages. (A man page for it is not needed anymore then, + which closes #83261) + * The tool regedit supersedes it, so I'm using that now to + build the skeleton configuration in /usr/share/wine. I + patched regedit to accept input from stdin if a filename + of "-" is given, so input can still be zcat-ed to it. + * Updated README.Debian for regedit instead of regapi, and + mention that regedit is in wine-utils (still). + + -- Ove Kaaven Sat, 20 Dec 2003 05:41:29 +0100 + +wine (0.0.20031118-1) unstable; urgency=low + + * New upstream release 20031118 (closes: #211906) + - Many printing improvements. + - Run-time detection of NPTL threading. (closes: #218476) + - Lots of code merges from Crossover Office 2.1. + - Some reorganization of the source tree. + - Lots of bug fixes. + * Install wine.bin-kthread and wine.bin-pthread binaries into + /usr/bin to allow the threading autoselection to work. + * The DNS lookup issues is also claimed to have been fixed now, + probably because of the NPTL detection. Closes: #214252. + * Added winecpp to libwine-dev. + + -- Ove Kaaven Wed, 17 Dec 2003 03:14:12 +0100 + +wine (0.0.20031016-1) unstable; urgency=low + + * New upstream release 20031016 + - Support for the Xrandr extension. + - Dll separation of kernel and ntdll is finished. + - Many enhanced metafile improvements. + - Lots of bug fixes. + * DocBook DSSSL stylesheets are apparently no longer included in the + upstream source. However, they have one available separately + (in the "tools" module of CVS), so I put it into the debian/ + directory and let the debian/rules file generate the documentation + itself (without using upstream makefile) using that stylesheet. + I also chose to continue to build each book as many small HTML + files instead of as one big HTML file, since that's the "tried and + true" way, or something. + * Some old plaintext documentation has also been removed upstream, + they've been removed from the packaging too. + * Added HURD and FreeBSD to architecture fields, as requested. + Closes: #222227. + + -- Ove Kaaven Sun, 30 Nov 2003 17:36:44 +0100 + +wine (0.0.20030911-1) unstable; urgency=low + + * New upstream release 20030911 + - Many improvements to the winecfg configuration tool. + - Massive header files cleanup for better source compatibility. + - Some more progress on the kernel/ntdll separation. + - Lots of bug fixes. + (Yes, newer upstream releases exist, I plan to upload each of + them with a few days in between to allow them to be archived + on snapshot.debian.net) + * Install rpcss, rundll32, start, winemenubuilder into libwine. + * Install *.def files into libwine-dev. + * Build-depend on libicu-dev, so that support for non-Western + languages gets compiled in. Suggest libicu21c102 for libwine. + * Added missing "]" in winedefault.reg. Closes: #218612. + * Fixed doc-base (it apparently got broken after the wine-doc + changes). Closes: #215393. + * Fixed dash compatibility of winelauncher. Closes: #219624. + * Noted that daily builds haven't been working lately + in README.Debian. Closes: #213729. + * Tried to fix configure to detect current freetype. + * Started rewriting the build system a little bit to make it + possible to make winelauncher configure Wine automatically + without winesetup's help. This is not finished yet, though, + and since I'm far behind on Wine releases now, I think I'll + do it later. Still, I did get around to po-debconfify the + still unused debconf templates (closes: #203286), and put + a skeleton per-user no-Windows configuration into + /usr/share/wine that it's possible to copy into ~/.wine for + those who want to do so. + * Updated README.Debian to reflect (some of) the above. + * /var/lib/wine/drivec is no longer in the package. + + -- Ove Kaaven Fri, 28 Nov 2003 13:28:20 +0100 + +wine (0.0.20030813-2) unstable; urgency=low + + * Pthread changes in current glibc CVS caused Wine to not work. + This has to be fixed both Wine-side and glibc-side. This upload + fixes it on the Wine side by applying a patch from WineHQ CVS + for this. Closes: #210300. + (The glibc side is bug #210347, which must also be fixed before + Wine runs again, sorry.) + + -- Ove Kaaven Thu, 11 Sep 2003 14:16:33 +0200 + +wine (0.0.20030813-1) unstable; urgency=low + + * New upstream release 20030813 + - Partial implementation of the Microsoft Installer (msi.dll). + - GUI for regedit (from ReactOS). + - DirectMusic dlls reorganization. + - Many Wininet improvements. + - Lots of bug fixes. + + -- Ove Kaaven Wed, 20 Aug 2003 19:29:44 +0200 + +wine (0.0.20030709-3) unstable; urgency=low + + * Place winspool.drv into libwine, not libwine-print, so that programs + that link to it don't need libwine-print. Closes: #202050. + * Remove stale libwine.so and libwine_unicode.so symlinks + in preinst. Closes: #202116. + * Build-depend on libjack0.71.2-dev instead of libjack0.50.0-dev. + I am not sure that this jack version will work with Wine, but since + 0.50.0 is apparently no longer in unstable, I guess I have no choice. + Closes: #202237. + * Changed wine-doc build rules a bit to be more in line with upstream + documentation layout. This will change the directory layout in the + wine-doc package, you may have to adjust your bookmarks. Closes: #202310. + * Added winecfg program to wine-utils. + * Updated Standards-Version to 3.6.0, rearranged debian/rules file + a bit to have a separate binary-indep rule for building wine-doc. + * Corrected sections in control file (finally). + + -- Ove Kaaven Mon, 21 Jul 2003 16:18:16 +0200 + +wine (0.0.20030709-2) unstable; urgency=low + + * Fixed shlibs so we don't depend on nvidia-glx. Closes: #201257, #201300. + * Found out that wine was never ported to alpha after all (the alpha + references in the win32 headers must be from NT or something, there's + apparently no actual code in Wine for alpha), so I removed that again. + Now only i386, powerpc, and sparc remain. + + -- Ove Kaaven Tue, 15 Jul 2003 10:05:32 +0200 + +wine (0.0.20030709-1) unstable; urgency=low + + * New upstream release 20030709 + - Still more Direct3D and DirectSound improvements. + - Inter-process clipboard support. + - Locale handling improvements. + - More progress on the kernel/ntdll separation. + - Lots of bug fixes. + * Added powerpc, sparc, and alpha to architectures, let's see + if the packages actually build on those... + + -- Ove Kaaven Mon, 14 Jul 2003 15:13:27 +0200 + +wine (0.0.20030618-1) unstable; urgency=low + + * New upstream release 20030618 (closes: #198646) + - Still more Direct3D and DirectSound improvements. + - Tons of fixes merged from Crossover Office 2.0. + - New iphlpapi dll. + - Lots of bug fixes. + * There's supposed to be a fix for Lotus Notes in this release. + Closes: #196156, #196938. + * Build-depend on libartsc0-dev (yeah, finally someone told me). + Closes: #197255. + * Build-depend on libjpeg62-dev | libjpeg-dev instead of just + libjpeg-dev. Closes: #196136. + + -- Ove Kaaven Tue, 24 Jun 2003 21:52:30 +0200 + +wine (0.0.20030508-2) unstable; urgency=low + + * Added winevdm.exe.so to the wine package (no, not wine-utils). + Closes: #195950, #196013. + * Make it possible to build from source with libjack0.71.2. However, + I'm not convinced that the code might work with a new jack version, + so I'll still be compiling against the older version myself. + Closes: #196014. + * Since people keep complaining about libwine-arts depending on arts + 4:2.2.2, without telling me what's wrong with that, I now + depend on arts 1.1.2, clearly an even older arts, but if they can't + tell me what they want me to do, I'll teach'em to. Closes: #195518. + + -- Ove Kaaven Wed, 4 Jun 2003 07:26:12 +0200 + +wine (0.0.20030508-1) unstable; urgency=low + + * New upstream release 20030508 (closes: #192873) + - Some more reorganizations of the source tree. + - A few more steps towards kernel/ntdll separation. + - Many Direct3D improvements. + - More compatible COM interfaces definitions. + - Lots of bug fixes. + * Build-depend on flex-old | flex (<< 2.5.31) + + -- Ove Kaaven Mon, 2 Jun 2003 04:40:08 +0200 + +wine (0.0.20030408-1) unstable; urgency=low + + * Long overdue Wine updates for Debian + (Closes: #181499, #183854). + Wonder if I should RFA. + * New upstream release 20030408 + - Some reorganizations of the source tree. + - File change notifications. + - Support for all variants of glibc 2.3. + - Many documentation updates. + - Lots of bug fixes. + * New upstream release 20030318 + - Many Direct Sound improvements. + - File locking support. + - Progress on kernel/ntdll dll separation. + - Lots of bug fixes. + * New upstream release 20030219 (Closes: #183854) + - Better dead keys support. + - Many debugger fixes. + - More Direct3D work. + - Lots of bug fixes. + * Fixed winelauncher bashism (Closes: #178986) + * Created libwine-jack package. + * Changed build dependencies (added glu, ungif and jack). + They're no longer compatible with potato. + + -- Ove Kaaven Thu, 17 Apr 2003 14:55:30 +0200 + +wine (0.0.20030115-2) unstable; urgency=low + + * Added workaround for the broken docbook-utils in woody + in debian/rules. Closes: #172082. + * Hopefully less winelauncher failures in case of Ctrl-C. + Closes: #176615. + * Automatically add "--" if launched as wine-auto, and + make binfmt-support launch that. Closes: #178521. + + -- Ove Kaaven Mon, 27 Jan 2003 18:18:26 +0100 + +wine (0.0.20030115-1) unstable; urgency=low + + * New upstream release 20030115 + - Much better header files compatibility in Winelib. + - A ton of Direct3D work. + - Many improvements in sound support. + - New wineboot tool to simulate a Windows reboot. + - Lots of bug fixes. + * New tool wineboot placed in wine-utils. + * Installed winewrap and winegcc/wineg++ into libwine-dev. + + -- Ove Kaaven Sun, 19 Jan 2003 21:03:50 +0100 + +wine (0.0.20021219-1) unstable; urgency=low + + * New upstream release 20021219 + - DLL linking now done through import libraries. + - A couple of new tools to make Winelib easier to use. + - Many Direct3D improvements. + - Improved Windows compatibility of the regression tests. + - Lots of bug fixes. + + -- Ove Kaaven Sat, 21 Dec 2002 21:03:21 +0100 + +wine (0.0.20021125-1) unstable; urgency=low + + * New upstream release 20021125 + - Finished conversion to STRICT compilation mode. + - WinHelp revival. + - Client-side fonts supported even without RENDER extension. + - Regression tests no longer require Perl. + - Lots of bug fixes. + * Removed libperl-dev from build dependencies accordingly. + * CUPS is now loaded dynamically, so I made debian/rules add + the necessary libcupsys2 dependency itself. + + -- Ove Kaaven Thu, 28 Nov 2002 17:25:21 +0100 + +wine (0.0.20021031-1) unstable; urgency=low + + * New upstream release 20021031 + - Complete listview overhaul. + - Beginnings of real RPC support. + - Most dlls now build properly in STRICT mode. + - Inter-process window activation and focus handling. + - Many improvements to AVI support. + - Lots of bug fixes. + + -- Ove Kaaven Wed, 6 Nov 2002 15:36:15 +0100 + +wine (0.0.20021007-1) unstable; urgency=low + + * New upstream release 20021007 (closes: #164607) + - Massive listview rewrite. + - New MS RLE codec. + - winemaker should be working again. + - Beginnings of Direct3D 8 support. + - Lots of bug fixes. + * Patched to work with glibc 2.3. Closes: #165323. + + -- Ove Kaaven Sun, 20 Oct 2002 23:11:17 +0200 + +wine (0.0.20020904-1) unstable; urgency=low + + * New upstream release 20020904 + - Much improved PowerPC support. + - More correct locale definitions. + - Progress on the conversion of handle types to pointers. + - Many Visio and Quicken fixes merged from Crossover. + - Lots of bug fixes. + * Yeah, I know I'm late in packaging this release, + but I've been sick. Closes: #159867. + * Fixed debian/*.dirs (many of them accidentally contained + /usr/share/doc/libwine-twain). Closes: #157063. + * Changed gluck.debian.org to people.debian.org in README.Debian + since it's reported that the apt source doesn't work otherwise. + * Fixed path of system.ini in README.Debian. Closes: #159833. + + -- Ove Kaaven Fri, 13 Sep 2002 15:44:32 +0200 + +wine (0.0.20020804-2) unstable; urgency=low + + * Made comdlg32 import winspool using delayed imports + instead of regular imports. This should make comdlg32 + work without libwine-print as long as the print + dialog isn't opened (trying that will probably crash). + Closes: #156338. + + -- Ove Kaaven Thu, 15 Aug 2002 21:38:38 +0200 + +wine (0.0.20020804-1) unstable; urgency=low + + * New upstream release (closes: #155542) + - Beginnings of an IDL compiler. + - Several new winedbg features. + - More OLE and shell improvements. + - NAS and AudioIO sound drivers. + - Still more Sparc portability fixes. + - Lots of bug fixes. + * New tool widl placed in libwine-dev. + * The new NAS driver is placed in a new libwine-nas package. + For some reason, the build system makes this driver depend on X11, + but I don't know enough about NAS to know if it's supposed to. + * The AudioIO driver is for Solaris, so it isn't built. + * There's now a man page for winebuild (closes: #83274). + + -- Ove Kaaven Tue, 6 Aug 2002 19:42:51 +0200 + +wine (0.0.20020710-1) unstable; urgency=low + + * New upstream release 20020710 + - DirectSound 8 and DirectInput 8 support. + - Many OLE improvements. + - Support for font downloading in Postscript driver. + - ALSA sound driver. + - More portability fixes, particularly for Sparc. + - Lots of bug fixes. + * Split off libwine components with heavy dependencies + into separately installable packages (closes: #148479): + libwine-print (depends on CUPS) + libwine-twain (depends on SANE) + libwine-alsa (depends on ALSA) + libwine-arts (depends on aRts) + * List all the Wine packages in README.Debian. + + -- Ove Kaaven Thu, 25 Jul 2002 04:48:55 +0200 + +wine (0.0.20020605-1) unstable; urgency=low + + * New upstream release 20020605 (Closes: #150139) + - Better Mingw support, including cross-compilation on Linux. + - Still more dll separation work. + - Winelib applications now get loaded much like builtin dlls. + - Some command-line options replaced by config entries. + - Multimedia improvements, including an MP3 decoder. + - Massive whitespace cleanup. + - New Winelib file manager. + - Lots of bug fixes. + * Fixed wine-doc.doc-base. Closes: #149649. + * Added Catalan debconf template. Closes: #139745. + * New tool regsvr32 placed in wine. + * New tool winefile placed in wine-utils. + * Wine build system has changed and installs hardlinked binaries. + I'll just package the hardlinked files as ordinary files for now. + But at least there's no longer .so files in /usr/bin (closes: #148357). + * Removed README.Debian reference to my old apt repository on WineHQ; + since they no longer run Debian, I can't host it there anymore. + + -- Ove Kaaven Sun, 23 Jun 2002 04:55:39 +0200 + +wine (0.0.20020509-1) unstable; urgency=low + + * New upstream release 20020509 + - More dll separation work. + - Many async I/O improvements. + - Still more unit tests. + - A lot less multimedia code. + - Many portability fixes, esp. for ReactOS. + - Lots of bug fixes. + * New tool winepath placed in wine-utils. + * clock and hlp2sgml removed from wine-utils. + * Added German debconf templates. Closes: #139095. + * Added Catalan debconf template. Closes: #139746. + * Doubled size of MAX_FONTS. Closes: #145033. + * Explicitly depend on libfreetype6, and changed Wine code + to look for libfreetype.so.6 instead of libfreetype.so. + Closes: #146136. + + -- Ove Kaaven Mon, 13 May 2002 05:58:19 +0200 + +wine (0.0.20020411-1) unstable; urgency=low + + * New upstream release 20020411 + - Beginnings of an SMB client implementation. + - New naming scheme and location for builtin dlls. + - aRts sound driver. + - A bunch of unit tests. + - Much more complete setupapi implementation. + - Some dll separation progress. + - The usual common controls rewrites. + - Much improved Microsoft Office support. + - Lots of bug fixes. + * Wine license changed to LGPL. Updated debian/copyright. + * Build system changed. Updated debian/* files. + * New build dependency libarts-dev added for aRts driver. + * New build dependency libsane-dev added for TWAIN support. + * New tool regedit placed in wine-utils. + + -- Ove Kaaven Sat, 13 Apr 2002 14:31:02 +0200 + +wine (0.0.20020228-1) unstable; urgency=low + + * New upstream release 20020228 + - Client-side font rendering using Xrender. + - Local server COM support. + - Many DrawText improvements. + - A ton of fixes for better MS Office support. + - Preliminary support for C unit tests. + - Lots of bug fixes. + * Updated the build dependencies, been too long since last time. + * Added tchar.h to list of headers to install in include/Makefile.in. + Closes: #131918. + * Made winelauncher errors about not finding winesetup more + helpful. Closes: #135263. + + -- Ove Kaaven Fri, 8 Mar 2002 12:21:08 +0100 + +wine (0.0.20020122-2) unstable; urgency=low + + * Sigh. Conflict with binfmt-support (<< 1.1.2), then. + Closes: #130887. + + -- Ove Kaaven Sat, 26 Jan 2002 23:21:36 +0100 + +wine (0.0.20020122-1) unstable; urgency=low + + * New upstream release 20020122 + - Lots of improvements to asynchronous I/O. + - Beginnings of unit testing infrastructure. + - Inter-process DDE should work now. + - Lots of bug fixes. + * dosmod no longer exist. (Closes: #83260) + * Tried to make the winelauncher script behave in the absence + of a display. Closes: #128068. (Also tried to make the script + return the correct error code while I was at it. Didn't I have + a bug on that once?) + * Updated Spanish debconf templates. Closes: #120241, #128927. + * Changed short description of wine-utils from "Wine Emulator" + to "Windows Emulator" to match the other binary packages... + * Install wine.xpm and wine_small.xpm into /usr/share/pixmaps. + + -- Ove Kaaven Fri, 25 Jan 2002 15:58:51 +0100 + +wine (0.0.20011226-2) unstable; urgency=low + + * Added xlibmesa-dev to the build dependencies. + * Added "undocumented" manpage for wineconsole. + * Added support for the binfmt-support package. Closes: #89386. + * Prepend "--" to arguments in wineshelllink. Closes: #128124. + + -- Ove Kaaven Sat, 12 Jan 2002 00:06:15 +0100 + +wine (0.0.20011226-1) unstable; urgency=low + + * New upstream release 20011226 + - Many improvements to audio support. + - Lots of new actions in SystemParametersInfo. + - New console based on Win32 window instead of xterm. + - Server protocol redesigned. + - More shlwapi improvements. + - Lots of bug fixes (Closes: #115482). + * Placed the new wineconsole program into the wine package. + * Changed build dependency cygnus-stylesheets to docbook-utils. + Closes: #123736. + * Updated Standards-Version to 3.5.6. + + -- Ove Kaaven Thu, 27 Dec 2001 10:41:11 +0100 + +wine (0.0.20011108-2) unstable; urgency=low + + * Revert to debhelper v2 compatibility, and wrote ldconfig into + postinst manually, since debhelper no longer likes libwine.so + anyway. Closes: #119051. + + -- Ove Kaaven Sun, 11 Nov 2001 13:18:40 +0100 + +wine (0.0.20011108-1) unstable; urgency=low + + * New upstream release 20011108 + - Shared windows support starts doing something useful. + - Overlapped I/O improvements. + - Support for running files from removable media. + - Many shlwapi improvements. + - Quartz dll keeps growing. + - Lots of bug fixes (Closes: #115319). + * Present a verification question if Wine is launched + as a MIME handler from mailcap (Closes: #114977). + * Tried to add a KDE file association (Closes: #118430). + If anyone has suggestions for improving that (I didn't manage + to make Wine launch on left-click, only on right-click + and then selecting WINE), please let me know. + + -- Ove Kaaven Fri, 9 Nov 2001 03:05:30 +0100 + +wine (0.0.20011004-1) unstable; urgency=low + + * New upstream release 20011004 + - Beginnings of shared window handles. + - Much improved typelib support. + - Tons of new code in quartz dll. + - Lots of bug fixes (Closes: #109668). + * The specmaker tool has been replaced by the winedump tool + (Closes: #87552). + * This release was apparently badly timed (it was exceedingly broken). + However, one day after the release, all the major breakages were + fixed in the CVS tree (i.e. business as usual in the Wine project). + So I've applied the current CVS patches to make this Debian + release somewhat useful. + + -- Ove Kaaven Sat, 6 Oct 2001 13:15:44 +0200 + +wine (0.0.20010824-1) unstable; urgency=low + + * New upstream release 20010824 + - Inter-process SendMessage support + - More DDE improvements + - Preparation work for shared window handles + - Several debugger improvements + - Better GDI objects management + - Lots of bug fixes + + -- Ove Kaaven Sun, 26 Aug 2001 15:27:56 +0200 + +wine (0.0.20010731-1) unstable; urgency=low + + * New upstream release 20010731 + - 16-bit comm routines reimplemented properly + - More improvements to the Postscript driver + - A few more steps towards dll separation + - Lots of bug fixes + * And from release 20010629 (which I didn't package + because I think it was a very unstable release) + - Better font metrics support in Postscript driver using Freetype + - Major window management redesign (still in progress) + - Message queues in wineserver to prepare for inter-process messaging + - DDE merged from Corel tree, plus various fixes + - 64-bit file size support + - Lots of bug fixes + * You wanted a more recent Wine, you got it (closes: #109230) + * Applied another Linux 2.4 winsock patch. + * Updated README.Debian to point to WineHQ resources and such + (troubleshooting guide, FAQ, etc). + + -- Ove Kaaven Sun, 26 Aug 2001 15:21:57 +0200 + +wine (0.0.20010510-3) unstable; urgency=low + + * Applied patch from Marcus Meissner to make CUPS support + build on potato. + + -- Ove Kaaven Thu, 17 May 2001 20:05:46 +0200 + +wine (0.0.20010510-2) unstable; urgency=low + + * Added CUPS build dependency, and installed it on my build + machines, so users that need printing can take advantage of + Wine's new support for CUPS. + * Moved sample config files potentially referenced from postinst + from /usr/share/doc/wine to /usr/share/wine, and added symlinks + to them in /usr/share/doc/wine, as per Debian policy. + * There's a new generic.ppd among the sample config files, I'm + not sure what to do with it other than stuff it into + /usr/share/doc/wine. + * Updated Standards-Version to 3.5.4. + + -- Ove Kaaven Thu, 17 May 2001 13:10:06 +0200 + +wine (0.0.20010510-1) unstable; urgency=low + + * New upstream release 20010510 + - Many improvements to printing support + - Some graphics driver restructures + - Lots of bug fixes + * And from release 20010418 (which I didn't package + because I think it was a very bad release) + - DirectDraw restructuration and improvements + - MSVCRT headers for compiling Winelib apps + - Postscript driver enhancements + - Several multimedia fixes + - Lots of bug fixes + * Declared versioned dependency on debhelper v3. + + -- Ove Kaaven Sat, 12 May 2001 12:15:41 +0200 + +wine (0.0.20010326-3) unstable; urgency=low + + * Maybe tell postinst too that I moved documentation/samples/* + (system.ini) from libwine to wine. Closes: #92446. + * Added Spanish to wine.templates. Closes: #92316. + + -- Ove Kaaven Sun, 1 Apr 2001 21:52:30 +0200 + +wine (0.0.20010326-2) unstable; urgency=low + + * Implemented DEB_BUILD_OPTIONS *properly*. + * Cleaner .a file handling in debian/rules. + + -- Ove Kaaven Fri, 30 Mar 2001 11:39:04 +0200 + +wine (0.0.20010326-1) unstable; urgency=low + + * New upstream release + - Serial async I/O improvements + - Support for app-specific dll overrides in config file + - Lots of bug fixes. + * New build dependency libperl-dev (because of the new + winetest program, which is supposed to be wine's new + API test suite, but though it was necessary to compile + it, I don't think it's useful to have in the debian + packages, is it?) + * There's a new winecheck script too, but I didn't include + it either, as I'm not sure how it works and whether it + would be useful in Debian packages. + * Made the dependency on xbase-clients versioned >= 4.0, + so it doesn't satisfy potato xfree86 3.x users, forcing + the ORed xcontrib dependency instead. + * Added Suggests: msttcorefonts (neat package). + * Moved documentation/samples/* from libwine to wine. + * Implemented DEB_BUILD_OPTIONS stuff. + Upgraded Standards-Version to 3.5.2. + + -- Ove Kaaven Wed, 28 Mar 2001 16:31:47 +0200 + +wine (0.0.20010305-1) unstable; urgency=low + + * New upstream release 20010305. + - Some improvements to the wineserver protocol. + - The usual common controls fixes/improvements. + - Version information in builtin dlls. + - Lots of bug fixes. + + -- Ove Kaaven Tue, 6 Mar 2001 00:35:21 +0100 + +wine (0.0.20010216-5) unstable; urgency=low + + * Added dependency on xbase-clients | xcontrib, since the + winelauncher needs xmessage in order to operate. + * Made winelauncher handle filenames with spaces. Closes: #87710. + * Moved libwine's unused config stuff to wine (though still not used). + * Fixed bashism in libwine.preinst. Closes: #87864. + * Added French debconf translations. Closes: #87749, #87750. + + -- Ove Kaaven Mon, 26 Feb 2001 17:19:50 +0100 + +wine (0.0.20010216-4) unstable; urgency=low + + * Gave in and killed the OSMesa support, by overriding + the config.cache with a debian/config.anticache in rules. + Sadly, users most likely can no longer use plain old non-GLX + Mesa (without hardware acceleration) to play Half-Life at 0.2 fps + anymore, but maybe that's no big loss anyway. + Closes: #83391, #83393. + * Removed MesaGL mess explanation from README.Debian again. + * Changed german translation of libwine.templates. Closes: #87604. + + -- Ove Kaaven Sun, 25 Feb 2001 19:23:11 +0100 + +wine (0.0.20010216-3) unstable; urgency=low + + * Made Wine a handler of the application/x-msdos-program MIME + type. (Soon your Unix mailers will also be able to run all + those Windows viruses, muahahaha...) + * Added a GNOME file association for that too. + (But I don't know how to do that for KDE... if there's anything + extra I need to do to make it work in KDE too, send a patch + to the bug tracker or something) + * Moved winemaker manpage to where winemaker is now (wine-utils). + * Added "undocumented" manpage for specmaker and wine.bin. + + -- Ove Kaaven Sun, 25 Feb 2001 11:26:35 +0100 + +wine (0.0.20010216-2) unstable; urgency=low + + * Oops... seems that as I moved from one machine to another, the + 0.0.20010216-1 was built on top of 0.0.20010112-2, not -3. + Now I've imported the changes that was done to -3 + (changelog and shlibs.local)... + + -- Ove Kaaven Wed, 21 Feb 2001 20:34:55 +0100 + +wine (0.0.20010216-1) unstable; urgency=low + + * New upstream release 20010216. + - Several PostScript driver enhancements. + - Improved enhanced metafiles support. + - Beginnings of PowerPC support. + - Lots of bug fixes. (Closes: #83214) + * libwine_tsx11.so is new, placed it in /usr/lib. + * specmaker is new, placed it in wine-utils. + * Updated README.Debian to explain the MesaGL mess. + * Built with debhelper v3. + * Moved winemaker from libwine-dev to wine-utils, since it's just a + porting tool for preparing windows for winelib compilation, not + a build requirement once the sources have been prepared. + * Removed rpath hack from debian/rules, assuming that winelauncher + does a good enough job (or recognizing that the upstream configure + adds rpath itself so I wouldn't have to anyway). + * Patched winelauncher a lot, so now it works without rpath in the + Debian packaging, and works with the winelib apps. + * Moved /usr/lib/*.so symlinks to libwine-dev. + * Finally moved the /var/lib/wine stuff from libwine to wine. + * Someone apparently translated libwine.templates to German. + While not terribly useful (the first message might be obsolete + and the other isn't actually used, at least not right now), + especially not without also translating wine.templates, I just + threw it into libwine.templates anyway to close the bug. + Closes: #83366. + + -- Ove Kaaven Mon, 19 Feb 2001 22:00:36 +0100 + +wine (0.0.20010112-3) unstable; urgency=low + + * Added shlibs.local, to use "xlibosmesa3 | mesag3" instead of just + xlibosmesa3, so that users that use mesag3 can just add a symlink + (or mesag3 can be made to provide such a symlink itself). + On the other hand, would adding a Build-Conflicts: xlibosmesa-dev + (and build without OSMesa support) be a better idea...? + * Removed bashism from winelauncher script. Closes: #83559. + + -- Ove Kaaven Fri, 26 Jan 2001 16:36:03 +0100 + +wine (0.0.20010112-2) unstable; urgency=low + + * Updated README.Debian. Closes: #82624. + + -- Ove Kaaven Wed, 17 Jan 2001 16:52:06 +0100 + +wine (0.0.20010112-1) unstable; urgency=low + + * New upstream release 20010112. + This version of Wine unfortunately doesn't support a global config + file, so the default wine.conf is now removed from the package. + I'll just have to recommend using winesetuptk for now. + * Using debconf to notify the sysadmin of the above issue, and ask + whether to delete /etc/wine.conf. + * Decided to use winelauncher like it was intended; rename the main + wine binary to wine.bin, and rename winelauncher to wine. + This will also automatically launch winesetup if there's no config. + * Removing wine.conf in postrm if wine is purged. + + -- Ove Kaaven Sat, 13 Jan 2001 16:38:56 +0100 + +wine (0.0.20001222-2) unstable; urgency=low + + * Added usr/lib to libwine-dev.dirs. (Oops.) + * Added ldconfig to libwine.postinst. + * Now that winesetuptk is available, I added winesetup to Suggests, + and mentioned it in README.Debian. The next Wine release ought to + have support for a new global config file, I plan to remove wine.conf + from the package once that happens. + * Added information about other sources for Wine .deb packages + (from the WineHQ download page) to README.Debian. + + -- Ove Kaaven Thu, 11 Jan 2001 18:34:39 +0100 + +wine (0.0.20001222-1) unstable; urgency=low + + * New upstream release 20001222. + The configuration file format has changed, but I've kept the wine.conf + in here since the winesetuptk tool isn't ready yet (I'm waiting for it + to handle the new configuration file format), and wine will simply + automatically generate a ~/.wine/config using the old wine.conf. + * Updated README.Debian to explain these config issues. + * Built more of the winelib apps, put some of them (including the + all-important "winemine") into wine-utils. + + -- Ove Kaaven Sat, 23 Dec 2000 04:54:03 +0100 + +wine (0.0.20001202-1) unstable; urgency=low + + * New upstream release 20001202. + New tools winelauncher and wineshelllink. + Updated wine.conf. + (I ought to use winelauncher for something, maybe soon.) + * Updated Build-Depends for XFree86 4.0. + * Install regapi into wine. Closes: #76138, #47857. + Also put winedefault.reg into wine instead of libwine. + Will clean up the inconsistencies, such as drive setup + and files being in libwine instead of wine, later. + * Moved winebuild, wmc, and wrc from wine-utils and + into libwine-dev, since these are tools required for + compiling Winelib apps. + * Added LDFLAGS with rpath set to /usr/lib/wine as arguments + to make during build, so that regapi and winedbg works. + Closes: #72243 (may have been closed by 20001026-2 too). + Eventually DLL separation will remove the need for rpath, + but I'll keep it until then. + * Added a new fake drive for /usr/bin, so that wine can find + winedbg. + + -- Ove Kaaven Sun, 3 Dec 2000 11:15:53 +0100 + +wine (0.0.20001026-2) unstable; urgency=low + + * Repackaged with debhelper, since debmake proved too limited. + Closes: #69467, #69469, #69570, #70820, #71461. + * The default wine.conf update and the libdir fix (and + the repackaging) closes: #67381, #67382. + * Reorganized wine-doc package, it now features HTML docs. + * Took Windows directories with spaces out of the package proper, + since debhelper didn't cope with them. Created them in postinst + instead for now. + * Some initial debconf support. But doing real configuration + questions must wait until I've patched the upstream + tools/wineinstall script for easier debconf integration. + * Moved Drive C path from /usr/share/wine/drivec to + /var/lib/wine/drivec for FHS compliance. (libwine.preinst takes + care of moving the actual contents and performing a search & + replace in wine.conf.) Closes: #70618, #70619, #70620. + + -- Ove Kaaven Sat, 28 Oct 2000 23:40:07 +0200 + +wine (0.0.20001026-1) unstable; urgency=low + + * New upstream release + + -- Ove Kaaven Fri, 27 Oct 2000 05:11:28 +0200 + +wine (0.0.20001002-1) unstable; urgency=low + + * New maintainer Ove Kaaven. + * New upstream release + * Update default wine.conf, fixed EXTRA_LD_LIBRARY_PATH. + * Set --libdir=/usr/lib/wine explicitly, the $${exec_prefix} didn't work. + * Added a few Windows directories into the /usr/share/wine/drivec. + * Add an empty winsock.dll file to Windows directory in libwine. + * Initialize win.ini and system.ini in Windows directory in + libwine.postinst. (Hmm. Wonder if a --purge should remove everything? + If the user only wanted to remove the .deb to compile wine himself, + that might be a bad idea if the user installed something...) + + -- Ove Kaaven Thu, 26 Oct 2000 12:52:42 +0200 + +wine (0.0.20000909-1) unstable; + + * New version for unstable. Hopefully, this one will run. + + -- Andrew D. Lenharth Wed, 20 Sep 2000 10:01:17 -0800 + +wine (0.0.20000801-1) unstable; urgency=low + + * New version for unstable. Enjoy. + * elfdlls are seperated from libwine and put into /usr/lib/wine + * lib directories moved, should close a few bugs in 20000614 + + -- Andrew D. Lenharth Mon, 20 May 2000 10:01:17 -0800 + +wine (0.0.20000614-1) unstable; urgency=low + + * New version for unstable. Enjoy. + * Many new upstream bug fixes. wine-utils now contains utilities. + * Directory structure reorganized for debian. + * elfdlls are seperated from libwine and put int /usr/share/wine/lib + * winebuild now included. Closes#62395 + * fnt2bdf now included. Closes#61214 Closes#64892 + + -- Andrew D. Lenharth Mon, 20 May 2000 10:01:17 -0800 + +wine (0.0.20000430-1) unstable; urgency=low + + * New version for unstable. Enjoy. + * Many new upstream bug fixes, and a few file moves, so expect bugs. + * Directory structure reorganized for debian. + * elfdlls are seperated from libwine and put int /usr/share/wine/lib + + -- Andrew D. Lenharth Sat, 13 May 2000 10:01:17 -0800 + +wine (0.0.20000326-2) unstable; urgency=low + + * Tryed out the elfdll stuff. Didn't work yet. + + -- Andrew D. Lenharth Mon, 14 Feb 2000 18:01:17 -0800 + +wine (0.0.20000326-1) unstable; urgency=low + + * New version for unstable. Enjoy. + * Many new upstream bug fixes, and a few file moves, so expect bugs. + + -- Andrew D. Lenharth Mon, 14 Feb 2000 18:01:17 -0800 + +wine (0.0.20000130-1) unstable; urgency=low + + * New version for unstable. Closes a few bugs. + + -- Andrew D. Lenharth Mon, 14 Feb 2000 18:01:17 -0800 + +wine (0.0.20000109-2) frozen; urgency=low + + * OpenGL depends fixed. Closes 55313 55365 55186 + + -- Andrew D. Lenharth Wed, 14 Dec 1999 18:01:17 -0800 + +wine (0.0.20000109-1) unstable; urgency=low + + * Assorted upstream Bug fixs as always :). + * Compiled with Xpm again. Closes #54910 + + -- Andrew D. Lenharth Wed, 14 Dec 1999 18:01:17 -0800 + +wine (0.0.991212-1) unstable; urgency=low + + * Assorted upstream Bug fixs as always :). + + -- Andrew D. Lenharth Wed, 14 Dec 1999 18:01:17 -0800 + +wine (0.0.991114-2) unstable; urgency=low + + * Added check for /usr/X11R6/lib/libwine*. Closes: 43322 43597 + * fixed dependency on libwine. + * Assorted upstream Bug fixs as always :). + + -- Andrew D. Lenharth Wed, 21 Nov 1999 18:01:17 -0800 + +wine (0.0.991114-1) unstable; urgency=low + + * New upstream version. + * Assorted upstream Bug fixs as always :). + + -- Andrew D. Lenharth Wed, 14 Nov 1999 18:01:17 -0800 + +wine (0.0.991031-1) unstable; urgency=low + + * New upstream version. + * Changed a to point to /floppy instead of /mnt/fd0. + * Now links to mesa. Closes: #47312 + * symtable is now set correctly in wine.conf. Closes: #43601 + * Assorted upstream Bug fixs as always :). + + -- Andrew D. Lenharth Wed, 3 Nov 1999 18:01:17 -0800 + +wine (0.0.990923-2) unstable; urgency=low + + * Packaging fix. + * libgl1 dependecy now libmesagl. Closes: #47351 #47014 #46937 #46937 + + -- Andrew D. Lenharth Sat, 16 Oct 1999 09:09:27 -0700 + +wine (0.0.990923-1) unstable; urgency=low + + *New Upstream release. + *Lots of bug fixes (of course). + *Reworked msacm driver. + + -- Andrew D. Lenharth Tue, 05 Oct 1999 14:21:46 -0700 + +wine (0.0.990815-1) unstable; urgency=low + + * New Upstream release. + * Lots of bug fixes. + * Many more dlls are seperate from the main library. + * includes documentation/ directory included. Closes: #29103 + * fixed depend problem. Closes: #43320 #43325 #43332 + * wine.conf is now back in /etc. Closes: #43387 + + -- Andrew D. Lenharth Tue, 24 Aug 1999 14:21:46 -0700 + +wine (0.0.990731-1) unstable; urgency=low + + * New upstream version + * Lots of bug fixes. + + -- Andrew D. Lenharth Tue, 24 Aug 1999 12:18:25 -0700 + +wine (0.0.990704-2) unstable; urgency=low + + * New maintainer Andrew Lenharth. + * Repackaged. + * libwine0.0.971116 renamed to libwine + + -- Andrew D. Lenharth Sun, 1 Aug 1999 14:36:54 -0700 + +wine (0.0.990704-1) unstable; urgency=low + + * New upstream release: + - Server communication optimized. + - Many window painting fixes. + - Portability improvements. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 5 Jul 1999 13:17:44 +0200 + +wine (0.0.990613-1) unstable; urgency=low + + * New upstream release: + - All tasks now run in their own thread. + - Win32 debug API preliminary implementation. + - New Winelib app: a command-line interpreter. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 14 Jun 1999 12:47:10 +0200 + +wine (0.0.990523-1) unstable; urgency=low + + * New upstream release: + - Printing improvements + - X input and multimedia timers moved to service thread. + - More threading and locking fixes. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 31 May 1999 17:49:52 +0200 + +wine (0.0.990508-1) unstable; urgency=low + + * New upstream release: + - Lots of threading fixes. + - Start of enhanced metafile support. + - Several common controls improvements. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 10 May 1999 16:14:26 +0200 + +wine (0.0.990426-1) unstable; urgency=low + + * New upstream release: + - Resources in built-in DLLs. + - Threading support for FreeBSD and Solaris. + - Lots of threading and synchronization changes. + - Loader reorganization and new load order support. + - Lots of bug fixes. + + -- Vincent Renardias Tue, 27 Apr 1999 14:16:38 +0200 + +wine (0.0.990328-1) unstable; urgency=low + + * New upstream release: + - Lots of new OLE stuff. + - Use separate threads for Win32 processes. + - Various multimedia improvements. + - Lots of bug fixes. + + -- Vincent Renardias Sun, 28 Mar 1999 21:54:03 +0200 + +wine (0.0.990214-1) unstable; urgency=low + + * New upstream release: + - More reorganizations of headers and drivers. + - Still more OLE stuff. + - Many new functions and stubs. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 15 Feb 1999 14:24:45 +0100 + +wine (0.0.990131-1) unstable; urgency=low + + * Add menu support (Fix bug #19196). + * Correct dosmod.1 symlink (Bugs #32361, #32342, #32236). + * New upstream release: + - Tons of new OLE stuff. + - Several improvements to DirectDraw support. + - Better message queues. + - Many new functions and stubs. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 1 Feb 1999 11:08:20 +0100 + +wine (0.0.990110-3) unstable; urgency=low + + * Rebuild with OpenGL dev. libs so DirectX emulation works. + * Make dosmod.1 point to wine.1 rather than undocumented.7. + + -- Vincent Renardias Tue, 19 Jan 1999 18:25:22 +0100 + +wine (0.0.990110-2) unstable; urgency=low + + * Updated documentation (Fix bug #31873). + * Add missing dep. on libwine (Fix bug #31982). + + -- Vincent Renardias Sat, 16 Jan 1999 22:43:48 +0100 + +wine (0.0.990110-1) unstable; urgency=low + + * New upstream release: + - Many more COM interfaces definitions. + - Improvements to the resource compiler. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 11 Jan 1999 04:36:02 +0100 + +wine (0.0.990103-1) unstable; urgency=low + + * New upstream release: + WHAT'S NEW with Wine-990103: (see ChangeLog for details) + - Improved console support. + - Tons of new stubs. + - Improvements to header files compatibility. + - More features in Wine server. + - Lots of bug fixes. + * Added several more READMEs. + + -- Vincent Renardias Mon, 4 Jan 1999 13:05:48 +0100 + +wine (0.0.981211-1) unstable; urgency=low + + * New upstream release: + WHAT'S NEW with Wine-981211: + - A lot of code moved around for a better structure. + - New console support. + - Beginnings of TTY driver. + - Tons of new stubs. + - More DOS and native USER support. + - Lots of bug fixes. + WHAT'S NEW with Wine-981108: + - More common controls. + - Better separation of X11-dependent code. + - More DOS support. + - Winsock IPX support. + - Lots of bug fixes. + WHAT'S NEW with Wine-981025: + - KDE drag&drop support. + - Still more common controls and SHELL32 features. + - More Postscript driver functions. + - Lots of bug fixes. + * Updated FAQ. + * Removed installation of texinfo manual (doesn't work since 2 releases) + + -- Vincent Renardias Tue, 29 Dec 1998 14:52:20 +0100 + +wine (0.0.981018-1.1) frozen unstable; urgency=low + + * Non-maintainer release. + * Recompiled with new libc, to fix __register_frame_info problem, + at maintainer's request. + * Build manpages with "c2man-wine" (now packaged as such), because + the mainline c2man lacks an option wine uses. + * A bugfix in c2man-wine fixes the problem of manpages with spaces in + their names. Removed the attempted workaround (which didn't work :) + of removing those manpages after they are generated. + + -- Richard Braakman Mon, 14 Dec 1998 14:28:48 +0100 + +wine (0.0.981018-1) unstable; urgency=low + + * New upstream release: + - ELF DLL loader. + - Some more DOS support. + - Still more common controls and SHELL32 features. + - Using Windows native USER.DLL may work. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 19 Oct 1998 17:33:08 +0200 + +wine (0.0.980927-1) unstable; urgency=low + + * New upstream release: + - Still more common controls and SHELL32 features. + - MIDI I/O support. + - Several new undocumented KERNEL functions. + - More DOS exe stuff including some debugger support. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 28 Sep 1998 15:35:42 +0200 + +wine (0.0.980913-2) unstable; urgency=low + + * Just fixed a bug that made libwine-dev useless + since ~ 1 year ago (Which makes we wonder if anyone + actually used this package since this bug has never + been reported to me ;). + * Include graphics/psdrv/README as /usr/doc/wine/README.psdrv + (Bug #26699). + * Patches included from winehq.com: + - callproc.diff: Fix the CallProc{Ex}32W function. + - file_fix: Fix FILE_Read & FILE_Write behavior. + - int_fix: Missing last minute change. + - more_tsx: Fixed ``threadsafeness''. + + -- Vincent Renardias Tue, 15 Sep 1998 16:02:56 +0200 + +wine (0.0.980913-1) unstable; urgency=low + + * New upstream release: + - Even more common controls stuff. + - Many PostScript driver improvements. + - More DOS executables support. + - Lots of bug fixes. + + -- Vincent Renardias Sun, 13 Sep 1998 20:48:23 +0200 + +wine (0.0.980822-1) unstable; urgency=low + + * New upstream release: + - Improved mmio support. + - VxDCall support. + - More common controls and shell32 stuff. + - Better DOS executables support. + - Lots of bug fixes. + * Patches included from winehq.com: + - SetWindowLong: it's now possible to switch between the listview + and the iconview in the word95 File open dialog. + - RevokeDragDrop: New stub. + * Put the manpages in the correct directory! + + -- Vincent Renardias Thu, 27 Aug 1998 14:17:26 +0200 + +wine (0.0.980809-3) unstable; urgency=low + + * Patches from winehq.com applied: + - glibc2-dos: nows builds dosmod properly on libc6. + + -- Vincent Renardias Thu, 13 Aug 1998 14:03:24 +0200 + +wine (0.0.980809-2) unstable; urgency=low + + * Added loader/dos/dosmod in the binary package. + + -- Vincent Renardias Mon, 10 Aug 1998 18:09:26 +0200 + +wine (0.0.980809-1) unstable; urgency=low + + * New upstream release: + - Preliminary DOS executables support. + - Postscript driver improvements. + - More client/server stuff. + - Better shell32.dll builtin support. + - Proper Win16 mutex locking. + - Lots of bug fixes. + + -- Vincent Renardias Sun, 9 Aug 1998 16:25:30 +0200 + +wine (0.0.980726-1) unstable; urgency=low + + * New upstream release: + - Still more common controls stuff. + - More DirectDraw support. + - Compilation problems should be gone. + - Lots of bug fixes. + - Much improved manual pages generation. + * Now takes over 2 hours to build... ;( + + -- Vincent Renardias Mon, 27 Jul 1998 12:58:43 +0200 + +wine (0.0.980712-1) unstable; urgency=low + + * tried to fix #24140. + * New upstream release: + - More common controls stuff. + - Win32s VxD support. + - Beginnings of client/server architecture. + - More NLS support. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 13 Jul 1998 12:47:47 +0200 + +wine (0.0.980628-2) unstable; urgency=low + + * Added more doc. files (Bug #24139). + * Patches from www.winehq.com included: + - stub-for-fontview (Allows c:\windows\fontview.exe to start). + - winelib_snoop16 (Fix pbm when linking with libwine.so). + + -- Vincent Renardias Thu, 2 Jul 1998 16:23:49 +0200 + +wine (0.0.980628-1) unstable; urgency=low + + * New upstream release: + - Common controls improvements. + - Win16 DLL snooping. + - Preliminary internal Postscript driver. + - Improved DIB section handling. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 29 Jun 1998 12:27:40 +0200 + +wine (0.0.980614-1) unstable; urgency=low + + * New upstream release: + - Many drawing fixes. + - Inter-DLL calls snooping. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 15 Jun 1998 11:37:51 +0200 + +wine (0.0.980601-1) unstable; urgency=low + + * New upstream release: + - New resource compiler. + - Toolbar control. + - Partial implementation of CreateDIBSection. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 1 Jun 1998 17:05:08 +0200 + +wine (0.0.980517-2) unstable; urgency=low + + * Patches from www.winehq.com included: + commdlg_crash + + -- Vincent Renardias Wed, 20 May 1998 12:58:43 +0200 + +wine (0.0.980517-1) unstable; urgency=low + + * New upstream release: + - Lots of common controls improvements. + - Better thunking support. + - Lots of bug fixes. + + -- Vincent Renardias Sun, 17 May 1998 20:13:29 +0200 + +wine (0.0.980503-3) unstable; urgency=low + + * Correct dependencies... *sigh* + + -- Vincent Renardias Thu, 14 May 1998 16:05:00 +0200 + +wine (0.0.980503-2) unstable; urgency=low + + * Fix debian/rules (Fix #22382) + * Patch from www.winehq.com included: + - word980503.diff: makes Word95's file dialog boxes work. + + -- Vincent Renardias Tue, 12 May 1998 16:28:49 +0200 + +wine (0.0.980503-1) unstable; urgency=low + + * New upstream release: + - Module loading restructuration. + - Some rotated text support. + - Documentation for many more functions. + - Lots of bug fixes. + * Patches from www.winehq.com included: + - crtdll.diff: More functions implemented. + - module.diff: Fix patch mess in LoadModule16. + - profile: Make PROFILE_GetSection work properly. + - region: Fixes a problem with CombineRgn(). + + -- Vincent Renardias Tue, 12 May 1998 16:28:49 +0200 + +wine (0.0.980413-2) unstable; urgency=low + + * Patches from www.winehq.com included: + - arc_fix: Allows tk/tcl 8.0 (wish80.exe) to draw properly. + - default_bitmap_depth: fix buglet in displaying. + - metafile32: improved matefile support. + - mohr.diff: missing 'break;' statement. + - profile2: tweak profile reading in registry. + - rootcursor: Don't change the cursor look on the rootwindow. + * Updated FAQ. + * Updated html documentation. + + -- Vincent Renardias Fri, 17 Apr 1998 21:49:55 +0200 + +wine (0.0.980413-1) unstable; urgency=low + + * New upstream release: + - Flat thunks support. + - Many more autoconf checks for better portability. + - DIALOGEX resource support. + - Lots of bug fixes. + + -- Vincent Renardias Mon, 13 Apr 1998 16:26:48 +0200 + +wine (0.0.980329-1) unstable; urgency=low + + * New upstream release: + - More ImageLists support. + - More Win32 metafile support. + - Still some debugging output changes. + - Lots of bug fixes. + * Fix ugly shlibs.local bug (fortunatly, noone noticed ;) + * Patches included from winehq.com: init_crash, managed_winpos, relay_string. + + -- Vincent Renardias Mon, 30 Mar 1998 19:18:42 +0200 + +wine (0.0.980315-1) frozen unstable; urgency=low + + * New upstream release: + - Preliminary ImageLists support. + - Beginnings of enhanced metafiles. + - More debugging macros changes. + - Lots of bug fixes. + * Fix critical Bug #19429: libwine now depends on wine since + for now this library is totally useless without it. + + -- Vincent Renardias Fri, 20 Mar 1998 22:18:05 +0100 + +wine (0.0.980301-1) unstable; urgency=low + + * New upstream release: + - New debugging printfs scheme. + - Better DOS device handling. + - Lots of bug fixes. + * Polished debian/rules file. + * Updated html doc & FAQ. + + -- Vincent Renardias Mon, 2 Mar 1998 20:21:44 +0100 + +wine (0.0.980104-2) unstable; urgency=low + + * Include GNU Info & Postscript documentation as well as extra + manpages in wine-doc. + + -- Vincent Renardias Sat, 10 Jan 1998 15:49:19 +0100 + +wine (0.0.980104-1) unstable; urgency=low + + * New upstream release: + - Beginnings of DirectDraw/DirectSound support. + - Preliminary threading support based on clone(). + - Lots of bug fixes. + + -- Vincent Renardias Thu, 8 Jan 1998 01:43:26 +0100 + +wine (0.0.971221-2) unstable; urgency=low + + * Included the following patches from www.winehq.com/patches/ : + - ComboBox Fix (Bertho Stultiens). + - Console Fix (Karl Garrison). + - SetMetaFileBitsEx function updated. + - fd_set Winsock fixes (Ove Kaaven). + * Now compiled with egcs (gcc dies with sig 11 on misc/shellord.c). + + -- Vincent Renardias Thu, 1 Jan 1998 16:06:13 +0100 + +wine (0.0.971221-1) unstable; urgency=low + + * New upstream release (Bug #16209): + - Preliminary GDI paths support. + - DrawFrameControl implementation. + - Multimedia support for time and joystick functions. + - Win32 spec files now generate C code for Winelib. + - Tons of new Win32 functions and stubs. + - Lots of bug fixes. + * Corrected 2 buglets in debian/rules; closes:#15054, #15051. + * strip fnt2bdf (Fix #15724). + * Added libwine-dbg binary package. + * Adjusted packages section/priority. + * Moved libwine.a from libwine0.0.971116 to libwine-dbg. + * Compile with '-O3' flag. + + -- Vincent Renardias Sun, 28 Dec 1997 21:13:53 +0100 + +wine (0.0.971116-1) unstable; urgency=low + + * New upstream code. + - Emulator and library unification. + - New About dialog. + - Menus improvements. + - Lots of bug fixes. + - Now compiles under libc6 without additional patch. + * Added libwine0.0.971116 (Yes, the name is ugly ;) & libwine-dev packages; + They allow to compile Win32 C code as native Linux executable. + (Examples included in libwine-dev) + * Added wine.sym file to aid debugging. + * Added wine-doc package (FAQ + misc. documentation). + * Updated packages descriptions. + * Include more documentation in main package. + + -- Vincent Renardias Mon, 17 Nov 1997 16:11:34 +0100 + +wine (0.0.971101-1) unstable; urgency=low + + * New upstream code (#14057). + * Recompiled with libc6/xlib6g/xpm4g (#12715,#12918). + * Added documentation/fonts file. + + -- Vincent Renardias Sat, 20 Sep 1997 21:56:44 +0200 + +wine (0.0.970914-1) unstable; urgency=low + + * New Upstream Source: + - Better resource handling. + - New Progress control. + - Improved PE module support. + - Many relay code changes. + - Lots of bug fixes. + * Include wineconf configuration script. + * Use pristine source. + + -- Vincent Renardias Fri, 29 Aug 1997 22:06:05 +0200 + +wine (0.0.970804-1) unstable; urgency=low + + * New Upstream Source: + - Joystick support, + - More Win32 stuff, + - Lots of bug fixes. + + -- Vincent Renardias Sat, 9 Aug 1997 17:31:05 +0200 + +wine (0.0.970720-1) unstable; urgency=low + + * new upstream source. + * new maintainer. + * released to unstable. + * compiled with libc6. + * modified dependencies (Fixes #5992). + * moved /usr/bin/wine to /usr/X11R6/bin. + * use /usr/lib/wine [ (c) bcwhite ]. + * Modified numbering scheme after agreement with upstream maintainer. + + -- Vincent Renardias Sat, 26 Jul 1997 17:47:45 +0200 + +wine (970629-1) experimental; urgency=LOW + + * new upstream source + + -- Brian White Wed, 4 Dec 1996 20:49:55 -0500 + +wine (951124-1) experimental; urgency=LOW + + * first Debianized packages + + -- Brian White Sun, 26 Nov 1996 23:02:47 -0400 + + +Local variables: +mode: debian-changelog +End: --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-winecfg.desktop +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-winecfg.desktop @@ -0,0 +1,18 @@ +[Desktop Entry] +Name=Configure Wine +Name[sv]=Konfigurera Wine +Name[de]=Konfiguriere Wine +Name[fi]=Winen asetukset +Name[pl]=Konfiguracja Wine +Name[ca]=Configureu el Wine +Comment=Change application-specific and general Wine options +Comment[sv]=Ändra programspecifika och allmänna Wine-alternativ +Comment[de]=Ändere Wine Optionen und Applikations-spezifische Einstellungen +Comment[fi]=Muuta yleisiä ja sovelluskohtaisia Winen asetuksia +Comment[pl]=Konfigurowanie ustawień aplikacji i ogólnych opcji Wine +Comment[ca]=Canvieu la configuració general del Wine i especifiqueu opcions per a programes concrets +Exec=winecfg +Terminal=false +Icon=wine-winecfg +Type=Application +Categories=Wine; --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-wine.directory +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-wine.directory @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Directory +Name=Wine +Icon=wine --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.svg +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.svg @@ -0,0 +1,883 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-winemine.desktop +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-winemine.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Name=Winemine +Name[fi]=Winemiina +Name[ca]=Buscamines del Wine +Comment=Wine Minesweeper +Comment[fi]=Winen Miinaharava +Comment[ca]=Jugueu a un clon del buscamines del Windows +Exec=winemine +Terminal=false +Type=Application +Icon=wine +Categories=Wine;Game;LogicGame; --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-notepad.desktop +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-notepad.desktop @@ -0,0 +1,18 @@ +[Desktop Entry] +Name=Notepad +Name[sv]=Anteckningar +Name[de]=Editor +Name[fi]=Muistio +Name[pl]=Notatnik +Name[ca]=Bloc de notes +Comment=A clone of Windows Notepad +Comment[sv]=En klon av Windows Anteckningar +Comment[de]=Ein Windows Editor Klon +Comment[fi]=Windows Muistio -klooni +Comment[pl]=Klon Notatnika Windows +Comment[ca]=Un clon del Windows Notepad +Exec=notepad +Terminal=false +Type=Application +Icon=wine-notepad +Categories=Wine-Programs-Accessories; --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/watch +++ wine-1.2~winehq0~ubuntu~8.04/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://sf.net/wine/wine-(.*)\.tar\.bz2 --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/control +++ wine-1.2~winehq0~ubuntu~8.04/debian/control @@ -0,0 +1,58 @@ +Source: wine +Section: otherosfs +Priority: optional +XSBC-Original-Maintainer: Scott Ritchie +Maintainer: Ubuntu MOTU Developers +Uploaders: Arthur Loiret , Scott Ritchie , Stephan Hermann +Build-Depends: debhelper (>= 5.0.0), flex, bison, libx11-dev, libxt-dev, + libncurses5-dev [i386 lpia] | libncurses-dev [i386 lpia], + lib32ncurses5-dev [amd64], + libcupsys2-dev | libcupsys-dev, libfontconfig1-dev | libfontconfig-dev, libfreetype6-dev, libgl1-mesa-dev | nvidia-glx-dev | fglrx-driver-dev | libgl-dev, libgif-dev | libungif4-dev, libjack0.100.0-dev, libaudio-dev, + libasound2-dev [i386 lpia], + lib32asound2-dev [amd64], + libglu1-mesa-dev | libglu-dev, libxext-dev, + linux-kernel-headers, + libssl-dev, libgnutls-dev, + libcapi20-dev, docbook-utils, docbook-xsl, docbook-to-man, libjpeg62-dev, fontforge, libstdc++6-4.2-dev | libstdc++6-4.1-dev | libstdc++-dev, libldap2-dev, libxml2-dev, libxslt1-dev, libxxf86vm-dev, prelink [i386 amd64], libsane-dev, libhal-dev, libhal-storage-dev, libgphoto2-2-dev, libxrender-dev, libxcursor-dev, libesd0-dev, libxrandr-dev, liblcms1-dev, x11proto-xinerama-dev, libpng12-dev, libxcomposite-dev, + libc6-dev-i386 [amd64], lib32z1-dev [amd64], ia32-libs [amd64], gcc-multilib [amd64], libxi-dev, libxinerama-dev, libx86-dev, libgsm1-dev, libopenal-dev, libtiff4-dev +Standards-Version: 3.7.3 + +Package: wine +Architecture: any +Pre-Depends: dpkg (>= 1.14.12ubuntu3) +Depends: binfmt-support (>= 1.1.2), ${shlibs:Depends} +Recommends: winbind, wine-gecko +Suggests: msttcorefonts, xdg-utils +Conflicts: binfmt-support (<< 1.1.2), winesetuptk, wine-doc, wine-utils, libwine-alsa, libwine-arts, libwine-capi, libwine-cms, libwine-esd, libwine-gl, libwine-gphoto2, libwine-jack, libwine-ldap, libwine-nas, libwine-print, libwine-sane, libwine-twain, xwine, libwine +Replaces: winesetuptk, wine-doc, wine-utils, libwine-alsa, libwine-arts, libwine-capi, libwine-cms, libwine-esd, libwine-gl, libwine-gphoto2, libwine-jack, libwine-ldap, libwine-nas, libwine-print, libwine-sane, libwine-twain, xwine +Description: Microsoft Windows Compatibility Layer (Binary Emulator and Library) + Wine is a compatibility layer for running Windows applications on Linux. + Applications are run at full speed without the need of cpu emulation. Wine + does not require Microsoft Windows, however it can use native system dll + files in place of its own if they are available. + . + This package includes a program loader for running unmodified Windows executables + as well as the Wine project's free version of the Windows API for running programs + ported from Windows. + . + Homepage: http://www.winehq.org/ + +Package: wine-dev +Architecture: any +Section: libdevel +Pre-Depends: dpkg (>= 1.14.12ubuntu3) +Depends: wine (= ${binary:Version}), libc6-dev +Conflicts: libwine-dev +Replaces: libwine-dev, libwine +Description: Microsoft Windows Compatibility Layer (Development files) + Wine is a compatibility layer for running Windows applications on Linux. + Applications are run at full speed without the need of cpu emulation. Wine + does not require Microsoft Windows, however it can use native system dll + files in place of its own if they are available. + . + This package consists of the development files needed to compile programs + using wine's free version of the Microsoft Windows API. + . + Homepage: http://www.winehq.org/ + + --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-dev.dirs +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-dev.dirs @@ -0,0 +1,3 @@ +usr/include +usr/include/wine +usr/share/doc/wine-dev --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-winefile.svg +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-winefile.svg @@ -0,0 +1,1073 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-Programs-Accessories.directory +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-Programs-Accessories.directory @@ -0,0 +1,6 @@ +[Desktop Entry] +Type=Directory +Name=Accessories +Name[sv]=Tillbehör +Name[de]=Zubehör +Icon=folder --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-uninstaller.desktop +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-uninstaller.desktop @@ -0,0 +1,18 @@ +[Desktop Entry] +Name=Uninstall Wine Software +Name[sv]=Avinstallera Wine-programvara +Name[de]=Deinstalliere Wine Applikationen +Name[fi]=Poista Wine-ohjelmien asennuksia +Name[pl]=Deinstalacja oprogramowania Wine +Name[ca]=Elimineu programes del Wine +Comment=Uninstall Windows applications for Wine +Comment[sv]=Avinstallera Windows-program för Wine +Comment[de]=Wine Applikations Deinstallations Programm +Comment[fi]=Poista Wineen asennettuja Windows-sovelluksia +Comment[pl]=Deinstalowanie oprogramowania dla Wine +Comment[ca]=Elimineu programes del Windows que hageu instaŀlat amb el Wine +Exec=wine uninstaller +Terminal=false +Type=Application +Icon=wine-uninstaller +Categories=Wine; --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-notepad.svg +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-notepad.svg @@ -0,0 +1,1960 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.docs +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.docs @@ -0,0 +1,9 @@ +documentation/README.de +documentation/README.es +documentation/README.fr +documentation/README.it +documentation/README.pt +documentation/README.pt_br +ANNOUNCE +AUTHORS +README --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-uninstaller.svg +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-uninstaller.svg @@ -0,0 +1,1078 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Software Installer + + + software + install + installer + setup + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.install.i386 +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.install.i386 @@ -0,0 +1,5 @@ +usr/bin +usr/share +usr/lib/wine +usr/lib/*.so.* +etc/xdg --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-dev.install.amd64 +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-dev.install.amd64 @@ -0,0 +1,2 @@ +usr/lib32/*.so +usr/include --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.install.amd64 +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.install.amd64 @@ -0,0 +1,5 @@ +usr/bin +usr/share +usr/lib32/wine +usr/lib32/*.so.* +etc/xdg --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-browsedrive.desktop +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-browsedrive.desktop @@ -0,0 +1,18 @@ +[Desktop Entry] +Name=Browse C:\ Drive +Name[sv]=Bläddra i C:\ +Name[de]=Durchsuche C:\ +Name[fi]=Selaa C:\-asemaa +Name[pl]=Przeglądaj napęd C:\ +Name[ca]=Navegeu per l'unitat C:\ +Comment=Browse your virtual C:\ drive +Comment[sv]=Bläddra i virtuella enheten C:\ +Comment[de]=Durchsuche das virtuelle C:\ Laufwerk +Comment[fi]=Selaa virtuaalista C:\-asemaa +Comment[pl]=Przeglądanie wirtualnego napędu C:\ +Comment[ca]=Navegeu per la vostra unitat virtual C:\ +Exec=xdg-open ~/.wine/drive_c +Terminal=false +Type=Application +Icon=wine-winefile +Categories=Wine; --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.prerm +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.prerm @@ -0,0 +1,9 @@ +#!/bin/sh -e + +if [ "$1" = "remove" ] ; then + if [ -x /usr/sbin/update-binfmts ]; then + /usr/sbin/update-binfmts --package wine --remove wine /usr/bin/wine || true + fi +fi + +#DEBHELPER# --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-winehelp.desktop +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-winehelp.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Name=Wine Help Browser +Name[fi]=Wine-ohjeselain +Name[ca]=Ajuda del Wine +Comment=Windows Help Browser +Comment[fi]=Winen Windows-ohjeselain +Comment[ca]=Visualitzeu l'ajuda dels programes del Windows +Exec=winhelp +Terminal=false +Type=Application +Icon=wine +Categories=Wine;Utility;Emulator; --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.menu +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.menu @@ -0,0 +1,26 @@ + + + Applications + + wine-wine + wine-wine.directory + + Wine + + + wine-Programs + wine-Programs.directory + + Wine-Programs + + + wine-Programs-Accessories + wine-Programs-Accessories.directory + + Wine-Programs-Accessories + + + + + --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-regedit.desktop +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-regedit.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Name=Wine RegEdit +Name[fi]=Wine RegEdit +Name[ca]=Editor del registre del Wine +Comment=Wine Registry Editor +Comment[fi]=Wine-rekisterieditori +Comment[ca]=Editeu les entrades del registre del Wine +Exec=regedit +Terminal=false +Type=Application +Icon=wine.xpm +Categories=Wine;Application;Settings;Emulator; --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-dev.install.lpia +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-dev.install.lpia @@ -0,0 +1,2 @@ +usr/lib/*.so +usr/include --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.dirs.lpia +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.dirs.lpia @@ -0,0 +1,7 @@ +usr/bin +usr/share +usr/share/man +usr/share/man/man1 +usr/share/man/man5 +usr/lib +usr/lib/wine --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.dirs.amd64 +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.dirs.amd64 @@ -0,0 +1,7 @@ +usr/bin +usr/share +usr/share/man +usr/share/man/man1 +usr/share/man/man5 +usr/lib32 +usr/lib32/wine --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-winefile.desktop +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-winefile.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Name=Wine File +Name[fi]=Wine File +Name[ca]=Explorador d'arxius del Wine +Comment=Wine File Browser +Comment[fi]=Winen tiedostoselain +Comment[ca]=Exploreu les vostres unitats +Exec=winefile +Terminal=false +Type=Application +Icon=wine +Categories=Wine;Utility;Emulator; --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/copyright +++ wine-1.2~winehq0~ubuntu~8.04/debian/copyright @@ -0,0 +1,311 @@ +Wine has been 1st debianized by Brian White, first +taken over by Vincent Renardias, then by Andrew Lenharth, then by Ove Kaaven. +This package is currently maintained by Scott Ritchie: scott@open-vote.org + +The Wine homepage is http://www.winehq.com/ +Download locations are listed in the ANNOUNCE file. + +Copyright (c) 1993-2004 the Wine project authors (see the file AUTHORS +for a complete list) + +Wine is free software; you can redistribute it and/or modify it under +the terms of the GNU Lesser General Public License as published by the +Free Software Foundation; either version 2.1 of the License, or (at +your option) any later version. + +On Debian systems, the complete text of the GNU Lesser General Public +License can be found in /usr/share/common-licenses/LGPL-2.1 file. + + +The icon files (debian/wine-notepad.svg, debian/wine-uninstaller.svg, +debian/wine-winefile.svg, debian/wine.svg, and debian/wine-winecfg.svg) were +taken from the ubuntustudio-icon-themes package. Their specific author is +unknown, however the package itself has this copyright: + +Upstream Author: + Ulisse Perusin + Steven Garrity + Lapo Calamandrei + Ryan Collier + Rodney Dawes + Andreas Nilsson + Tuomas Kuosmanen + Garrett LeSage + Jakub Steiner + Andrew Wedderburn + Daniel Holbach + +Copyright: (c) 2006 - 2007 + Ulisse Perusin + Steven Garrity + Lapo Calamandrei + Ryan Collier + Rodney Dawes + Andreas Nilsson + Tuomas Kuosmanen + Garrett LeSage + Jakub Steiner + Andrew Wedderburn + Huw Wilkins + +The UbuntuStudio Icon Theme is licensed under the Creative Commons Legal Code +Attribution-ShareAlike 2.5 + +CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE +LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN +ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS +INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES +REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR +DAMAGES RESULTING FROM ITS USE. + +License + +THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS +CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS +PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE +WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW +IS PROHIBITED. + +BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND +AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU +THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH +TERMS AND CONDITIONS. + +1. Definitions + + 1. "Collective Work" means a work, such as a periodical issue, + anthology or encyclopedia, in which the Work in its entirety in + unmodified form, along with a number of other contributions, + constituting separate and independent works in themselves, are + assembled into a collective whole. A work that constitutes a + Collective Work will not be considered a Derivative Work + (as defined below) for the purposes of this License. + 2. "Derivative Work" means a work based upon the Work or upon the + Work and other pre-existing works, such as a translation, musical + arrangement, dramatization, fictionalization, motion picture + version, sound recording, art reproduction, abridgment, + condensation, or any other form in which the Work may be recast, + transformed, or adapted, except that a work that constitutes a + Collective Work will not be considered a Derivative Work for the + purpose of this License. For the avoidance of doubt, where the Work + is a musical composition or sound recording, the synchronization of + the Work in timed-relation with a moving image ("synching") will be + considered a Derivative Work for the purpose of this License. + 3. "Licensor" means the individual or entity that offers the Work + under the terms of this License. + 4. "Original Author" means the individual or entity who created the + Work. + 5. "Work" means the copyrightable work of authorship offered under + the terms of this License. + 6. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License + with respect to the Work, or who has received express permission + from the Licensor to exercise rights under this License despite a + previous violation. + 7. "License Elements" means the following high-level license + attributes as selected by Licensor and indicated in the title of + this License: Attribution, ShareAlike. + +2. Fair Use Rights. Nothing in this license is intended to reduce, +limit, or restrict any rights arising from fair use, first sale or +other limitations on the exclusive rights of the copyright owner under +copyright law or other applicable laws. + +3. License Grant. Subject to the terms and conditions of this License, +Licensor hereby grants You a worldwide, royalty-free, non-exclusive, +perpetual (for the duration of the applicable copyright) license to +exercise the rights in the Work as stated below: + + 1. to reproduce the Work, to incorporate the Work into one or more + Collective Works, and to reproduce the Work as incorporated in the + Collective Works; + 2. to create and reproduce Derivative Works; + 3. to distribute copies or phonorecords of, display publicly, + perform publicly, and perform publicly by means of a digital audio + transmission the Work including as incorporated in Collective Works; + 4. to distribute copies or phonorecords of, display publicly, + perform publicly, and perform publicly by means of a digital audio + transmission Derivative Works. + 5. + + For the avoidance of doubt, where the work is a musical + composition: + 1. Performance Royalties Under Blanket Licenses. Licensor + waives the exclusive right to collect, whether individually + or via a performance rights society (e.g. ASCAP, BMI, SESAC), + royalties for the public performance or public digital + performance (e.g. webcast) of the Work. + 2. Mechanical Rights and Statutory Royalties. Licensor waives + the exclusive right to collect, whether individually or via a + music rights society or designated agent (e.g. Harry Fox + Agency), royalties for any phonorecord You create from the + Work ("cover version") and distribute, subject to the + compulsory license created by 17 USC Section 115 of the US + Copyright Act (or the equivalent in other jurisdictions). + 6. Webcasting Rights and Statutory Royalties. For the avoidance of + doubt, where the Work is a sound recording, Licensor waives the + exclusive right to collect, whether individually or via a + performance-rights society (e.g. SoundExchange), royalties for the + public digital performance (e.g. webcast) of the Work, subject to + the compulsory license created by 17 USC Section 114 of the US + Copyright Act (or the equivalent in other jurisdictions). + +The above rights may be exercised in all media and formats whether now +known or hereafter devised. The above rights include the right to make +such modifications as are technically necessary to exercise the rights +in other media and formats. All rights not expressly granted by +Licensor are hereby reserved. + +4. Restrictions.The license granted in Section 3 above is expressly +made subject to and limited by the following restrictions: + + 1. You may distribute, publicly display, publicly perform, or + publicly digitally perform the Work only under the terms of this + License, and You must include a copy of, or the Uniform Resource + Identifier for, this License with every copy or phonorecord of the + Work You distribute, publicly display, publicly perform, or publicly + digitally perform. You may not offer or impose any terms on the Work + that alter or restrict the terms of this License or the recipients' + exercise of the rights granted hereunder. You may not sublicense the + Work. You must keep intact all notices that refer to this License + and to the disclaimer of warranties. You may not distribute, + publicly display, publicly perform, or publicly digitally perform + the Work with any technological measures that control access or use + of the Work in a manner inconsistent with the terms of this License + Agreement. The above applies to the Work as incorporated in a + Collective Work, but this does not require the Collective Work apart + from the Work itself to be made subject to the terms of this + License. If You create a Collective Work, upon notice from any + Licensor You must, to the extent practicable, remove from the + Collective Work any credit as required by clause 4(c), as requested. + If You create a Derivative Work, upon notice from any Licensor You + must, to the extent practicable, remove from the Derivative Work + any credit as required by clause 4(c), as requested. + 2. You may distribute, publicly display, publicly perform, or + publicly digitally perform a Derivative Work only under the terms + of this License, a later version of this License with the same + License Elements as this License, or a Creative Commons iCommons + license that contains the same License Elements as this License + (e.g. Attribution-ShareAlike 2.5 Japan). You must include a copy of, + or the Uniform Resource Identifier for, this License or other + license specified in the previous sentence with every copy or + phonorecord of each Derivative Work You distribute, publicly + display, publicly perform, or publicly digitally perform. You may + not offer or impose any terms on the Derivative Works that alter or + restrict the terms of this License or the recipients' exercise of + the rights granted hereunder, and You must keep intact all notices + that refer to this License and to the disclaimer of warranties. + You may not distribute, publicly display, publicly perform, or + publicly digitally perform the Derivative Work with any + technological measures that control access or use of the Work in a + manner inconsistent with the terms of this License Agreement. + The above applies to the Derivative Work as incorporated in a + Collective Work, but this does not require the Collective Work + apart from the Derivative Work itself to be made subject to the + terms of this License. + 3. If you distribute, publicly display, publicly perform, or + publicly digitally perform the Work or any Derivative Works or + Collective Works, You must keep intact all copyright notices for + the Work and provide, reasonable to the medium or means You are + utilizing: (i) the name of the Original Author (or pseudonym, if + applicable) if supplied, and/or (ii) if the Original Author and/or + Licensor designate another party or parties (e.g. a sponsor + institute, publishing entity, journal) for attribution in Licensor's + copyright notice, terms of service or by other reasonable means, the + name of such party or parties; the title of the Work if supplied; to + the extent reasonably practicable, the Uniform Resource Identifier, + if any, that Licensor specifies to be associated with the Work, + unless such URI does not refer to the copyright notice or licensing + information for the Work; and in the case of a Derivative Work, a + credit identifying the use of the Work in the Derivative Work (e.g., + "French translation of the Work by Original Author," or "Screenplay + based on original Work by Original Author"). Such credit may be + implemented in any reasonable manner; provided, however, that in the + case of a Derivative Work or Collective Work, at a minimum such + credit will appear where any other comparable authorship credit + appears and in a manner at least as prominent as such other + comparable authorship credit. + +5. Representations, Warranties and Disclaimer + +UNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS +THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND +CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, +INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, +FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF +LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF +ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW +THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY +TO YOU. + +6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE +LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR +ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES +ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR +HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. Termination + + 1. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Derivative Works or + Collective Works from You under this License, however, will not have + their licenses terminated provided such individuals or entities + remain in full compliance with those licenses. Sections 1, 2, 5, 6, + 7, and 8 will survive any termination of this License. + 2. Subject to the above terms and conditions, the license granted + here is perpetual (for the duration of the applicable copyright in + the Work). Notwithstanding the above, Licensor reserves the right to + release the Work under different license terms or to stop + distributing the Work at any time; provided, however that any such + election will not serve to withdraw this License (or any other + license that has been, or is required to be, granted under the terms + of this License), and this License will continue in full force and + effect unless terminated as stated above. + +8. Miscellaneous + + 1. Each time You distribute or publicly digitally perform the Work + or a Collective Work, the Licensor offers to the recipient a license + to the Work on the same terms and conditions as the license granted + to You under this License. + 2. Each time You distribute or publicly digitally perform a + Derivative Work, Licensor offers to the recipient a license to the + original Work on the same terms and conditions as the license + granted to You under this License. + 3. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further + action by the parties to this agreement, such provision shall be + reformed to the minimum extent necessary to make such provision + valid and enforceable. + 4. No term or provision of this License shall be deemed waived and + no breach consented to unless such waiver or consent shall be in + writing and signed by the party to be charged with such waiver or + consent. + 5. This License constitutes the entire agreement between the parties + with respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and + You. + +Creative Commons is not a party to this License, and makes no warranty +whatsoever in connection with the Work. Creative Commons will not be +liable to You or any party on any legal theory for any damages +whatsoever, including without limitation any general, special, +incidental or consequential damages arising in connection to this +license. Notwithstanding the foregoing two (2) sentences, if Creative +Commons has expressly identified itself as the Licensor hereunder, +it shall have all rights and obligations of Licensor. + +Except for the limited purpose of indicating to the public that the +Work is licensed under the CCPL, neither party will use the trademark +"Creative Commons" or any related trademark or logo of Creative Commons +without the prior written consent of Creative Commons. Any permitted +use will be in compliance with Creative Commons' then-current trademark +usage guidelines, as may be published on its website or otherwise made +available upon request from time to time. + +Creative Commons may be contacted at http://creativecommons.org/ --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/compat +++ wine-1.2~winehq0~ubuntu~8.04/debian/compat @@ -0,0 +1 @@ +5 --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-dev.install.i386 +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-dev.install.i386 @@ -0,0 +1,2 @@ +usr/lib/*.so +usr/include --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-dev.install +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-dev.install @@ -0,0 +1,2 @@ +usr/lib/*.so +usr/include --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.install.lpia +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.install.lpia @@ -0,0 +1,5 @@ +usr/bin +usr/share +usr/lib/wine +usr/lib/*.so.* +etc/xdg --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.install +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.install @@ -0,0 +1,4 @@ +usr/bin +usr/share +usr/lib/wine +usr/lib/*.so.* --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-Programs.directory +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-Programs.directory @@ -0,0 +1,6 @@ +[Desktop Entry] +Type=Directory +Name=Programs +Name[sv]=Program +Name[de]=Programme +Icon=folder --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.links +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.links @@ -0,0 +1 @@ +usr/bin/wine usr/bin/wine-auto --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.binfmt +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.binfmt @@ -0,0 +1,3 @@ +package wine +interpreter /usr/bin/wine +magic MZ --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine-winecfg.svg +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine-winecfg.svg @@ -0,0 +1,1490 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.postinst +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.postinst @@ -0,0 +1,18 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ] ; then + + if [ -x /usr/sbin/update-binfmts ]; then + /usr/sbin/update-binfmts --import wine || true + fi +fi + +if [ "$1" = "upgrade" ] ; then + if ps -C wineserver > /dev/null && test -d /var/lib/update-notifier/user.d/ ; then + cp -f /usr/share/wine/wineserver-restart-required.update-notifier /var/lib/update-notifier/user.d/wineserver-restart-required + fi +fi + +#DEBHELPER# + + --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/wine.dirs +++ wine-1.2~winehq0~ubuntu~8.04/debian/wine.dirs @@ -0,0 +1,7 @@ +usr/bin +usr/share +usr/share/man +usr/share/man/man1 +usr/share/man/man5 +usr/lib +usr/lib/wine --- wine-1.2~winehq0~ubuntu~8.04.orig/debian/rules +++ wine-1.2~winehq0~ubuntu~8.04/debian/rules @@ -0,0 +1,224 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +# Rational http://www.winehq.org/pipermail/wine-bugs/2007-July/062505.html +LDFLAGS = +CFLAGS = -Wall -g + + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + + + +ifeq ($(DEB_BUILD_ARCH), amd64) + # Support for 64-bit windows binaries is disabled for now until + # Wine can be built with both 64 and 32 bit support + # CONFFLAGS += --enable-win64 + + # There are missing symlinks in /usr/lib32, even with the appropriate + # build dependencies installed, so we will create symlinks ourselves in + # our own temporary library directory + LIBTMP := $(shell pwd)/debian/libtmp + LDFLAGS += -L$(LIBTMP) + CONFFLAGS += --libdir=\$${prefix}/lib32 +endif + + + +# shared library versions, option 1 +#version=2.0.5 +#major=2 +# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so +#version=`ls src/.libs/lib*.so.* | \ +# awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'` +#major=`ls src/.libs/lib*.so.* | \ +# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'` + +config.status: configure + dh_testdir + # Add here commands to configure the package. + + # On amd64 we must use our temporary lib directory to create symlinks + # since the linker demands *.so files and they are missing from the + # 32 bit library packages +ifeq ($(DEB_BUILD_ARCH), amd64) + mkdir -p $(LIBTMP) + ln -s /usr/lib32/libX11.so.6 $(LIBTMP)/libX11.so + ln -s /usr/lib32/libXext.so.6 $(LIBTMP)/libXext.so + ln -s /usr/lib32/libfreetype.so.6 $(LIBTMP)/libfreetype.so + ln -s /usr/lib32/libfontconfig.so.1 $(LIBTMP)/libfontconfig.so + ln -s /usr/lib32/libGL.so.1 $(LIBTMP)/libGL.so + ln -s /usr/lib32/libGLU.so.1 $(LIBTMP)/libGLU.so + ln -s /usr/lib32/libXrender.so.1 $(LIBTMP)/libXrender.so + ln -s /usr/lib32/libXinerama.so.1 $(LIBTMP)/libXinerama.so + ln -s /usr/lib32/libXxf86vm.so.1 $(LIBTMP)/libXxf86vm.so + ln -s /usr/lib32/libXi.so.6 $(LIBTMP)/libXi.so + ln -s /usr/lib32/libXrandr.so.2 $(LIBTMP)/libXrandr.so + ln -s /usr/lib32/liblcms.so.1 $(LIBTMP)/liblcms.so + ln -s /usr/lib32/libpng12.so.0 $(LIBTMP)/libpng.so + ln -s /usr/lib32/libcrypto.so.0.9.8 $(LIBTMP)/libcrypto.so + ln -s /usr/lib32/libssl.so.0.9.8 $(LIBTMP)/libssl.so + ln -s /usr/lib32/libgnutls.so.13 $(LIBTMP)/libgnutls.so + ln -s /usr/lib32/libxml2.so.2 $(LIBTMP)/libxml2.so + ln -s /usr/lib32/libjpeg.so.62 $(LIBTMP)/libjpeg.so + ln -s /usr/lib32/libXcomposite.so.1 $(LIBTMP)/libXcomposite.so + ln -s /usr/lib32/libcups.so.2 $(LIBTMP)/libcups.so + ln -s /usr/lib32/libXcursor.so.1 $(LIBTMP)/libXcursor.so + ln -s /usr/lib32/libdbus-1.so.3 $(LIBTMP)/libdbus-1.so + ln -s /usr/lib32/libhal.so.1 $(LIBTMP)/libhal.so + ln -s /usr/lib32/libsane.so.1 $(LIBTMP)/libsane.so + ln -s /usr/lib32/libgphoto2.so.2 $(LIBTMP)/libgphoto2.so + ln -s /usr/lib32/libgphoto2_port.so.0 $(LIBTMP)/libgphoto2_port.so + ln -s /usr/lib32/libldap-2.4.so.2 $(LIBTMP)/libldap.so + ln -s /usr/lib32/libldap_r-2.4.so.2 $(LIBTMP)/libldap_r.so + ln -s /usr/lib32/liblber-2.4.so.2 $(LIBTMP)/liblber.so + ln -s /usr/lib32/libxslt.so.1 $(LIBTMP)/libxslt.so + ln -s /usr/lib32/libcapi20.so.3 $(LIBTMP)/libcapi20.so + ln -s /usr/lib32/libjack.so.0 $(LIBTMP)/libjack.so + ln -s /usr/lib32/libodbc.so.1 $(LIBTMP)/libodbc.so +endif + + CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info $(CONFFLAGS) + + +build: build-stamp +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) depend + $(MAKE) + + # Make the documentation. The dh_installdocs command should install them + # Remember to have the files wine.docs and wine-dev.docs point to any new + # documentation files made + # As of 20050524 as the documentation was split into another package + # and all that's here are the foreign language readmes and the manpages. + # It should be compiled automatically as the package compiles + # $(MAKE) -C documentation txt + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + #-$(MAKE) -C documentation clean + + # Clean up our temporary library directory +ifeq ($(DEB_BUILD_ARCH), amd64) + rm -rf $(LIBTMP) +endif + +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tmp + $(MAKE) install prefix=$(CURDIR)/debian/tmp/usr + + # Create a system-wide Wine Applications folder + mkdir -p $(CURDIR)/debian/tmp/etc/xdg/menus/applications-merged + cp -f $(CURDIR)/debian/wine.menu $(CURDIR)/debian/tmp/etc/xdg/menus/applications-merged + + # Install application-specific desktop files + mkdir -p $(CURDIR)/debian/tmp/usr/share/applications + cp -f $(CURDIR)/debian/wine-uninstaller.desktop $(CURDIR)/debian/tmp/usr/share/applications/ + cp -f $(CURDIR)/debian/wine-notepad.desktop $(CURDIR)/debian/tmp/usr/share/applications/ + cp -f $(CURDIR)/debian/wine-browsedrive.desktop $(CURDIR)/debian/tmp/usr/share/applications/ + cp -f $(CURDIR)/debian/wine-winecfg.desktop $(CURDIR)/debian/tmp/usr/share/applications/ + + mkdir -p $(CURDIR)/debian/tmp/usr/share/desktop-directories/ + cp -f $(CURDIR)/debian/wine-wine.directory $(CURDIR)/debian/tmp/usr/share/desktop-directories/ + cp -f $(CURDIR)/debian/wine-Programs.directory $(CURDIR)/debian/tmp/usr/share/desktop-directories/ + cp -f $(CURDIR)/debian/wine-Programs-Accessories.directory $(CURDIR)/debian/tmp/usr/share/desktop-directories/ + # Drop MIME-sensing .desktop file: execution must use binfmt-support + # Re-enabled for usability purposes + # rm -f $(CURDIR)/debian/tmp/usr/share/applications/wine.desktop + + # Install icons + # These should be moved upstream, but we can't do that in time for Gutsy + mkdir -p $(CURDIR)/debian/tmp/usr/share/pixmaps + cp -f $(CURDIR)/debian/wine.svg $(CURDIR)/debian/tmp/usr/share/pixmaps + cp -f $(CURDIR)/debian/wine-uninstaller.svg $(CURDIR)/debian/tmp/usr/share/pixmaps + cp -f $(CURDIR)/debian/wine-notepad.svg $(CURDIR)/debian/tmp/usr/share/pixmaps + cp -f $(CURDIR)/debian/wine-winefile.svg $(CURDIR)/debian/tmp/usr/share/pixmaps + cp -f $(CURDIR)/debian/wine-winecfg.svg $(CURDIR)/debian/tmp/usr/share/pixmaps + + # Set up binfmt-support file + mkdir -p $(CURDIR)/debian/tmp/usr/share/binfmts + cp $(CURDIR)/debian/wine.binfmt $(CURDIR)/debian/tmp/usr/share/binfmts/wine + + # Set up wineserver restart notificition + mkdir -p $(CURDIR)/debian/tmp/usr/share/wine/ + cp -f $(CURDIR)/debian/wineserver-restart-required.update-notifier $(CURDIR)/debian/tmp/usr/share/wine/ + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + # The changelog was removed upstream in 1.0-rc4 as it was very large + dh_installchangelogs + dh_installdocs -a + dh_installexamples + dh_install --fail-missing --sourcedir=debian/tmp + dh_installmime + dh_installman + dh_link + dh_strip -Xwine-pthread -Xwine-kthread + dh_compress + dh_fixperms + dh_icons + dh_desktop + dh_makeshlibs + dh_installdeb +ifeq ($(DEB_BUILD_ARCH), amd64) + dh_gencontrol -- -V"shlibs:Depends= ia32-libs (>= 1.6), lib32asound2 (>> 1.0.14), libc6-i386 (>= 2.6-1), lib32nss-mdns (>= 0.10-3), libx86-1" +else + dh_shlibdeps -L wine -l debian/wine/usr/lib + dh_gencontrol +endif + dh_md5sums + dh_builddeb -- -Z lzma + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install