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
2e980956
Commit
2e980956
authored
May 15, 2017
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Don't require X11 if we can build the Mac driver.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7cc41589
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
5 deletions
+28
-5
configure
configure
+16
-2
configure.ac
configure.ac
+12
-3
No files found.
configure
View file @
2e980956
...
...
@@ -10910,16 +10910,30 @@ else
X_CFLAGS
=
""
X_LIBS
=
""
fi
if
test
"x
$X_LIBS
"
=
"x"
;
then
:
if
test
"
$enable_winemac_drv
"
=
"no"
then
if
test
"x
$X_LIBS
"
=
"x"
;
then
:
case
"x
$with_x
"
in
xno
)
;;
*
)
as_fn_error
$?
"X
${
notice_platform
}
development files not found. Wine will be built
without X support, which probably isn't what you want. You will need
to install
${
notice_platform
}
development packages of Xlib
/Xfree86
at the very least.
to install
${
notice_platform
}
development packages of Xlib at the very least.
Use the --without-x option if you really want this."
"
$LINENO
"
5
;;
esac
enable_winex11_drv
=
${
enable_winex11_drv
:-
no
}
fi
else
if
test
"x
$X_LIBS
"
=
"x"
;
then
:
case
"x
$with_x
"
in
x
)
as_fn_append wine_notices
"|X
${
notice_platform
}
development files not found, the X11 driver won't be supported."
;;
xno
)
;;
*
)
as_fn_error
$?
"X
${
notice_platform
}
development files not found, the X11 driver won't be supported.
This is an error since --with-x was requested."
"
$LINENO
"
5
;;
esac
enable_winex11_drv
=
${
enable_winex11_drv
:-
no
}
fi
fi
if
test
"
$ac_cv_header_CL_cl_h
"
=
"yes"
then
...
...
configure.ac
View file @
2e980956
...
...
@@ -1161,10 +1161,19 @@ else
X_CFLAGS=""
X_LIBS=""
fi
WINE_ERROR_WITH(x,[test "x$X_LIBS" = "x"],[X ${notice_platform}development files not found. Wine will be built
if test "$enable_winemac_drv" = "no"
then
WINE_ERROR_WITH(x,[test "x$X_LIBS" = "x"],
[X ${notice_platform}development files not found. Wine will be built
without X support, which probably isn't what you want. You will need
to install ${notice_platform}development packages of Xlib/Xfree86 at the very least.],
[enable_winex11_drv])
to install ${notice_platform}development packages of Xlib at the very least.],
[enable_winex11_drv])
else
WINE_NOTICE_WITH(x,[test "x$X_LIBS" = "x"],
[X ${notice_platform}development files not found, the X11 driver won't be supported.],
[enable_winex11_drv])
fi
dnl **** Check for OpenCL ****
if test "$ac_cv_header_CL_cl_h" = "yes"
...
...
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