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
1492028a
Commit
1492028a
authored
May 04, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of the winapi_check_dir config parameter.
parent
2fcd42aa
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
17 deletions
+13
-17
config.pm
tools/winapi/config.pm
+3
-3
make_parser.pm
tools/winapi/make_parser.pm
+1
-1
modules.pm
tools/winapi/modules.pm
+0
-1
nativeapi.pm
tools/winapi/nativeapi.pm
+2
-2
setup.pm
tools/winapi/setup.pm
+4
-7
winapi_extract
tools/winapi/winapi_extract
+1
-1
winapi_fixup
tools/winapi/winapi_fixup
+1
-1
winapi_test
tools/winapi/winapi_test
+1
-1
No files found.
tools/winapi/config.pm
View file @
1492028a
...
...
@@ -20,7 +20,7 @@ package config;
use
strict
;
use
setup
qw($current_dir $wine_dir $winapi_dir
$winapi_check_dir
)
;
use
setup
qw($current_dir $wine_dir $winapi_dir)
;
use
vars
qw($VERSION @ISA @EXPORT @EXPORT_OK)
;
require
Exporter
;
...
...
@@ -37,10 +37,10 @@ require Exporter;
get_spec_files
)
;
@EXPORT_OK
=
qw(
$current_dir $wine_dir $winapi_dir
$winapi_check_dir
$current_dir $wine_dir $winapi_dir
)
;
use
vars
qw($current_dir $wine_dir $winapi_dir
$winapi_check_dir
)
;
use
vars
qw($current_dir $wine_dir $winapi_dir)
;
use
output
qw($output)
;
...
...
tools/winapi/make_parser.pm
View file @
1492028a
...
...
@@ -20,7 +20,7 @@ package make_parser;
use
strict
;
use
setup
qw($current_dir $wine_dir $winapi_dir
$winapi_check_dir
)
;
use
setup
qw($current_dir $wine_dir $winapi_dir)
;
use
vars
qw($VERSION @ISA @EXPORT @EXPORT_OK)
;
require
Exporter
;
...
...
tools/winapi/modules.pm
View file @
1492028a
...
...
@@ -34,7 +34,6 @@ use config qw(
file_directory
get_c_files get_spec_files
$current_dir $wine_dir
$winapi_check_dir
)
;
use
options
qw($options)
;
use
output
qw($output)
;
...
...
tools/winapi/nativeapi.pm
View file @
1492028a
...
...
@@ -29,7 +29,7 @@ require Exporter;
use
vars
qw($nativeapi)
;
use
config
qw(file_type $current_dir $wine_dir $winapi_
check_
dir)
;
use
config
qw(file_type $current_dir $wine_dir $winapi_dir)
;
use
options
qw($options)
;
use
output
qw($output)
;
...
...
@@ -46,7 +46,7 @@ sub new($) {
my
$conditional_headers
=
\%
{
$self
->
{
CONDITIONAL_HEADERS
}};
my
$conditional_functions
=
\%
{
$self
->
{
CONDITIONAL_FUNCTIONS
}};
my
$api_file
=
"$winapi_
check_
dir/nativeapi.dat"
;
my
$api_file
=
"$winapi_dir/nativeapi.dat"
;
my
$configure_ac_file
=
"$wine_dir/configure.ac"
;
my
$config_h_in_file
=
"$wine_dir/include/config.h.in"
;
...
...
tools/winapi/setup.pm
View file @
1492028a
...
...
@@ -26,15 +26,15 @@ BEGIN {
@ISA
=
qw(Exporter)
;
@EXPORT
=
qw()
;
@EXPORT_OK
=
qw($current_dir $wine_dir $winapi_dir
$winapi_check_dir
)
;
@EXPORT_OK
=
qw($current_dir $wine_dir $winapi_dir)
;
use
vars
qw($current_dir $wine_dir $winapi_dir
$winapi_check_dir
)
;
use
vars
qw($current_dir $wine_dir $winapi_dir)
;
my
$tool
=
$0
;
$tool
=~
s%^(?:.*?/)?([^/]+)$%$1%
;
if
(
defined
(
$current_dir
)
&&
defined
(
$wine_dir
)
&&
defined
(
$winapi_dir
)
&&
defined
(
$winapi_check_dir
)
)
defined
(
$winapi_dir
))
{
# Nothing
}
elsif
(
$0
=~
m%^(.*?)/?tools/([^/]+)/[^/]+$%
)
{
...
...
@@ -77,10 +77,7 @@ BEGIN {
$winapi_dir
=
"$wine_dir/tools/winapi"
;
$winapi_dir
=~
s%^\./%%
;
$winapi_check_dir
=
"$wine_dir/tools/winapi"
;
$winapi_check_dir
=~
s%^\./%%
;
push
@INC
,
(
$winapi_dir
,
$winapi_check_dir
);
push
@INC
,
$winapi_dir
;
}
else
{
print
STDERR
"$tool: You must run this tool in the main Wine directory or a sub directory\n"
;
exit
1
;
...
...
tools/winapi/winapi_extract
View file @
1492028a
...
...
@@ -26,7 +26,7 @@ BEGIN {
use
config
qw(
file_type files_skip files_filter get_spec_files
$current_dir $wine_dir $winapi_dir
$winapi_check_dir
$current_dir $wine_dir $winapi_dir
)
;
use
output
qw($output)
;
use
winapi_extract_options
qw($options)
;
...
...
tools/winapi/winapi_fixup
View file @
1492028a
...
...
@@ -29,7 +29,7 @@ use config qw(
file_skip files_skip
file_normalize
get_spec_files
$current_dir $wine_dir $winapi_dir
$winapi_check_dir
$current_dir $wine_dir $winapi_dir
)
;
use
output
qw($output)
;
use
winapi_fixup_options
qw($options)
;
...
...
tools/winapi/winapi_test
View file @
1492028a
...
...
@@ -26,7 +26,7 @@ BEGIN {
use
config
qw(
file_type files_skip files_filter
$current_dir $wine_dir $winapi_dir
$winapi_check_dir
$current_dir $wine_dir $winapi_dir
)
;
use
output
qw($output)
;
use
winapi_test_options
qw($options)
;
...
...
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