[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: CVS Feature Branch - Windows Build Broken 7-Oct-2004 08:30 PDT
From: |
Conrad T. Pino |
Subject: |
RE: CVS Feature Branch - Windows Build Broken 7-Oct-2004 08:30 PDT |
Date: |
Thu, 7 Oct 2004 13:29:50 -0700 |
Hi Derek,
Mark is right and this points to an issue "windows-NT/mkconfig.pl" script.
It seems when #define value is "0" the script doesn't write it to output file.
I've tried "#define HAVE_DECL_GETPASS 1" instead of zero value which does
get written to output file:
H:\cvs-1.12\windows-NT>grep -n HAVE_DECL_GETPASS config.*
File config.h:
202 #define HAVE_DECL_GETPASS 1
File config.h.in:
202 #define HAVE_DECL_GETPASS 1
File config.h.in.in:
185 #define HAVE_DECL_GETPASS 1
and this will compile but I can't say how it runs.
What's your opinion towards a resolution?
Conrad
> From: Mark D. Baushke
>
> % grep HAVE_DECL_GETPASS windows-NT/*
> ./windows-NT/config.h:#define HAVE_DECL_GETPASS
> ./windows-NT/config.h.in:#define HAVE_DECL_GETPASS
> ./windows-NT/config.h.in.in:#define HAVE_DECL_GETPASS 0
> ./windows-NT/stamp-chi:#define HAVE_DECL_GETPASS
> %
>
> My guess is that if you make them all define it as 0 your problem will
> be resolved.
>
> -- Mark