Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ffe6b767
Commit
ffe6b767
authored
Jun 12, 1999
by
James Juran
Committed by
Alexandre Julliard
Jun 12, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use Autoconf to find path to ldconfig.
parent
98231044
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
1 deletion
+3
-1
Make.rules.in
Make.rules.in
+1
-0
Makefile.in
Makefile.in
+1
-1
configure
configure
+0
-0
configure.in
configure.in
+1
-0
No files found.
Make.rules.in
View file @
ffe6b767
...
...
@@ -38,6 +38,7 @@ AR = ar rc
RM = rm -f
MKDIR = mkdir -p
C2MAN = @C2MAN@
LDCONFIG = @LDCONFIG@
MANSPECS = -w $(TOPSRCDIR)/relay32/gdi32.spec \
-w $(TOPSRCDIR)/relay32/user32.spec \
-w $(TOPSRCDIR)/relay32/comctl32.spec \
...
...
Makefile.in
View file @
ffe6b767
...
...
@@ -202,7 +202,7 @@ install_lib: dummy
[
-d
$(libdir)
]
||
$(MKDIR)
$(libdir)
if
[
$(LIB_TARGET)
]
;
then
$(INSTALL_DATA)
$(LIB_TARGET)
$(libdir)
;
fi
if
[
-f
wine.sym
]
;
then
$(INSTALL_DATA)
wine.sym
$(libdir)
/wine.sym
;
fi
if
[
$(LIB_TARGET)
=
libwine.so.1.0
]
;
then
ldconfig
;
fi
if
[
$(LIB_TARGET)
=
libwine.so.1.0
]
;
then
$(LDCONFIG)
;
fi
uninstall_lib
:
dummy
cd
$(libdir)
;
$(RM)
$(LIB_TARGET)
libwine.a libwine.so wine.sym
...
...
configure
View file @
ffe6b767
This diff is collapsed.
Click to expand it.
configure.in
View file @
ffe6b767
...
...
@@ -74,6 +74,7 @@ AC_PROG_RANLIB
AC_PROG_INSTALL
AC_PROG_LN_S
AC_CHECK_PROG(C2MAN,c2man,c2man,true)
AC_PATH_PROG(LDCONFIG, ldconfig, false, /sbin:/usr/sbin:$PATH)
dnl **** Check for some libraries ****
...
...
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