diff options
author | Christian Beier <[email protected]> | 2011-12-01 13:08:54 +0100 |
---|---|---|
committer | Christian Beier <[email protected]> | 2011-12-01 13:08:54 +0100 |
commit | c42ea2fa7c025074bff706cbd92b478c39d08aa9 (patch) | |
tree | 2bfe133151747255a837c63434c1b71f69b1c9b1 /configure.ac | |
parent | 49e59435e32401dcaa7885bab1d2e49b5b2efaf9 (diff) | |
download | libtdevnc-c42ea2fa7c025074bff706cbd92b478c39d08aa9.tar.gz libtdevnc-c42ea2fa7c025074bff706cbd92b478c39d08aa9.zip |
Use AM_SILENT_RULES only when it's actually available.
Otherwise building breaks with older make versions. Happens on OS X
10.6 for instance.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8a598b0..31aa1f2 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,9 @@ # Process this file with autoconf to produce a configure script. AC_INIT(LibVNCServer, 0.9.8.1, http://sourceforge.net/projects/libvncserver) AM_INIT_AUTOMAKE(LibVNCServer, 0.9.8.1) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AM_CONFIG_HEADER(rfbconfig.h) AX_PREFIX_CONFIG_H([rfb/rfbconfig.h]) -AM_SILENT_RULES([yes]) # Checks for programs. AC_PROG_CC |