[PATCH] Adding information to README

2017-02-05 Thread Luke Perkins
[[[ Provide addition information helpful in the construction of the APR using Subversion. * README Added hints on building APR using Subversion. Patch by: L. Perkins<lukeperk...@epicdgs.us> ]]] Thank-you, Luke Perkins 2581 Flagstone Drive San Jose, California 95132-2611 Cell: 719-339-098

apr_sockaddr_info_get;Need some information

2008-12-23 Thread raj reddy
Hi all, I am writing a client program to connect to the server and I want my code to support both IPV4 and IPV6 addresses and henceforth I am using the APR calls as APR internal takes care of it. The issues I am facing are: 1 The apr_sockaddr_info_get () goes fine if I specify the hostname(

APR - Information

2007-08-14 Thread David Viel
I am very interested in the Apache – Portable Runtime Project (APR). Platform independence is an ambitious goal and I commend you on taking up the challenge. The issue of platform independence is becoming an increasingly important one in much of my work. I’ve looked into several efforts that

information

2004-01-12 Thread Charles Bonello
Dear sir/madam I am a student studying business studies at school and I would like some information about APR. Would you please forward some information. Thanks in advance. Regards Julian Bonello Malta

Re: information

2004-01-12 Thread Cliff Woolley
On Sun, 11 Jan 2004, Charles Bonello wrote: I am a student studying business studies at school and I would like some information about APR. Would you please forward some information. Have you seen our website at http://apr.apache.org/ ? What additional information would you like to know

RedHat Linux 7.1 Problem apr (More information)

2004-01-09 Thread Marco Spinetti
Hi all, I run the test inside test directory and I noticed this two error: ./testall -v testsockets Partial APR Tests: Socket Creation: ..FFF. 6 tests run: 3 passed, 3 failed, 0 not implemented. Failed tests in Socket Creation: 1) tcp6_socket: expected 0 but was 97 2) udp6_socket:

RedHat Linux 7.1 Problem apr (More information 2)

2004-01-09 Thread Marco Spinetti
This is the output of the program testsock in the test directory. I have enclose between ** what it seems starnge to me. ./testsock Initializing.OK Creating context...OK This test relies on the process test working. Please run that test first, and only run this test when it completes

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-19 Thread Branko ibej
| APR_FINFO_NAME to apr_dir_read. The first two calls to apr_dir_read return . and .. and the Subversion code skips them, the following gdb information is for the third call ,,, never mind my earlier questions. Committed a patch to ignore the results of d_type when it's DT_UNKNOWN (or a code we

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-19 Thread William A. Rowe, Jr.
to apr_dir_read. The first two calls to apr_dir_read return . and .. and the Subversion code skips them, the following gdb information is for the third call ,,, never mind my earlier questions. Committed a patch to ignore the results of d_type when it's DT_UNKNOWN (or a code we don't grok

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-18 Thread Branko ibej
:315: (apr_err=155000, src_err=0) svn: Obstructed update svn: The entry 'bar' is no longer a directory, which prevents proper updates. Please remove this entry and try updating again. Looks like a recent apr change causes apr_dir_read to fail to return all the requested information. I don't

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-18 Thread William A. Rowe, Jr.
I'm sorry... this patch dir not come through to [EMAIL PROTECTED] for me today (although I watched for it...) but it's simply WRONG. At 07:04 PM 12/17/2002, =?UTF-8?B?QnJhbmtvIMSMaWJlag==?= wrote: --- apr/file_io/unix/dir.c 15 Dec 2002 05:17:51 - 1.69 +++ apr/file_io/unix/dir.c

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-18 Thread rbb
On Tue, 17 Dec 2002, William A. Rowe, Jr. wrote: I'm sorry... this patch dir not come through to [EMAIL PROTECTED] for me today (although I watched for it...) but it's simply WRONG. At 07:04 PM 12/17/2002, =?UTF-8?B?QnJhbmtvIMSMaWJlag==?= wrote: --- apr/file_io/unix/dir.c 15 Dec 2002

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-18 Thread Branko ibej
causes apr_dir_read to fail to return all the requested information. I don't know if this is complete from an apr point of view, but it's sufficient to get Subversion working on my glibc 2.2.5 Linux machine. Index: apr/file_io/unix/dir.c

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-18 Thread William A. Rowe, Jr.
are the identifiers that will help us determine if stat() was also called later. First; the definition of all the apr_file_info...() fn's is to return *ALL* of the available information. If more information is available (without extra effort) than the user requests, that is always OK. If some 'extra

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-18 Thread Philip Martin
. and .. and the Subversion code skips them, the following gdb information is for the third call (gdb) s apr_dir_read (finfo=0xb660, wanted=33587200, thedir=0x809a878) at dir.c:174 174 apr_status_t ret = 0; (gdb) n 179 ret = readdir_r(thedir-dirstruct, thedir-entry, retent); (gdb) 184

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-18 Thread William A. Rowe, Jr.
calls to apr_dir_read return . and .. and the Subversion code skips them, the following gdb information is for the third call (gdb) s apr_dir_read (finfo=0xb660, wanted=33587200, thedir=0x809a878) at dir.c:174 174 apr_status_t ret = 0; (gdb) n 179 ret = readdir_r(thedir-dirstruct

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-18 Thread Philip Martin
William A. Rowe, Jr. [EMAIL PROTECTED] writes: Philip... thanks. Now for the oddball question, looking at dirent.h or it's associate sys/ includes, what symbol DT_xxx (DT_REG, etc) do you find for value 0? /usr/include/dirent.h /* File types for `d_type'. */ enum { DT_UNKNOWN = 0,

Re: [PATCH] apr_dir_read doesn't return requested information

2002-12-18 Thread William A. Rowe, Jr.
two calls to apr_dir_read return . and .. and the Subversion code skips them, the following gdb information is for the third call ,,, never mind my earlier questions. Committed a patch to ignore the results of d_type when it's DT_UNKNOWN (or a code we don't grok) and ignore the results

[PATCH] apr_dir_read doesn't return requested information

2002-12-17 Thread Philip Martin
=155000, src_err=0) svn: Obstructed update svn: The entry 'bar' is no longer a directory, which prevents proper updates. Please remove this entry and try updating again. Looks like a recent apr change causes apr_dir_read to fail to return all the requested information. I don't know

Getting Disk information

2001-11-19 Thread Rohan Nandode
Hi All, Is there any API(s) provided by APR library which gives infomation/statistics about a Disk? I want Free disk space and Total disk space of the hard disk. Please, let me know how I can do this! Thanks a lot! Rohan. __ Do You

Re: Getting Disk information

2001-11-19 Thread Greg Stein
On Mon, Nov 19, 2001 at 12:51:02AM -0800, Rohan Nandode wrote: Hi All, Is there any API(s) provided by APR library which gives infomation/statistics about a Disk? I want Free disk space and Total disk space of the hard disk. APR does not provide these APIs, sorry. Patches welcome

Re: Getting Disk information

2001-11-19 Thread Ryan Bloom
On Monday 19 November 2001 12:51 am, Rohan Nandode wrote: Hi All, Is there any API(s) provided by APR library which gives infomation/statistics about a Disk? I want Free disk space and Total disk space of the hard disk. Please, let me know how I can do this! Those APIs don't exist