Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
8d6b9aa6
Commit
8d6b9aa6
authored
18 years ago
by
Michael McCormack
Committed by
Alexandre Julliard
18 years ago
Browse files
Options
Downloads
Patches
Plain Diff
configure: Exit with a non-zero exit code if a core dependency is missing.
parent
6d9af55a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure
+11
-3
11 additions, 3 deletions
configure
configure.ac
+11
-3
11 additions, 3 deletions
configure.ac
with
22 additions
and
6 deletions
configure
+
11
−
3
View file @
8d6b9aa6
...
...
@@ -21011,6 +21011,7 @@ if test "$no_create" != yes; then
fi
exitcode=0
if test "$have_x" = "no"
then
echo
...
...
@@ -21018,6 +21019,7 @@ then
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 at the very least."
exitcode=1
fi
if test "$wine_cv_opengl_version_OK" = "no"
...
...
@@ -21025,6 +21027,7 @@ then
echo
echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)."
exitcode=1
fi
if test "$wine_cv_msg_freetype" = "yes"
...
...
@@ -21034,6 +21037,7 @@ then
echo "*** installed, but 'freetype-config' is not in your PATH. Install the"
echo "*** freetype-devel package (or its equivalent on your distribution) to"
echo "*** enable Wine to use TrueType fonts."
exitcode=1
fi
if test "$wine_cv_msg_fonts" = "yes"
...
...
@@ -21041,6 +21045,7 @@ then
echo
echo "*** Warning: Freetype or Fontforge is missing."
echo "*** Fonts will not be built. Dialog text may be invisible or unaligned."
exitcode=1
fi
if test -z "$ALSALIBS" -a \
...
...
@@ -21053,12 +21058,15 @@ if test -z "$ALSALIBS" -a \
"$ac_cv_header_machine_soundcard_h" != "yes" -a \
"$ac_cv_header_soundcard_h" != "yes"
then
echo "*** No sound system was found. Windows applications will be silent."
echo "*** The currently supported sound systems are:"
echo "*** ALSA, ARTS, EsounD, AudioIO, Jack, NAS and OSS"
echo "*** No sound system was found. Windows applications will be silent."
echo "*** The currently supported sound systems are:"
echo "*** ALSA, ARTS, EsounD, AudioIO, Jack, NAS and OSS"
exitcode=1
fi
echo
echo "Configure finished. Do '${ac_make} depend && ${ac_make}' to compile Wine."
echo
exit $exitcode
This diff is collapsed.
Click to expand it.
configure.ac
+
11
−
3
View file @
8d6b9aa6
...
...
@@ -1746,6 +1746,7 @@ tools/wrc/Makefile])
AC_OUTPUT
exitcode=0
if test "$have_x" = "no"
then
echo
...
...
@@ -1753,6 +1754,7 @@ then
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 at the very least."
exitcode=1
fi
if test "$wine_cv_opengl_version_OK" = "no"
...
...
@@ -1760,6 +1762,7 @@ then
echo
echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)."
exitcode=1
fi
if test "$wine_cv_msg_freetype" = "yes"
...
...
@@ -1769,6 +1772,7 @@ then
echo "*** installed, but 'freetype-config' is not in your PATH. Install the"
echo "*** freetype-devel package (or its equivalent on your distribution) to"
echo "*** enable Wine to use TrueType fonts."
exitcode=1
fi
if test "$wine_cv_msg_fonts" = "yes"
...
...
@@ -1776,6 +1780,7 @@ then
echo
echo "*** Warning: Freetype or Fontforge is missing."
echo "*** Fonts will not be built. Dialog text may be invisible or unaligned."
exitcode=1
fi
if test -z "$ALSALIBS" -a \
...
...
@@ -1788,15 +1793,18 @@ if test -z "$ALSALIBS" -a \
"$ac_cv_header_machine_soundcard_h" != "yes" -a \
"$ac_cv_header_soundcard_h" != "yes"
then
echo "*** No sound system was found. Windows applications will be silent."
echo "*** The currently supported sound systems are:"
echo "*** ALSA, ARTS, EsounD, AudioIO, Jack, NAS and OSS"
echo "*** No sound system was found. Windows applications will be silent."
echo "*** The currently supported sound systems are:"
echo "*** ALSA, ARTS, EsounD, AudioIO, Jack, NAS and OSS"
exitcode=1
fi
echo
echo "Configure finished. Do '${ac_make} depend && ${ac_make}' to compile Wine."
echo
exit $exitcode
dnl Local Variables:
dnl comment-start: "dnl "
dnl comment-end: ""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment