mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 06:05:43 +01:00
Merge branch 'master' of git://git.flameeyes.eu/others/alsa/alsa-utils
This commit is contained in:
commit
94ae24cfd6
2 changed files with 11 additions and 11 deletions
|
@ -908,13 +908,12 @@ BEGIN { in_sound=0; }
|
||||||
|
|
||||||
farewell
|
farewell
|
||||||
clear
|
clear
|
||||||
if [ "$distribution" = "gentoo" ]; then
|
case "$distribution" in
|
||||||
xecho "Running modules-update..."
|
gentoo | debian)
|
||||||
modules-update
|
|
||||||
elif [ "$distribution" = "debian" ]; then
|
|
||||||
xecho "Running update-modules..."
|
xecho "Running update-modules..."
|
||||||
update-modules
|
update-modules
|
||||||
fi
|
;;
|
||||||
|
esac
|
||||||
if [ -x $rcalsasound ] ; then
|
if [ -x $rcalsasound ] ; then
|
||||||
echo Loading driver...
|
echo Loading driver...
|
||||||
$rcalsasound restart
|
$rcalsasound restart
|
||||||
|
@ -1411,7 +1410,7 @@ if [ x$devs_found != x ]; then
|
||||||
Following card(s) are found on your system.
|
Following card(s) are found on your system.
|
||||||
Choose a soundcard to configure:
|
Choose a soundcard to configure:
|
||||||
")
|
")
|
||||||
$DIALOG --title "$title" --menu "$msg" 17 76 8 "${devs_found[@]}" 2> $FOUND || acex 0
|
$DIALOG --title "$title" --menu "$msg" 17 76 8 "${devs_found[@]}" --output-fd 3 3> $FOUND || acex 0
|
||||||
card=`head -n 1 $FOUND`
|
card=`head -n 1 $FOUND`
|
||||||
if [ "$card" = "legacy" ]; then
|
if [ "$card" = "legacy" ]; then
|
||||||
ac_config_legacy
|
ac_config_legacy
|
||||||
|
|
|
@ -44,9 +44,6 @@
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#ifdef ENABLE_NLS
|
|
||||||
#include <locale.h>
|
|
||||||
#endif
|
|
||||||
#include <byteswap.h>
|
#include <byteswap.h>
|
||||||
|
|
||||||
#define ALSA_PCM_NEW_HW_PARAMS_API
|
#define ALSA_PCM_NEW_HW_PARAMS_API
|
||||||
|
@ -59,6 +56,10 @@
|
||||||
#include "gettext.h"
|
#include "gettext.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
|
||||||
|
#ifdef ENABLE_NLS
|
||||||
|
#include <locale.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
TEST_PINK_NOISE = 1,
|
TEST_PINK_NOISE = 1,
|
||||||
TEST_SINE,
|
TEST_SINE,
|
||||||
|
|
Loading…
Reference in a new issue