diff options
author | dsainty <dsainty@pkgsrc.org> | 2008-12-22 01:17:51 +0000 |
---|---|---|
committer | dsainty <dsainty@pkgsrc.org> | 2008-12-22 01:17:51 +0000 |
commit | d72e138bb2c17a65c813ab4d6d81f671066a5c87 (patch) | |
tree | 8e5f893b31b4d7d7bd19d31f527ed3abe9e07d92 /audio | |
parent | 0726519343aae6dd65be862ea5b527d960b46778 (diff) | |
download | pkgsrc-d72e138bb2c17a65c813ab4d6d81f671066a5c87.tar.gz |
For systems with no installed m4, USE_TOOLS+=m4 (E.g. Linux)
Fixes configure stage bombing out like so:
checking for m4... no
configure: error: m4 missing
*** Error code 1
Diffstat (limited to 'audio')
-rw-r--r-- | audio/pulseaudio/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/pulseaudio/Makefile b/audio/pulseaudio/Makefile index 5a86dee5e5a..8952dd88c47 100644 --- a/audio/pulseaudio/Makefile +++ b/audio/pulseaudio/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2008/12/20 18:23:56 jmcneill Exp $ +# $NetBSD: Makefile,v 1.7 2008/12/22 01:17:51 dsainty Exp $ # DISTNAME= pulseaudio-0.9.13 @@ -12,7 +12,7 @@ COMMENT= Sound server for POSIX and Win32 systems GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_TOOLS+= pkg-config gmake msgfmt intltool perl \ +USE_TOOLS+= pkg-config gmake m4 msgfmt intltool perl \ autoconf automake USE_DIRS+= xdg-1.4 |