Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
2a4707ab
Commit
2a4707ab
authored
26 years ago
by
Uwe Bonnes
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Don't install object files when --disable-lib is selected.
parent
fd314683
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile.in
+4
-2
4 additions, 2 deletions
Makefile.in
configure
+158
-155
158 additions, 155 deletions
configure
configure.in
+3
-1
3 additions, 1 deletion
configure.in
with
165 additions
and
158 deletions
Makefile.in
+
4
−
2
View file @
2a4707ab
...
...
@@ -117,6 +117,8 @@ EMUOBJS = \
LIB_TARGET
=
@LIB_TARGET@
ALT_LINK
=
@ALT_LINK@
all
:
$(MAIN_TARGET)
@MAKE_RULES@
...
...
@@ -130,7 +132,7 @@ emu: wine
lib
:
$(LIBSUBDIRS) $(LIB_TARGET)
wine wine.sym
:
$(LIBSUBDIRS) $(LIB_TARGET) $(EMUSUBDIRS) dummy
$(
CC
)
-o
wine
$(
EMUOBJS
)
$(
LIB_TARGET
)
$(
LDOPTIONS
)
$(
X_LIBS
)
$(
XPM_LIB
)
$(
XLIB
)
$(
LIBS
)
$(
CC
)
-o
wine
$(
EMUOBJS
)
$(
LIB_TARGET
)
$(
ALT_LINK
)
$(
LDOPTIONS
)
$(
X_LIBS
)
$(
XPM_LIB
)
$(
XLIB
)
$(
LIBS
)
nm
-n
wine |
grep
-v
_compiled
>
wine.sym
libwine.a
:
$(LIBOBJS)
...
...
@@ -151,7 +153,7 @@ uninstall_emu: uninstall_lib
install_lib
:
install_includes
[
-d
$(
libdir
)
]
||
$(
MKDIR
)
$(
libdir
)
$(
INSTALL_DATA
)
$(
LIB_TARGET
)
$(
libdir
)
if
[
$(
LIB_TARGET
)
]
;
then
$(
INSTALL_DATA
)
$(
LIB_TARGET
)
$(
libdir
)
;
fi
$(
INSTALL_DATA
)
wine.sym
$(
libdir
)
/wine.sym
uninstall_lib
:
uninstall_includes
...
...
This diff is collapsed.
Click to expand it.
configure
+
158
−
155
View file @
2a4707ab
This diff is collapsed.
Click to expand it.
configure.in
+
3
−
1
View file @
2a4707ab
...
...
@@ -15,6 +15,7 @@ dnl **** Command-line arguments ****
dnl Default values
MAIN_TARGET=emu
LIB_TARGET=libwine.a
ALT_LINK=" "
TRACE_MSGS=yes # the TRACE() macro
DEBUG_MSGS=yes # the TRACE(), WARN(), and FIXME() macros.
...
...
@@ -28,7 +29,7 @@ AC_ARG_ENABLE(dll,
AC_ARG_ENABLE(lib,
[ --disable-lib build the Wine without building libwine.a],
[if test "$enableval" = "no"; then
LIB_TARGET
="\$(LIBOBJS)"; fi])
[if test "$enableval" = "no"; then
ALT_LINK
="\$(LIBOBJS)";
LIB_TARGET="";
fi])
dnl AC_ARG_WITH(ipc,
dnl [ --enable-ipc use inter-process communication for DDE],
...
...
@@ -47,6 +48,7 @@ AC_ARG_WITH(reentrant-x,
AC_SUBST(MAIN_TARGET)
AC_SUBST(LIB_TARGET)
AC_SUBST(ALT_LINK)
AC_SUBST(OPTIONS)
if test "$DEBUG_MSGS" = "no"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment