header file asoundlib.h in $prefix/include/alsa directory (usually in
/usr/include/alsa directory).
-Compilation from CVS sources
-----------------------------
+Compilation from HG sources
+---------------------------
You need also GNU packages autoconf and automake installed in your system
-to compile CVS sources of alsa-utils package.
+to compile HG (Mercurial) sources of alsa-utils package.
For compilation you can use these commands:
./configure
make
-The included cvscompile script does this job for you.
+The included hgcompile script does this job for you.
Note: Some automake packages have missing aclocal program. Use newer version
in the case.
ALSAMIXER_DIR=
endif
SUBDIRS= include alsactl alsaconf $(ALSAMIXER_DIR) amidi amixer aplay iecset seq speaker-test utils m4 po
-EXTRA_DIST= config.rpath mkinstalldirs ChangeLog INSTALL TODO README configure cvscompile depcomp
+EXTRA_DIST= config.rpath mkinstalldirs ChangeLog INSTALL TODO README configure hgcompile depcomp
AUTOMAKE_OPTIONS=foreign
ACLOCAL_AMFLAGS = -I m4
--- /dev/null
+#!/bin/bash
+
+if test -d ../alsa-lib/utils && ! test -r `aclocal --print-ac-dir`/alsa.m4; then
+ alsa_m4_flags="-I ../alsa-lib/utils"
+fi
+aclocal $alsa_m4_flags $ACLOCAL_FLAGS
+# save original files to avoid stupid modifications by gettextize
+cp Makefile.am Makefile.am.ok
+cp configure.in configure.in.ok
+gettextize -c -f --no-changelog
+echo "EXTRA_DIST = gettext.m4" > m4/Makefile.am
+cp Makefile.am.ok Makefile.am
+cp configure.in.ok configure.in
+autoheader
+automake --foreign --copy --add-missing
+touch depcomp # for older automake
+autoconf
+export CFLAGS='-O2 -Wall -pipe -g'
+echo "CFLAGS=$CFLAGS"
+echo "./configure $@"
+./configure $@ || exit 1
+unset CFLAGS
+if [ -z "$HGCOMPILE_NO_MAKE" ]; then
+ make
+fi