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
b860c4aa
Commit
b860c4aa
authored
Sep 01, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Add a .exe extension to the tools dependencies when building on Windows.
parent
83592872
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
11 deletions
+15
-11
Make.rules.in
Make.rules.in
+9
-9
Makefile.in
Makefile.in
+1
-1
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
Makefile.in
libs/wine/Makefile.in
+1
-1
No files found.
Make.rules.in
View file @
b860c4aa
...
...
@@ -32,6 +32,7 @@ EXEEXT = @EXEEXT@
OBJEXT = @OBJEXT@
LIBEXT = @LIBEXT@
DLLEXT = @DLLEXT@
TOOLSEXT = @TOOLSEXT@
IMPLIBEXT = @IMPLIBEXT@
LDSHARED = @LDSHARED@
DLLTOOL = @DLLTOOL@
...
...
@@ -65,16 +66,15 @@ WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi/winapi_check
WINEWRAPPER = $(TOPSRCDIR)/tools/winewrapper
C2MAN = $(TOPSRCDIR)/tools/c2man.pl
RUNTEST = $(TOPSRCDIR)/tools/runtest
WINEBUILD = $(TOOLSDIR)/tools/winebuild/winebuild
MAKEDEP = $(TOOLSDIR)/tools/makedep
MAKECTESTS = $(TOOLSDIR)/tools/make_ctests
WRC = $(TOOLSDIR)/tools/wrc/wrc
WMC = $(TOOLSDIR)/tools/wmc/wmc
WIDL = $(TOOLSDIR)/tools/widl/widl
WINEBUILD = $(TOOLSDIR)/tools/winebuild/winebuild
$(TOOLSEXT)
MAKEDEP = $(TOOLSDIR)/tools/makedep
$(TOOLSEXT)
MAKECTESTS = $(TOOLSDIR)/tools/make_ctests
$(TOOLSEXT)
WRC = $(TOOLSDIR)/tools/wrc/wrc
$(TOOLSEXT)
WMC = $(TOOLSDIR)/tools/wmc/wmc
$(TOOLSEXT)
WIDL = $(TOOLSDIR)/tools/widl/widl
$(TOOLSEXT)
WINEGCC = $(TOOLSDIR)/tools/winegcc/winegcc $(TARGETFLAGS) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(TOPOBJDIR)
RELPATH = $(TOOLSDIR)/tools/relpath
SFNT2FNT = $(TOOLSDIR)/tools/sfnt2fnt
FNT2FON = $(TOOLSDIR)/tools/fnt2fon
RELPATH = $(TOOLSDIR)/tools/relpath$(TOOLSEXT)
SFNT2FNT = $(TOOLSDIR)/tools/sfnt2fnt$(TOOLSEXT)
RC = $(WRC)
RC16 = $(WRC)
RCFLAGS = --nostdinc $(INCLUDES) $(DEFS) $(EXTRARCFLAGS)
...
...
Makefile.in
View file @
b860c4aa
...
...
@@ -119,7 +119,7 @@ RECURSE_TARGETS = \
depend $(RECURSE_TARGETS)
:
$(MAKEDEP)
$(MAKEDEP)
:
include/config.h
@
cd
$(TOOLSDIR)
/tools
&&
$(MAKE)
makedep
@
cd
$(TOOLSDIR)
/tools
&&
$(MAKE)
makedep
$(TOOLSEXT)
# Test rules
...
...
configure
View file @
b860c4aa
...
...
@@ -612,6 +612,7 @@ EXTRA_BINARIES
MAIN_BINARY
SOCKETLIBS
CRTLIBS
TOOLSEXT
LDPATH
BUILTINFLAG
EXTRACFLAGS
...
...
@@ -11971,6 +11972,8 @@ LDPATH=""
case
$build_os
in
cygwin
*
|
mingw32
*
)
TOOLSEXT
=
".exe"
LDPATH
=
"PATH=
\"\$
(TOOLSDIR)/libs/wine:
\$\$
PATH
\"
"
;;
darwin
*
|
macosx
*
)
...
...
configure.ac
View file @
b860c4aa
...
...
@@ -1593,6 +1593,7 @@ dnl **** Platform-specific checks ****
AC_SUBST(LDPATH,"")
case $build_os in
cygwin*|mingw32*)
AC_SUBST(TOOLSEXT,".exe")
LDPATH="PATH=\"\$(TOOLSDIR)/libs/wine:\$\$PATH\""
;;
darwin*|macosx*)
...
...
libs/wine/Makefile.in
View file @
b860c4aa
...
...
@@ -182,6 +182,6 @@ clean::
$(RM)
libwine.so.
$(SOVERSION)
libwine.so.
$(VERSION)
version.c
$(RELPATH)
:
@
cd
$(TOOLSDIR)
/tools
&&
$(MAKE)
relpath
@
cd
$(TOOLSDIR)
/tools
&&
$(MAKE)
relpath
$(TOOLSEXT)
@DEPENDENCIES@
# everything below this line is overwritten by make depend
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