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
b822b841
Commit
b822b841
authored
Feb 25, 2000
by
Ove Kaaven
Committed by
Alexandre Julliard
Feb 25, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check for Xpm headers and add /usr/local/lib to /etc/ld.so.conf if
necessary.
parent
982ebc63
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
1 deletion
+22
-1
wineinstall
tools/wineinstall
+22
-1
No files found.
tools/wineinstall
View file @
b822b841
...
...
@@ -3,6 +3,10 @@
# Mar 31 1999 - Ove Kven
# First version
# Dec 9 1999 - Ove Kven
# require Xpm
# Feb 25 2000 - Ove Kven
# auto-add /usr/local/lib to /etc/ld.so.conf
# defaults
...
...
@@ -12,7 +16,7 @@ DOREG=yes
# startup...
echo
"WINE Installer v0.
1
"
echo
"WINE Installer v0.
2
"
echo
if
!
[
-f
configure
]
then
{
...
...
@@ -47,6 +51,12 @@ else {
rm
-f
config.cache
exit
1
}
elif
!
grep
-qs
"xpm_h=yes"
config.cache
then
{
echo
"Install the Xpm development headers and try again."
rm
-f
config.cache
exit
1
}
fi
}
fi
...
...
@@ -87,6 +97,15 @@ else {
exit
1
}
fi
if
[
-f
/etc/ld.so.conf
]
&&
!
grep
-qs
"/usr/local/lib"
/etc/ld.so.conf
then
{
echo
echo
"/usr/local/lib didn't exist in your /etc/ld.so.conf, adding it now..."
echo
/usr/local/lib
>>
/etc/ld.so.conf
echo
"Re-running ldconfig..."
ldconfig
}
fi
}
fi
echo
...
...
@@ -160,8 +179,10 @@ then {
then
{
echo
echo
"Registry install failed. Perhaps you weren't running X."
exit
1
}
fi
# FIXME: perhaps install registry to $sysconfdir/winesystem.reg and $sysconfdir/wineuser.reg?
}
fi
echo
...
...
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