diff options
author | kwm <kwm@FreeBSD.org> | 2015-09-14 00:16:32 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2015-09-14 00:16:32 +0800 |
commit | 3f2eb52534e13251699970dbc237b9e58480916e (patch) | |
tree | 34a45602849e3183f34d2c87f7cf3216229b828a | |
parent | 71adbe12b3096dda14436547ea6a1d397d72a896 (diff) | |
download | freebsd-ports-gnome-3f2eb52534e13251699970dbc237b9e58480916e.tar.gz freebsd-ports-gnome-3f2eb52534e13251699970dbc237b9e58480916e.tar.zst freebsd-ports-gnome-3f2eb52534e13251699970dbc237b9e58480916e.zip |
Replace HAVE_GNOME based check for esound with a exists() based one.
-rw-r--r-- | multimedia/mpeg4ip/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multimedia/mpeg4ip/Makefile b/multimedia/mpeg4ip/Makefile index 4e819429c77e..06281f2fbf5c 100644 --- a/multimedia/mpeg4ip/Makefile +++ b/multimedia/mpeg4ip/Makefile @@ -51,7 +51,7 @@ PORTDOCS= MAINREADME.html MP4LIVE_INTERNALS.html MPEG4IP_Guide.pdf \ ## Auto detect possible extensions ### # esound -.if ${HAVE_GNOME:Mesound}!="" && empty(PORT_OPTIONS:MESOUND) +.if exists(${LOCALBASE}/bin/esd-config) && empty(PORT_OPTIONS:MESOUND) PORT_OPTIONS+= ESOUND .endif # nas |