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
f0c9e984
Commit
f0c9e984
authored
Apr 11, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wine.inf: Add a version number to make sure the file changes between versions.
parent
4a30466e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
17 deletions
+9
-17
.gitignore
.gitignore
+1
-0
Makefile.in
tools/Makefile.in
+6
-2
wine.inf.in
tools/wine.inf.in
+1
-0
wineprefixcreate.in
tools/wineprefixcreate.in
+1
-15
No files found.
.gitignore
View file @
f0c9e984
...
...
@@ -712,6 +712,7 @@ tools/widl/parser.tab.h
tools/widl/parser.yy.c
tools/widl/widl
tools/widl/widl.man
tools/wine.inf
tools/winebuild/winebuild
tools/winebuild/winebuild.man
tools/winedump/winedump
...
...
tools/Makefile.in
View file @
f0c9e984
...
...
@@ -14,6 +14,7 @@ PROGRAMS = \
makedep
$(EXEEXT)
\
relpath
$(EXEEXT)
\
sfnt2fnt
$(EXEEXT)
\
wine.inf
\
wineprefixcreate
MANPAGES
=
\
...
...
@@ -70,13 +71,16 @@ relpath$(EXEEXT): relpath.o
sfnt2fnt$(EXEEXT)
:
sfnt2fnt.o relpath$(EXEEXT)
$(CC)
$(CFLAGS)
-o
$@
sfnt2fnt.o
$(LIBWINE)
$(LIBPORT)
$(LDFLAGS)
$(FREETYPELIBS)
$(LDRPATH_LOCAL)
wine.inf
:
wine.inf.in
LC_ALL
=
C
sed
-e
's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g'
$(SRCDIR)
/wine.inf.in
>
$@
||
(
$(RM)
$@
&&
false
)
wineprefixcreate
:
wineprefixcreate.in relpath$(EXEEXT)
sed
-e
"s,@bintodlldir
\@
,
`
$(RELPATH)
$(bindir)
$(dlldir)
`
,g"
-e
"s,@bintodatadir
\@
,
`
$(RELPATH)
$(bindir)
$(datadir)
/wine
`
,g"
$(SRCDIR)
/wineprefixcreate.in
>
$@
||
(
$(RM)
$@
&&
false
)
chmod
+x wineprefixcreate
install install-lib
::
wineprefixcreate $(INSTALLDIRS)
install install-lib
::
wine
.inf wine
prefixcreate $(INSTALLDIRS)
$(INSTALL_SCRIPT)
wineprefixcreate
$(DESTDIR)$(bindir)
/wineprefixcreate
$(INSTALL_DATA)
$(SRCDIR)
/
wine.inf
$(DESTDIR)$(datadir)
/wine/wine.inf
$(INSTALL_DATA)
wine.inf
$(DESTDIR)$(datadir)
/wine/wine.inf
$(INSTALL_DATA)
$(SRCDIR)
/wine.desktop
$(DESTDIR)$(datadir)
/applications/wine.desktop
$(INSTALL_DATA)
wineprefixcreate.man
$(DESTDIR)$(mandir)
/man
$(prog_manext)
/wineprefixcreate.
$(prog_manext)
-
$(UPDATE_DESKTOP_DATABASE)
...
...
tools/wine.inf
→
tools/wine.inf
.in
View file @
f0c9e984
;; .INF script for the basic Wine configuration
;; Version: @PACKAGE_STRING@
;;
;; This should be run through setupapi:
;; rundll32 setupapi.dll,InstallHinfSection DefaultInstall 128 wine.inf
...
...
tools/wineprefixcreate.in
View file @
f0c9e984
...
...
@@ -79,21 +79,7 @@ then
LD_LIBRARY_PATH
=
"
$topdir
/libs/wine"
fi
export
LD_LIBRARY_PATH
# find the source directory
link
=
`
readlink
"
$WINELOADER
"
`
if
[
-z
"
$link
"
]
then
topsrcdir
=
"
$topdir
"
else
link
=
`
dirname
"
$link
"
`
case
"
$link
"
in
/
*
)
topsrcdir
=
`
cd
"
$link
/.."
&&
pwd
`
;;
*
)
topsrcdir
=
`
cd
"
$topdir
/
$link
/.."
&&
pwd
`
;;
esac
fi
dlldir
=
"
$topdir
/programs"
datadir
=
"
$topsrcdir
/tools"
datadir
=
"
$topdir
/tools"
fi
while
[
$#
-gt
0
]
...
...
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