Based on this report, I am adding a FUNC_MAX_ARGS define to
src/include/pg_config.h.win32.  Certainly if we have INDEX_MAX_KEYS in
there, we should have FUNC_MAX_ARGS too.

---------------------------------------------------------------------------

Chris Ryan wrote:
> Bruce,
> 
>       I'm not active on the pgsql lists so I figured I would pass this on to
> you.
> 
>       We were working on compiling some apps using the libpq interface on
> windows and ran into a problem where FUNC_MAX_ARGS was not defined in
> the src/include/pg_config.h.win32 file. We added the following line to
> the file:
> 
> #define FUNC_MAX_ARGS INDEX_MAX_KEYS
> 
>       After an nmake -f win32.mak cleanl; nmake -f win32.mak everything
> worked fine.
> 
> Thanks in advance.
> Chris
> 
> _________________________________________________________
> Do You Yahoo!?
> Get your free @yahoo.com address at http://mail.yahoo.com
> 
> 

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  [EMAIL PROTECTED]               |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026
Index: src/include/pg_config.h.win32
===================================================================
RCS file: /cvsroot/pgsql/src/include/pg_config.h.win32,v
retrieving revision 1.3
diff -c -r1.3 pg_config.h.win32
*** src/include/pg_config.h.win32       22 Jan 2002 19:02:40 -0000      1.3
--- src/include/pg_config.h.win32       23 Apr 2002 23:42:59 -0000
***************
*** 19,24 ****
--- 19,25 ----
  #define BLCKSZ        8192
  
  #define INDEX_MAX_KEYS                16
+ #define FUNC_MAX_ARGS         INDEX_MAX_KEYS
  
  #define HAVE_ATEXIT
  #define HAVE_MEMMOVE

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly

Reply via email to