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
65711634
Commit
65711634
authored
Mar 16, 2015
by
Ken Thomases
Committed by
Alexandre Julliard
Mar 18, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winejoystick: Add WinMM joystick support for OS X.
parent
01227ab2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
Makefile.in
dlls/winejoystick.drv/Makefile.in
+3
-1
joystick_osx.c
dlls/winejoystick.drv/joystick_osx.c
+0
-0
No files found.
configure
View file @
65711634
...
...
@@ -13684,7 +13684,7 @@ fi
test
-n
"
$ALSA_LIBS
"
||
enable_winealsa_drv
=
${
enable_winealsa_drv
:-
no
}
test
-n
"
$COREAUDIO_LIBS
"
||
enable_winecoreaudio_drv
=
${
enable_winecoreaudio_drv
:-
no
}
test
"x
$ac_cv_member_oss_sysinfo_numaudioengines
"
=
xyes
||
enable_wineoss_drv
=
${
enable_wineoss_drv
:-
no
}
test
"
$ac_cv_header_linux_joystick_h
"
=
"yes"
||
enable_winejoystick_drv
=
${
enable_winejoystick_drv
:-
no
}
test
"
$ac_cv_header_linux_joystick_h
"
=
"yes"
-o
"
$ac_cv_header_IOKit_hid_IOHIDLib_h
"
=
"yes"
||
enable_winejoystick_drv
=
${
enable_winejoystick_drv
:-
no
}
if
test
"x
$ALSA_LIBS$COREAUDIO_LIBS
"
=
"x"
-a
\
"x
$ac_cv_member_oss_sysinfo_numaudioengines
"
!=
xyes
-a
\
...
...
configure.ac
View file @
65711634
...
...
@@ -1767,7 +1767,7 @@ dnl **** Disable unsupported winmm drivers ****
test -n "$ALSA_LIBS" || enable_winealsa_drv=${enable_winealsa_drv:-no}
test -n "$COREAUDIO_LIBS" || enable_winecoreaudio_drv=${enable_winecoreaudio_drv:-no}
test "x$ac_cv_member_oss_sysinfo_numaudioengines" = xyes || enable_wineoss_drv=${enable_wineoss_drv:-no}
test "$ac_cv_header_linux_joystick_h" = "yes" || enable_winejoystick_drv=${enable_winejoystick_drv:-no}
test "$ac_cv_header_linux_joystick_h" = "yes"
-o "$ac_cv_header_IOKit_hid_IOHIDLib_h" = "yes"
|| enable_winejoystick_drv=${enable_winejoystick_drv:-no}
dnl **** Check for any sound system ****
if test "x$ALSA_LIBS$COREAUDIO_LIBS" = "x" -a \
...
...
dlls/winejoystick.drv/Makefile.in
View file @
65711634
MODULE
=
winejoystick.drv
IMPORTS
=
winmm user32
EXTRALIBS
=
$(IOKIT_LIBS)
C_SRCS
=
\
joystick.c
\
joystick_linux.c
joystick_linux.c
\
joystick_osx.c
dlls/winejoystick.drv/joystick_osx.c
0 → 100644
View file @
65711634
This diff is collapsed.
Click to expand it.
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