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
4650dff5
Commit
4650dff5
authored
Nov 11, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebus.sys: Move winebus.inf into the module resources.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5696c3c2
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
10 deletions
+25
-10
Makefile.in
dlls/winebus.sys/Makefile.in
+2
-0
winebus.inf
dlls/winebus.sys/winebus.inf
+0
-0
winebus.rc
dlls/winebus.sys/winebus.rc
+20
-0
Makefile.in
loader/Makefile.in
+0
-1
wine.inf.in
loader/wine.inf.in
+1
-1
make_makefiles
tools/make_makefiles
+2
-8
No files found.
dlls/winebus.sys/Makefile.in
View file @
4650dff5
...
...
@@ -9,3 +9,5 @@ C_SRCS = \
bus_sdl.c
\
bus_udev.c
\
main.c
RC_SRCS
=
winebus.rc
loader/winebus.inf.in
→
dlls/winebus.sys/winebus.inf
View file @
4650dff5
File moved
dlls/winebus.sys/winebus.rc
0 → 100644
View file @
4650dff5
/*
* Copyright 2020 Alexandre Julliard
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
/* @makedep: winebus.inf */
1 WINE_DATA_FILE winebus.inf
loader/Makefile.in
View file @
4650dff5
...
...
@@ -9,7 +9,6 @@ SOURCES = \
wine.man.in
\
wine.pl.UTF-8.man.in
\
wine_info.plist.in
\
winebus.inf.in
\
winehid.inf.in
\
wineusb.inf.in
...
...
loader/wine.inf.in
View file @
4650dff5
...
...
@@ -4059,7 +4059,7 @@ HKLM,Software\Wine\LicenseInformation,"Shell-InBoxGames-SpiderSolitaire-EnableGa
HKLM,Software\Wine\LicenseInformation,"Shell-PremiumInBoxGames-Chess-EnableGame",0x10001,0x00000001
[InfFiles]
winebus.inf
winebus.inf
,"@winebus.sys,-1"
winehid.inf
wineusb.inf
...
...
tools/make_makefiles
View file @
4650dff5
...
...
@@ -73,7 +73,6 @@ my @source_vars = (
);
my
(
@makefiles
,
%
makefiles
);
my
@inf_files
;
my
@nls_files
;
sub
dirname
($)
...
...
@@ -382,10 +381,6 @@ sub assign_sources_to_makefiles(@)
{
push
@
{
$
{
$make
}{
"=MANPAGES"
}},
$name
;
}
elsif
(
$name
=~
/\.inf\.in$/
)
{
push
@inf_files
,
$name
unless
$name
eq
"wine.inf.in"
;
}
elsif
(
$name
=~
/\.in$/
)
{
push
@
{
$
{
$make
}{
"=IN_SRCS"
}},
$name
;
...
...
@@ -492,11 +487,10 @@ sub update_makefiles(@)
sub
update_wine_inf
()
{
my
@lines
;
push
@lines
,
"[InfFiles]"
,
sort
grep
{
s/\.in$//
;
}
@inf_files
;
push
@lines
,
"\n[NlsFiles]"
,
sort
grep
(
!
/^sort/
,
@nls_files
);
push
@lines
,
"[NlsFiles]"
,
sort
grep
(
!
/^sort/
,
@nls_files
);
push
@lines
,
"\n[SortFiles]"
,
sort
grep
(
/^sort/
,
@nls_files
);
push
@lines
,
"\n[WineSourceDirs]\n"
;
replace_in_file
"loader/wine.inf.in"
,
'^\[
Inf
Files\]'
,
'^\[WineSourceDirs\]'
,
join
(
"\n"
,
@lines
);
replace_in_file
"loader/wine.inf.in"
,
'^\[
Nls
Files\]'
,
'^\[WineSourceDirs\]'
,
join
(
"\n"
,
@lines
);
}
my
$git_dir
=
$ENV
{
GIT_DIR
}
||
".git"
;
...
...
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