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
e8dae9c0
Commit
e8dae9c0
authored
Oct 11, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We no longer need to link against ntdll in the Unix sense.
parent
08a64e6e
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
52 deletions
+10
-52
Makefile.in
Makefile.in
+4
-4
Makefile.in
dlls/Makefile.in
+2
-20
make_dlls
dlls/make_dlls
+2
-26
winewrapper
tools/winewrapper
+2
-2
No files found.
Makefile.in
View file @
e8dae9c0
...
...
@@ -105,14 +105,14 @@ uninstall:: $(INSTALLBOTHSUBDIRS:%=%/__uninstall__)
all
:
$(SUBDIRS)
dlls
:
libs tools
server
:
libs tools
miscemu
programs
:
dlls libs tools
miscemu
server
:
libs tools
programs
:
dlls libs tools
tools
:
libs
dlls/__install-lib__ dlls/__install-dev__
:
libs tools
libs/__install-lib__ libs/__install-dev__
:
libs
server/__install__
:
libs tools
miscemu/__install__
programs/__install__
:
libs tools dlls/__install-lib__
miscemu/__install__
server/__install__
:
libs tools
programs/__install__
:
libs tools dlls/__install-lib__
tools/__install__
:
tools
# Test rules
...
...
dlls/Makefile.in
View file @
e8dae9c0
...
...
@@ -1525,26 +1525,6 @@ wow32/wow32.dll$(DLLEXT): wow32
winsock/ws2_32.dll$(DLLEXT)
:
winsock
wsock32/wsock32.dll$(DLLEXT)
:
wsock32
x11drv/x11drv.dll$(DLLEXT)
:
x11drv
# Special targets for dlls that we need to link to
libntdll.dll.$(LIBEXT)
:
ntdll/ntdll.dll$(DLLEXT)
$(RM)
$@
&&
$(LN_S)
ntdll/ntdll.dll
$(DLLEXT)
$@
all
:
libntdll.dll.$(LIBEXT)
uninstall
::
$(RM)
$(libdir)
/libntdll.dll.
$(LIBEXT)
install install-lib
::
$(INSTALLSUBDIRS:%=%/__install__)
cd
$(libdir)
&&
$(RM)
libntdll.dll.
$(LIBEXT)
&&
\
if
[
"
$(dlldir)
"
=
"
$(libdir)
/wine"
]
;
\
then
\
$(LN_S)
wine/ntdll.dll
$(DLLEXT)
libntdll.dll.
$(LIBEXT)
;
\
else
\
$(LN_S)
$(dlldir)
/ntdll.dll
$(DLLEXT)
libntdll.dll.
$(LIBEXT)
;
\
fi
# Rules for auto documentation
$(SUBDIRS
:
%=%/__man__): dummy
...
...
@@ -1570,6 +1550,8 @@ install install-dev:: $(IMPORT_LIBS:%=%.$(IMPLIBEXT))
$(MKINSTALLDIRS)
$(dlldir)
for
f
in
$
(
IMPORT_LIBS:%
=
%.
$(IMPLIBEXT)
)
;
do
$(INSTALL_DATA)
$$
f
$(dlldir)
/
$$
f
;
done
install install-lib
::
$(INSTALLSUBDIRS:%=%/__install__)
uninstall
::
$(RM)
$
(
IMPORT_LIBS:%
=
$(dlldir)
/%.
$(IMPLIBEXT)
)
-
rmdir
$(dlldir)
...
...
dlls/make_dlls
View file @
e8dae9c0
...
...
@@ -257,32 +257,6 @@ foreach my $mod (sort keys %directories)
}
################################################################
# output the linkable dlls special links
print
NEWMAKE
<<EOF;
\# Special targets for dlls that we need to link to
libntdll.dll.\$(LIBEXT): ntdll/ntdll.dll\$(DLLEXT)
\$(RM) \$@ && \$(LN_S) ntdll/ntdll.dll\$(DLLEXT) \$@
all: libntdll.dll.\$(LIBEXT)
uninstall::
\$(RM) \$(libdir)/libntdll.dll.\$(LIBEXT)
install install-lib:: \$(INSTALLSUBDIRS:%=%/__install__)
cd \$(libdir) && \$(RM) libntdll.dll.\$(LIBEXT) && \\
if [ "\$(dlldir)" = "\$(libdir)/wine" ]; \\
then \\
\$(LN_S) wine/ntdll.dll\$(DLLEXT) libntdll.dll.\$(LIBEXT); \\
else \\
\$(LN_S) \$(dlldir)/ntdll.dll\$(DLLEXT) libntdll.dll.\$(LIBEXT); \\
fi
EOF
################################################################
# makefile trailer
print
NEWMAKE
<<EOF;
...
...
@@ -311,6 +285,8 @@ install install-dev:: \$(IMPORT_LIBS:%=%.\$(IMPLIBEXT))
\$(MKINSTALLDIRS) \$(dlldir)
for f in \$(IMPORT_LIBS:%=%.\$(IMPLIBEXT)); do \$(INSTALL_DATA) \$\$f \$(dlldir)/\$\$f; done
install install-lib:: \$(INSTALLSUBDIRS:%=%/__install__)
uninstall::
\$(RM) \$(IMPORT_LIBS:%=\$(dlldir)/%.\$(IMPLIBEXT))
-rmdir \$(dlldir)
...
...
tools/winewrapper
View file @
e8dae9c0
...
...
@@ -64,9 +64,9 @@ topdir=`cd "$topdir" && pwd`
if
[
-n
"
$LD_LIBRARY_PATH
"
]
then
LD_LIBRARY_PATH
=
"
$topdir
/
dlls:
$topdir
/
libs:
$LD_LIBRARY_PATH
"
LD_LIBRARY_PATH
=
"
$topdir
/libs:
$LD_LIBRARY_PATH
"
else
LD_LIBRARY_PATH
=
"
$topdir
/
dlls:
$topdir
/
libs"
LD_LIBRARY_PATH
=
"
$topdir
/libs"
fi
WINEDLLPATH
=
"
$topdir
/dlls:
$topdir
/programs"
WINESERVER
=
"
$topdir
/server/wineserver"
...
...
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