From seotaewong40 at gmail.com Thu Jan 3 02:15:32 2013 From: seotaewong40 at gmail.com (Tae Wong) Date: Thu, 3 Jan 2013 17:15:32 +0900 Subject: [Wine] Russian translators: living countries Message-ID: You?re knowing to have the living countries for all available Russian translators in Wine. Andrey Esin Alexander Kanavin Konstantin Kondratyuk Oleg Korda Phil Krylov Alexander Lakhin Vitaly Lipatov Vitaliy Margolen Ilia Mirkin Oleh R. Nykyforchyn Vitaly Perov Oleg Prokhorov Pavel Roskin Dmitrij Sinukov Kirill K. Smirnov Igor Stepin Andrey Turkin Vasily I. Volchenko Wine is available in Russian language, so you need to try it out. From gary719_list1 at verizon.net Sat Jan 12 15:13:14 2013 From: gary719_list1 at verizon.net (Gary Roach) Date: Sat, 12 Jan 2013 13:13:14 -0800 Subject: [Wine] Using Wine-git for running programs. Message-ID: <50F1D1EA.8090108@verizon.net> OS Debian Linux Wheezy wine-1.5.21-109-g136b738 I am just reinstalling wine and installed wine-git because I know I am going to have to do a regression or two. I haven't bothered to install wine by it self. When I tried to install and run a version of Websters dictionary the program installed without error but refused to run producing a fatal error window. I had this program running under wine 1.5.5 some time ago and it ran fine. Is the failure due to a change in the newer version or is it due to the fact that I am trying to run the program from wine-git with no straight wine copy installed. Do I need to install a straight copy of wine as well as wine-git. All help will be sincerely appreciated. Gary R. From gurketsky at googlemail.com Mon Jan 14 04:48:35 2013 From: gurketsky at googlemail.com (gurketsky) Date: Mon, 14 Jan 2013 11:48:35 +0100 Subject: [Wine] Using Wine-git for running programs. In-Reply-To: <50F1D1EA.8090108@verizon.net> References: <50F1D1EA.8090108@verizon.net> Message-ID: <50F3E283.8080909@googlemail.com> On 12.01.2013 22:13, Gary Roach wrote: > OS Debian Linux Wheezy > wine-1.5.21-109-g136b738 > > I am just reinstalling wine and installed wine-git because I know I am > going to have to do a regression or two. I haven't bothered to install > wine by it self. When I tried to install and run a version of Websters > dictionary the program installed without error but refused to run > producing a fatal error window. I had this program running under wine > 1.5.5 some time ago and it ran fine. Is the failure due to a change in > the newer version or is it due to the fact that I am trying to run the > program from wine-git with no straight wine copy installed. Do I need to > install a straight copy of wine as well as wine-git. > > All help will be sincerely appreciated. > > Gary R. > Using wine from git is enough. You could run it directly from the build directory. There is no need to install it. Make sure you have all dependencies available. Well if wine 1.5.5 worked in the past, version 1.5.5 should also work from your own git build. If it doesn't work, check if your distribution has some patches applied. After that, you could run the regression test. Gurketsky From gary719_list1 at verizon.net Tue Jan 15 16:28:15 2013 From: gary719_list1 at verizon.net (Gary Roach) Date: Tue, 15 Jan 2013 14:28:15 -0800 Subject: [Wine] msvcirt.dll problem with Mirriam Webster Dictionary Message-ID: <50F5D7FF.5010301@verizon.net> Recently, I had to reinstall one of my Debian Wheezy systems and installed wine-git (wine 1.5.21) in the process. I am using wine-git because of an anticipated problem with one of the packages that I need to install. I didn't anticipate a problem with the dictionary since I have use it before with no problem. The dictionary program installed with no problem but when I try to run it I get the following error: Unhandled exception: unimplemented function msvcirt.dll.??0ifstream@@QAE at PBDHH@Z called in 32-bit code (0x7b83c512). I've seen this error before in the past and found various references when searching the web. There were quit a few references to similar problems from the 2006 to 2008 era but nothing recent. There are some references to using winecfg to solve the problem but the descriptions were out of date and confusing. I have tried to set both Windows 2000 and Windows XP as the defaults but get the same error. Short of a complete regression analysis, does anyone have any suggestions. Gary R. From zboszor at pr.hu Fri Jan 18 07:40:24 2013 From: zboszor at pr.hu (Boszormenyi Zoltan) Date: Fri, 18 Jan 2013 14:40:24 +0100 Subject: [Wine] Dogfood test: PostgreSQL compiled with MinGW cross-compiler on Fedora 18 Message-ID: <50F950C8.2020004@pr.hu> Hi, I wanted to test PostgreSQL under Wine compiled with Fedora 18's MingW cross-compiler: $ wine --version wine-1.5.20 $ mingw64-configure $ mingw64-make $ sudo mingw64-make install The source compiled nicely but running "wine initdb.exe" fails because Wine reports my user as an administrator and PostgreSQL intentionally asks for a non-admin user to run under: [zozo at localhost ~]$ wine /usr/x86_64-w64-mingw32/sys-root/mingw/bin/initdb.exe -D Z:/home/zozo/pgd93win fixme:advapi:CreateRestrictedToken (0x30, 0x1, 2, 0x32f710, 0, (nil), 0, (nil), 0x32f6e8): stub initdb: could not create restricted token: error code 120 The files belonging to this database system will be owned by user "zozo". This user must also own the server process. The database cluster will be initialized with locale "Hungarian_Hungary.1250". The default database encoding has accordingly been set to "WIN1250". The default text search configuration will be set to "hungarian". creating directory Z:/home/zozo/pgd93win ... ok creating subdirectories ... ok selecting default max_connections ... 10 selecting default shared_buffers ... 400kB creating configuration files ... ok creating template1 database in Z:/home/zozo/pgd93win/base/1 ... initdb: could not re-execute with restricted token: error code 120 Execution of PostgreSQL by a user with administrative permissions is not permitted. The server must be started under an unprivileged user ID to prevent possible system security compromises. See the documentation for more information on how to properly start the server. pclose failed: No space left on device initdb: removing data directory "Z:/home/zozo/pgd93win" If I set $ export PG_RESTRICT_EXEC=1 then error is [zozo at localhost ~]$ wine /usr/x86_64-w64-mingw32/sys-root/mingw/bin/initdb.exe -D Z:/home/zozo/pgd93win The files belonging to this database system will be owned by user "zozo". This user must also own the server process. The database cluster will be initialized with locale "Hungarian_Hungary.1250". The default database encoding has accordingly been set to "WIN1250". The default text search configuration will be set to "hungarian". creating directory Z:/home/zozo/pgd93win ... ok creating subdirectories ... ok selecting default max_connections ... 10 selecting default shared_buffers ... 400kB creating configuration files ... ok creating template1 database in Z:/home/zozo/pgd93win/base/1 ... Execution of PostgreSQL by a user with administrative permissions is not permitted. The server must be started under an unprivileged user ID to prevent possible system security compromises. See the documentation for more information on how to properly start the server. pclose failed: No space left on device initdb: removing data directory "Z:/home/zozo/pgd93win" OK, so Wine report an admin user. In the PostgreSQL backend code it can be worked around to "return 0" early in pgwin32_is_admin() in src/backend/port/win32/security.c. But then: [zozo at localhost ~]$ wine /usr/x86_64-w64-mingw32/sys-root/mingw/bin/initdb.exe -D Z:/home/zozo/pgd93win The files belonging to this database system will be owned by user "zozo". This user must also own the server process. The database cluster will be initialized with locale "Hungarian_Hungary.1250". The default database encoding has accordingly been set to "WIN1250". The default text search configuration will be set to "hungarian". creating directory Z:/home/zozo/pgd93win ... ok creating subdirectories ... ok selecting default max_connections ... 100 selecting default shared_buffers ... 128MB creating configuration files ... ok "reating template1 database in Z:/home/zozo/pgd93win/base/1 ... FATAL: syntax error at line 2: unexpected character " pclose failed: No space left on device initdb: removing data directory "Z:/home/zozo/pgd93win" So, the PostgreSQL database directory cannot be initialized under Wine, it's needed to start the database server. Also, Wine needs a restricted user mode before the server permits to be started up. Best regards, Zolt?n B?sz?rm?nyi From matt.cowgur at gmail.com Sun Jan 20 15:41:48 2013 From: matt.cowgur at gmail.com (Matthew Cowgur) Date: Sun, 20 Jan 2013 15:41:48 -0600 Subject: [Wine] Wine just stopped working Message-ID: So, I'm not completely new to wine, but I don't really know much about it. I pretty much only use it for games, so I don't always use it regularly. I just recently wanted to play a game in Wine on Mac OS X 10.8.2, a game that I know worked a mere 2 months ago. But when I just tried it again yesterday, wine completely flopped. I can't remember the exact course of events, but I got errors about DBUS (which I had resolved back when I first installed wine with MacPorts. I also got errors about X Server not running, or display issues about windows trying to be opened, but failing. I've been casting about for a few hours, and have uninstalled XQuartz 2.7.4, and reinstalled it. And now I'm not getting any errors at all, just this: time: err:process:__wine_kernel_init boot event wait timed out I've tried moving the .wine directory to force it to create a new environment, but after it creates the directory, wine just hangs and then times out. At this point, I'm not trying to play a game, I'm just trying to run "winecfg". I know all this stuff worked in november, and I don't know what has changed to make it stop, but I'm hoping that someone might be able to help me. I've already done a bunch of searches for these errors, and none of the suggestions I found made a difference. As far as I can tell, DBUS is loaded and running: sudo launchctl load -w /Library/LaunchDaemons/org.freedesktop.dbus-system.plist launchctl load -w /Library/LaunchAgents/org.freedesktop.dbus-session.plist Both these commands return: org.freedesktop.dbus-system: Already loaded -- Matthew Cowgur -------------- next part -------------- An HTML attachment was scrubbed... URL: From envite at rolamasao.org Mon Jan 21 02:34:32 2013 From: envite at rolamasao.org (Noel David Torres =?iso-8859-1?q?Ta=F1o?=) Date: Mon, 21 Jan 2013 08:34:32 +0000 Subject: [Wine] Wine error on gdiplus.dll Message-ID: <201301210834.37188.envite@rolamasao.org> Hi all I was trying to run a Windows installer and I found that an error message came up on screen: --- Error --- Runtime error (at 132:148): Access violation at address 7D328377 in moduke 'gdiplus.dll'. Read of address 0021ECCC. --- Console in turn reads this: --- $ wine setup_populous_2.0.0.1.exe fixme:process:SetProcessDEPPolicy (1): stub p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring- pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio fixme:process:SetProcessDEPPolicy (1): stub fixme:win:DisableProcessWindowsGhosting : stub fixme:msg:ChangeWindowMessageFilter c058 00000001 fixme:msg:ChangeWindowMessageFilter c058 00000001 fixme:msg:ChangeWindowMessageFilter c058 00000001 fixme:msg:ChangeWindowMessageFilter c058 00000001 fixme:shell:SHAutoComplete stub fixme:msg:ChangeWindowMessageFilter c058 00000001 fixme:msg:ChangeWindowMessageFilter c058 00000001 fixme:gdiplus:GdipCreateBitmapFromGraphics hacked stub fixme:gdiplus:resample_bitmap_pixel Unimplemented interpolation 6 fixme:wincodecs:JpegDecoder_Frame_GetResolution (0x174aec,0x33f8f4,0x33f8fc): stub fixme:wincodecs:JpegDecoder_Frame_GetResolution (0x1752dc,0x33f8f4,0x33f8fc): stub --- Wine version is 1.4.1-4 from Debian Thanks for any help Noel er Envite ------------------------- A: Because it breaks the logical flow of discussion. Q: Why is top posting bad? -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 198 bytes Desc: This is a digitally signed message part. URL: From matt.cowgur at gmail.com Mon Jan 21 09:34:17 2013 From: matt.cowgur at gmail.com (Matthew Cowgur) Date: Mon, 21 Jan 2013 09:34:17 -0600 Subject: [Wine] Wine just stopped working In-Reply-To: References: Message-ID: <960D8DC4-1340-453F-A43D-F3E27511B870@gmail.com> Yeah, that appears to have solved the problem. Not immediately, but after several reboots and many failed executions of the "winecfg" command, it just seemed to start working all of a sudden. -- Matthew Cowgur On Jan 21, 2013, at 8:58 AM, Seth Jenkins wrote: > Remove wine completely, .wine etc. and start over from scratch. > > On Sunday, January 20, 2013, Matthew Cowgur wrote: > > So, I'm not completely new to wine, but I don't really know much about it. I pretty much only use it for games, so I don't always use it regularly. I just recently wanted to play a game in Wine on Mac OS X 10.8.2, a game that I know worked a mere 2 months ago. But when I just tried it again yesterday, wine completely flopped. I can't remember the exact course of events, but I got errors about DBUS (which I had resolved back when I first installed wine with MacPorts. I also got errors about X Server not running, or display issues about windows trying to be opened, but failing. I've been casting about for a few hours, and have uninstalled XQuartz 2.7.4, and reinstalled it. And now I'm not getting any errors at all, just this: > > > > time: err:process:__wine_kernel_init boot event wait timed out > > > > I've tried moving the .wine directory to force it to create a new environment, but after it creates the directory, wine just hangs and then times out. At this point, I'm not trying to play a game, I'm just trying to run "winecfg". > > > > I know all this stuff worked in november, and I don't know what has changed to make it stop, but I'm hoping that someone might be able to help me. I've already done a bunch of searches for these errors, and none of the suggestions I found made a difference. > > > > As far as I can tell, DBUS is loaded and running: > > > > sudo launchctl load -w /Library/LaunchDaemons/org.freedesktop.dbus-system.plist > > launchctl load -w /Library/LaunchAgents/org.freedesktop.dbus-session.plist > > > > Both these commands return: org.freedesktop.dbus-system: Already loaded > > > > -- > > > > Matthew Cowgur > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > > -- > Always remember, that everything will turn out exactly, EXACTLY, as God has planned it, and not the minutest detail, will be omitted. EVERYTHING that ever happens in this world happens for a reason DECIDED BY GOD. Look for God in everything that happens to you or your friends or anyone you meet. > > -- > This is my signature. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From i30817 at gmail.com Mon Jan 21 03:44:34 2013 From: i30817 at gmail.com (Paulo Levi) Date: Mon, 21 Jan 2013 09:44:34 +0000 Subject: [Wine] Any winetricks for invideo codec version 3.2 (not 5)? Message-ID: I tried winetricks icodecs but that didn't install the right one of age of wonders: http://appdb.winehq.org/objectManager.php?sClass=version&iId=4589 -------------- next part -------------- An HTML attachment was scrubbed... URL: From neko at takino.org Tue Jan 22 04:40:03 2013 From: neko at takino.org (Mikhail Krutov) Date: Tue, 22 Jan 2013 14:40:03 +0400 Subject: [Wine] WineHQ Web API? Message-ID: <20130122104003.GA10110@takino.org> Hi Wine users & developers! First of all, thank you for the awesome work for the decades of Wine development. :) I'm writing right now a little app to get my list of Steam games list, and determine which of them could be ran on Wine, and I have a little trouble with WineHQ web site. The only way to get game page, as I see now, is to use google custom search, which is ugly and not universal. Is there any other way to get my app id, its status, etc by its name? May be some web api not mentioned on wine wiki or anything? Thank you for your answers, Mikhail P.s. when answering, please add me to Cc: or to To: field, because I'm not a subscriber of Wine-Users mailing list. P.s.s If I'm inventing the wheel, please point me at any ready-to-use solutions. From starwarsfreak000 at gmail.com Tue Jan 22 08:44:29 2013 From: starwarsfreak000 at gmail.com (Seth Jenkins) Date: Tue, 22 Jan 2013 09:44:29 -0500 Subject: [Wine] Fully automated downloading, uninstallation, compilation and insatallation of newest wine version from source. Message-ID: I have fnished writing a script (or actually four different scripts) that is not only able to download the latest version of wine, but is able to uninstall the old version and install the new one, compiling it and all. If you guys are interested, I can give you a zip file with the scripts in it. This way, you never need to go to the wine page to download, you don't need to run wineinstall yourself, it does everything automatically. -- Always remember, that everything will turn out exactly, EXACTLY, as God has planned it, and not the minutest detail, will be omitted. EVERYTHING that ever happens in this world happens for a reason DECIDED BY GOD. Look for God in everything that happens to you or your friends or anyone you meet. -- This is my signature. -------------- next part -------------- An HTML attachment was scrubbed... URL: From starwarsfreak000 at gmail.com Tue Jan 22 10:21:10 2013 From: starwarsfreak000 at gmail.com (Seth Jenkins) Date: Tue, 22 Jan 2013 11:21:10 -0500 Subject: [Wine] WineHQ Web API? In-Reply-To: <20130122155808.GA11032@takino.org> References: <20130122104003.GA10110@takino.org> <20130122155808.GA11032@takino.org> Message-ID: Yes, I agree, it would have been nice :) Although, I would suggest that instead of making your script really bogged down with removing data, to just use head and tail to isolate what you need. Or, since these words are only likely to appear once in the app page, and not anywhere else, you could just search for the words gold, platinum, silver, bronze, garbage, etc. using grep. On Tue, Jan 22, 2013 at 10:58 AM, Mikhail Krutov wrote: > Hi! > Thank you for your answer. > It is not, script is (almost) ready for me. > However, parsing of HTML directly is ugly, inefficient and buggy > In some cases, you won't be able to pick up exact application you want > with 100% > confidence without fetching some pages & over-bloated HTML parsing (e.g.: > instead > of getting exact info I need I get 200% more and need to cut the needed > part). > Any ways API (or such a service under appdb.winehq.org site) would have > been nice. > > P.s. you forgot to add wine-users@ to Cc: > :) > > > > On Tue, Jan 22, 2013 at 09:41:40AM -0500, Seth Jenkins wrote: > > It would not be difficult to write a Linux script to do so, I think. > > > -- Always remember, that everything will turn out exactly, EXACTLY, as God has planned it, and not the minutest detail, will be omitted. EVERYTHING that ever happens in this world happens for a reason DECIDED BY GOD. Look for God in everything that happens to you or your friends or anyone you meet. -- This is my signature. -------------- next part -------------- An HTML attachment was scrubbed... URL: From neko at takino.org Tue Jan 22 09:58:08 2013 From: neko at takino.org (Mikhail Krutov) Date: Tue, 22 Jan 2013 19:58:08 +0400 Subject: [Wine] WineHQ Web API? In-Reply-To: References: <20130122104003.GA10110@takino.org> Message-ID: <20130122155808.GA11032@takino.org> Hi! Thank you for your answer. It is not, script is (almost) ready for me. However, parsing of HTML directly is ugly, inefficient and buggy In some cases, you won't be able to pick up exact application you want with 100% confidence without fetching some pages & over-bloated HTML parsing (e.g.: instead of getting exact info I need I get 200% more and need to cut the needed part). Any ways API (or such a service under appdb.winehq.org site) would have been nice. P.s. you forgot to add wine-users@ to Cc: :) On Tue, Jan 22, 2013 at 09:41:40AM -0500, Seth Jenkins wrote: > It would not be difficult to write a Linux script to do so, I think. > From neko at takino.org Tue Jan 22 10:40:29 2013 From: neko at takino.org (Mikhail Krutov) Date: Tue, 22 Jan 2013 20:40:29 +0400 Subject: [Wine] WineHQ Web API? In-Reply-To: References: <20130122104003.GA10110@takino.org> <20130122155808.GA11032@takino.org> Message-ID: <20130122164029.GB11032@takino.org> Fetching data for a web-app (which I want to make in the end) this way is ugly. You overhead both your server and the server you fetch data from. Also, you should not use unix utilities for such tasks, any other language suites better. Parsing things with sed, grep, cut and friends is unreadable and unsupportable. > Yes, I agree, it would have been nice :) > > Although, I would suggest that instead of making your script really bogged > down with removing data, to just use head and tail to isolate what you > need. Or, since these words are only likely to appear once in the app page, > and not anywhere else, you could just search for the words gold, platinum, > silver, bronze, garbage, etc. using grep. > From javier.ramirez at gmail.com Wed Jan 23 17:25:18 2013 From: javier.ramirez at gmail.com (Orlando) Date: Wed, 23 Jan 2013 18:25:18 -0500 Subject: [Wine] Problems with Outlook 2010 32 bit (Professional Plus Edition) Fedora 18 wine 1.5.22 Message-ID: Hi all, I started installing Office Professional Plus Edition in Fedora 18. The installation was successful even though I got the following errors err:rpc:rpcrt4_ncacn_ip_tcp_open couldn't connect to err:ole:RpcEpResolveBinding ept_map failed for ifid {8a885d04-1ceb-11c9-9fe8-08002b104860}, protseq ncacn_ip_tcp, networkaddr err:wininet:netcon_secure_connect_setup SSL_connect failed: 12057 err:rpc:wait_async_request Async request failed with error 12057 Does this error sounds familiar? I installed samba-winbind.i686. I also started the service. I got to the point where I am lost. Is this vesion buggy? From what I read this should be a good version of wine. The problem is that I can connect to an exchange server when setting up an account in Outlook. Can someone point me in the right direction? Thanks for your time. -Orlando. -- ing. Javier Orlando Ram?rez Mart?nez http://ca.linkedin.com/in/joramirez http://picasaweb.google.com/javier.ramirez http://twitter.com/oramirez1 http://flickr.com/photos/orlando1 -------------- next part -------------- An HTML attachment was scrubbed... URL: From gary719_list1 at verizon.net Sun Jan 27 23:42:50 2013 From: gary719_list1 at verizon.net (Gary Roach) Date: Sun, 27 Jan 2013 21:42:50 -0800 Subject: [Wine] Wine and Wine-Git together Message-ID: <51060FDA.40809@verizon.net> Hi all Debian Wheezy OS Wine 1.4.1 installed at /home/gary/.wine I need to install Wine-Git 1.5.22 to troubleshoot some software and want to know whether I can do this without screwing up my regular wine installation. I plan to install Wine-Git in a /Wine-Git directory with user:group as gary. What kind of problems will I possibly encounter doing this. Gary R. From garyroach at verizon.net Sat Jan 26 15:49:47 2013 From: garyroach at verizon.net (Gary Roach) Date: Sat, 26 Jan 2013 13:49:47 -0800 Subject: [Wine] Wine and Wine-Git together Message-ID: <51044F7B.3040307@verizon.net> Hi all Debian Wheezy OS Wine 1.4.1 installed at /home/gary/.wine I need to install Wine-Git 1.5.22 to troubleshoot some software and want to know whether I can do this without screwing up my regular wine installation. I plan to install Wine-Git in a /Wine-Git directory with user:group as gary. What kind of problems will I possibly encounter doing this. Gary R.