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
98cb21f7
Commit
98cb21f7
authored
Mar 17, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Don't build winmm drivers when their backend library is missing.
parent
8b163d6f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
configure
configure
+10
-0
configure.ac
configure.ac
+11
-0
No files found.
configure
View file @
98cb21f7
...
...
@@ -12070,6 +12070,16 @@ _ACEOF
fi
test
-n
"
$ALSALIBS
"
||
enable_winealsa_drv
=
${
enable_winealsa_drv
:-
no
}
test
-n
"
$COREAUDIO
"
||
enable_winecoreaudio_drv
=
${
enable_winecoreaudio_drv
:-
no
}
test
-n
"
$NASLIBS
"
||
enable_winenas_drv
=
${
enable_winenas_drv
:-
no
}
test
-n
"
$ESDLIBS
"
||
enable_wineesd_drv
=
${
enable_wineesd_drv
:-
no
}
test
-n
"
$ac_cv_lib_soname_jack
"
||
enable_winejack_drv
=
${
enable_winejack_drv
:-
no
}
test
"
$ac_cv_header_sys_soundcard_h
"
=
"yes"
-o
\
"
$ac_cv_header_machine_soundcard_h
"
=
"yes"
-o
\
"
$ac_cv_header_soundcard_h
"
=
"yes"
||
enable_wineoss_drv
=
${
enable_wineoss_drv
:-
no
}
test
"
$ac_cv_header_linux_joystick_h
"
=
"yes"
||
enable_winejoystick_drv
=
${
enable_winejoystick_drv
:-
no
}
if
test
"x
$ALSALIBS$COREAUDIO$NASLIBS$ESDLIBS$ac_cv_lib_soname_jack
"
=
"x"
-a
\
"
$ac_cv_header_sys_soundcard_h
"
!=
"yes"
-a
\
"
$ac_cv_header_machine_soundcard_h
"
!=
"yes"
-a
\
...
...
configure.ac
View file @
98cb21f7
...
...
@@ -1660,6 +1660,17 @@ fi
dnl **** Check for libodbc ****
WINE_CHECK_SONAME(odbc,SQLConnect,,[AC_DEFINE_UNQUOTED(SONAME_LIBODBC,["libodbc.$LIBEXT"])])
dnl **** Disable unsupported winmm drivers ****
test -n "$ALSALIBS" || enable_winealsa_drv=${enable_winealsa_drv:-no}
test -n "$COREAUDIO" || enable_winecoreaudio_drv=${enable_winecoreaudio_drv:-no}
test -n "$NASLIBS" || enable_winenas_drv=${enable_winenas_drv:-no}
test -n "$ESDLIBS" || enable_wineesd_drv=${enable_wineesd_drv:-no}
test -n "$ac_cv_lib_soname_jack" || enable_winejack_drv=${enable_winejack_drv:-no}
test "$ac_cv_header_sys_soundcard_h" = "yes" -o \
"$ac_cv_header_machine_soundcard_h" = "yes" -o \
"$ac_cv_header_soundcard_h" = "yes" || enable_wineoss_drv=${enable_wineoss_drv:-no}
test "$ac_cv_header_linux_joystick_h" = "yes" || enable_winejoystick_drv=${enable_winejoystick_drv:-no}
dnl **** Check for any sound system ****
if test "x$ALSALIBS$COREAUDIO$NASLIBS$ESDLIBS$ac_cv_lib_soname_jack" = "x" -a \
"$ac_cv_header_sys_soundcard_h" != "yes" -a \
...
...
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