07b5aff6cb
OSS_TYPE to determine whether or not a native OSS implementation is present or not. OSS_TYPE just exports the value of IS_BUILIN.oss, but exports it early enough where it can be used within a package Makefile, e.g.: .include "../../mk/oss.buildlink3.mk" .if ${OSS_TYPE} == "none" CONFIGURE_ARGS+= --without-oss .endif This should fix builds of some packages that include "oss.buildlink3.mk" on platforms where there is no OSS in the base system, e.g. Mac OS X and Solaris.
54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
# $NetBSD: oss.buildlink3.mk,v 1.4 2006/03/13 16:10:15 jlam Exp $
|
|
#
|
|
# This Makefile fragment is included by packages that require an Open Sound
|
|
# System (OSS) implementation. After inclusion of this file, the following
|
|
# variables may be examined:
|
|
#
|
|
# OSS_TYPE
|
|
# The type of OSS implementation that has been found. "native"
|
|
# means the native OSS implementation is used. "none" means that
|
|
# no suitable OSS implementation could be found.
|
|
#
|
|
OSS_BUILDLINK3_MK:= ${OSS_BUILDLINK3_MK}+
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !defined(_OSS_TYPE)
|
|
_OSS_TYPE= none
|
|
CHECK_BUILTIN.oss:= yes
|
|
. include "../../mk/oss.builtin.mk"
|
|
CHECK_BUILTIN.oss:= no
|
|
. if defined(IS_BUILTIN.oss) && !empty(IS_BUILTIN.oss:M[yY][eE][sS])
|
|
_OSS_TYPE= native
|
|
. endif
|
|
.endif
|
|
MAKEVARS+= _OSS_TYPE
|
|
|
|
OSS_TYPE= ${_OSS_TYPE}
|
|
|
|
.if ${OSS_TYPE} != "none"
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Noss}
|
|
BUILDLINK_PACKAGES+= oss
|
|
BUILDLINK_BUILTIN_MK.oss= ../../mk/oss.builtin.mk
|
|
|
|
.if !empty(OSS_BUILDLINK3_MK:M+)
|
|
LIBOSSAUDIO?= ${BUILDLINK_LDADD.oss}
|
|
. if (${OPSYS} == "Linux") && exists(/dev/dsp)
|
|
DEVOSSAUDIO?= /dev/dsp
|
|
DEVOSSSOUND?= /dev/dsp
|
|
. else
|
|
DEVOSSAUDIO?= /dev/audio
|
|
DEVOSSSOUND?= /dev/sound
|
|
. endif
|
|
|
|
CONFIGURE_ENV+= LIBOSSAUDIO=${LIBOSSAUDIO:Q}
|
|
CONFIGURE_ENV+= DEVOSSAUDIO=${DEVOSSAUDIO:Q}
|
|
CONFIGURE_ENV+= DEVOSSSOUND=${DEVOSSSOUND:Q}
|
|
|
|
MAKE_ENV+= LIBOSSAUDIO=${LIBOSSAUDIO:Q}
|
|
MAKE_ENV+= DEVOSSAUDIO=${DEVOSSAUDIO:Q}
|
|
MAKE_ENV+= DEVOSSSOUND=${DEVOSSSOUND:Q}
|
|
.endif # OSS_BUILDLINK3_MK
|
|
|
|
.endif # OSS_TYPE != none
|