diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2002-02-13 06:30:43 +0000 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2002-02-13 06:30:43 +0000 |
commit | c74bdc61c8b67ca0e5b42f95ac96e825cf79eb47 (patch) | |
tree | 907bc1497dd3480d6d66b95c888716dbced3bca2 /graphics/libfpx/files/patch-gcc3 | |
parent | - Metamod update to fix problems with Day of Defeat mod (diff) |
The ImageMagick crew took this library over and released the 1.2.0.4.
The changes:
. our patch-gcc3 (provided to me by Alex Vasylenko) is
incorporated;
. the library uses its own implementation of wchar; they
say, it can only work if sizeof(wchar_t) is 2 bytes, so
they can not rely on the OS provided wchar...
The port changed:
. the package is installed as libfpx-version rather than
fpx-version;
. make is passed `-j2', which is very efficient even for
non-SMP machines, since each file is compiled twice --
for .o and .So object -- with -j2 they are compiled at
the same time, utilizing the cache;
. don't insist on any particular version of -ljpeg;
. ftp.imagemagick.org added to the MASTER_SITES (time for
MASTER_SITE_IMAGEMAGICK);
. the ABI and API did not change, so, the installed library's
version remains the same.
Notes
Notes:
svn path=/head/; revision=54650
Diffstat (limited to 'graphics/libfpx/files/patch-gcc3')
-rw-r--r-- | graphics/libfpx/files/patch-gcc3 | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/graphics/libfpx/files/patch-gcc3 b/graphics/libfpx/files/patch-gcc3 deleted file mode 100644 index 90f6a387039b..000000000000 --- a/graphics/libfpx/files/patch-gcc3 +++ /dev/null @@ -1,50 +0,0 @@ -To make the port compile on my system using gcc30-3.0.1_1, I had -to add the attached patches. Please see, if these are worth committing. - -thanks, ---Alex. - ---- basics/geometry.h Sat Dec 23 14:10:00 2000 -+++ basics/geometry.h Wed Oct 24 18:52:42 2001 -@@ -16,7 +16,7 @@ - #define Geometrie_h - #ifndef Commun_h - #include "common.h" -- #endif Commun_h -+ #endif // Commun_h - // ------------------------------------------------------------------------------------------------ - - // Includes ---- ole/oleprops.h Sat Dec 23 14:12:08 2000 -+++ ole/oleprops.h Wed Oct 24 18:49:11 2001 -@@ -88,7 +88,7 @@ - - class OLEPropertySection : public PToolkitObject { - -- friend OLEPropertySet; -+ friend class OLEPropertySet; - - public: - // Use this constrctor when reading a section ---- ole/oleprop.h Sat Dec 23 14:12:08 2000 -+++ ole/oleprop.h Wed Oct 24 18:47:05 2001 -@@ -80,7 +80,7 @@ - - class OLEProperty : public PToolkitObject { - -- friend OLEPropertySection; -+ friend class OLEPropertySection; - - public: - OLEProperty (OLEPropertySet* parentPropSet, ---- ri_image/cp32to24.h Sat Dec 23 14:15:34 2000 -+++ ri_image/cp32to24.h Wed Oct 24 18:09:04 2001 -@@ -16,7 +16,7 @@ - #define Compresseur32Vers24_h - #ifndef Commun_h - #include "common.h" -- #endif Commun_h -+ #endif // Commun_h - // ------------------------------------------------------------------------------------------------ - - // Includes |