search for: fatal

Displaying 20 results from an estimated 8339 matches for "fatal".

2003 Jul 14
1
Installing Samba 2.2.8a on Solaris 2.6
Hi, I am trying to install Samba 2.2.8a on Solaris 2.6 using GCC 2.95 but somewhere it seems to fail. I am not that experienced with compiling and stuff but I took a look at config.log and see a few error messages but its not clear to me where it went wrong. Attached to this message I have the config.log (zipped) Hope anyone of you can help me out here. Thanks!
2009 Jan 03
3
Vanguard SOH
...d patches fine I have 8.10 of Ubuntu and just upgraded to 1.1.12 of Wine I receive my error right before the loading of the character section screen. The error I receive is: wine: Call from 0x7b8456d0 to unimplemented function d3dx9_36.dll.D3DXGetShaderConstantTable, aborting [01/03/09 08:39:00] FATAL: Critical: FD3DVertexShader::Serialize [01/03/09 08:39:00] FATAL: Critical: UD3DRenderDevice::SerializeCompiledShaders [01/03/09 08:39:00] FATAL: Critical: UD3DRenderDevice::LoadCompiledShadersFromFile [01/03/09 08:39:00] FATAL: Critical: UD3DRenderDevice::Flush [01/03/09 08:39:00] FATAL: Critical:...
2008 Dec 29
3
odd epoll() errors
>From my log: Dec 29 16:43:58 postamt dovecot: Dovecot v1.1.7 starting up Dec 29 16:43:59 postamt dovecot: Fatal: imap-login: epoll_create(): Too many open files Dec 29 16:43:59 postamt dovecot: Temporary failure in creating login processes, slowing down for now Dec 29 16:43:59 postamt dovecot: Fatal: imap-login: epoll_create(): Too many open files Dec 29 16:43:59 postamt dovecot: Fatal: pop3-login: epoll_cre...
2011 Apr 22
2
Can't compile libtheora vs2010
I'm getting errors like so on initial build of libtheora - 1>c1 : fatal error C1083: Cannot open source file: '..\lib\dec\x86_vc\x86stat.c': No such file or directory 1> mmxstate.c (TaskId:16) 1>c1 : fatal error C1083: Cannot open source file: '..\lib\dec\x86_vc\mmxstate.c': No such file or directory 1> mmxloopfilter.c (TaskId:16) 1>c1 :...
2008 Apr 21
1
Compile libtheora 1.0beta3 with VS2005
Hi all, I tried to compile the theora source with VS2005. But it asked for the ogg library. error message is as follow. **************************************************************************** Error 1 fatal error C1083: Cannot open include file: 'ogg/ogg.h': No such file or directory c:\Documents and Settings\Manoj\Desktop\libtheora-1.0beta3\include\theora\codec.h 64 Error 2 fatal error C1083: Cannot open include file: 'ogg/ogg.h': No such file or directory c:\Documents and...
2023 Feb 20
1
service(imap-login): Fatal: setrlimit(RLIMIT_DATA, 268435456): Invalid argument macOS
I fixed the issue with Dovecot not starting on macOS Ventura by adding this to 10-master.conf: service log { vsz_limit = 0 } But now when I try to login via Imap on port 143 I get the same error for imap-login: Feb 20 15:55:41 imap-login: Error: Feb 20 15:55:41 service(imap-login): Fatal: setrlimit(RLIMIT_DATA, 268435456): Invalid argument Feb 20 15:55:41 imap-login: Fatal: master: service(imap-login): child 11781 returned error 89 (Fatal failure) Feb 20 15:55:41 master: Error: service(imap-login): command startup failed, throttling for 60.000 secs Feb 20 16:13:04 imap-login: Error...
2014 Jun 04
2
opus_multistream_encode_float not working in libopus 1.1
...it yourself? I just installed git for the first time and downloaded all of the latest source code packages directly from the site. I'm getting the following every time I try to (re)build any of the projects: 1>------ Build started: Project: opus, Configuration: Release Win32 ------ 1> fatal: Not a git repository: 'C:\My Documents\Opus\win32\..\.git' 1> The syntax of the command is incorrect. 1> The system cannot find the path specified. 1>C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(103,5): error MSB3073: The command ""C:\My Docu...
2003 Sep 12
2
Possible new configure option: --with-fatal-coredumps?
Hi all. What's the feeling about adding a new configure-time option to generate a core dump on when fatal() is called? It might help debug certain types of problems, but runs the risk of sensitive information being left in the core dump. Obviously, it should default to "no". Anyone like the idea? Anyone hate it? -- Darren Tucker (dtucker at zip.com.au) GPG key 8FF4FA69 / D9A3 86E9 7EE...
2014 Jun 04
3
opus_multistream_encode_float not working in libopus 1.1
...ying to get a git revision > string out of the source tree to compile in for reference. If you're > building from a downloaded source .zip, there won't be any git > information available and it will fall back to the hard-coded release > string. That's why the error isn't fatal to the build. Ok, this seems contradictory to the output that the build log is telling me. The log is showing a fatal error and the build doesn't succeed. There's no compiled lib, dll, or anything. If I try to build the entire solution, I get this: 1>------ Build started: Project: s...
2012 Apr 12
1
Problem with latest kernel install
After a simple `yum update` I got the following on reboot. Could not load /lib/modules/2.6.32-220.7.1.el6.x86_64/modules.dep: No such file or director FATAL: Could not load /lib/module.el6.x86_64/modules.dep: No such file or directory FATAL: Could not load /lib/modules/2.6.32-220.7.1.el6.x86_64/modules.dep: No such file or directory FATAL: Could not load /lib/modules/2.6.32-220.7.1.el6.x86_64/modules.dep: No such file or directory FATAL: Could not load...
2000 Feb 04
0
Patch that allows equal sign in options
...ITESPACE); + cp = strtok(cp, WHITESPACE_EQ); opcode = parse_token(cp, filename, linenum); switch (opcode) { @@ -248,7 +249,7 @@ case oForwardAgent: intptr = &options->forward_agent; parse_flag: - cp = strtok(NULL, WHITESPACE); + cp = strtok(NULL, WHITESPACE_EQ); if (!cp) fatal("%.200s line %d: Missing yes/no argument.", filename, linenum); value = 0; /* To avoid compiler warning... */ @@ -330,7 +331,7 @@ case oStrictHostKeyChecking: intptr = &options->strict_host_key_checking; - cp = strtok(NULL, WHITESPACE); + cp = strtok(NULL, WHITESPACE_EQ...
2007 Nov 21
6
Compiling issue on x86!
...bit version as my system is currently booted in 64 bit mode. I installed SUNStudio12 on the system and set the SPRO_VROOT to point towards it and when I do a make all in usr/src directory, I get the following error when make cwds and runs in the i86pc/unix direcotry: - o/p on stderr: - ... ... ld: fatal: relocation error: R_AMD64_32: file ./obj64/unix.o: symbol kdi_update_drreg: value 0xfffffffffb821ab8 does not fit ld: fatal: relocation error: R_AMD64_32: file ./obj64/unix.o: symbol kdi_memrange_add: value 0xfffffffffb821b18 does not fit ld: fatal: relocation error: R_AMD64_32: file ./obj64/unix....
2017 Sep 13
4
sanitizer test case failures after OS update
...vm test systems to Fedora 25 and I started getting a whole bunch of sanitizer test case failures. I tried testing some earlier revisions on the new OS that had worked fine under the old but they generate the same errors now so it isn't any changes in llvm. There are two different errors: FATAL: ThreadSanitizer: unsupported VMA range FATAL: Found 47 - Supported 44 and 46 and FATAL: Code 0x00010eddf660 is out of application range. Non-PIE build? FATAL: MemorySanitizer can not mmap the shadow memory. FATAL: Make sure to compile with -fPIE and to link with -pie. FATAL: Disabling ASLR is kn...
2001 Apr 25
0
NeXT // Broken _POSIX_SAVED_ID patch
...return; - } - privileged = 1; - temporarily_use_uid_effective = 1; + /* Save the current euid, and egroups. */ +#ifdef SAVED_IDS_WORK_WITH_SETEUID + saved_euid = geteuid(); saved_egid = getegid(); - saved_egroupslen = getgroups(NGROUPS_MAX, saved_egroups); - if (saved_egroupslen < 0) - fatal("getgroups: %.100s", strerror(errno)); - - /* set and save the user's groups */ - if (user_groupslen == -1) { - if (initgroups(pw->pw_name, pw->pw_gid) < 0) - fatal("initgroups: %s: %.100s", pw->pw_name, - strerror(errno)); - user_groupslen = getg...
2001 Jul 23
1
Compile Error, ld.so.1: winebuild: fatal, Please help!!!!!Thanks
Hi gurus, Please help me out with the fatal compiling problem. I am using soalris8 x86 with wine-20010629, Any suggestion would be highly recommended! /usr/openwin/include/X11/Xutil.h:56: warning: ignoring pragma: "@(#)Xutil.h 1.2 00/07/05 SMI gcc -Wl,-G -Wl,-h,/usr/local/lib/libwine_tsx11.so locking.o ts_xf86dga.o ts_xf86dga2.o...
2009 Jan 07
2
\iaxclient-2.0.2 compile problem
Hi, I had downlaoded iaxclient-2.0.2 and complie project *\iaxclient-2.0.2\contrib\win\vs2005* ** It gives many83 fatal and file missing error of file missing Error 1 fatal error C1083: Cannot open include file: 'portaudio.h': No such file or directory d:\mohit\asterisk\iaxclient-2.0.2\iaxclient-2.0.2\lib\portmixer\px_win_wmme\px_win_wmme.c 40 Error 2 fatal error C1083: Cannot open source file: '..\..\....
2007 Nov 26
2
Problem installing R on Solaris 9
I've downloaded R-2.6.0 I want to install it on Solaris, so, I run the configure command, it to be fine, but once I run make it give me the following error: *ld: fatal : fichier Rmain.o : type de machine ELF erronV : EM_386 ld: fatal : Erreurs dans le traitement des fichiers. Aucun rVsultat n'a VtV Vcr it dans R.bin collect2: ld returned 1 exit status *** Error code 1 make: Fatal error: Command failed for target `R.bin' Current working directory /rgui-o...
2017 Feb 24
3
sieve_imapsieve centos 7
...in compiling from source because i like to receive security updates automatically. 2017-02-24 21:57:00auth: Error: net_connect_unix(anvil-auth-penalty) failed: Permission denied 2017-02-24 21:57:00master: Warning: Killed with signal 15 (by pid=1 uid=0 code=kill) 2017-02-24 21:57:00managesieve: Fatal: Plugin 'sieve_imapsieve' not found from directory /usr/lib64/dovecot/sieve 2017-02-24 21:57:00config: Error: managesieve-login: dump-capability process returned 89 2017-02-24 21:57:05imap: Fatal: Plugin 'imap_sieve' not found from directory /usr/lib64/dovecot 2017-02-24 21:57:05...
2003 Aug 27
0
Error in charset
...use: OS: Solaris 8 Samba: 2.2 up to 3.0.0 It's error while run net command: ./net join --workgroup=intranet --ipaddress=10.x.x.x --user=> [2003/08/27 10:04:11, 0] lib/module.c:smb_load_module(40) Error loading module '/usr/local/samba/lib/charset/ISO8859-1.so': ld.so.1: ./net: fatal: /usr/local/samba/lib/charset/ISO8859-1.so: open failed: No such file or directory [2003/08/27 10:04:11, 0] lib/module.c:smb_load_module(40) Error loading module '/usr/local/samba/lib/charset/CP850.so': ld.so.1: ./net: fatal: /usr/local/samba/lib/charset/CP850.so: open failed: No such fil...
2013 Aug 24
4
[LLVMdev] Building LLVM 3.3 on Win64
...message: [ 86%] Generating X86CompilationCallback_Win64.obj Microsoft (R) Macro Assembler (x64) Version 11.00.51106.1 Copyright (C) Microsoft Corporation. All rights reserved. MASM : warning A4018:invalid command-line option : /llvm-3.3.src/lib/Target/X86/X86CompilationCallback_Win64.asm MASM : fatal error A1017:missing source filename NMAKE : fatal error U1077: 'echo' : return code '0x1' Stop. NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\nmake.exe"' : return code '0x2' Stop. NMAKE : fatal error U1077: '&qu...