Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
totem-pl-parser
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
14
Issues
14
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
totem-pl-parser
Commits
ae5a941d
Commit
ae5a941d
authored
Mar 29, 2010
by
Bastien Nocera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.30.0
Fix compilation with gmime-2.6
parent
3fef2e54
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
5 deletions
+14
-5
NEWS
NEWS
+3
-0
configure.in
configure.in
+11
-5
No files found.
NEWS
View file @
ae5a941d
New features and significant updates in version...
2.30.0
* New and updated translations
2.29.92
* Fix parsing of Guardian Podcasts
* Fix parsing of pukas.wax playlist
...
...
configure.in
View file @
ae5a941d
AC_PREREQ(2.62)
m4_define(totem_version_major, 2)
m4_define(totem_version_minor,
29
)
m4_define(totem_version_micro,
92
)
m4_define(totem_version_minor,
30
)
m4_define(totem_version_micro,
0
)
AC_INIT([totem-pl-parser],
[totem_version_major.totem_version_minor.totem_version_micro],
...
...
@@ -72,14 +72,20 @@ AC_ARG_ENABLE(gmime-i-know-what-im-doing,
if test "x$enable_gmime" = "xyes" ; then
PKG_CHECK_MODULES(GMIME,
gmime-2.4,
[have_gmime=yes],
[have_gmime=yes
GMIME=gmime-2.4
],
[have_gmime=no])
if test "x$have_gmime" != "xyes" ; then
PKG_CHECK_MODULES(GMIME,
gmime-2.6,
[have_gmime=yes GMIME=gmime-2.6],
[have_gmime=no])
fi
if test "x$have_gmime" = "xyes" ; then
AC_SUBST(GMIME,
gmime-2.4
)
AC_SUBST(GMIME,
$GMIME
)
AC_SUBST(USEGMIME, yes)
AC_DEFINE(HAVE_GMIME, 1, [GMime available in the system])
pkg_modules="$pkg_modules
gmime-2.4
"
pkg_modules="$pkg_modules
$GMIME
"
else
AC_MSG_ERROR([libgmime is required to compile totem-pl-parser.])
fi
...
...
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