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
425f1384
Commit
425f1384
authored
Apr 05, 2010
by
Joel Holdsworth
Committed by
Alexandre Julliard
Apr 06, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Maintainer mode requires icotool v0.29.0 or newer.
parent
c4dec770
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
2 deletions
+54
-2
configure
configure
+28
-1
configure.ac
configure.ac
+26
-1
No files found.
configure
View file @
425f1384
...
...
@@ -5068,7 +5068,34 @@ if test "${enable_maintainer_mode+set}" = set
then
if
test
"
$FONTFORGE
"
=
"false"
;
then
as_fn_append wine_warnings
"|fontforge is missing, fonts can't be rebuilt."
;
fi
if
test
"
$RSVG
"
=
"false"
;
then
as_fn_append wine_warnings
"|rsvg is missing, icons can't be rebuilt."
;
fi
if
test
"
$ICOTOOL
"
=
"false"
;
then
as_fn_append wine_warnings
"|icotool is missing, icons can't be rebuilt."
;
fi
if
test
"
$ICOTOOL
"
=
false
then
as_fn_append wine_warnings
"|icotool is missing, icons can't be rebuilt."
else
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for recent enough icotool"
>
&5
$as_echo_n
"checking for recent enough icotool... "
>
&6
;
}
icotool_version
=
`
icotool
--version
|
head
-n1
`
if
test
"x
$icotool_version
"
!=
"x"
then
icotool_version_major
=
`
expr
"
$icotool_version
"
:
'.* \([0-9]*\).[0-9]*'
`
icotool_version_minor
=
`
expr
"
$icotool_version
"
:
'.* [0-9]*.\([0-9]*\)'
`
if
test
"
$icotool_version_major
"
-eq
0
-a
"
$icotool_version_minor
"
-lt
29
then
ICOTOOL
=
false
as_fn_append wine_warnings
"|icotool version 0.29.0 or newer is needed to rebuild icons."
fi
fi
if
test
"
$ICOTOOL
"
=
false
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: no (
$icotool_version_major
.
$icotool_version_minor
)"
>
&5
$as_echo
"no (
$icotool_version_major
.
$icotool_version_minor
)"
>
&6
;
}
else
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: yes (
$icotool_version_major
.
$icotool_version_minor
)"
>
&5
$as_echo
"yes (
$icotool_version_major
.
$icotool_version_minor
)"
>
&6
;
}
fi
fi
fi
case
$host_cpu
in
...
...
configure.ac
View file @
425f1384
...
...
@@ -287,7 +287,32 @@ if test "${enable_maintainer_mode+set}" = set
then
if test "$FONTFORGE" = "false"; then WINE_WARNING([fontforge is missing, fonts can't be rebuilt.]); fi
if test "$RSVG" = "false"; then WINE_WARNING([rsvg is missing, icons can't be rebuilt.]); fi
if test "$ICOTOOL" = "false"; then WINE_WARNING([icotool is missing, icons can't be rebuilt.]); fi
dnl Check the icotool version
if test "$ICOTOOL" = false
then
WINE_WARNING([icotool is missing, icons can't be rebuilt.])
else
AC_MSG_CHECKING([for recent enough icotool])
icotool_version=`icotool --version | head -n1`
if test "x$icotool_version" != "x"
then
icotool_version_major=`expr "$icotool_version" : '.* \([[0-9]]*\).[[0-9]]*'`
icotool_version_minor=`expr "$icotool_version" : '.* [[0-9]]*.\([[0-9]]*\)'`
if test "$icotool_version_major" -eq 0 -a "$icotool_version_minor" -lt 29
then
ICOTOOL=false
WINE_WARNING([icotool version 0.29.0 or newer is needed to rebuild icons.])
fi
fi
if test "$ICOTOOL" = false
then
AC_MSG_RESULT([no ($icotool_version_major.$icotool_version_minor)])
else
AC_MSG_RESULT([yes ($icotool_version_major.$icotool_version_minor)])
fi
fi
fi
case $host_cpu in
...
...
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