pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/pkgtools/pkgconflict/files don't pass gcc specific flags.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/cb5bd7411110
branches:  trunk
changeset: 477167:cb5bd7411110
user:      grant <grant%pkgsrc.org@localhost>
date:      Sun Jun 27 13:40:20 2004 +0000

description:
don't pass gcc specific flags.

XXX this is still bogus because it passes -fpic to generate pic code
to build a shared obbject which is not always desired (eg. Interix).

diffstat:

 pkgtools/pkgconflict/files/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (15 lines):

diff -r ced73f9a352d -r cb5bd7411110 pkgtools/pkgconflict/files/Makefile
--- a/pkgtools/pkgconflict/files/Makefile       Sun Jun 27 13:36:57 2004 +0000
+++ b/pkgtools/pkgconflict/files/Makefile       Sun Jun 27 13:40:20 2004 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.2 2002/04/08 16:26:15 wennmach Exp $
+# $NetBSD: Makefile,v 1.3 2004/06/27 13:40:20 grant Exp $
 
 PGINCLUDE=@PREFIX@/include/pgsql
 
 .c.o:
-       cc -I${PGINCLUDE} -I${PGINCLUDE}/server -Wall -fpic -c $<
+       cc -I${PGINCLUDE} -I${PGINCLUDE}/server -fpic -c $<
 
 all: dewey_cmp.so
 



Home | Main Index | Thread Index | Old Index