Skip to content
Snippets Groups Projects
Commit 87dfa2ae authored by Stan Seibert's avatar Stan Seibert
Browse files

Never put AM_CONDITIONAL in an if-statement. Fix for esd from Christian

Weisgerber.


git-svn-id: http://svn.xiph.org/trunk/ao@5439 0101bb08-14d6-0310-b084-bc0e0c8e3800
parent 76322347
No related branches found
No related tags found
No related merge requests found
? - ??
- Can build with --disable-esd option
0.8.4 - October 4, 2003
- Added AIX sound driver from Stefan Tibus <sjti@gmx.net>
- Committed some fixes from the Fink project to allow compiling on
......
......@@ -174,8 +174,8 @@ AC_ARG_ENABLE(esd, [ --enable-esd include ESD output plugin ],
if test "$BUILD_ESD" = "yes"; then
AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no)
AM_CONDITIONAL(HAVE_ESD,test "x$have_esd" = xyes)
fi
AM_CONDITIONAL(HAVE_ESD,test "x$have_esd" = xyes)
dnl Check for OSS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment