[MacPorts] #18941: r48483 [libpgcrypto.0.0.so] Error 1; /pgcrypto/ && gnumake returned error 2

MacPorts noreply at macports.org
Wed Mar 25 09:00:56 PDT 2009


#18941: r48483 [libpgcrypto.0.0.so] Error 1; /pgcrypto/ && gnumake returned error 2
-------------------------------------+--------------------------------------
  Reporter:  cerieljacobs@…          |       Owner:  mww@…           
      Type:  defect                  |      Status:  closed          
  Priority:  Normal                  |   Milestone:  Port Bugs       
 Component:  ports                   |     Version:  1.8.0           
Resolution:  invalid                 |    Keywords:  pgcrypto        
      Port:  postgresql83            |  
-------------------------------------+--------------------------------------

Comment(by cerieljacobs@…):

 You are right this is not a macports problem, but a bug which is filed at
 postgresql.org under #4731:

 what is causing it: pgp.h contains:
 {{{
 enum
 {
        PGP_S2K_SIMPLE = 0,
        PGP_S2K_SALTED = 1,
        PGP_S2K_ISALTED = 3
 } PGP_S2K_TYPE;
 }}}
 What was meant was
 {{{
 enum PGP_S2K_TYPE
 {
        PGP_S2K_SIMPLE = 0,
        PGP_S2K_SALTED = 1,
        PGP_S2K_ISALTED = 3
 };
 }}}

 because what the first one is doing is defining a global variable
 that is of an anonymous enum type.

 Eh, it's silly mistake indeed.

-- 
Ticket URL: <http://trac.macports.org/ticket/18941#comment:10>
MacPorts <http://www.macports.org/>
Ports system for Mac OS


More information about the macports-tickets mailing list