Re: [PHP-DEV] Can't build sapi/cgi

2002-03-11 Thread Sebastian Bergmann

Shane Caraveo wrote:
 I just fixed the problem with that, sorry.

  No problem.

  I just fixed a warning in libfcgi, but I'm still getting the following
  warnings:

LINK: warning LNK4049: Locally defined symbol _FCGX_PutStr imported
LINK: warning LNK4049: Locally defined symbol _FCGX_IsCGI imported
LINK: warning LNK4049: Locally defined symbol _FCGX_FFlush imported
LINK: warning LNK4049: Locally defined symbol _FCGX_GetStr imported
LINK: warning LNK4049: Locally defined symbol _FCGX_Finish imported
LINK: warning LNK4049: Locally defined symbol _FCGX_Accept imported

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/ http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] Can't build sapi/cgi

2002-03-11 Thread Shane Caraveo

Hmm, I just downloaded cvs onto a 'clean' machine (doesn't have any fastcgi
sources anywhere, other than php cvs) and had no problem compiling.  I have
seen simular messages before on another project, due to a lack of the define
FCGI_STATIC (see fcgiapp.h) in the project.  This was added in one of my cvs
commits, to all the build configurations, but I missed Release_TSDbg, is
that what you are compiling with?  I'll be commiting a patch for that in a
few moments.
Shane

- Original Message -
From: Sebastian Bergmann [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, March 11, 2002 12:01 AM
Subject: Re: [PHP-DEV] Can't build sapi/cgi


 Shane Caraveo wrote:
  I just fixed the problem with that, sorry.

   No problem.

   I just fixed a warning in libfcgi, but I'm still getting the following
   warnings:

 LINK: warning LNK4049: Locally defined symbol _FCGX_PutStr imported
 LINK: warning LNK4049: Locally defined symbol _FCGX_IsCGI imported
 LINK: warning LNK4049: Locally defined symbol _FCGX_FFlush imported
 LINK: warning LNK4049: Locally defined symbol _FCGX_GetStr imported
 LINK: warning LNK4049: Locally defined symbol _FCGX_Finish imported
 LINK: warning LNK4049: Locally defined symbol _FCGX_Accept imported

 --
   Sebastian Bergmann
   http://sebastian-bergmann.de/ http://phpOpenTracker.de/

   Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

 --
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] Can't build sapi/cgi

2002-03-11 Thread Sebastian Bergmann

Shane Caraveo wrote:
 commits, to all the build configurations, but I missed Release_TSDbg, 
 is that what you are compiling with?

  No, I'm building Release_TS_Inline.

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/ http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] Can't build sapi/cgi

2002-03-11 Thread Shane Caraveo

You don't by any chance have the fastcgi library from fastcgi.com installed
also do you?  I simply cannot reproduce the same warnings here.

Shane

- Original Message -
From: Sebastian Bergmann [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, March 11, 2002 10:36 AM
Subject: Re: [PHP-DEV] Can't build sapi/cgi


 Shane Caraveo wrote:
  commits, to all the build configurations, but I missed Release_TSDbg,
  is that what you are compiling with?

   No, I'm building Release_TS_Inline.

 --
   Sebastian Bergmann
   http://sebastian-bergmann.de/ http://phpOpenTracker.de/

   Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

 --
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] Can't build sapi/cgi

2002-03-11 Thread Sebastian Bergmann

Shane Caraveo wrote:
 You don't by any chance have the fastcgi library from fastcgi.com 
 installed also do you?

  No.

 I simply cannot reproduce the same warnings here.

  I'm using MS VisualStudio 98, ServicePack 5, btw.

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/ http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] Can't build sapi/cgi

2002-03-11 Thread Sebastian Bergmann

Shane Caraveo wrote:
 I simply cannot reproduce the same warnings here.

  The warnings are gone now. Dunny why, though ;)

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/ http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-DEV] Can't build sapi/cgi

2002-03-10 Thread Sebastian Bergmann

c:\home\php\php4\sapi\cgi\libfcgi\fcgi_stdio.c(34): fatal error C1083:
'fcgios.h': No such file or directory

c:\home\php\php4\sapi\cgi\libfcgi\fcgiapp.c(50): fatal error C1083:
'fcgimisc.h': No such file or directory

c:\home\php\php4\sapi\cgi\libfcgi\os_win32.c(33): fatal error C1083:
'fcgimisc.h': No such file or directory

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/ http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] Can't build sapi/cgi

2002-03-10 Thread Shane Caraveo

I just fixed the problem with that, sorry.
Shane


Sebastian Bergmann wrote:
 
 c:\home\php\php4\sapi\cgi\libfcgi\fcgi_stdio.c(34): fatal error C1083:
 'fcgios.h': No such file or directory
 
 c:\home\php\php4\sapi\cgi\libfcgi\fcgiapp.c(50): fatal error C1083:
 'fcgimisc.h': No such file or directory
 
 c:\home\php\php4\sapi\cgi\libfcgi\os_win32.c(33): fatal error C1083:
 'fcgimisc.h': No such file or directory
 
 --
   Sebastian Bergmann
   http://sebastian-bergmann.de/ http://phpOpenTracker.de/
 
   Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/
 
 --
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php