Thanks, that's done the trick!
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Garrett
Rooney
Sent: Wednesday, 4 January 2006 11:17 AM
To: Krumm-Heller, Alex (ICT Centre, Marsfield)
Cc: dev@apr.apache.org
Subject: Re: using APR on fedora core 3
The probl
On 1/3/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Hi Garrett,
>
> > Can you try and reduce this to a simple test case (i.e. one .c file
> > and an actual command you use to compile it) so that we can try to
> > reproduce the problem? It's rather difficult to say what's wrong
> > without se
Hi Garrett,
> Can you try and reduce this to a simple test case (i.e. one .c file
> and an actual command you use to compile it) so that we can try to
> reproduce the problem? It's rather difficult to say what's wrong
> without seeing the code and the exact commands being used to build it.
Ok th
On 1/3/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Hi,
>
> > Did you use the compiler flags given by apr-config?
> >
> > Try something like:
> >
> > `apr-config --cc` `apr-config --cflags --cppflags` -c lala1.c
> > `apr-config --cc` `apr-config --cflags --cppflags` -c lala2.c
> > `apr-con
Hi,
> Did you use the compiler flags given by apr-config?
>
> Try something like:
>
> `apr-config --cc` `apr-config --cflags --cppflags` -c lala1.c
> `apr-config --cc` `apr-config --cflags --cppflags` -c lala2.c
> `apr-config --cc` `apr-config --link-ld --libs` -o lala lala1.o
lala2.o
>
> Proba
On Tue, Jan 03, 2006 at 12:32:37AM +, David Reid wrote:
> Small patch that allows you to do silly things like
>
> ./configure --with-apr=srclib/apr --with-apr-util=srclib/apr-util
>
> in httpd. Was useful for me, so who knows, someone else might find it
> useful.
>
A very big +1 on the conce
Hi,
> INT64_C undeclared
I guess you're using the older APR.
I formerly met the same error with the older APR.
We need the following code (the code is excerpted from the latest apr.h.in).
#if defined(__cplusplus) && !defined(__STDC_CONSTANT_MACROS)
/* C99 7.18.4 requires that stdint.h only expo
Greetings,
A patch to the doxygen for include/apr_poll.h:apr_pollset_poll()
that documents a feature that I slammed into a couple of weeks ago.
Regards
Gerry Calderhead
[EMAIL PROTECTED] include]$ rcsdiff -u6 apr_poll.h
===
RCS fil
Hi Alex,
[EMAIL PROTECTED] wrote:
> This is probably an obvious question, but I am having a problem using
> APR. I am developing some software using C++ and APR on Windows XP and
> Fedora Core 3. I am intending to use APR as a shared library. So far I
> have managed to successfully build APR on Wi