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
088a76b8
Commit
088a76b8
authored
Dec 12, 1999
by
Moses DeJong
Committed by
Alexandre Julliard
Dec 12, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed missing libwine.so symlink during install. Set the runtime
linker path.
parent
e6b82e76
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
7 deletions
+12
-7
Makefile.in
Makefile.in
+8
-3
configure
configure
+2
-2
configure.in
configure.in
+2
-2
No files found.
Makefile.in
View file @
088a76b8
...
...
@@ -271,7 +271,8 @@ llib-lwine.ln : $(LIBLINTS) $(X11LINTS)
libwine.so.1.0
:
$(LIBOBJS) $(X11OBJS)
$(LDSHARED)
-o
$@
$(LIBOBJS)
$(X11OBJS)
$(LDOPTIONS)
ln
-sf
$@
libwine.so
$(RM)
libwine.so
$(LN_S)
$@
libwine.so
install_emu
:
install_lib
[
-d
$(bindir)
]
||
$(MKDIR)
$(bindir)
...
...
@@ -285,8 +286,12 @@ install_lib: dummy
[
-d
$(libdir)
]
||
$(MKDIR)
$(libdir)
if
[
-f
wine.sym
]
;
then
$(INSTALL_DATA)
wine.sym
$(libdir)
/wine.sym
;
fi
if
[
$(LIB_TARGET)
]
;
then
\
$(INSTALL_DATA)
$(LIB_TARGET)
$(libdir)
;
\
if
[
$(LIB_TARGET)
=
libwine.so.1.0
]
;
then
$(LDCONFIG)
;
fi
\
if
[
$(LIB_TARGET)
=
libwine.so.1.0
]
;
then
\
$(INSTALL_PROGRAM)
$(LIB_TARGET)
$(libdir)
;
\
$(LDCONFIG)
||
(
cd
$(libdir)
;
$(RM)
libwine.so
;
$(LN_S)
$(LIB_TARGET)
libwine.so
)
;
\
else
\
$(INSTALL_DATA)
$(LIB_TARGET)
$(libdir)
;
\
fi
\
fi
[
-d
$(bindir)
]
||
$(MKDIR)
$(bindir)
$(INSTALL_PROGRAM)
server/wineserver
$(bindir)
/wineserver
...
...
configure
View file @
088a76b8
...
...
@@ -4119,7 +4119,7 @@ echo "$ac_t""$ac_cv_c_dll_linux" 1>&6
then
BUILDFLAGS
=
"-pic"
DLLFLAGS
=
"-fPIC"
LDSHARED
=
"
\$
(CC) -shared -Wl,-soname,libwine.so"
LDSHARED
=
"
\$
(CC) -shared -Wl,-soname,libwine.so
,-rpath,
\$
(libdir)
"
else
echo
$ac_n
"checking "
whether we can build a UnixWare dll
"""...
$ac_c
"
1>&6
echo
"configure:4126: checking "
whether we can build a UnixWare dll
""
>
&5
...
...
@@ -4155,7 +4155,7 @@ echo "$ac_t""$ac_cv_c_dll_unixware" 1>&6
then
BUILDFLAGS
=
"-pic"
DLLFLAGS
=
"-fPIC"
LDSHARED
=
"
\$
(CC) -Wl,-G,-h,
/usr/local/lib
/libwine.so"
LDSHARED
=
"
\$
(CC) -Wl,-G,-h,
\$
(libdir)
/libwine.so"
else
echo
$ac_n
"checking "
whether we can build a NetBSD dll
"""...
$ac_c
"
1>&6
echo
"configure:4162: checking "
whether we can build a NetBSD dll
""
>
&5
...
...
configure.in
View file @
088a76b8
...
...
@@ -356,7 +356,7 @@ then
then
BUILDFLAGS="-pic"
DLLFLAGS="-fPIC"
LDSHARED="\$(CC) -shared -Wl,-soname,libwine.so"
LDSHARED="\$(CC) -shared -Wl,-soname,libwine.so
,-rpath,\$(libdir)
"
else
AC_CACHE_CHECK("whether we can build a UnixWare dll",
ac_cv_c_dll_unixware,
...
...
@@ -369,7 +369,7 @@ then
then
BUILDFLAGS="-pic"
DLLFLAGS="-fPIC"
LDSHARED="\$(CC) -Wl,-G,-h,
/usr/local/lib
/libwine.so"
LDSHARED="\$(CC) -Wl,-G,-h,
\$(libdir)
/libwine.so"
else
AC_CACHE_CHECK("whether we can build a NetBSD dll",
ac_cv_c_dll_netbsd,
...
...
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