Fw: Missing file from CVS?

From: "Al Sutton" <al(at)alsutton(dot)com>
To: <pgsql-hackers(at)postgresql(dot)org>
Subject: Fw: Missing file from CVS?
Date: 2002-11-20 19:47:07
Message-ID: 008101c290cd$9c5644b0$0100a8c0@cloud
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Heres a patch which will create the sql_help.h file if it doesn't already
exist using an installed copy of perl. I've tested it using perl v5.6.1 from
ActiveState and all appears to work.

Can someone commit this for me, or throw back some comments.

Thanks,

Al.

--- src/bin/psql/win32.mak 2002/10/29 04:23:30 1.11
+++ src/bin/psql/win32.mak 2002/11/20 19:44:35
@@ -7,14 +7,16 @@
!ENDIF

CPP=cl.exe
+PERL=perl.exe

OUTDIR=.\Release
INTDIR=.\Release
+REFDOCDIR= ../../../doc/src/sgml/ref
# Begin Custom Macros
OutDir=.\Release
# End Custom Macros

-ALL : "$(OUTDIR)\psql.exe"
+ALL : sql_help.h "$(OUTDIR)\psql.exe"

CLEAN :
-(at)erase "$(INTDIR)\command.obj"
@@ -91,3 +93,7 @@
$(CPP) @<<
$(CPP_PROJ) $<
<<
+
+sql_help.h: create_help.pl
+ $(PERL) create_help.pl $(REFDOCDIR) $@
+

----- Original Message -----
From: "Al Sutton" <al(at)alsutton(dot)com>
To: <pgsql-hackers(at)postgresql(dot)org>
Sent: Friday, November 15, 2002 8:48 PM
Subject: Missing file from CVS?

> All,
>
> I've just tried to build the Win32 components under Visual Studio's C++
> compiler from the win32.mak CVS archive at
> :pserver:anoncvs(at)anoncvs(dot)postgresql(dot)org:/projects/cvsroot and found that
the
> following file was missing;
>
> src\bin\psql\sql_help.h
>
> I've copied the file from the the source tree of version 7.2.3 and the
> compile works with out any problems.
>
> Should the file be in CVS?
>
> Al.
>

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2002-11-20 20:13:26 Re: Geometry test on NetBSD (was Re: [HACKERS] RC1?)
Previous Message Patrick Welche 2002-11-20 19:18:14 Re: Geometry test on NetBSD (was Re: [HACKERS] RC1?)