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
2be0fa40
Commit
2be0fa40
authored
Sep 11, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set the dll search path to the location specified in configure
(spotted by Vincent Béron).
parent
41d7518a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
Makefile.in
tools/winegcc/Makefile.in
+1
-1
winewrap.c
tools/winegcc/winewrap.c
+2
-6
No files found.
tools/winegcc/Makefile.in
View file @
2be0fa40
DEFS
=
-DINCLUDEDIR
=
"
\"
$(includedir)
\"
"
DEFS
=
-DINCLUDEDIR
=
"
\"
$(includedir)
\"
"
-DDLLDIR
=
"
\"
$(dlldir)
\"
"
TOPSRCDIR
=
@top_srcdir@
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
SRCDIR
=
@srcdir@
...
...
tools/winegcc/winewrap.c
View file @
2be0fa40
...
@@ -31,10 +31,6 @@
...
@@ -31,10 +31,6 @@
#include "utils.h"
#include "utils.h"
#ifndef WINEDLLS
#define WINEDLLS "/usr/local/lib/wine"
#endif
static
const
char
*
app_loader_script
=
static
const
char
*
app_loader_script
=
"#!/bin/sh
\n
"
"#!/bin/sh
\n
"
"
\n
"
"
\n
"
...
@@ -439,8 +435,8 @@ int main(int argc, char **argv)
...
@@ -439,8 +435,8 @@ int main(int argc, char **argv)
obj_files
=
strarray_alloc
();
obj_files
=
strarray_alloc
();
/* include the standard DLL path first */
/* include the standard DLL path first */
add_lib_path
(
WINEDLLS
);
add_lib_path
(
DLLDIR
);
for
(
i
=
1
;
i
<
argc
;
i
++
)
for
(
i
=
1
;
i
<
argc
;
i
++
)
{
{
if
(
!
no_opt
&&
argv
[
i
][
0
]
==
'-'
)
if
(
!
no_opt
&&
argv
[
i
][
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