automake 1.11 has macros built in that make compilation much

less verbose, i.e. only shows something like
  CC     libdfilter_la-sttype-string.lo
and
  CCLD   libdfilter.la                                                          
Warnings are still shown, which makes warnings stick out more prominently
than before.

Offer that option if present.
This will provide 2 new configure arguments:
  --enable-silent-rules          less verbose build output (undo: `make V=1') 
  --disable-silent-rules         verbose build output (undo: `make V=0')      
The current default is disable-silent-rules to make the default behaviour
match the current one.

If you like that feature, maybe we should make silent compilation the new
default.

svn path=/trunk/; revision=31346
This commit is contained in:
Jörg Mayer 2009-12-22 09:43:48 +00:00
parent 5c665874ba
commit 25eb272657
1 changed files with 3 additions and 0 deletions

View File

@ -426,6 +426,9 @@ cygwin*)
esac
AC_SUBST(LDFLAGS_SHAREDLIB)
# Control silent compiling
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])])
#
# On OS X, if we find the headers for Core Foundation, Launch Services,
# and Core Services, add -framework options to link with Application