From: cristy Date: Sun, 23 Dec 2012 00:35:19 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~4540 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f7a61361f38ef4d3eaae0c74b9964a57aee813a;p=imagemagick --- diff --git a/MagickCore/version.c b/MagickCore/version.c index f01e7e04c..6adb1cd61 100644 --- a/MagickCore/version.c +++ b/MagickCore/version.c @@ -287,3 +287,36 @@ MagickExport const char *GetMagickVersion(size_t *version) *version=MagickLibVersion; return(MagickVersion); } + +/* +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% % +% % +% L i s t M a g i c k V e r s i o n % +% % +% % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% ListMagickVersion() identifies the ImageMagick version by printing its +% attributes to the file. Attributes include the copyright, features, and +% delegates. +% +% The format of the ListMagickVersion method is: +% +% void ListMagickVersion(FILE *file) +% +% A description of each parameter follows: +% +% o file: the file, typically stdout. +% +*/ +MagickExport void ListMagickVersion(FILE *file) +{ + (void) FormatLocaleFile(file,"Version: %s\n", + GetMagickVersion((size_t *) NULL)); + (void) FormatLocaleFile(file,"Copyright: %s\n",GetMagickCopyright()); + (void) FormatLocaleFile(file,"Features: %s\n",GetMagickFeatures()); + (void) FormatLocaleFile(file,"Delegates: %s\n\n",GetMagickDelegates()); +} diff --git a/MagickCore/version.h b/MagickCore/version.h index 5a7dfb598..b35ec613d 100644 --- a/MagickCore/version.h +++ b/MagickCore/version.h @@ -27,7 +27,7 @@ extern "C" { */ #define MagickPackageName "ImageMagick" #define MagickCopyright "Copyright (C) 1999-2013 ImageMagick Studio LLC" -#define MagickSVNRevision "10354M" +#define MagickSVNRevision "10354:10361M" #define MagickLibVersion 0x700 #define MagickLibVersionText "7.0.0" #define MagickLibVersionNumber 8,0,0 @@ -73,6 +73,9 @@ extern MagickExport const char *GetMagickReleaseDate(void), *GetMagickVersion(size_t *); +extern MagickExport void + ListMagickVersion(FILE *); + #if defined(__cplusplus) || defined(c_plusplus) } #endif diff --git a/MagickCore/version.h.in b/MagickCore/version.h.in index 1ad743b4b..a715d8580 100644 --- a/MagickCore/version.h.in +++ b/MagickCore/version.h.in @@ -73,6 +73,9 @@ extern MagickExport const char *GetMagickReleaseDate(void), *GetMagickVersion(size_t *); +extern MagickExport void + ListMagickVersion(FILE *); + #if defined(__cplusplus) || defined(c_plusplus) } #endif diff --git a/MagickWand/animate.c b/MagickWand/animate.c index 9899cf1ed..750fd71a6 100644 --- a/MagickWand/animate.c +++ b/MagickWand/animate.c @@ -188,10 +188,7 @@ static MagickBooleanType AnimateUsage(void) (char *) NULL }; - (void) printf("Version: %s\n",GetMagickVersion((size_t *) NULL)); - (void) printf("Copyright: %s\n",GetMagickCopyright()); - (void) printf("Features: %s\n\n",GetMagickFeatures()); - (void) printf("Delegates: %s\n\n",GetMagickDelegates()); + ListMagickVersion(stdout); (void) printf("Usage: %s [options ...] file [ [options ...] file ...]\n", GetClientName()); (void) printf("\nImage Settings:\n"); @@ -315,12 +312,7 @@ WandExport MagickBooleanType AnimateImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); return(MagickFalse); } } @@ -1371,12 +1363,7 @@ WandExport MagickBooleanType AnimateImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); break; } if (LocaleCompare("virtual-pixel",option+1) == 0) diff --git a/MagickWand/compare.c b/MagickWand/compare.c index 464d2dcb9..2c5813296 100644 --- a/MagickWand/compare.c +++ b/MagickWand/compare.c @@ -148,10 +148,7 @@ static MagickBooleanType CompareUsage(void) (char *) NULL }; - (void) printf("Version: %s\n",GetMagickVersion((size_t *) NULL)); - (void) printf("Copyright: %s\n",GetMagickCopyright()); - (void) printf("Features: %s\n\n",GetMagickFeatures()); - (void) printf("Delegates: %s\n\n",GetMagickDelegates()); + ListMagickVersion(stdout); (void) printf("Usage: %s [options ...] image reconstruct difference\n", GetClientName()); (void) printf("\nImage Settings:\n"); @@ -260,12 +257,7 @@ WandExport MagickBooleanType CompareImagesCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); return(MagickFalse); } } @@ -883,12 +875,7 @@ WandExport MagickBooleanType CompareImagesCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); break; } if (LocaleCompare("virtual-pixel",option+1) == 0) diff --git a/MagickWand/composite.c b/MagickWand/composite.c index f9a264734..01560cb55 100644 --- a/MagickWand/composite.c +++ b/MagickWand/composite.c @@ -337,10 +337,7 @@ static MagickBooleanType CompositeUsage(void) }; - (void) printf("Version: %s\n",GetMagickVersion((size_t *) NULL)); - (void) printf("Copyright: %s\n",GetMagickCopyright()); - (void) printf("Features: %s\n\n",GetMagickFeatures()); - (void) printf("Delegates: %s\n\n",GetMagickDelegates()); + ListMagickVersion(stdout); (void) printf("Usage: %s [options ...] image [options ...] composite\n" " [ [options ...] mask ] [options ...] composite\n", GetClientName()); @@ -457,12 +454,7 @@ WandExport MagickBooleanType CompositeImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); return(MagickFalse); } } @@ -1541,12 +1533,7 @@ WandExport MagickBooleanType CompositeImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); break; } if (LocaleCompare("virtual-pixel",option+1) == 0) diff --git a/MagickWand/conjure.c b/MagickWand/conjure.c index 25b3e4858..79b8e0ec8 100644 --- a/MagickWand/conjure.c +++ b/MagickWand/conjure.c @@ -112,10 +112,7 @@ static MagickBooleanType ConjureUsage(void) (char *) NULL }; - (void) printf("Version: %s\n",GetMagickVersion((size_t *) NULL)); - (void) printf("Copyright: %s\n",GetMagickCopyright()); - (void) printf("Features: %s\n\n",GetMagickFeatures()); - (void) printf("Delegates: %s\n\n",GetMagickDelegates()); + ListMagickVersion(stdout); (void) printf("Usage: %s [options ...] file [ [options ...] file ...]\n", GetClientName()); (void) printf("\nImage Settings:\n"); @@ -270,12 +267,7 @@ WandExport MagickBooleanType ConjureImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); return(MagickFalse); } /* diff --git a/MagickWand/convert.c b/MagickWand/convert.c index f379c3bc8..509ac8dba 100644 --- a/MagickWand/convert.c +++ b/MagickWand/convert.c @@ -445,10 +445,7 @@ static MagickBooleanType ConvertUsage(void) const char **p; - (void) printf("Version: %s\n",GetMagickVersion((size_t *) NULL)); - (void) printf("Copyright: %s\n",GetMagickCopyright()); - (void) printf("Features: %s\n\n",GetMagickFeatures()); - (void) printf("Delegates: %s\n\n",GetMagickDelegates()); + ListMagickVersion(stdout); (void) printf("Usage: %s [options ...] file [ [options ...] " "file ...] [options ...] file\n",GetClientName()); (void) printf("\nImage Settings:\n"); @@ -549,12 +546,7 @@ WandExport MagickBooleanType ConvertImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); return(MagickFalse); } } @@ -2952,12 +2944,7 @@ WandExport MagickBooleanType ConvertImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); break; } if (LocaleCompare("view",option+1) == 0) diff --git a/MagickWand/display.c b/MagickWand/display.c index c41b1a9f7..d4afd10ed 100644 --- a/MagickWand/display.c +++ b/MagickWand/display.c @@ -223,10 +223,7 @@ static MagickBooleanType DisplayUsage(void) (char *) NULL }; - (void) printf("Version: %s\n",GetMagickVersion((size_t *) NULL)); - (void) printf("Copyright: %s\n",GetMagickCopyright()); - (void) printf("Features: %s\n\n",GetMagickFeatures()); - (void) printf("Delegates: %s\n\n",GetMagickDelegates()); + ListMagickVersion(stdout); (void) printf("Usage: %s [options ...] file [ [options ...] file ...]\n", GetClientName()); (void) printf("\nImage Settings:\n"); @@ -362,12 +359,7 @@ WandExport MagickBooleanType DisplayImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); return(MagickFalse); } } @@ -1797,12 +1789,7 @@ WandExport MagickBooleanType DisplayImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); break; } if (LocaleCompare("visual",option+1) == 0) diff --git a/MagickWand/identify.c b/MagickWand/identify.c index 3c1e31ea3..ec7197211 100644 --- a/MagickWand/identify.c +++ b/MagickWand/identify.c @@ -153,10 +153,7 @@ static MagickBooleanType IdentifyUsage(void) (char *) NULL }; - (void) printf("Version: %s\n",GetMagickVersion((size_t *) NULL)); - (void) printf("Copyright: %s\n",GetMagickCopyright()); - (void) printf("Features: %s\n\n",GetMagickFeatures()); - (void) printf("Delegates: %s\n\n",GetMagickDelegates()); + ListMagickVersion(stdout); (void) printf("Usage: %s [options ...] file [ [options ...] " "file ... ]\n",GetClientName()); (void) printf("\nImage Settings:\n"); @@ -247,12 +244,7 @@ WandExport MagickBooleanType IdentifyImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); return(MagickFalse); } } diff --git a/MagickWand/import.c b/MagickWand/import.c index 1c5c9f87e..7f9ddf26e 100644 --- a/MagickWand/import.c +++ b/MagickWand/import.c @@ -184,10 +184,7 @@ static MagickBooleanType ImportUsage(void) (char *) NULL }; - (void) printf("Version: %s\n",GetMagickVersion((size_t *) NULL)); - (void) printf("Copyright: %s\n",GetMagickCopyright()); - (void) printf("Features: %s\n\n",GetMagickFeatures()); - (void) printf("Delegates: %s\n\n",GetMagickDelegates()); + ListMagickVersion(stdout); (void) printf("Usage: %s [options ...] [ file ]\n", GetClientName()); (void) printf("\nImage Settings:\n"); @@ -310,12 +307,7 @@ WandExport MagickBooleanType ImportImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); return(MagickFalse); } } @@ -1275,12 +1267,7 @@ WandExport MagickBooleanType ImportImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); break; } ThrowImportException(OptionError,"UnrecognizedOption",option); diff --git a/MagickWand/mogrify.c b/MagickWand/mogrify.c index 54aca9111..639c5db15 100644 --- a/MagickWand/mogrify.c +++ b/MagickWand/mogrify.c @@ -3552,10 +3552,7 @@ static MagickBooleanType MogrifyUsage(void) const char **p; - (void) printf("Version: %s\n",GetMagickVersion((size_t *) NULL)); - (void) printf("Copyright: %s\n",GetMagickCopyright()); - (void) printf("Features: %s\n\n",GetMagickFeatures()); - (void) printf("Delegates: %s\n\n",GetMagickDelegates()); + ListMagickVersion(stdout); (void) printf("Usage: %s [options ...] file [ [options ...] file ...]\n", GetClientName()); (void) printf("\nImage Settings:\n"); @@ -3660,14 +3657,7 @@ WandExport MagickBooleanType MogrifyImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n", - GetMagickFeatures()); - (void) FormatLocaleFile(stdout,"Delegates: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); return(MagickFalse); } } @@ -6025,12 +6015,7 @@ WandExport MagickBooleanType MogrifyImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); break; } if (LocaleCompare("view",option+1) == 0) diff --git a/MagickWand/montage.c b/MagickWand/montage.c index 09e999aef..f095b3243 100644 --- a/MagickWand/montage.c +++ b/MagickWand/montage.c @@ -221,10 +221,7 @@ static MagickBooleanType MontageUsage(void) (char *) NULL }; - (void) printf("Version: %s\n",GetMagickVersion((size_t *) NULL)); - (void) printf("Copyright: %s\n",GetMagickCopyright()); - (void) printf("Features: %s\n\n",GetMagickFeatures()); - (void) printf("Delegates: %s\n\n",GetMagickDelegates()); + ListMagickVersion(stdout); (void) printf("Usage: %s [options ...] file [ [options ...] file ...] file\n", GetClientName()); (void) printf("\nImage Settings:\n"); @@ -338,12 +335,7 @@ WandExport MagickBooleanType MontageImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); return(MagickFalse); } } @@ -1715,12 +1707,7 @@ WandExport MagickBooleanType MontageImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); break; } if (LocaleCompare("virtual-pixel",option+1) == 0) diff --git a/MagickWand/operation.c b/MagickWand/operation.c index c02145e68..5b40fc1f8 100644 --- a/MagickWand/operation.c +++ b/MagickWand/operation.c @@ -4703,12 +4703,7 @@ WandExport void CLINoImageOperator(MagickCLI *cli_wand, */ if (LocaleCompare("version",option+1) == 0) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n",GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n",GetMagickFeatures()); - (void) FormatLocaleFile(stdout,"Delegates: %s\n\n", - GetMagickDelegates()); + ListMagickVersion(stdout); break; } if (LocaleCompare("list",option+1) == 0) { diff --git a/MagickWand/stream.c b/MagickWand/stream.c index 2d4fef147..19669ecdc 100644 --- a/MagickWand/stream.c +++ b/MagickWand/stream.c @@ -137,10 +137,7 @@ static MagickBooleanType StreamUsage(void) (char *) NULL }; - (void) printf("Version: %s\n",GetMagickVersion((size_t *) NULL)); - (void) printf("Copyright: %s\n",GetMagickCopyright()); - (void) printf("Features: %s\n\n",GetMagickFeatures()); - (void) printf("Delegates: %s\n\n",GetMagickDelegates()); + ListMagickVersion(stdout); (void) printf("Usage: %s [options ...] input-image raw-image\n", GetClientName()); (void) printf("\nImage Settings:\n"); @@ -233,12 +230,7 @@ WandExport MagickBooleanType StreamImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); return(MagickFalse); } } @@ -723,12 +715,7 @@ WandExport MagickBooleanType StreamImageCommand(ImageInfo *image_info, if ((LocaleCompare("version",option+1) == 0) || (LocaleCompare("-version",option+1) == 0)) { - (void) FormatLocaleFile(stdout,"Version: %s\n", - GetMagickVersion((size_t *) NULL)); - (void) FormatLocaleFile(stdout,"Copyright: %s\n", - GetMagickCopyright()); - (void) FormatLocaleFile(stdout,"Features: %s\n\n", - GetMagickFeatures()); + ListMagickVersion(stdout); break; } if (LocaleCompare("virtual-pixel",option+1) == 0) diff --git a/configure b/configure index 82b00f65a..3a631d8d1 100755 --- a/configure +++ b/configure @@ -3649,7 +3649,7 @@ MAGICK_LIBRARY_CURRENT_MIN=`expr $MAGICK_LIBRARY_CURRENT - $MAGICK_LIBRARY_AGE` MAGICK_LIBRARY_VERSION_INFO=$MAGICK_LIBRARY_CURRENT:$MAGICK_LIBRARY_REVISION:$MAGICK_LIBRARY_AGE -MAGICK_SVN_REVISION=10354M +MAGICK_SVN_REVISION=10354:10361M