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
76adea11
Commit
76adea11
authored
May 21, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Added an ERROR_WITH macro for packages that we can't do without.
parent
1f051b8a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
6 deletions
+9
-6
aclocal.m4
aclocal.m4
+6
-0
configure
configure
+2
-5
configure.ac
configure.ac
+1
-1
No files found.
aclocal.m4
View file @
76adea11
...
...
@@ -178,6 +178,12 @@ AC_DEFUN([WINE_WARNING_WITH],[AS_IF([$2],[case "x$with_$1" in
This is an error since --with-$1 was requested.]) ;;
esac])])
AC_DEFUN([WINE_ERROR_WITH],[AS_IF([$2],[case "x$with_$1" in
xno) ;;
*) AC_MSG_ERROR([$3
Use the --without-$1 option if you really want this.]) ;;
esac])])
AC_DEFUN([WINE_PRINT_MESSAGES],[ac_save_IFS="$IFS"
IFS="|"
if test "x$wine_notices != "x; then
...
...
configure
View file @
76adea11
...
...
@@ -11563,18 +11563,15 @@ else
fi
if
test
"x
$XLIB
"
=
"x"
;
then
case
"x
$with_x
"
in
x
)
wine_warnings
=
"
$wine_warnings
|X development files not found. Wine will be built
without X support, which probably isn't what you want. You will need to install
development packages of Xlib/Xfree86 at the very least."
;;
xno
)
;;
*
)
{
{
echo
"
$as_me
:
$LINENO
: error: X development files not found. Wine will be built
without X support, which probably isn't what you want. You will need to install
development packages of Xlib/Xfree86 at the very least.
This is an error since --with-x was requested
."
>
&5
Use the --without-x option if you really want this
."
>
&5
echo
"
$as_me
: error: X development files not found. Wine will be built
without X support, which probably isn't what you want. You will need to install
development packages of Xlib/Xfree86 at the very least.
This is an error since --with-x was requested
."
>
&2
;
}
Use the --without-x option if you really want this
."
>
&2
;
}
{
(
exit
1
)
;
exit
1
;
}
;
}
;;
esac
fi
...
...
configure.ac
View file @
76adea11
...
...
@@ -781,7 +781,7 @@ else
X_CFLAGS=""
X_LIBS=""
fi
WINE_
WARNING
_WITH(x,[test "x$XLIB" = "x"],[X development files not found. Wine will be built
WINE_
ERROR
_WITH(x,[test "x$XLIB" = "x"],[X development files not found. Wine will be built
without X support, which probably isn't what you want. You will need to install
development packages of Xlib/Xfree86 at the very least.])
...
...
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