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
cf0e96c6
Commit
cf0e96c6
authored
Jan 30, 2014
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Rename substituted variables to a standard _CFLAGS and _LIBS format.
parent
754b6506
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
37 changed files
with
36 additions
and
36 deletions
+36
-36
configure
configure
+0
-0
configure.ac
configure.ac
+0
-0
Makefile.in
dlls/advapi32/Makefile.in
+1
-1
Makefile.in
dlls/cabinet/Makefile.in
+1
-1
Makefile.in
dlls/crypt32/Makefile.in
+1
-1
Makefile.in
dlls/dbghelp/Makefile.in
+1
-1
Makefile.in
dlls/dinput/Makefile.in
+1
-1
Makefile.in
dlls/dnsapi/Makefile.in
+1
-1
Makefile.in
dlls/gdi32/Makefile.in
+1
-1
Makefile.in
dlls/iphlpapi/Makefile.in
+1
-1
Makefile.in
dlls/kernel32/Makefile.in
+1
-1
Makefile.in
dlls/mountmgr.sys/Makefile.in
+1
-1
Makefile.in
dlls/ntdll/Makefile.in
+1
-1
Makefile.in
dlls/openal32/Makefile.in
+1
-1
Makefile.in
dlls/opencl/Makefile.in
+1
-1
Makefile.in
dlls/rpcrt4/Makefile.in
+1
-1
Makefile.in
dlls/secur32/Makefile.in
+1
-1
Makefile.in
dlls/shell32/Makefile.in
+1
-1
Makefile.in
dlls/windowscodecs/Makefile.in
+1
-1
Makefile.in
dlls/winealsa.drv/Makefile.in
+1
-1
Makefile.in
dlls/winecoreaudio.drv/Makefile.in
+1
-1
Makefile.in
dlls/winegstreamer/Makefile.in
+1
-1
Makefile.in
dlls/winemp3.acm/Makefile.in
+1
-1
Makefile.in
dlls/wineoss.drv/Makefile.in
+1
-1
Makefile.in
dlls/wineqtdecoder/Makefile.in
+1
-1
Makefile.in
dlls/winhttp/Makefile.in
+1
-1
Makefile.in
dlls/wininet/Makefile.in
+1
-1
Makefile.in
dlls/winspool.drv/Makefile.in
+2
-2
Makefile.in
dlls/wldap32/Makefile.in
+1
-1
Makefile.in
dlls/ws2_32/Makefile.in
+1
-1
Makefile.in
libs/wine/Makefile.in
+1
-1
Makefile.in
loader/Makefile.in
+1
-1
Makefile.in
programs/hostname/Makefile.in
+1
-1
Makefile.in
programs/winedbg/Makefile.in
+1
-1
Makefile.in
server/Makefile.in
+1
-1
Makefile.in
tools/wmc/Makefile.in
+1
-1
Makefile.in
tools/wrc/Makefile.in
+1
-1
No files found.
configure
View file @
cf0e96c6
This diff is collapsed.
Click to expand it.
configure.ac
View file @
cf0e96c6
This diff is collapsed.
Click to expand it.
dlls/advapi32/Makefile.in
View file @
cf0e96c6
...
...
@@ -2,7 +2,7 @@ EXTRADEFS = -D_ADVAPI32_
MODULE
=
advapi32.dll
IMPORTLIB
=
advapi32
DELAYIMPORTS
=
rpcrt4
EXTRALIBS
=
@SECURITYLIB@
EXTRALIBS
=
$(SECURITY_LIBS)
C_SRCS
=
\
advapi.c
\
...
...
dlls/cabinet/Makefile.in
View file @
cf0e96c6
MODULE
=
cabinet.dll
IMPORTLIB
=
cabinet
EXTRALIBS
=
@ZLIB@
EXTRALIBS
=
$(Z_LIBS)
C_SRCS
=
\
cabinet_main.c
\
...
...
dlls/crypt32/Makefile.in
View file @
cf0e96c6
...
...
@@ -3,7 +3,7 @@ MODULE = crypt32.dll
IMPORTLIB
=
crypt32
IMPORTS
=
user32 advapi32
DELAYIMPORTS
=
cryptnet
EXTRALIBS
=
@SECURITYLIB@
EXTRALIBS
=
$(SECURITY_LIBS)
C_SRCS
=
\
base64.c
\
...
...
dlls/dbghelp/Makefile.in
View file @
cf0e96c6
...
...
@@ -3,7 +3,7 @@ IMPORTLIB = dbghelp
EXTRADEFS
=
-D_IMAGEHLP_SOURCE_
-DDLLPREFIX
=
'"
$(DLLPREFIX)
"'
IMPORTS
=
psapi
DELAYIMPORTS
=
version
EXTRALIBS
=
@ZLIB@
EXTRALIBS
=
$(Z_LIBS)
C_SRCS
=
\
coff.c
\
...
...
dlls/dinput/Makefile.in
View file @
cf0e96c6
MODULE
=
dinput.dll
IMPORTLIB
=
dinput
IMPORTS
=
dxguid uuid comctl32 ole32 user32 advapi32
EXTRALIBS
=
@IOKITLIB@ @FORCEFEEDBACKLIB@
EXTRALIBS
=
$(IOKIT_LIBS)
$(FORCEFEEDBACK_LIBS)
C_SRCS
=
\
config.c
\
...
...
dlls/dnsapi/Makefile.in
View file @
cf0e96c6
MODULE
=
dnsapi.dll
IMPORTLIB
=
dnsapi
IMPORTS
=
netapi32
EXTRALIBS
=
@RESOLVLIBS@
EXTRALIBS
=
$(RESOLV_LIBS)
C_SRCS
=
\
main.c
\
...
...
dlls/gdi32/Makefile.in
View file @
cf0e96c6
...
...
@@ -3,7 +3,7 @@ MODULE = gdi32.dll
IMPORTLIB
=
gdi32
IMPORTS
=
advapi32
EXTRAINCL
=
$(FREETYPE_CFLAGS)
$(FONTCONFIG_CFLAGS)
EXTRALIBS
=
@CARBONLIB@ @APPKITLIB@
EXTRALIBS
=
$(CARBON_LIBS)
$(APPKIT_LIBS)
DELAYIMPORTS
=
usp10
C_SRCS
=
\
...
...
dlls/iphlpapi/Makefile.in
View file @
cf0e96c6
MODULE
=
iphlpapi.dll
IMPORTLIB
=
iphlpapi
IMPORTS
=
advapi32
EXTRALIBS
=
@RESOLVLIBS@ @LIBKSTAT@ @LIBPROCSTAT@
EXTRALIBS
=
$(RESOLV_LIBS)
$(KSTAT_LIBS)
$(PROCSTAT_LIBS)
C_SRCS
=
\
icmp.c
\
...
...
dlls/kernel32/Makefile.in
View file @
cf0e96c6
...
...
@@ -2,7 +2,7 @@ EXTRADEFS = -D_KERNEL32_ -D_NORMALIZE_
MODULE
=
kernel32.dll
IMPORTLIB
=
kernel32
IMPORTS
=
winecrt0 ntdll
EXTRALIBS
=
@COREFOUNDATIONLIB@ @LIBPOLL@
EXTRALIBS
=
$(COREFOUNDATION_LIBS)
$(POLL_LIBS)
EXTRADLLFLAGS
=
-nodefaultlibs
-Wb
,-F,KERNEL32.dll
-Wl
,--image-base,0x7b800000
C_SRCS
=
\
...
...
dlls/mountmgr.sys/Makefile.in
View file @
cf0e96c6
...
...
@@ -3,7 +3,7 @@ IMPORTS = uuid advapi32 ntoskrnl.exe
DELAYIMPORTS
=
user32
EXTRADLLFLAGS
=
-Wb
,--subsystem,native
EXTRAINCL
=
$(DBUS_CFLAGS)
$(HAL_CFLAGS)
EXTRALIBS
=
@DISKARBITRATIONLIB@
EXTRALIBS
=
$(DISKARBITRATION_LIBS)
C_SRCS
=
\
dbus.c
\
...
...
dlls/ntdll/Makefile.in
View file @
cf0e96c6
...
...
@@ -2,7 +2,7 @@ EXTRADEFS = -D_NTSYSTEM_
MODULE
=
ntdll.dll
IMPORTLIB
=
ntdll
IMPORTS
=
winecrt0
EXTRALIBS
=
@IOKITLIB@ @LIBRT@ @LIBPTHREAD@
EXTRALIBS
=
$(IOKIT_LIBS)
$(RT_LIBS)
$(PTHREAD_LIBS)
EXTRADLLFLAGS
=
-nodefaultlibs
-Wl
,--image-base,0x7bc00000
C_SRCS
=
\
...
...
dlls/openal32/Makefile.in
View file @
cf0e96c6
MODULE
=
openal32.dll
EXTRALIBS
=
@LIBOPENAL@ @FRAMEWORK_OPENAL@
EXTRALIBS
=
$(OPENAL_LIBS)
C_SRCS
=
\
openal.c
dlls/opencl/Makefile.in
View file @
cf0e96c6
MODULE
=
opencl.dll
EXTRALIBS
=
@LIBOPENCL@
EXTRALIBS
=
$(OPENCL_LIBS)
C_SRCS
=
\
opencl.c
dlls/rpcrt4/Makefile.in
View file @
cf0e96c6
...
...
@@ -3,7 +3,7 @@ MODULE = rpcrt4.dll
IMPORTLIB
=
rpcrt4
IMPORTS
=
uuid advapi32
DELAYIMPORTS
=
iphlpapi wininet secur32 user32
EXTRALIBS
=
@SOCKETLIBS@
EXTRALIBS
=
$(SOCKET_LIBS)
C_SRCS
=
\
cproxy.c
\
...
...
dlls/secur32/Makefile.in
View file @
cf0e96c6
...
...
@@ -3,7 +3,7 @@ IMPORTLIB = secur32
IMPORTS
=
netapi32 advapi32
DELAYIMPORTS
=
crypt32
EXTRAINCL
=
$(GNUTLS_CFLAGS)
EXTRALIBS
=
@SECURITYLIB@
EXTRALIBS
=
$(SECURITY_LIBS)
C_SRCS
=
\
base64_codec.c
\
...
...
dlls/shell32/Makefile.in
View file @
cf0e96c6
...
...
@@ -3,7 +3,7 @@ MODULE = shell32.dll
IMPORTLIB
=
shell32
IMPORTS
=
uuid shlwapi user32 gdi32 advapi32
DELAYIMPORTS
=
ole32 oleaut32 shdocvw version comctl32
EXTRALIBS
=
@CORESERVICESLIB@
EXTRALIBS
=
$(CORESERVICES_LIBS)
# AUTHORS file is in the top-level directory
EXTRAINCL
=
-I
$(top_srcdir)
...
...
dlls/windowscodecs/Makefile.in
View file @
cf0e96c6
...
...
@@ -2,7 +2,7 @@ MODULE = windowscodecs.dll
IMPORTLIB
=
windowscodecs
IMPORTS
=
uuid ole32 oleaut32 rpcrt4 shlwapi user32 gdi32 advapi32
EXTRAINCL
=
$(JPEG_CFLAGS)
$(PNG_CFLAGS)
$(TIFF_CFLAGS)
EXTRALIBS
=
@APPLICATIONSERVICESLIB@
EXTRALIBS
=
$(APPLICATIONSERVICES_LIBS)
C_SRCS
=
\
bitmap.c
\
...
...
dlls/winealsa.drv/Makefile.in
View file @
cf0e96c6
MODULE
=
winealsa.drv
IMPORTS
=
uuid ole32 advapi32
DELAYIMPORTS
=
winmm
EXTRALIBS
=
@ALSALIBS@
EXTRALIBS
=
$(ALSA_LIBS)
C_SRCS
=
\
midi.c
\
...
...
dlls/winecoreaudio.drv/Makefile.in
View file @
cf0e96c6
MODULE
=
winecoreaudio.drv
IMPORTS
=
uuid ole32 user32
DELAYIMPORTS
=
winmm
EXTRALIBS
=
@COREAUDIO@
EXTRALIBS
=
$(COREAUDIO_LIBS)
C_SRCS
=
\
audiounit.c
\
...
...
dlls/winegstreamer/Makefile.in
View file @
cf0e96c6
MODULE
=
winegstreamer.dll
IMPORTS
=
strmbase strmiids uuid winmm msacm32 msvfw32 ole32 oleaut32 user32 gdi32 advapi32
EXTRAINCL
=
$(GSTREAMER_CFLAGS)
EXTRALIBS
=
$(GSTREAMER_LIBS)
@LIBPTHREAD@
EXTRALIBS
=
$(GSTREAMER_LIBS)
$(PTHREAD_LIBS)
C_SRCS
=
\
glibthread.c
\
...
...
dlls/winemp3.acm/Makefile.in
View file @
cf0e96c6
MODULE
=
winemp3.acm
IMPORTS
=
winmm user32
EXTRAINCL
=
$(MPG123_CFLAGS)
EXTRALIBS
=
$(MPG123_LIBS)
@COREAUDIO@
EXTRALIBS
=
$(MPG123_LIBS)
$(COREAUDIO_LIBS)
C_SRCS
=
\
mpegl3.c
dlls/wineoss.drv/Makefile.in
View file @
cf0e96c6
MODULE
=
wineoss.drv
IMPORTS
=
uuid ole32 user32
DELAYIMPORTS
=
winmm
EXTRAINCL
=
@OSS4INCL@
EXTRAINCL
=
$(OSS4_CFLAGS)
C_SRCS
=
\
midi.c
\
...
...
dlls/wineqtdecoder/Makefile.in
View file @
cf0e96c6
MODULE
=
wineqtdecoder.dll
IMPORTS
=
strmiids strmbase uuid ole32 advapi32
EXTRALIBS
=
@QUICKTIMELIB@
EXTRALIBS
=
$(QUICKTIME_LIBS)
C_SRCS
=
\
main.c
\
...
...
dlls/winhttp/Makefile.in
View file @
cf0e96c6
...
...
@@ -2,7 +2,7 @@ MODULE = winhttp.dll
IMPORTLIB
=
winhttp
IMPORTS
=
uuid user32 advapi32
DELAYIMPORTS
=
oleaut32 ole32 crypt32 secur32
EXTRALIBS
=
@SOCKETLIBS@
EXTRALIBS
=
$(SOCKET_LIBS)
C_SRCS
=
\
cookie.c
\
...
...
dlls/wininet/Makefile.in
View file @
cf0e96c6
...
...
@@ -3,7 +3,7 @@ MODULE = wininet.dll
IMPORTLIB
=
wininet
IMPORTS
=
mpr shlwapi shell32 user32 advapi32
DELAYIMPORTS
=
secur32 crypt32 cryptui
EXTRALIBS
=
@SOCKETLIBS@ @ZLIB@
EXTRALIBS
=
$(SOCKET_LIBS)
$(Z_LIBS)
C_SRCS
=
\
cookie.c
\
...
...
dlls/winspool.drv/Makefile.in
View file @
cf0e96c6
...
...
@@ -2,8 +2,8 @@ EXTRADEFS = -D_SPOOL32_
MODULE
=
winspool.drv
IMPORTLIB
=
winspool
IMPORTS
=
user32 gdi32 advapi32
EXTRAINCL
=
@CUPSINCL@
EXTRALIBS
=
@APPLICATIONSERVICESLIB@
EXTRAINCL
=
$(CUPS_CFLAGS)
EXTRALIBS
=
$(APPLICATIONSERVICES_LIBS)
C_SRCS
=
\
info.c
\
...
...
dlls/wldap32/Makefile.in
View file @
cf0e96c6
MODULE
=
wldap32.dll
IMPORTLIB
=
wldap32
IMPORTS
=
user32
EXTRALIBS
=
@LDAPLIBS@
EXTRALIBS
=
$(LDAP_LIBS)
C_SRCS
=
\
add.c
\
...
...
dlls/ws2_32/Makefile.in
View file @
cf0e96c6
...
...
@@ -2,7 +2,7 @@ EXTRADEFS = -DUSE_WS_PREFIX
MODULE
=
ws2_32.dll
IMPORTLIB
=
ws2_32
DELAYIMPORTS
=
iphlpapi user32
EXTRALIBS
=
@LIBPOLL@
EXTRALIBS
=
$(POLL_LIBS)
C_SRCS
=
\
async.c
\
...
...
libs/wine/Makefile.in
View file @
cf0e96c6
EXTRALIBS
=
$(LIBPORT)
@LIBDL@ @COREFOUNDATIONLIB@ @CORESERVICESLIB@
EXTRALIBS
=
$(LIBPORT)
$(DL_LIBS)
$(COREFOUNDATION_LIBS)
$(CORESERVICES_LIBS)
EXTRADEFS
=
-DWINE_UNICODE_API
=
""
STATICLIB
=
libwine_static.a
...
...
loader/Makefile.in
View file @
cf0e96c6
EXTRALIBS
=
@LIBPTHREAD@
EXTRALIBS
=
$(PTHREAD_LIBS)
C_SRCS
=
\
main.c
\
...
...
programs/hostname/Makefile.in
View file @
cf0e96c6
MODULE
=
hostname.exe
APPMODE
=
-mconsole
-municode
EXTRALIBS
=
@SOCKETLIBS@
EXTRALIBS
=
$(SOCKET_LIBS)
DELAYIMPORTS
=
user32
C_SRCS
=
hostname.c
...
...
programs/winedbg/Makefile.in
View file @
cf0e96c6
...
...
@@ -2,7 +2,7 @@ MODULE = winedbg.exe
APPMODE
=
-mconsole
IMPORTS
=
psapi dbghelp advapi32
DELAYIMPORTS
=
comdlg32 shell32 comctl32 user32 gdi32
EXTRALIBS
=
@LIBPOLL@
EXTRALIBS
=
$(POLL_LIBS)
C_SRCS
=
\
be_arm.c
\
...
...
server/Makefile.in
View file @
cf0e96c6
EXTRALIBS
=
@LIBPOLL@ @LIBRT@
EXTRALIBS
=
$(POLL_LIBS)
$(RT_LIBS)
C_SRCS
=
\
async.c
\
...
...
tools/wmc/Makefile.in
View file @
cf0e96c6
PROGRAMS
=
wmc
$(EXEEXT)
MANPAGES
=
wmc.man.in
ALL_LIBS
=
@LIBGETTEXTPO@
$(LIBWINE_STATIC)
$(LIBPORT)
ALL_LIBS
=
$(GETTEXTPO_LIBS)
$(LIBWINE_STATIC)
$(LIBPORT)
C_SRCS
=
\
lang.c
\
...
...
tools/wrc/Makefile.in
View file @
cf0e96c6
PROGRAMS
=
wrc
$(EXEEXT)
MANPAGES
=
wrc.man.in
ALL_LIBS
=
@LIBGETTEXTPO@
$(LIBWPP)
$(LIBWINE_STATIC)
$(LIBPORT)
ALL_LIBS
=
$(GETTEXTPO_LIBS)
$(LIBWPP)
$(LIBWINE_STATIC)
$(LIBPORT)
C_SRCS
=
\
dumpres.c
\
...
...
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