diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2001-04-17 11:02:01 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2001-04-17 11:02:01 +0000 |
commit | 76fa7f79dde3bd6ddbb53504c9d59357e982cea4 (patch) | |
tree | 8f414c2f5015664f12a39a16c0a9908143031056 /audio/xmp/files/patch-configure.in | |
parent | Add Ian Freislich's very good POP Daemon. For those of you tired (diff) |
Fix build.
PR: 26439
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=41535
Diffstat (limited to 'audio/xmp/files/patch-configure.in')
-rw-r--r-- | audio/xmp/files/patch-configure.in | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/audio/xmp/files/patch-configure.in b/audio/xmp/files/patch-configure.in new file mode 100644 index 000000000000..783105abe24f --- /dev/null +++ b/audio/xmp/files/patch-configure.in @@ -0,0 +1,31 @@ +--- configure.in.orig Sat Jan 20 02:06:28 2001 ++++ configure.in Sun Apr 8 11:32:48 2001 +@@ -142,7 +142,7 @@ + sys/soundcard.h machine/soundcard.h \ + sys/ultrasound.h linux/ultrasound.h machine/ultrasound.h \ + awe_voice.h sys/awe_voice.h linux/awe_voice.h \ +- sys/asoundlib.h esd.h) ++ sys/asoundlib.h) + + dnl ----------------------------------------------------------------------- + dnl Check OS/architecture independent drivers +@@ -173,15 +173,10 @@ + fi]) + fi + +-if test "${ac_cv_header_esd_h}" = "yes"; then +- AC_CHECK_LIB(esd, esd_play_stream, [ +- if test "${enable_esd}" != no; then +- if test "${enable_dynamic}" != "yes"; then +- LIBS="${LIBS} -lesd" +- fi +- DRIVERS="${DRIVERS} esd.o" +- AC_DEFINE(DRIVER_ESD) +- fi]) ++if test "$enable_esd" = yes; then ++ AC_CHECK_LIB(esd, esd_play_stream) ++ DRIVERS="${DRIVERS} esd.o" ++ AC_DEFINE(DRIVER_ESD) + fi + + dnl ----------------------------------------------------------------------- |