Displaying 20 results from an estimated 18083 matches for "parse".
2001 Sep 19
2
--with-acl-support
Dear Andrew Tridgell,
i cant compile the 2.2.1-9 package
--with-acl-support, beacuse
HAVE_SYS_ACL_H has wrong settings somewhere.
i cant fix the bug,
i just comment out the #ifdef HAVE_SYS_ACL_H line
in the source/include/includes.h
for a (i hope) good compilation.
i use acl 1.1.2 from sgi,
and the latest debian woody packages.
Regards.
Imre Szollosi
mailto:szollosi@elme.hu
2002 Nov 23
1
2.2.7 compile error using --with-acl-support on debian
.../samba/smbpasswd" -DTDB_PASSWD_FILE="/etc/samba/smbpasswd.tdb"
Using LIBS = -lacl -lcups -lnsl -lcrypt -ldl -lpam
Compiling smbd/server.c
In file included from include/smb.h:462,
from include/includes.h:677,
from smbd/server.c:22:
include/vfs.h:111: parse error before `acl_t'
include/vfs.h:112: parse error before `acl_entry_t'
include/vfs.h:113: parse error before `acl_entry_t'
include/vfs.h:114: parse error before `acl_entry_t'
include/vfs.h:115: warning: no semicolon at end of struct or union
include/vfs.h:116: parse error before `...
2004 Aug 06
1
Compile errors
...le avl.c, I've attached a file with the compile errors. Any ideas as to
what might be wrong? My distro is Redhat 7.2 fully up2date.
<p>Cheers!
-------------- next part --------------
In file included from ../thread/thread.h:25,
from avl.c:35:
/usr/include/pthread.h:163: parse error before `*'
/usr/include/pthread.h:165: `pthread_create' declared as function returning a function
/usr/include/pthread.h:166: parse error before `void'
/usr/include/pthread.h:169: parse error before `pthread_self'
/usr/include/pthread.h:169: warning: data definition has no typ...
2004 Apr 16
3
R-1.9.0: make error on slackware-current!
...Xfree 4.4.
ERROR as follows:
gcc -I. -I../../../src/include -I../../../src/include -I/usr/X11R6/include
-I/usr/local/include -DHAVE_CONFIG_H -D__NO_MATH_INLINES -mieee-fp -fPIC
-g -O2 -c dataentry.c -o dataentry.lo
In file included from dataentry.c:31:
/usr/X11R6/include/X11/Xlib.h:1390: error: parse error before "_Xconst"
/usr/X11R6/include/X11/Xlib.h:1478: error: parse error before "char"
/usr/X11R6/include/X11/Xlib.h:1506: error: parse error before "_Xconst"
/usr/X11R6/include/X11/Xlib.h:1510: error: parse error before "char"
/usr/X11R6/include/X11/Xli...
2010 Feb 02
0
Issue when reloading
Hello list!
I?m having an issue when reloading Asterisk, I?ve had this problem in
Asterisk 1.6.1.6 so I upgrade to 1.6.2.1 version, but I still have the same
error.
For example, I send a "reload" in Asterisk CLI and this is the output:
isb152*CLI> reload
== Parsing '/etc/asterisk/extconfig.conf': == Found
== Parsing '/etc/asterisk/manager.conf': == Found
2004 Jun 20
1
linux: compilation problems with gcc 3.3.3 and xorg (PR#6992)
...ude -I../../../src/include -I/usr/X11
R6/include -I/usr/local/include -DHAVE_CONFIG_H -D__NO_MATH_INLINES
-mieee-fp -f PIC -O3 -march=athlon-xp -pipe -fomit-frame-pointer -c
dataentry.c -o dataentry .lo
In file included from dataentry.c:31:
/usr/X11R6/include/X11/Xlib.h:1400: error: parse error before "_Xconst"
/usr/X11R6/include/X11/Xlib.h:1488: error: parse error before "char"
/usr/X11R6/include/X11/Xlib.h:1516: error: parse error before "_Xconst"
/usr/X11R6/include/X11/Xlib.h:1520: error: parse error before "char"
/usr/X11R6/include/X11/Xli...
2008 Dec 12
3
shell do not work. aplication need Framework 2.0
hi I'm new in here and I apologize for stupid questions.
I have the following problem applications don't works correctly.
one can somehow improve this
fixme:ole:CoGetContextToken stub
fixme:shell:URL_ParseUrl failed to parse L"System.Windows.Forms"
fixme:shell:URL_ParseUrl failed to parse L"System"
fixme:shell:URL_ParseUrl failed to parse L"System.Drawing"
fixme:shell:URL_ParseUrl failed to parse L"Instalacja"
fixme:shell:URL_ParseUrl failed to parse L"FEL...
2004 May 19
2
R 1.90 make problem with /usr/X11R6/include/X11/Xutil.h on suse linux 9.1?
.../R-1.9.0/src/modules/X11'
gcc -I. -I../../../src/include -I../../../src/include
-I/usr/X11R6/include -I/usr/local/include -DHAVE_CONFIG_H
-D__NO_MATH_INLINES -mieee-fp -fPIC -g -O2 -c dataentry.c -o dataentry.lo
In file included from dataentry.c:31:
/usr/X11R6/include/X11/Xlib.h:1400: error: parse error before "_Xconst"
/usr/X11R6/include/X11/Xlib.h:1488: error: parse error before "char"
/usr/X11R6/include/X11/Xlib.h:1516: error: parse error before "_Xconst"
/usr/X11R6/include/X11/Xlib.h:1520: error: parse error before "char"
/usr/X11R6/include/X11/Xli...
2019 Sep 21
2
[PATCH nbdkit] server: public: Add nbdkit_parse_* functions for safely parsing integers.
.../nbdkit-plugin.pod
+++ b/docs/nbdkit-plugin.pod
@@ -1013,6 +1013,54 @@ might be killed by C<SIGKILL> or segfault).
=head1 PARSING COMMAND LINE PARAMETERS
+=head2 Parsing numbers
+
+There are several functions for parsing numbers. These all deal
+correctly with overflow, out of range and parse errors, and you should
+use them instead of unsafe functions like L<sscanf(3)>, L<atoi(3)> and
+similar.
+
+ int nbdkit_parse_int (const char *what, const char *str, int *r);
+ int nbdkit_parse_unsigned (const char *what,
+ const char *str, unsigned *r);
+ int...
2004 May 04
1
Compilation errors (PR#6855)
.../R/R-1.9.0/src/modules/X11'
gcc -I. -I../../../src/include -I../../../src/include -I/usr/X11R6/include
-I/usr/local/include -DHAVE_CONFIG_H -D__NO_MATH_INLINES -mieee-fp -fPIC -g -O2
-c dataentry.c -o dataentry.lo
In file included from dataentry.c:31:
/usr/X11R6/include/X11/Xlib.h:1390: error: parse error before "_Xconst"
/usr/X11R6/include/X11/Xlib.h:1478: error: parse error before "char"
/usr/X11R6/include/X11/Xlib.h:1506: error: parse error before "_Xconst"
/usr/X11R6/include/X11/Xlib.h:1510: error: parse error before "char"
/usr/X11R6/include/X11/Xli...
2019 Sep 23
2
Re: [PATCH nbdkit] server: public: Add nbdkit_parse_* functions for safely parsing integers.
On Mon, Sep 23, 2019 at 12:05:11PM -0500, Eric Blake wrote:
> > + int nbdkit_parse_long (const char *what, const char *str, long *r);
> > + int nbdkit_parse_unsigned_long (const char *what,
> > + const char *str, unsigned long *r);
>
> Do we really want to encourage the use of parse_long and
> parse_unsigned_long? Those diffe...
2019 Sep 23
0
Re: [PATCH nbdkit] server: public: Add nbdkit_parse_* functions for safely parsing integers.
...g base=0 in the underlying strto*l); that appears to be fine
for all users thus converted.
> =head1 PARSING COMMAND LINE PARAMETERS
>
> +=head2 Parsing numbers
> +
> +There are several functions for parsing numbers. These all deal
> +correctly with overflow, out of range and parse errors, and you should
> +use them instead of unsafe functions like L<sscanf(3)>, L<atoi(3)> and
> +similar.
> +
> + int nbdkit_parse_int (const char *what, const char *str, int *r);
> + int nbdkit_parse_unsigned (const char *what,
> + const...
2004 Apr 30
2
Can not compile zaptel at SuSE 9.0
...sr/src/linux/include/linux/version.h:12:2: #error "for that
configuration."
In file included from /usr/src/linux/include/linux/poll.h:11,
from zaptel.h:853,
from zaptel.c:82:
/usr/include/asm/uaccess.h: At top level:
/usr/include/asm/uaccess.h:102: error: parse error before '*' token
/usr/include/asm/uaccess.h: In function `verify_area':
/usr/include/asm/uaccess.h:104: error: `addr' undeclared (first use in this
function)
/usr/include/asm/uaccess.h:104: error: `size' undeclared (first use in this
function)
/usr/include/asm/uaccess.h: A...
2006 Jun 12
1
Ruuid had non-zero exit status (PR#8965)
...include/glib-2.0/glib/gtypes.h:41: error: syntax error before
"typedef"
In file included from /usr/local/include/glib-2.0/glib.h:31,
from uuidP.h:33,
from Ruuid.h:5,
from Rinit.c:1:
/usr/local/include/glib-2.0/glib/garray.h:32: error: parse error before
"G_BEGIN_DECLS"
/usr/local/include/glib-2.0/glib/garray.h:34: error: syntax error before
"typedef"
In file included from /usr/local/include/glib-2.0/glib/gerror.h:24,
from /usr/local/include/glib-2.0/glib/gthread.h:30,
from /usr...
2019 Sep 23
2
[PATCH nbdkit v2] server: public: Add nbdkit_parse_* functions for safely parsing integers.
...long, unsigned_long, size_t and ssize_t, but added
int8_t and uint8_t.
Rich.
>From 375e286be27f563a9f1a886e29bdcfcebebfa81c Mon Sep 17 00:00:00 2001
From: "Richard W.M. Jones" <rjones@redhat.com>
Date: Sat, 21 Sep 2019 07:30:40 +0100
Subject: [PATCH] server: public: Add nbdkit_parse_* functions for safely
parsing integers.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
sscanf is sadly not safe (because it doesn't handle integer overflow
correctly), and strto*l functions are a pain to use correctly.
Therefore add some functions t...
2004 Aug 06
0
icecast2 on solaris ... (fwd)
Ok,
for further info, below is the full compiler output when running gnu make.
The first error,
../thread/thread.h:78: parse error before `pthread_rwlock_t'
is the one that brings on all the others. I've checked
/usr/include/pthread.h and didn't find pthread_rwlock_t in it.
So my guess is, pthread on solaris 2.6 is too old (afaik, there are three
versions of solaris that are newer than this). Can someb...
2010 May 26
3
dotnet20 error
...:I_RpcGetBuffer no binding
err:rpc:I_RpcGetBuffer no binding
err:rpc:I_RpcGetBuffer no binding
err:rpc:I_RpcGetBuffer no binding
err:rpc:I_RpcGetBuffer no binding
err:rpc:I_RpcGetBuffer no binding
err:rpc:I_RpcGetBuffer no binding
fixme:sync:CreateMemoryResourceNotification (0) stub
fixme:shell:URL_ParseUrl failed to parse L"System.EnterpriseServices"
fixme:shell:URL_ParseUrl failed to parse L"System"
err:ole:CoGetClassObject class {ecabb0c8-7f19-11d2-978e-0000f8757e2a} not registered
err:ole:CoGetClassObject no class object {ecabb0c8-7f19-11d2-978e-0000f8757e2a} could be create...
2005 Dec 16
2
R compile on AIX 5.3
...../src/extra/bzip2
-I../../src/extra/pcre -I. -I../../src/include -I../../src/include
-I/usr/local/include -DHAVE_CONFIG_H -mno-fp-in-toc -g -O2 -c
platform.c -o platform.o
In file included from /usr/include/netdb.h:47,
from platform.c:1365:
/usr/include/netinet/in.h:793: error: parse error before
"inet6_rth_space"
/usr/include/netinet/in.h:794: error: parse error before "socklen_t"
/usr/include/netinet/in.h:800: error: parse error before "socklen_t"
/usr/include/netinet/in.h:801: error: parse error before "socklen_t"
/usr/include/netinet/...
2010 Mar 23
7
PDC migration from suse 8.2 - samba 2.2.7 ldap - to latest versions on ubuntu 8.04
Hello,
Hopefully I'm in the right place asking for help :-)
I need to move from an old physical Suse 8.2 - samba 2.2.7 + ldap - to
latest samba versions, I would like to use an ubuntu 8.04 virtual machine.
The domain is in production on the physical server, to be dismissed after
migration. It is also the file server!!! so /DATA/ has all shared and
permission driven file access..
I was
2006 Nov 24
6
Rails 1.2 RC1 problem
...'16', 'Viana do Castelo'],
['17', 'Vila Real'],
['18', 'Viseu']
]
end
this is used to polulate some lists on a view, but i get the following
errors. It works fine with rails 1.1.2
/var/rails/LocaisVoo/app/helpers/sites_helper.rb:9: parse error, unexpected
tINTEGER, expecting ']'
['5', 'Castelo Branco'],
^
/var/rails/LocaisVoo/app/helpers/sites_helper.rb:9: parse error, unexpected
tCONSTANT, expecting kEND
['5', 'Castelo Branco'],
^
/var/rails/LocaisVoo...