Re: Bogosity in contrib/xml2/Makefile

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: Bogosity in contrib/xml2/Makefile
Date: 2008-05-08 14:03:39
Message-ID: 200805081403.m48E3dZ13234@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


Tom, did we come to any conclusion on this?

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

Tom Lane wrote:
> Whilst fooling with bug #4058 I noticed that xml2's .c files were being
> compiled without -g or any of the various warning flags we normally use.
> I saw this:
>
> gcc -I/usr/include/libxml2 -fpic -I. -I../../src/include -D_GNU_SOURCE -I/usr/include/libxml2 -c -o xpath.o xpath.c
>
> when I expected something like this:
>
> gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Winline -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -g -fpic -I. -I../../src/include -D_GNU_SOURCE -I/usr/include/libxml2 -c -o xpath.o xpath.c
>
> The reason is apparently this line in its Makefile:
>
> override CFLAGS += $(shell xml2-config --cflags)
>
> It seems the "override" locks down the value so that the subsequent
> assignment in Makefile.global does nothing. I didn't try the PGXS
> case but I imagine it doesn't do the right thing either.
>
> Now, in HEAD and 8.3 I think we could just remove this line, because
> configure knows how to pull the needed -I and -L flags out of
> xml2-config's output and stick them into appropriate flag variables
> (neither of which is CFLAGS btw...). I am not sure what to do in older
> branches though --- there doesn't seem to be any real nice solution.
>
> Even though xml2 is deprecated and may go away for 8.4, I think this is
> important to fix in the back branches. Failing to use the -f flags for
> instance could be resulting in outright wrong code, and we'd be unlikely
> to notice since there's no regression test at all for this module.
>
> Thoughts?
>
> regards, tom lane
>
> --
> Sent via pgsql-hackers mailing list (pgsql-hackers(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-hackers

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bernd Helmle 2008-05-08 15:20:06 Re: Updatable views
Previous Message Simon Riggs 2008-05-08 13:42:50 Re: Updatable views