summaryrefslogtreecommitdiff
path: root/emulators/wine
AgeCommit message (Collapse)AuthorFilesLines
2005-10-10Changes 20050930:adam6-33/+58
- Joystick force feedback support. - Beginnings of Win64 support. - Many MSI fixes and cleanups. - Font linking support. - Several OLE fixes. - Some fixes for MacOS/x86. - Lots of bug fixes.
2005-09-07Changes 20050830:adam7-86/+73
- A lot more theming support. - Many improvements to the various crypto dlls. - More LDAP support. - Beginnings of an MSXML implementation. - Better MSHTML support. - Emulated version now set to Windows 2000 by default. - Direct3D fixes and improvements. - Lots of bug fixes.
2005-08-12Security fix for SA16352.salo3-3/+30
"A vulnerability in wine can be exploited by malicious, local users to perform certain actions on a vulnerable system with escalated privileges. The vulnerability is caused due to a temporary file being created insecurely in "/tmp" by winelauncher.in under certain error conditions. This can be exploited via symlink attacks to create or overwrite arbitrary files with the privileges of the user running the affected application." http://secunia.com/advisories/16352/ Patch from Wine CVS.
2005-07-26Changes 20050725:adam8-37/+79
* 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.
2005-06-05Include machine/limits.h only when it is available.minskim2-5/+7
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+2
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-31Convert to options framework.wiz2-7/+12
2005-05-25Changes 20050419:adam9-45/+68
- 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. Changes 20050524: - 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.
2005-05-22Replace explicit build dependencies on bison and manipulations on thejlam1-5/+2
YACC variable with USE_TOOLS+=bison.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-22Changes 20050310:adam3-8/+11
- 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.
2005-03-14Fix incorrect quoting which caused mismatched quote in CFLAGSabs1-2/+2
2005-03-11NetBSD-1.6.2 does not have <sys/ucontext.h>. So only use it forrillig2-8/+8
NetBSD>=2.0. Approved by wiz.
2005-03-07Fix quoting.uebayasi1-2/+2
2005-02-23Add RMD160 digests to the SHA1 onesagc1-1/+2
2005-02-16Changes 20050211:adam5-20/+91
* 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.
2005-01-17PLIST fix + depend on fontforgeadam2-13/+15
2005-01-14Changes 20050111:adam9-57/+96
- 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.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-2/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-10-01there will not be a NetBSD-1.[7-9] but will be a NetBSD-[2-9].*grant1-2/+2
adjust patterns used in ONLY_FOR_PLATFORM/NOT_FOR_PLATFORM to reflect this.
2004-08-28Patch wine to use mk/ossaudio.buildlink3.mk and DEVOSSAUDIOben3-3/+22
instead of hardcoding /dev/dsp.
2004-05-06Changes 20040505:adam5-24/+25
- 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
2004-04-09Changes 20040408:adam6-16/+42
* 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.
2004-04-04Add buildlink3.mk (needed by mono's winelib).recht1-0/+25
2004-03-12Changes 20040309:adam5-37/+61
* 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.
2004-02-23UNLIMIT_RESOURCES=datasize for gcc3.3 -arch=pentium2 on NetBSD 1.6.2abs1-1/+2
2004-02-16Changes 20040213:adam6-19/+38
- Improved support for screen resolution changes. - More shell32 improvements. - Several Winelib compatibility fixes. - Beginnings of support for typelib creation. - Lots of bug fixes.
2004-02-11'UNLIMIT_RESOURCES=datasize' for gcc3 on i386 1.6.2abs1-1/+2
2004-01-22Changes 20040121:adam6-40/+27
- 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. Pkgsrc: wine does not seem to need unlimited data size (in fact, I tried smaller limit then the default and it worked), so MESSAGE removed.
2004-01-22replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2004-01-20Add UNLIMIT_RESOURCES=datasize to fix build under gcc3abs1-1/+3
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2004-01-17Undo previous: committed by accident.wiz2-7/+11
2004-01-17Add MESSAGE describing that the data size limitwiz3-11/+15
needs to be raised to run wine.
2004-01-03Bump package revisions for tiff update.reed1-1/+2
Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
2003-12-26"Solaris" is not a valid OPSYS. s/Solaris/SunOS/grant1-2/+2
"thou shalt not blindly apply patches".
2003-12-25Better make that NetBSD-2*-i386 (only).fredb1-2/+2
2003-12-25Add a few other platforms reasonably expected to be supported, includingfredb1-2/+3
NetBSD-2* and FreeBSD. Should close PR pkg/23882.
2003-12-16WHAT'S NEW with Wine-20031212: (see ChangeLog for details)adam6-27/+55
- 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.
2003-12-01Changes Wine-20031118:adam5-31/+24
- Many printing improvements. - Run-time detection of NPTL threading. - Lots of code merges from Crossover Office 2.1. - Some reorganization of the source tree. - Lots of bug fixes.
2003-11-30As pointed out by jlam:jschauma1-1/+2
bump PKGREVISION on packages depending on graphics/glu due to latest shlib changes there.
2003-10-26Add some files.wiz1-1/+6
2003-10-17WHAT'S NEW with Wine-20031016: (see ChangeLog for details)adam6-26/+24
- Support for the Xrandr extension. - Dll separation of kernel and ntdll is finished. - Many enhanced metafile improvements. - Lots of bug fixes.
2003-09-28Avoid using `tl' variable expansion modifier, it is too new to be supportedseb1-2/+2
on all Pkgsrc platforms.
2003-09-25Sort PLIST.wiz1-7/+7
2003-09-23Added buildlinks for libungif and pthreadadam1-4/+5
2003-09-15Changes 20030911:adam1-0/+13
- 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. Changes 20030813: - Partial implementation of the Microsoft Installer (msi.dll). - GUI for regedit (from ReactOS). - DirectMusic dlls reorganization. - Many Wininet improvements. - Lots of bug fixes.
2003-09-15Changes 20030911:adam7-94/+59
- 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. Changes 20030813: - Partial implementation of the Microsoft Installer (msi.dll). - GUI for regedit (from ReactOS). - DirectMusic dlls reorganization. - Many Wininet improvements. - Lots of bug fixes.
2003-07-28CONFIGURE_ARGS changedadam1-2/+2