head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2026.08.30.20.25.18;	author jun;	state Exp;
branches;
next	;
commitid	6awcqXWcqQoRyHTG;


desc
@@


1.1
log
@nono: update to 1.8.3.

add options.mk for alsa and pulseaudio
 https://gist.github.com/tsutsui/4d2f78d001871479e7e5a68695606952

1.8.3 (2026/08/29)

build(New): "Migrated to C++17."
m68030(Fix): "Fix access to the cache-inhibited area. This fixes the issue where 4.4BSD failed to boot since ver 1.6.6."
vm(Fix): "Fix and adjust "out of tune" mark on SSG monitor."
vm(Update): "In CLI app, power-off sequence on the system port also makes power button off on X68030."
debugger(Fix): "Fix branch information for DJNZ on HD64180."
debugger(Fix): "Fix mnemonic of LD r,(IX+d) / LD (IX+d),r where r is H/L on HD64180."
debugger(New): "Implement bt command."
vm(Update): "MSX-DOS mode now can pass command line arguments to the guest command."
@
text
@# $NetBSD$

PKG_OPTIONS_VAR=	PKG_OPTIONS.nono

PKG_SUPPORTED_OPTIONS+=		alsa pulseaudio
PKG_SUGGESTED_OPTIONS=
PKG_SUGGESTED_OPTIONS.Linux+=	alsa pulseaudio

.include "../../mk/bsd.options.mk"

.if !empty(PKG_OPTIONS:Malsa)
CONFIGURE_ARGS+=	--with-alsa
.include "../../audio/alsa-lib/buildlink3.mk"
.endif

.if !empty(PKG_OPTIONS:Mpulseaudio)
USE_TOOLS+=		pkg-config
CONFIGURE_ARGS+=	--enable-pulseaudio
.include "../../audio/pulseaudio/buildlink3.mk"
.endif
@
