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
a41f0f1b
Commit
a41f0f1b
authored
Jan 07, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Add --without options for all optional dependencies.
parent
787ccc80
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
6 deletions
+18
-6
aclocal.m4
aclocal.m4
+18
-6
configure
configure
+0
-0
configure.ac
configure.ac
+0
-0
No files found.
aclocal.m4
View file @
a41f0f1b
...
@@ -156,22 +156,34 @@ AC_DEFUN([WINE_CONFIG_EXTRA_DIR],
...
@@ -156,22 +156,34 @@ AC_DEFUN([WINE_CONFIG_EXTRA_DIR],
dnl **** Add a message to the list displayed at the end ****
dnl **** Add a message to the list displayed at the end ****
dnl
dnl
dnl Usage: WINE_NOTICE(notice)
dnl Usage: WINE_NOTICE(notice)
dnl Usage: WINE_NOTICE_
IF(
test, notice)
dnl Usage: WINE_NOTICE_
WITH(with_flag,
test, notice)
dnl Usage: WINE_WARNING(warning)
dnl Usage: WINE_WARNING(warning)
dnl Usage: WINE_WARNING_
IF(
test, warning)
dnl Usage: WINE_WARNING_
WITH(with_flag,
test, warning)
dnl Usage: WINE_PRINT_MESSAGES
dnl Usage: WINE_PRINT_MESSAGES
dnl
dnl
AC_DEFUN([WINE_NOTICE],[wine_notices="$wine_notices|$1"])
AC_DEFUN([WINE_NOTICE],[wine_notices="$wine_notices|$1"])
AC_DEFUN([WINE_NOTICE_IF],[AS_IF([$1],[WINE_NOTICE([$2],[$3])])])
AC_DEFUN([WINE_WARNING],[wine_warnings="$wine_warnings|$1"])
AC_DEFUN([WINE_WARNING],[wine_warnings="$wine_warnings|$1"])
AC_DEFUN([WINE_WARNING_IF],[AS_IF([$1],[WINE_WARNING([$2],[$3])])])
AC_DEFUN([WINE_NOTICE_WITH],[AS_IF([$2],[case "x$with_$1" in
x) WINE_NOTICE([$3]) ;;
xno) ;;
*) AC_MSG_ERROR([$3
This is an error since --with-$1 was requested.]) ;;
esac])])
AC_DEFUN([WINE_WARNING_WITH],[AS_IF([$2],[case "x$with_$1" in
x) WINE_WARNING([$3]) ;;
xno) ;;
*) AC_MSG_ERROR([$3
This is an error since --with-$1 was requested.]) ;;
esac])])
AC_DEFUN([WINE_PRINT_MESSAGES],[ac_save_IFS="$IFS"
AC_DEFUN([WINE_PRINT_MESSAGES],[ac_save_IFS="$IFS"
IFS="|"
IFS="|"
if test "$verbose" = "yes"; then
if test "x$wine_notices != "x; then
echo >&AS_MESSAGE_FD
for msg in $wine_notices; do
for msg in $wine_notices; do
if test -n "$msg"; then
if test -n "$msg"; then
echo >&2
AC_MSG_NOTICE([$msg])
AC_MSG_NOTICE([$msg])
fi
fi
done
done
...
...
configure
View file @
a41f0f1b
This diff is collapsed.
Click to expand it.
configure.ac
View file @
a41f0f1b
This diff is collapsed.
Click to expand it.
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