aboutsummaryrefslogtreecommitdiff
path: root/graphics/ImageMagick/files
diff options
context:
space:
mode:
authorMikhail Teterin <mi@FreeBSD.org>2007-11-07 05:46:29 +0000
committerMikhail Teterin <mi@FreeBSD.org>2007-11-07 05:46:29 +0000
commita439f82661753ee26fd74f5f9a2c1d0123e6894b (patch)
tree37fff9b604b283856ae7d88479a32ddb28b4e610 /graphics/ImageMagick/files
parent9e6b25f9c6482b52a8734384e7b2647fcc48c546 (diff)
downloadports-a439f82661753ee26fd74f5f9a2c1d0123e6894b.tar.gz
ports-a439f82661753ee26fd74f5f9a2c1d0123e6894b.zip
Notes
Diffstat (limited to 'graphics/ImageMagick/files')
-rw-r--r--graphics/ImageMagick/files/patch-leak12
-rw-r--r--graphics/ImageMagick/files/patch-module-path31
-rw-r--r--graphics/ImageMagick/files/patch-test-filter21
3 files changed, 0 insertions, 64 deletions
diff --git a/graphics/ImageMagick/files/patch-leak b/graphics/ImageMagick/files/patch-leak
deleted file mode 100644
index 7685cae33c4b..000000000000
--- a/graphics/ImageMagick/files/patch-leak
+++ /dev/null
@@ -1,12 +0,0 @@
-This should be fixed in 6.3.6-0
-
-http://www.imagemagick.org/discourse-server/viewtopic.php?f=4&t=9767
-
---- magick/string.c 2007-09-09 21:20:56.000000000 -0400
-+++ magick/string.c 2007-09-25 14:51:17.000000000 -0400
-@@ -219,5 +219,4 @@
- return(*destination);
- }
-- *destination=(char *) NULL;
- length=strlen(source);
- if (~length < MaxTextExtent)
diff --git a/graphics/ImageMagick/files/patch-module-path b/graphics/ImageMagick/files/patch-module-path
deleted file mode 100644
index 65082dc41a7e..000000000000
--- a/graphics/ImageMagick/files/patch-module-path
+++ /dev/null
@@ -1,31 +0,0 @@
-Modify module-searching to only check the compiled-in location,
-if the environment variables don't provide an override. The stock
-code checks the compiled-in location if a particular module can't
-be found at the environment-specified directory, which may lead
-to wrong binaries being loaded, etc.
-
- -mi
-
---- magick/module.c Sat Sep 8 16:44:05 2007
-+++ magick/module.c Thu Oct 4 23:30:26 2007
-@@ -589,4 +589,6 @@
- "Searching for coder module file \"%s\" ...",filename);
- module_path=GetEnvironmentValue("MAGICK_CODER_MODULE_PATH");
-+ if (module_path == NULL)
-+ module_path = MagickCoderModulesPath;
- break;
- }
-@@ -596,4 +598,6 @@
- "Searching for filter module file \"%s\" ...",filename);
- module_path=GetEnvironmentValue("MAGICK_CODER_FILTER_PATH");
-+ if (module_path == NULL)
-+ module_path = MagickFilterModulesPath;
- break;
- }
-@@ -624,5 +628,5 @@
- module_path=DestroyString(module_path);
- }
--#if defined(UseInstalledMagick)
-+#if defined(UseInstalledMagick) && 0
- #if defined(MagickCoderModulesPath)
- {
diff --git a/graphics/ImageMagick/files/patch-test-filter b/graphics/ImageMagick/files/patch-test-filter
deleted file mode 100644
index 1027885671ef..000000000000
--- a/graphics/ImageMagick/files/patch-test-filter
+++ /dev/null
@@ -1,21 +0,0 @@
-Reduce sensitivity of the maximum errors. ImageMagick insists, these can
-vary between platforms:
-
-http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9766
-
---- PerlMagick/t/filter.t 2007-09-21 10:42:06.000000000 -0400
-+++ PerlMagick/t/filter.t 2007-09-25 14:55:22.000000000 -0400
-@@ -101,5 +101,5 @@
- ++$test;
-
--testFilterCompare('input.miff', q//, 'reference/filter/GaussianBlur.miff', 'GaussianBlur', q/'0.0x1.5'/, 0.02, 0.02);
-+testFilterCompare('input.miff', q//, 'reference/filter/GaussianBlur.miff', 'GaussianBlur', q/'0.0x1.5'/, 0.02, 0.2);
- ++$test;
-
-@@ -122,5 +122,5 @@
- ++$test;
-
--testFilterCompare('input.miff', q//, 'reference/filter/Modulate.miff', 'Modulate', q/brightness=>110,saturation=>110,hue=>110/, 0.05, 0.05);
-+testFilterCompare('input.miff', q//, 'reference/filter/Modulate.miff', 'Modulate', q/brightness=>110,saturation=>110,hue=>110/, 0.05, 0.4);
- ++$test;
-