winequartz.drv: Rename to winemac.drv ("the Mac driver").
This commit is contained in:
parent
aaa8186a2e
commit
35033025aa
|
@ -6673,7 +6673,7 @@ done
|
|||
then
|
||||
CARBONLIB="-framework Carbon"
|
||||
|
||||
enable_winequartz_drv=${enable_winequartz_drv:-yes}
|
||||
enable_winemac_drv=${enable_winemac_drv:-yes}
|
||||
fi
|
||||
if test "x$enable_win16" = "xyes"
|
||||
then
|
||||
|
@ -7129,7 +7129,7 @@ $as_echo "$ac_cv_c_dll_hpux" >&6; }
|
|||
esac
|
||||
|
||||
enable_wineqtdecoder=${enable_wineqtdecoder:-no}
|
||||
enable_winequartz_drv=${enable_winequartz_drv:-no}
|
||||
enable_winemac_drv=${enable_winemac_drv:-no}
|
||||
|
||||
if test "$LIBEXT" = "a"; then
|
||||
as_fn_error $? "could not find a way to build shared libraries.
|
||||
|
@ -15866,13 +15866,13 @@ wine_fn_config_lib winecrt0
|
|||
wine_fn_config_dll wined3d enable_wined3d implib
|
||||
wine_fn_config_dll winegstreamer enable_winegstreamer
|
||||
wine_fn_config_dll winejoystick.drv enable_winejoystick_drv
|
||||
wine_fn_config_dll winemac.drv enable_winemac_drv
|
||||
wine_fn_config_dll winemapi enable_winemapi
|
||||
wine_fn_config_dll winemp3.acm enable_winemp3_acm
|
||||
wine_fn_config_dll wineoss.drv enable_wineoss_drv
|
||||
wine_fn_config_dll wineps.drv enable_wineps_drv install-lib,po
|
||||
wine_fn_config_dll wineps16.drv16 enable_win16
|
||||
wine_fn_config_dll wineqtdecoder enable_wineqtdecoder
|
||||
wine_fn_config_dll winequartz.drv enable_winequartz_drv
|
||||
wine_fn_config_dll winex11.drv enable_winex11_drv
|
||||
wine_fn_config_dll wing.dll16 enable_win16
|
||||
wine_fn_config_dll wing32 enable_wing32
|
||||
|
|
|
@ -796,11 +796,11 @@ case $host_os in
|
|||
else
|
||||
WINE_NOTICE([QuickTime ${notice_platform}development files not found, video decoding won't be supported.])
|
||||
fi
|
||||
dnl Enable quartz driver on Mac OS X
|
||||
dnl Enable Mac driver on Mac OS X
|
||||
if test "$ac_cv_header_Carbon_Carbon_h" = "yes"
|
||||
then
|
||||
AC_SUBST(CARBONLIB,"-framework Carbon")
|
||||
enable_winequartz_drv=${enable_winequartz_drv:-yes}
|
||||
enable_winemac_drv=${enable_winemac_drv:-yes}
|
||||
fi
|
||||
dnl Check for Xcode 3.x broken 16-bit support
|
||||
if test "x$enable_win16" = "xyes"
|
||||
|
@ -899,7 +899,7 @@ case $host_os in
|
|||
esac
|
||||
|
||||
enable_wineqtdecoder=${enable_wineqtdecoder:-no}
|
||||
enable_winequartz_drv=${enable_winequartz_drv:-no}
|
||||
enable_winemac_drv=${enable_winemac_drv:-no}
|
||||
|
||||
if test "$LIBEXT" = "a"; then
|
||||
AC_MSG_ERROR(
|
||||
|
@ -3045,13 +3045,13 @@ WINE_CONFIG_LIB(winecrt0)
|
|||
WINE_CONFIG_DLL(wined3d,,[implib])
|
||||
WINE_CONFIG_DLL(winegstreamer)
|
||||
WINE_CONFIG_DLL(winejoystick.drv)
|
||||
WINE_CONFIG_DLL(winemac.drv)
|
||||
WINE_CONFIG_DLL(winemapi)
|
||||
WINE_CONFIG_DLL(winemp3.acm)
|
||||
WINE_CONFIG_DLL(wineoss.drv)
|
||||
WINE_CONFIG_DLL(wineps.drv,,[install-lib,po])
|
||||
WINE_CONFIG_DLL(wineps16.drv16,enable_win16)
|
||||
WINE_CONFIG_DLL(wineqtdecoder)
|
||||
WINE_CONFIG_DLL(winequartz.drv)
|
||||
WINE_CONFIG_DLL(winex11.drv)
|
||||
WINE_CONFIG_DLL(wing.dll16,enable_win16)
|
||||
WINE_CONFIG_DLL(wing32)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
MODULE = winequartz.drv
|
||||
MODULE = winemac.drv
|
||||
IMPORTS = user32 gdi32 advapi32
|
||||
|
||||
C_SRCS = \
|
||||
quartzdrv_main.c
|
||||
macdrv_main.c
|
||||
|
||||
@MAKE_DLL_RULES@
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* QUARTZDRV initialization code
|
||||
* MACDRV initialization code
|
||||
*
|
||||
* Copyright 1998 Patrik Stridvall
|
||||
* Copyright 2000 Alexandre Julliard
|
||||
|
@ -27,7 +27,7 @@
|
|||
#include "winreg.h"
|
||||
|
||||
/***********************************************************************
|
||||
* QUARTZDRV initialisation routine
|
||||
* MACDRV initialisation routine
|
||||
*/
|
||||
BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
|
||||
{
|
Loading…
Reference in New Issue