Re: b21de4e7b32f868a23bdc5507898d36cbe146164 seems to be two bricks shy of a load - Mailing list pgsql-hackers

From Boszormenyi Zoltan
Subject Re: b21de4e7b32f868a23bdc5507898d36cbe146164 seems to be two bricks shy of a load
Date
Msg-id 528E0B95.9050202@cybertec.at
Whole thread Raw
In response to b21de4e7b32f868a23bdc5507898d36cbe146164 seems to be two bricks shy of a load  (David Rowley <dgrowleyml@gmail.com>)
List pgsql-hackers
2013-11-21 11:52 keltezéssel, David Rowley írta:
I'm not quite sure why nobody else seems to be complaining, but the changes to type.h in this commit seems to have broken things little.

In the visual studios build I'm getting:

  src\interfaces\ecpg\preproc\preproc.y(84): error C2065: 'ET_FATAL' : undeclared identifier [D:\Postgres\b\ecpg.vcxproj]
  src\interfaces\ecpg\preproc\preproc.y(84): error C2051: case expression not constant [D:\Postgres\b\ecpg.vcxproj]
  src\interfaces\ecpg\preproc\preproc.y(102): error C2065: 'ET_FATAL' : undeclared identifier [D:\Postgres\b\ecpg.vcxproj]
  src\interfaces\ecpg\preproc\preproc.y(102): error C2051: case expression not constant [D:\Postgres\b\ecpg.vcxproj]
  src\interfaces\ecpg\preproc\preproc.y(14664): error C2065: 'ET_FATAL' : undeclared identifier [D:\Postgres\b\ecpg.vcxproj]

Which I'm guessing is something to do with:

@@ -186,7 +186,7 @@ struct assignment
 
 enum errortype
 {
-   ET_WARNING, ET_ERROR, ET_FATAL
+   ET_WARNING, ET_ERROR
 };


Regards

David Rowley

You should regenerate preproc.y.
"./configure --enable-depend" does the trick under Linux
but I don't know how to do it under Windows.

Best regards,
Zoltán Böszörményi

-- 
----------------------------------
Zoltán Böszörményi
Cybertec Schönig & Schönig GmbH
Gröhrmühlgasse 26
A-2700 Wiener Neustadt, Austria
Web: http://www.postgresql-support.de     http://www.postgresql.at/

pgsql-hackers by date:

Previous
From: Andres Freund
Date:
Subject: Re: Replication Node Identifiers and crashsafe Apply Progress
Next
From: Amit Kapila
Date:
Subject: Re: b21de4e7b32f868a23bdc5507898d36cbe146164 seems to be two bricks shy of a load