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
52171a8b
Commit
52171a8b
authored
Jan 23, 2015
by
Josh DuBois
Committed by
Alexandre Julliard
Jan 26, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
buildimage: Allow use of rsvg-convert as alternative to rsvg.
parent
1042684e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
buildimage
tools/buildimage
+6
-1
No files found.
configure
View file @
52171a8b
...
...
@@ -5771,7 +5771,7 @@ fi
done
test
-n
"
$FONTFORGE
"
||
FONTFORGE
=
"false"
for
ac_prog
in
rsvg
for
ac_prog
in
rsvg
-convert rsvg
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set
dummy
$ac_prog
;
ac_word
=
$2
...
...
configure.ac
View file @
52171a8b
...
...
@@ -284,7 +284,7 @@ then
else
test "$srcdir" = . || AC_MSG_ERROR([Maintainer mode cannot work out of tree.])
AC_CHECK_PROGS(FONTFORGE, fontforge, false)
AC_CHECK_PROGS(RSVG, rsvg, false)
AC_CHECK_PROGS(RSVG, rsvg
-convert rsvg
, false)
AC_CHECK_PROGS(CONVERT, convert, false)
AC_CHECK_PROGS(ICOTOOL, icotool, false)
test "$FONTFORGE" != "false" || AC_MSG_ERROR([You need fontforge to rebuild fonts in maintainer mode.])
...
...
tools/buildimage
View file @
52171a8b
...
...
@@ -141,7 +141,12 @@ sub svg_element_start
}
# Render the SVG image
shell
$rsvg
,
$svgFileName
,
$renderedSVGFileName
;
my
@rsvgCmd
;
push
(
@rsvgCmd
,
$rsvg
);
push
(
@rsvgCmd
,
$svgFileName
);
push
(
@rsvgCmd
,
"-o"
)
if
(
$rsvg
eq
"rsvg-convert"
);
push
(
@rsvgCmd
,
$renderedSVGFileName
);
shell
@rsvgCmd
;
# Render the images in the SVG
my
$parser
=
new
XML::
Parser
(
...
...
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