From: Tom Lane Date: Tue, 28 Nov 2006 05:45:43 +0000 (+0000) Subject: Add $(CFLAGS) to the simplified build rule for .so libraries on Darwin. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=36e606cb0dec1b5056ae6ee4f357989a27fb096e;p=users%2Fbernd%2Fpostgres.git Add $(CFLAGS) to the simplified build rule for .so libraries on Darwin. Arguably we should do this on *all* platforms, but for the moment Ill --- diff --git a/src/makefiles/Makefile.darwin b/src/makefiles/Makefile.darwin index 9e254ee04b..9f761d4b4b 100644 --- a/src/makefiles/Makefile.darwin +++ b/src/makefiles/Makefile.darwin @@ -13,6 +13,6 @@ endif # Rule for building shared libs (currently used only for regression test # shlib ... should go away, since this is not really enough knowledge) %.so: %.o - $(CC) -bundle -o $@ $< $(BE_DLLLIBS) + $(CC) $(CFLAGS) -bundle -o $@ $< $(BE_DLLLIBS) sqlmansect = 7