Changeset 602e1fabe67b4e7d5053041f809936a76e3da06f
- Timestamp:
- 15/06/04 11:15:09
(4 years ago)
- Author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr>
- git-committer:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1087290909 +0000
- git-parent:
[f272cbdc28e25a53b6a7f7817103376b275cf2ef]
- git-author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1087290909 +0000
- Message:
SVG rendering module. It uses the text rendering API, and converts
plain text to SVG. It can be used to have more control on the subtitle
rendering.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rcfa66d1 |
r602e1fa |
|
| 2634 | 2634 | fi |
|---|
| 2635 | 2635 | fi |
|---|
| | 2636 | fi |
|---|
| | 2637 | |
|---|
| | 2638 | dnl |
|---|
| | 2639 | dnl SVG module |
|---|
| | 2640 | dnl |
|---|
| | 2641 | AC_ARG_ENABLE(svg, |
|---|
| | 2642 | [ --enable-svg SVG support (default disabled)]) |
|---|
| | 2643 | if test "${enable_svg}" == "yes" |
|---|
| | 2644 | then |
|---|
| | 2645 | PKG_CHECK_MODULES(SVG, |
|---|
| | 2646 | librsvg-2.0 >= 2.5.0, |
|---|
| | 2647 | [ |
|---|
| | 2648 | AX_ADD_LDFLAGS([svg],[$SVG_LIBS]) |
|---|
| | 2649 | AX_ADD_CFLAGS([svg],[$SVG_CFLAGS]) |
|---|
| | 2650 | AX_ADD_PLUGINS([svg]) ], |
|---|
| | 2651 | [AC_MSG_WARN(SVG library not found)]) |
|---|
| 2636 | 2652 | fi |
|---|
| 2637 | 2653 | |
|---|
| r6265a3a |
r602e1fa |
|
| 8 | 8 | SOURCES_freetype = freetype.c |
|---|
| 9 | 9 | SOURCES_logger = logger.c |
|---|
| | 10 | SOURCES_svg = svg.c |
|---|