similar to: Bug NOT fixed in wine-1.5.3

Displaying 20 results from an estimated 500 matches similar to: "Bug NOT fixed in wine-1.5.3"

2011 Mar 04
3
Crysis 2 Demo Working
Just a small post to inform you that Crysis 2 MP demo is working with wine 1.3.14. You can easily install it using PlayOnLinux (Standalone setup and Steam version) or manually install it with vcrun2008 and DirectX Runtime (June 2010) dependancies (only tested standalone). Regards, WineFan62
2011 Dec 20
3
Get configuration flags
Hello all. Not often do I ask a question myself, but here's one: How do I know which compile flags (and/or compiler toolkit) were used to build a wine binary that I may have? I'm asking this question because, somehow, my own compiled version of Wine can't run an application, even though binaries that I grabbed from packages for other distros do work: flawlessly, in fact. I can live
2012 Feb 27
2
Is there an easier way of doing this?
I'm trying to compile the latest wine release from source after a fresh linux mint install, and this is what I get when I do './configure' Code: configure: libxcursor development files not found, the Xcursor extension won't be supported. configure: libxi development files not found, the Xinput extension won't be supported. configure: XShape development files not found, XShape
2011 Jun 09
3
Compiling wine: no sound system, etc.
Hello all... I'm trying to compile wine 1.3.21 on my Linux Mint Debian Edition machine, because I'm tired of the antique version available from the repositories. Unfortunately, ./configure always ends with a bunch of WARNINGs and I'm not sure what to do about them. Here's the list it gives me: Code: configure: libxcursor development files not found, the Xcursor extension won't
2011 Jul 10
1
No more alsa oss emulation?
The support for ALSA OSS emulation seems to have been dropped in Wine 1.3.19. Before 1.3.19 Wine had no problem including the ability to use OSS output even with just ALSA installed, but from 1.3.19 and onward OSSv4 is required to build Wine with OSS support. Personally I find this kind of problematic since a lot of applications work better with Wine using OSS instead of ALSA, and sometimes the
2012 Mar 13
1
Higher than normal CPU usage in wine 1.4
I'm seeing abnormally high CPU usage in win32 apps. Is anyone else seeing this? I am aware that wine will introduce mild overhead in some apps and severe overhead in others, but what I'm witnessing seems a little excessive as it seems to be across the board. I'm trying to identify what I'm doing wrong, because I'm observing the same behavior across different distributions,
2011 May 14
4
Libnss-mdns problem
Hi there! I've got a problem with running wine under Debian. When i try to start a download following comes : root:~# wine ~/.wine/drive_c/Program\ Files/Valve/HLServer/HldsUpdateTool.exe -command update -game brink ~/server/brink It appears that libnss-mdns is installed on your system, but lib32nss-mdns is not. Please note that Wine will not be able to access the Internet unless you either
2004 Aug 06
1
mp3 support and compatibility
<quote who="Geoff Shang"> > On Wed, 21 May 2003, Remco B. Brink wrote: > > > <quote who="Adon Irani"> > > > i would use streamTranscoder-0.2 , but it won't transcode my ogg > > > streams ( same problem as mentioned on its homepage forum - > > > connects for about 2o seconds , appears on status.xsl , dies but > >
2017 Dec 14
0
help with recursive function
You seem to have a typo at this expression (and some others like it) Namely, you write any(!dat2$norm_sd) >= 1 when you possibly meant to write !( any(dat2$norm_sd) >= 1 ) i.e. I think your ! seems to be in the wrong place. HTH, Eric On Thu, Dec 14, 2017 at 3:26 PM, DIGHE, NILESH [AG/2362] < nilesh.dighe at monsanto.com> wrote: > Hi, I need some help with running a
2017 Dec 14
0
help with recursive function
Eric: Thanks for taking time to look into my problem. Despite of making the change you suggested, I am still getting the same error. I am wondering if the logic I am using in the stopifnot and if functions is a problem. I like the recursive function to stop whenever the norm_sd column has zero values that are above or equal to 1. Below is the calclp function after the changes you suggested.
2017 Dec 14
0
help with recursive function
The message is coming from your stopifnot() condition being met. On Thu, Dec 14, 2017 at 5:31 PM, DIGHE, NILESH [AG/2362] < nilesh.dighe at monsanto.com> wrote: > Hi, I accidently left out few lines of code from the calclp function. > Updated function is pasted below. > > I am still getting the same error ?Error: !(any(data1$norm_sd >= 1)) is > not TRUE? > > >
2017 Dec 14
1
help with recursive function
Your code contains the lines stopifnot(!(any(data1$norm_sd >= 1))) if (!(any(data1$norm_sd >= 1))) { df1 <- dat1 return(df1) } stop() "throws an error", causing the current function and all functions in the call stack to abort and return nothing. It does not mean to stop now and return a result. Does the function give
2017 Dec 14
2
help with recursive function
Hi, I need some help with running a recursive function. I like to run funlp2 recursively. When I try to run recursive function in another function named "calclp" I get this "Error: any(!dat2$norm_sd) >= 1 is not TRUE". I have never built a recursive function before so having trouble executing it in this case. I would appreciate any help or guidance to resolve this issue.
2017 Dec 14
2
help with recursive function
My own typo ... whoops ... !( any(dat2$norm_sd >= 1 )) On Thu, Dec 14, 2017 at 3:43 PM, Eric Berger <ericjberger at gmail.com> wrote: > You seem to have a typo at this expression (and some others like it) > > Namely, you write > > any(!dat2$norm_sd) >= 1 > > when you possibly meant to write > > !( any(dat2$norm_sd) >= 1 ) > > i.e. I think your !
2017 Dec 14
2
help with recursive function
Hi, I accidently left out few lines of code from the calclp function. Updated function is pasted below. I am still getting the same error ?Error: !(any(data1$norm_sd >= 1)) is not TRUE? I would appreciate any help. Nilesh dput(calclp) function (dataset) { dat1 <- funlp1(dataset) recursive_funlp <- function(dataset = dat1, func = funlp2) { dat2 <- dataset %>%
2017 Dec 14
0
help with recursive function
Eric: I will try and see if I can figure out the issue by debugging as you suggested. I don?t know why my code after stopifnot is not getting executed where I like the code to run the funlp2 function when the if statement is TRUE but when it is false, I like it to keep running until the stopifnot condition is met. When the stopifnot condition is met, I like to get the output from if statement
2017 Dec 14
3
help with recursive function
If you are trying to understand why the "stopifnot" condition is met you can replace it by something like: if ( any(dat2$norm_sd >= 1) ) browser() This will put you in a debugging session where you can examine your variables, e.g. > dat$norm_sd HTH, Eric On Thu, Dec 14, 2017 at 5:33 PM, Eric Berger <ericjberger at gmail.com> wrote: > The message is coming from
2004 Aug 06
5
m3u - file definition
Hello Remco, I found these decumentations before but they say nothing about setting the start time and end time of each mp3 file entry in the .m3u file Best Regards - Johann "Remco B. Brink" schrieb: > <quote who="Johann Soukup"> > > > is there any documentation on the .m3u file definition ? > > Google is your friend (tm): > >
2004 Aug 06
0
strange noise from icecast
It looks OK for now. Thanks, Mitja -----Original Message----- From: Remco B. Brink [mailto:remco@rc6.org] Sent: Friday, March 07, 2003 12:14 PM To: icecast@xiph.org Subject: Re: [icecast] strange noise from icecast <p><quote who="Mitja Pirih"> > Hello, > > I'm using icecast for at least 3 months now and I am experiencing a > strange noise and also some
2004 Aug 06
1
strange noise from icecast
It worked OK for past 4 days and now again with that noise. I restarted icecast server and again I have clear sound. It looks that the problem is in icecast. -----Original Message----- From: Remco B. Brink [mailto:remco@rc6.org] Sent: Friday, March 07, 2003 12:14 PM To: icecast@xiph.org Subject: Re: [icecast] strange noise from icecast <p><quote who="Mitja Pirih"> >