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
42dcd97e
Commit
42dcd97e
authored
Jan 29, 2002
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'test -e' is not supported on Solaris, replace with '-f' or '-d'.
parent
815997ff
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
configure
configure
+1
-1
configure.in
configure.in
+1
-1
db2html-winehq
documentation/db2html-winehq
+2
-2
make_winehq
documentation/make_winehq
+1
-1
winelib-toolkit.sgml
documentation/winelib-toolkit.sgml
+1
-1
winemaker
tools/winemaker
+1
-1
No files found.
configure
View file @
42dcd97e
...
...
@@ -3861,7 +3861,7 @@ done
if
test
$OPENGL
=
"yes"
-o
$OPENGL
=
"normal"
then
if
test
-
e
/usr/X11R6/lib/libGL.a
-a
!
-e
/usr/X11R6/lib/libGL.so
if
test
-
f
/usr/X11R6/lib/libGL.a
-a
!
-f
/usr/X11R6/lib/libGL.so
then
{
echo
"configure: error: /usr/X11R6/lib/libGL.a is present on your system.
This prevents linking to OpenGL. Delete the file and restart configure."
1>&2
;
exit
1
;
}
...
...
configure.in
View file @
42dcd97e
...
...
@@ -265,7 +265,7 @@ then
dnl Check for the presence of OpenGL
if test $OPENGL = "yes" -o $OPENGL = "normal"
then
if test -
e /usr/X11R6/lib/libGL.a -a ! -e
/usr/X11R6/lib/libGL.so
if test -
f /usr/X11R6/lib/libGL.a -a ! -f
/usr/X11R6/lib/libGL.so
then
AC_MSG_ERROR([/usr/X11R6/lib/libGL.a is present on your system.
This prevents linking to OpenGL. Delete the file and restart configure.])
...
...
documentation/db2html-winehq
View file @
42dcd97e
...
...
@@ -12,12 +12,12 @@
## $LINUXDIST holds the name of the distribution
## $JADETAG adds "/#html" to the stylesheet-specification in the Jade
## command line (see comments below), if necessary for that dist.
if
[
-
e
/etc/debian_version
]
;
then
if
[
-
f
/etc/debian_version
]
;
then
LINUXDIST
=
"Debian"
JADETAG
=
\#
html
fi
if
[
-
e
/etc/redhat_release
]
;
then
if
[
-
f
/etc/redhat_release
]
;
then
LINUXDIST
=
"Redhat"
JADETAG
=
fi
...
...
documentation/make_winehq
View file @
42dcd97e
...
...
@@ -20,7 +20,7 @@
WWWDIR
=
www.winehq.com
## Want to put this into a sub-directory for easier maintenance
if
[
-
e
"
$WWWDIR
"
]
;
then
if
[
-
d
"
$WWWDIR
"
-o
-f
"
$WWWDIR
"
]
;
then
rm
-rf
"
$WWWDIR
.old"
mv
"
$WWWDIR
"
"
$WWWDIR
"
.old
fi
...
...
documentation/winelib-toolkit.sgml
View file @
42dcd97e
...
...
@@ -392,7 +392,7 @@ $(hello_SPEC_SRCS:.spec=.spec.c): $(hello_SPEC_SRCS:.spec) $(hello_SPEC_SRCS:.sp
hello.so: $(hello_SPEC_SRCS:.spec=.spec.o) $(hello_OBJS) $(hello_DEP
ENDS)
$(LDSHARED) $(LDDLLFLAGS) -o $@ $(hello_OBJS) $(hello_SPEC_SRCS:.spec=.spec.o) $(hello_LIBRARY_PATH) $(hello_LIBRARIES:%=-l%) $(DLL_LINK) $(LIBS)
test -
e
hello || $(LN_S) $(WINE) hello
test -
f
hello || $(LN_S) $(WINE) hello
</programlisting>
<para>
Then come additional directives to link the executables and
...
...
tools/winemaker
View file @
42dcd97e
...
...
@@ -1951,7 +1951,7 @@ sub generate_project_files
}
print
FILEO
" \$(LDDLLFLAGS) -o \$\@ \$(${canon}_OBJS) \$(${canon}_SPEC_SRCS:.spec=.spec.o) \$(${canon}_LIBRARY_PATH) \$(${canon}_LIBRARIES:%=-l%) \$(DLL_LINK) \$(LIBS)\n"
;
if
(
@$target
[
$T_TYPE
]
ne
$TT_DLL
)
{
print
FILEO
"\ttest -
e
@$target[$T_NAME] || \$(LN_S) \$(WINE) @$target[$T_NAME]\n"
;
print
FILEO
"\ttest -
f
@$target[$T_NAME] || \$(LN_S) \$(WINE) @$target[$T_NAME]\n"
;
}
print
FILEO
"\n\n"
;
}
...
...
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