diff options
author | roam <roam@FreeBSD.org> | 2001-04-17 19:02:01 +0800 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2001-04-17 19:02:01 +0800 |
commit | 56d079e788912dad3f272c39fe6df88e7a0169b0 (patch) | |
tree | dca0bcfd3c6cc3f88dbdea4fbd5614ea1da8f476 /audio/xmp/files | |
parent | d00ab0103e1a7e456bf7093d94a59a9fb43119e2 (diff) | |
download | freebsd-ports-gnome-56d079e788912dad3f272c39fe6df88e7a0169b0.tar.gz freebsd-ports-gnome-56d079e788912dad3f272c39fe6df88e7a0169b0.tar.zst freebsd-ports-gnome-56d079e788912dad3f272c39fe6df88e7a0169b0.zip |
Fix build.
PR: 26439
Submitted by: maintainer
Diffstat (limited to 'audio/xmp/files')
-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 ----------------------------------------------------------------------- |