When copying the files from httpd22 dir to my project directory and
recompiling them with my project the record sizes are OK and same as the
C compiled apache module.
Yet, the apache module compiled with FPC/Lazarus is not working. The
hooked DefaultHandler function is never called, just an em
On Linux (Ubuntu 8.04), latest SVN, in fpc/packages/httpd22/...
in httpd.inc inside request_rec:
{ body byte count, for easy access }
bytes_sent: apr_off_t;
{ Last modified time of the requested resource }
mtime: apr_time_t;
in apr.pas :
apr_off_t = Int64;
apr_int64_t = Int64
Hi all,
can anybody please comment on the following?
Bellow is a simple function, returning "M9,MD,P6".
function F: String;
begin
with TStringList.Create do
try
Sorted := True;
Add('P6');
Add('M9');
Add('MD');
Result := CommaText;
fina
Hi all,
can anybody please comment on the following?
Bellow is a simple function, returning "M9,MD,P6".
function F: String;
begin
with TStringList.Create do
try
Sorted := True;
Add('P6');
Add('M9');
Add('MD');
Result := CommaText;
On 01 Oct 2008, at 20:18, Jonas Maebe wrote:
On 01 Oct 2008, at 08:41, Brad Campbell wrote:
This is actually only required on 10.5 on Intel, but it does not
seem to hurt on the other versions.
If left in place, this just blocks and stalls the program.
-
+{$IFNDEF DARWIN}
tcflush(Handle, T
On 29 Sep 2008, at 16:50, [EMAIL PROTECTED] wrote:
On Mon, Sep 29, 2008 at 11:49:29AM +0200, Jonas Maebe wrote:
On 29 Sep 2008, at 11:41, Paul Ishenin wrote:
Jonas Maebe ??:
That's just a hack, and you have to regenerate the message file
for every
new FPC release.
Ofcource, bu
On 01 Oct 2008, at 08:41, Brad Campbell wrote:
This is actually only required on 10.5 on Intel, but it does not
seem to hurt on the other versions.
If left in place, this just blocks and stalls the program.
-
+{$IFNDEF DARWIN}
tcflush(Handle, TCIOFLUSH);
- tcsetattr(Handle, TCSANOW, tios)