similar to: Compiling samba4 hangs at [1815/3978] Compiling librpc/ndr/ndr_basic.c

Displaying 20 results from an estimated 200 matches similar to: "Compiling samba4 hangs at [1815/3978] Compiling librpc/ndr/ndr_basic.c"

2011 Aug 06
4
compiling buoh comic reader for C-6
Hi all! I'm trying to build the buoh comic reader for centos 6 and my head is getting tired of repeated forceful contact with the wall. I built it on 5.6 without undue problems, but somehow 6.0 is beating me. (and no, the 5.6 binary doesn't work, at least not without a lot of futzing around, on 6.0. tried that first.) before I give gory details, has anyone already done this, from whom
2010 Nov 10
2
[LLVMdev] llvm-gcc not compatible with gcc on a small case?
I found a case which gcc can compile while llvm-gcc can not. I'm using the gcc4.1 and the most recent llvm-gcc. Here is the case: template <int N> class T { public: int V; }; T<4> test(T<4> a[4][8]) { return a[3][3]; } llvm-gcc dumped: fail.cpp: In function \u2018T<4> test(T<4> (*)[8])\u2019: fail.cpp:7: error: invalid use of incomplete type
2020 May 14
1
Sieve regexp matches wrong
Hello! Recently I've faced with strange issue. So, I want to filter some mails which do not contain cyrillic symbols. I would not like receive email on foreign language except russian and I'm using rule below, but it does not work when text of mail has unicode symbol u2019 or ? - right single quotation mark. |require ["body","regex"];| |# rule:[Regexp test]| |if
2011 Mar 05
2
How to show non user defined data set such as cu.summary (from rpart)?
Hi All, ls() doesn't show cu.summary. ?ls says "When invoked with no argument at the top level prompt, \u2018ls\u2019 shows what data sets and functions a user has defined." Therefore, the reason ls() doesn't show cu.summary is because cu.summary is from a package but not user defined. Is there a way to show not only user defined data sets but also data sets from loaded
2009 Apr 24
1
[LLVMdev] llvm-g++ doesnt support class member initialization of arrays of constants
Here is the example code: class A { const int x[5]; public: //A() { x[0] = 1; x[1] = 1; x[2] = 2; x[3] = 3; x[4] = 4; } A():x((const int[5]){1,2,3,4,5}) {} int getV(int idx) { return x[idx];} }; //const int A::x[5] = { 1, 2, 3, 4, 5 }; int main() { A a; return a.getV(1); } gcc 4.1.2 can compile the above code. llvm-gcc reports: x.cpp: In constructor \u2018A::A()\u2019: x.cpp:5:
2010 Jul 12
1
[LLVMdev] Operation on argument of 2d array of templated class can NOT pass llvm-gcc
for example: template <int N> class T { public: int V; }; T<4> test(T<4> a[4][8]) { return a[3][3]; } in LLVM23 release, it will crash llvm-gcc, test.cpp: In function \u2018T<4> test(T<4> (*)[8])\u2019: test.cpp:7: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See
2016 Jul 26
2
ndr_pull_share_mode_lock failed: Buffer Size Error
Hi list, I'm getting a lot of these on a CTDB cluster serving files to Windows clients: [2016/06/24 08:53:55.555485, 1] ../librpc/ndr/ndr.c:578(ndr_pull_error) ndr_pull_error(11): Pull bytes 4 (../librpc/ndr/ndr_basic.c:150) [2016/06/24 08:53:55.555506, 1] ../source3/locking/share_mode_lock.c:141(parse_share_modes) ndr_pull_share_mode_lock failed: Buffer Size Error [2016/06/24
2020 Mar 04
2
Can't use DNS Manager in MMC on Samba 4.12.0
On Samba 4.12.0, I receive the error "ndr_pull_uint32: ndr_pull_error(Buffer Size Error): Pull bytes 4 (../../librpc/ndr/ndr_basic.c:152) at ../../librpc/ndr/ndr_basic.c:152" when opening the DNS Manager in MMC. This jumped out at me from the log-level 10 output (I'm happy to send the full logs but would rather do that somewhere more private): /dnsserver: Found DNS zone
2020 Mar 15
3
Can't use DNS Manager in MMC on Samba 4.12.0
I opened bug 14310 (https://bugzilla.samba.org/show_bug.cgi?id=14310). Are attachments I upload there already restricted or do I have to do that myself? Alex On 14/03/2020 22:38, Andrew Bartlett via samba wrote: > We normally do this via attachments to bugzilla bugs restricted to the > samba developers group. Start by filing a bug about this. > > Andrew Bartlett > > On Sat,
2015 Feb 11
0
Samba 4.2.0rc4 fails to start up
> On Wed, Feb 11, 2015 at 03:22:15PM -0500, Thomas Schulz wrote: > > Checking for C99 vsnprintf : not found > > Can you just hand-compile lib/replace/test/snprintf.c and > paste its output? Maybe take a closer look why it fails? > > That's the test we use to check whether we have to replace > snprintf. > > Volker Perhaps what was
2020 Mar 14
2
Can't use DNS Manager in MMC on Samba 4.12.0
No worries Andrew. I haven't upgraded all servers yet so it's not urgent! Is there a secure place I can upload my logs for when there's time to take a look? Cheers Alex On 05/03/2020 23:21, Andrew Bartlett via samba wrote: > On Wed, 2020-03-04 at 18:07 +0000, Alex MacCuish via samba wrote: >> On Samba 4.12.0, I receive the error "ndr_pull_uint32: >>
2020 Mar 18
3
pdc emulator dns record missing after transferring role
Hi Alex I've had the same DNS manager issue. I've opened a bug (https://bugzilla.samba.org/show_bug.cgi?id=14310) and reported on the mailing list (https://lists.samba.org/archive/samba/2020-March/228772.html) No fix yet. On 18/03/2020 15:43, Alex via samba wrote: > Rowland, > > I've encountered an issue with connecting to the samba DC's DNS service from DNS >
2010 Nov 10
1
[LLVMdev] Fw: llvm-gcc not compatible with gcc on a small case?
Whoops, forgot to CC: the list. > >----- Forwarded Message ---- >From: Samuel Crow <samuraileumas at yahoo.com> >To: Sheng Zhou <zhousheng00 at gmail.com> >Sent: Tue, November 9, 2010 9:26:51 PM >Subject: Re: [LLVMdev] llvm-gcc not compatible with gcc on a small case? > > >Hi Sheng Zhou, > > >It shouldn't compile. You have the method declared
2016 Jul 19
2
Samba 4.4.5 exists with segmention fault on FreeBSD 10.3 during domain provision
Hi folks, I am trying to set up a domain/forest in VirtualBox server. My setup: * # uname -a FreeBSD bsd1dc.ad001.osipov.eu 10.3-RELEASE-p4 FreeBSD 10.3-RELEASE-p4 64 bit * Samba 4.4.5 from Ports tree # samba-tool -V 4.4.5 * Python 2 from Ports tree # python2 --version Python 2.7.12 Installation went smoothly but during domain provisioning Python fails with a segmentation fault
2019 Mar 18
2
compile question on CentOS 7
I am trying to use the fnmatch() function in a C program and pass as the 3rd arg (options) of case insensitive search... When I use the value FNM_CASEFOLD it does not work... I'm confused on what to send to fnmatch() to do a case insensitive search. Any pointers ? Thanks. Jerry
2006 Mar 23
0
Compile Error xen 3.0.1 on FC5 "cc1: warnings being treated as errors"
Hello, To get the binary vmxloader on FC5 i need to compile this from xen source with "make KERNELS=linux-2.6-xen world". There is a error "cc1: warnings being treated as errors" and compile aborts. --- make[3]: Entering directory `/tmp/xen-3.0.1/xen'' tools/figlet/figlet -d tools/figlet Xen 3.0.1 > include/xen/banner.h.new __ __ _____ ___ _ \ \/
2020 Mar 18
3
pdc emulator dns record missing after transferring role
Hello Rowland, >> During the migration from Windows DCs to Samba DCs, the following issue came up: >> after transferring PDC emulator role to a samba DC, the according DNS record >> wasn't re-created: >> > Yes and no (well not in the way you are thinking) > Yes, you are missing the fact that the dns_update_list has this: > # The PDC emulator >
2006 Dec 28
2
Error compiling chan_vpb
hello this is the error chan_vpb.cc: In function \u2018void mkbrd(vpb_model_t, int)\u2019: chan_vpb.cc:1530: aviso: la dereferencia de punteros de tipo castigado romper las reglas de alias estricto chan_vpb.cc: In function \u2018ast_channel* vpb_new(vpb_pvt*, ast_channel_state, char*)\u2019: chan_vpb.cc:2671: aviso: comparacin entre expresiones enteras signed y unsigned g++ -c -o chan_vpb.o
2015 Nov 19
3
Problem setting password: : failed to pull old supplementalCredentialsBlob: NT_STATUS_BUFFER_TOO_SMALL
Hello, I am stuck with a error when setting password for a couple of specific users. This error makes impossible to set the password for the affected users. In Windows I get an operation error but the samba-tool output is more informative: samba-tool user setpassword user2 --newpassword= New Password: ndr_pull_error(11): Pull bytes 2 (../librpc/ndr/ndr_basic.c:103) ERROR: Failed to set
2018 Oct 30
3
RPC and NDR errors in log file
On 10/29/2018 1:57 PM, Rowland Penny via samba wrote: > On Mon, 29 Oct 2018 13:20:18 -0400 > James Atwell via samba <samba at lists.samba.org> wrote: > >> Hello List, >> I'm receiving several of these messages in my samba >> log file. I'm not entirely sure what the errors are referencing >> either. I'm under the assumption DNS