diff options
author | James Meyer <james.meyer@operamail.com> | 2010-03-21 17:38:24 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-03-21 17:38:24 (GMT) |
commit | c5668043d54b597d7218c7931e0096e0a2725d2a (patch) | |
tree | ecc5a61d94fb054c6291126b1f4954dbd18fbb74 /abs/extra-testing/community/mediatomb/mediatomb-gcc-4.3.patch | |
parent | 30b24c067003966f4231e0a0a3e6825396a2fd56 (diff) | |
download | linhes_pkgbuild-c5668043d54b597d7218c7931e0096e0a2725d2a.zip linhes_pkgbuild-c5668043d54b597d7218c7931e0096e0a2725d2a.tar.gz linhes_pkgbuild-c5668043d54b597d7218c7931e0096e0a2725d2a.tar.bz2 |
mediatomb: first import
http://aur.archlinux.org/packages.php?ID=10199
untested
closes 588
Diffstat (limited to 'abs/extra-testing/community/mediatomb/mediatomb-gcc-4.3.patch')
-rw-r--r-- | abs/extra-testing/community/mediatomb/mediatomb-gcc-4.3.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/abs/extra-testing/community/mediatomb/mediatomb-gcc-4.3.patch b/abs/extra-testing/community/mediatomb/mediatomb-gcc-4.3.patch new file mode 100644 index 0000000..9440bec --- /dev/null +++ b/abs/extra-testing/community/mediatomb/mediatomb-gcc-4.3.patch @@ -0,0 +1,24 @@ +# GCC-4.3 compatibility patch by Mika Hynnä (ighea) <igheaxATgmailDOTcom> +# +--- mediatomb-0.11.0/src/url.cc 2008-03-02 00:48:36.000000000 +0200 ++++ mediatomb-0.11.0.new/src/url.cc 2008-04-14 00:53:21.000000000 +0300 +@@ -75,7 +75,7 @@ + + if (only_header) + { +- curl_easy_setopt(curl_handle, CURLOPT_NOBODY); ++ curl_easy_setopt(curl_handle, CURLOPT_NOBODY,0); + curl_easy_setopt(curl_handle, CURLOPT_HEADERFUNCTION, URL::dl); + curl_easy_setopt(curl_handle, CURLOPT_HEADERDATA, + (void *)buffer.getPtr()); +--- mediatomb-0.11.0/src/metadata/id3_handler.cc 2008-03-02 00:48:36.000000000 +0200 ++++ mediatomb-0.11.0.new/src/metadata/id3_handler.cc 2008-04-14 01:22:36.000000000 +0300 +@@ -36,6 +36,8 @@ + + #ifdef HAVE_ID3 + ++#include <string.h> ++ + #ifdef HAVE_CONFIG_H + #undef HAVE_CONFIG_H // else utils.h from the id3 library tries to import "config.h" + |