Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
99d026fb
Commit
99d026fb
authored
Mar 19, 2005
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 19, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue a warning if no sound system was found.
parent
810b2611
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
configure
configure
+9
-0
configure.ac
configure.ac
+9
-0
No files found.
configure
View file @
99d026fb
...
...
@@ -21667,6 +21667,15 @@ then
echo
"*** enable Wine to use TrueType fonts."
fi
if
test
-z
"
$ALSALIBS
"
-a
-z
"
$ARTSC_LIBS
"
-a
-z
"
$AUDIOIOLIBS
"
-a
\
-z
"
$ac_cv_lib_soname_jack
"
-a
-z
"
$NASLIBS
"
-a
\
"
$ac_cv_c_opensoundsystem
"
=
"no"
then
echo
"*** No sound system was found. Windows applications will be silent."
echo
"*** The currently supported sound systems are:"
echo
"*** ALSA, ARTS, AudioIO, Jack, NAS and OSS"
fi
echo
echo
"Configure finished. Do '
${
ac_make
}
depend &&
${
ac_make
}
' to compile Wine."
echo
...
...
configure.ac
View file @
99d026fb
...
...
@@ -1787,6 +1787,15 @@ then
echo "*** enable Wine to use TrueType fonts."
fi
if test -z "$ALSALIBS" -a -z "$ARTSC_LIBS" -a -z "$AUDIOIOLIBS" -a \
-z "$ac_cv_lib_soname_jack" -a -z "$NASLIBS" -a \
"$ac_cv_c_opensoundsystem" = "no"
then
echo "*** No sound system was found. Windows applications will be silent."
echo "*** The currently supported sound systems are:"
echo "*** ALSA, ARTS, AudioIO, Jack, NAS and OSS"
fi
echo
echo "Configure finished. Do '${ac_make} depend && ${ac_make}' to compile Wine."
echo
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment