diff options
author | Shaun Amott <shaun@FreeBSD.org> | 2006-08-03 02:33:33 +0000 |
---|---|---|
committer | Shaun Amott <shaun@FreeBSD.org> | 2006-08-03 02:33:33 +0000 |
commit | 18eec0ea7e45564886f72f3127936698d0960d8b (patch) | |
tree | 0e32b61381cc3cbe1340e866311296260b70fb49 /multimedia/helixplayer/files/patch-timeval | |
parent | 768198b5bda5c3d94a0094193337f691f784523a (diff) |
Add some substantial improvements to the helixplayer port. I have
decided to leave this marked IGNORE/BROKEN for the moment until I can
figure out if/when/why the build is failing; but also, I have a few more
changes to make before I bring it back to life.
This is courtesy of Mikhail Teterin, with some input from Thierry
Thomas.
1) Allow port to build and execute on amd64.
2) Do not build the bundled png, jpg, zlib, bzip2, getopt, md5: do not
even extract them -- use the ports and the OS versions (OpenSSL in
case of md5 -- it may be assembler-optimized on some arches even)
3) Do not build the giant install.bz2, which the do-install target
would then untar in ${PREFIX}/HelixPlayer -- leave that whole part
alone and simply copy the stuff under PREFIX.
4) Check for build failures (parsing the end of build.out) and fail in
post-built, of any modules failed.
5) Fix JPEG image display.
Notes
Notes:
svn path=/head/; revision=169521
Diffstat (limited to 'multimedia/helixplayer/files/patch-timeval')
-rw-r--r-- | multimedia/helixplayer/files/patch-timeval | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/multimedia/helixplayer/files/patch-timeval b/multimedia/helixplayer/files/patch-timeval new file mode 100644 index 000000000000..7f82a656c65b --- /dev/null +++ b/multimedia/helixplayer/files/patch-timeval @@ -0,0 +1,16 @@ +--- common/util/pub/timeval.h Thu Jul 8 21:48:01 2004 ++++ common/util/pub/timeval.h Sat Jul 8 13:09:00 2006 +@@ -74,5 +74,5 @@ + #endif + +-#if !(defined _UNIX && (defined _LONG_IS_64 || defined _VXWORKS)) ++#if 0 + Timeval(int sec, int usec); + Timeval(int usec); +@@ -124,5 +124,5 @@ + } + +-#if !(defined _UNIX && (defined _LONG_IS_64 || defined _VXWORKS)) ++#if 0 + + inline Timeval::Timeval(int s, int us) { |