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
8b4431f1
Commit
8b4431f1
authored
Jan 23, 1999
by
Ove Kaaven
Committed by
Alexandre Julliard
Jan 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added "user-friendly" warning for missing X.
parent
3d506467
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
4 deletions
+18
-4
configure
configure
+9
-2
configure.in
configure.in
+9
-2
No files found.
configure
View file @
8b4431f1
...
...
@@ -4506,12 +4506,20 @@ rm -fr confdefs* $ac_clean_files
test
"
$no_create
"
=
yes
||
${
CONFIG_SHELL
-/bin/sh
}
$CONFIG_STATUS
||
exit
1
if
test
"
$have_x
"
=
"no"
then
echo
echo
"*** Warning: X development files not found. Wine will be built without"
echo
"*** X support, which currently does not work, and would probably not be"
echo
"*** what you want anyway. You will need to install devel packages of"
echo
"*** Xlib/Xfree86 and Xpm at the very least."
fi
if
test
"
$ac_cv_lib_ncurses_resizeterm
"
=
"no"
-a
"
$ac_cv_lib_ncurses_waddch
"
=
"yes"
then
echo
echo
"*** Warning: resizeterm not found in ncurses. Wine will be built without"
echo
"*** terminal resize support. Consider upgrading ncurses."
echo
fi
if
test
"
$wine_cv_libc_reentrant
"
=
"no"
...
...
@@ -4520,7 +4528,6 @@ then
echo
"*** Warning: non-reentrant libc detected. Wine will be build without"
echo
"*** thread support. Consider upgrading libc to a more recent"
echo
"*** reentrant version of libc."
echo
fi
echo
...
...
configure.in
View file @
8b4431f1
...
...
@@ -619,12 +619,20 @@ windows/Makefile
windows/ttydrv/Makefile
windows/x11drv/Makefile ])
if test "$have_x" = "no"
then
echo
echo "*** Warning: X development files not found. Wine will be built without"
echo "*** X support, which currently does not work, and would probably not be"
echo "*** what you want anyway. You will need to install devel packages of"
echo "*** Xlib/Xfree86 and Xpm at the very least."
fi
if test "$ac_cv_lib_ncurses_resizeterm" = "no" -a "$ac_cv_lib_ncurses_waddch" = "yes"
then
echo
echo "*** Warning: resizeterm not found in ncurses. Wine will be built without"
echo "*** terminal resize support. Consider upgrading ncurses."
echo
fi
if test "$wine_cv_libc_reentrant" = "no"
...
...
@@ -633,7 +641,6 @@ then
echo "*** Warning: non-reentrant libc detected. Wine will be build without"
echo "*** thread support. Consider upgrading libc to a more recent"
echo "*** reentrant version of libc."
echo
fi
echo
...
...
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