]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Thu, 8 Sep 2011 16:44:06 +0000 (16:44 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Thu, 8 Sep 2011 16:44:06 +0000 (16:44 +0000)
MagickCore/Magick-config [deleted file]
MagickCore/Magick-config.1 [deleted file]
MagickCore/version.h
MagickWand/Wand-config [deleted file]
MagickWand/Wand-config.1 [deleted file]
config/configure.xml
configure
configure.ac

diff --git a/MagickCore/Magick-config b/MagickCore/Magick-config
deleted file mode 100755 (executable)
index ea8b4c9..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/bin/sh
-#
-# Configure options script for re-calling MagickCore compilation options
-# required to use the MagickCore library.
-#
-
-prefix=/usr/local
-exec_prefix=${prefix}
-libdir=${exec_prefix}/lib
-includedir=${prefix}/include/ImageMagick
-
-usage="\
-Usage: Magick-config [--cflags] [--cppflags] [--exec-prefix] [--ldflags] [--libs] [--prefix] [--version]"
-
-if test $# -eq 0; then
-      echo "${usage}" 1>&2
-      echo "Example: gcc \`Magick-config --cflags --cppflags\` -o core core.c \`Magick-config --ldflags --libs\`" 1>&2
-      exit 1
-fi
-
-while test $# -gt 0; do
-  case "$1" in
-    -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
-    *) optarg= ;;
-  esac
-  case $1 in
-    --prefix=*)
-      prefix=$optarg
-      ;;
-    --prefix)
-      echo $prefix
-      ;;
-    --exec-prefix=*)
-      exec_prefix=$optarg
-      ;;
-    --exec-prefix)
-      echo $exec_prefix
-      ;;
-    --version)
-      echo '6.7.1 Q16 '
-      ;;
-    --cflags)
-      echo "-I${includedir} -fopenmp"
-      ;;
-    --cxxflags)
-      echo '-g -O2 -pthread'
-      ;;
-    --cppflags)
-      echo '-I/usr/local/include/ImageMagick'
-      ;;
-    --ldflags)
-      echo '-L/usr/local/lib '
-      ;;
-    --libs)
-      echo "-L${libdir} -lMagickCore -llcms2 -ltiff -lfreetype -ljasper -ljpeg -lpng -lfontconfig -lXext -lXt -lSM -lICE -lX11 -llzma -lbz2 -lxml2 -lgvc -lgraph -lcdt -lz -lm -lgomp -lpthread -lltdl"
-      ;;
-    *)
-      echo "${usage}" 1>&2
-      exit 1
-      ;;
-  esac
-  shift
-done
diff --git a/MagickCore/Magick-config.1 b/MagickCore/Magick-config.1
deleted file mode 100644 (file)
index 5c2bc2a..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-.ad l
-.nh
-.TH Magick-Config 1 "2 May 2002" "ImageMagick"
-.SH NAME
-Magick-config \- get information about the installed version of ImageMagick
-.SH SYNOPSIS
-.B Magick-config 
-.B [--cflags]
-.B [--cppflags]
-.B [--exec-prefix]
-.B [--ldflags]
-.B [--libs]
-.B [--prefix]
-.B [--version]
-.SH DESCRIPTION
-.B Magick-config
-prints the compiler and linker flags required to compile and link programs
-that use the
-.BR ImageMagick
-Application Programmer Interface.
-.SH EXAMPLES
-To print the version of the installed distribution of
-.BR ImageMagick ,
-use:
-
-.nf
-  Magick-config \-\-version
-.fi
-  
-To compile a program that calls the 
-.BR ImageMagick
-Application Programmer Interface, use:
-
-.nf
-  cc `Magick-config \-\-cflags \-\-cppflags \-\-ldflags \-\-libs` program.c
-.fi
-
-.SH OPTIONS
-.TP
-.B \-\-cflags
-Print the compiler flags that were used to compile 
-.BR libMagick .
-.TP
-.B \-\-cppflags
-Print the preprocessor flags that are needed to find the
-.B ImageMagick
-C include files and defines to ensure that the ImageMagick data structures match between
-your program and the installed libraries.
-.TP
-.B \-\-exec-prefix
-Print the directory under which target specific binaries and executables are installed.
-.TP
-.B \-\-ldflags
-Print the linker flags that are needed to link with the
-.B ImageMagick
-library.
-.TP
-.B \-\-libs
-Print the linker flags that are needed to link a program with
-.BR libMagick .
-.TP
-.B \-\-version
-Print the version of the
-.B ImageMagick
-distribution to standard output.
-.SH LICENSE
-See http://www.imagemagick.org/script/license.php.
-.SH AUTHORS
-John Cristy, ImageMagick Studio LLC
index 8dfbcc833ff3912aaa6e9bf8db42f34aa8a0deb1..218e4043427f7063de22ca0dcc55572965bb878c 100644 (file)
@@ -27,14 +27,14 @@ extern "C" {
 */
 #define MagickPackageName "ImageMagick"
 #define MagickCopyright  "Copyright (C) 1999-2011 ImageMagick Studio LLC"
-#define MagickSVNRevision  "5219"
+#define MagickSVNRevision  "5221"
 #define MagickLibVersion  0x700
 #define MagickLibVersionText  "7.0.0"
 #define MagickLibVersionNumber  5,0,0
 #define MagickLibAddendum  "-0"
 #define MagickLibInterface  5
 #define MagickLibMinInterface  5
-#define MagickReleaseDate  "2011-09-07"
+#define MagickReleaseDate  "2011-09-08"
 #define MagickChangeDate   "20110801"
 #define MagickAuthoritativeURL  "http://www.imagemagick.org"
 #if defined(MAGICKCORE_OPENMP_SUPPORT)
diff --git a/MagickWand/Wand-config b/MagickWand/Wand-config
deleted file mode 100755 (executable)
index cd24d7f..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/bin/sh
-#
-# Configure options script for re-calling MagickWand compilation options
-# required to use the MagickWand library.
-#
-
-prefix=/usr/local
-exec_prefix=${prefix}
-libdir=${exec_prefix}/lib
-includedir=${prefix}/include/ImageMagick
-
-usage="\
-Usage: Wand-config [--cflags] [--cppflags] [--exec-prefix] [--ldflags] [--libs] [--prefix] [--version]"
-
-if test $# -eq 0; then
-      echo "${usage}" 1>&2
-      echo "Example: gcc \`Wand-config --cflags --cppflags\` -o wand wand.c \`Wand-config --ldflags --libs\`" 1>&2
-      exit 1
-fi
-
-while test $# -gt 0; do
-  case "$1" in
-    -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
-    *) optarg= ;;
-  esac
-  case $1 in
-    --prefix=*)
-      prefix=$optarg
-      ;;
-    --prefix)
-      echo $prefix
-      ;;
-    --exec-prefix=*)
-      exec_prefix=$optarg
-      ;;
-    --exec-prefix)
-      echo $exec_prefix
-      ;;
-    --version)
-      echo '6.7.1 Q16 '
-      ;;
-    --cflags)
-      echo "-I${includedir} -fopenmp"
-      ;;
-    --cxxflags)
-      echo '-g -O2 -pthread'
-      ;;
-    --cppflags)
-      echo '-I/usr/local/include/ImageMagick'
-      ;;
-    --ldflags)
-      echo '-L/usr/local/lib '
-      ;;
-    --libs)
-      echo "-L${libdir} -lMagickWand -lMagickCore -llcms2 -ltiff -lfreetype -ljasper -ljpeg -lpng -lfontconfig -lXext -lXt -lSM -lICE -lX11 -llzma -lbz2 -lxml2 -lgvc -lgraph -lcdt -lz -lm -lgomp -lpthread -lltdl"
-      ;;
-    *)
-      echo "${usage}" 1>&2
-      exit 1
-      ;;
-  esac
-  shift
-done
-
diff --git a/MagickWand/Wand-config.1 b/MagickWand/Wand-config.1
deleted file mode 100644 (file)
index e3213ce..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-.ad l
-.nh
-.TH Wand-Config 1 "2 May 2002" "Wand"
-.SH NAME
-Wand-config \- get information about the installed version of the Magick Wand
-.SH SYNOPSIS
-.B Wand-config 
-.B [--cflags]
-.B [--cppflags]
-.B [--exec-prefix]
-.B [--ldflags]
-.B [--libs]
-.B [--prefix]
-.B [--version]
-.SH DESCRIPTION
-.B Wand-config
-prints the compiler and linker flags required to compile and link programs
-that use the
-.BR Wand
-Application Programmer Interface.
-.SH EXAMPLES
-To print the version of the installed distribution of
-.BR Wand ,
-use:
-
-.nf
-  Wand-config \-\-version
-.fi
-  
-To compile a program that calls the 
-.BR Wand
-Application Programmer Interface, use:
-
-.nf
-  cc `Wand-config \-\-cflags \-\-cppflags \-\-ldflags \-\-libs` program.c
-.fi
-
-.SH OPTIONS
-.TP
-.B \-\-cflags
-Print the compiler flags that were used to compile 
-.BR libWand .
-.TP
-.B \-\-cppflags
-Print the preprocessor flags that are needed to find the
-.B Wand
-C include files and defines to ensure that the Wand data structures match between
-your program and the installed libraries.
-.TP
-.B \-\-exec-prefix
-Print the directory under which target specific binaries and executables are installed.
-.TP
-.B \-\-ldflags
-Print the linker flags that are needed to link with the
-.B Wand
-library.
-.TP
-.B \-\-libs
-Print the linker flags that are needed to link a program with
-.BR libWand .
-.TP
-.B \-\-version
-Print the version of the
-.B Wand
-distribution to standard output.
-.SH COPYRIGHT
-See http://www.imagemagick.org/script/license.php
-.SH AUTHORS
-John Cristy, ImageMagick Studio LLC
index c378dc8121a50f0a35543926689bc978773fb798..ccf7ac1532dc6522997b595b47a170907025d4da 100644 (file)
@@ -10,8 +10,8 @@
   <configure name="VERSION" value="7.0.0"/>
   <configure name="LIB_VERSION" value="0x700"/>
   <configure name="LIB_VERSION_NUMBER" value="7,0,0,0"/>
-  <configure name="SVN_REVISION" value="5219" />
-  <configure name="RELEASE_DATE" value="2011-09-07"/>
+  <configure name="SVN_REVISION" value="5221" />
+  <configure name="RELEASE_DATE" value="2011-09-08"/>
   <configure name="CONFIGURE" value="./configure "/>
   <configure name="PREFIX" value="/usr/local"/>
   <configure name="EXEC-PREFIX" value="/usr/local"/>
index ace020276015356e4c71700ec63a6de8ab470bd2..dd311a5e2d86a65caa89a11fb29308b298d1de4c 100755 (executable)
--- a/configure
+++ b/configure
@@ -3583,7 +3583,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=5219
+MAGICK_SVN_REVISION=5221
 
 
 
@@ -34543,12 +34543,8 @@ ac_config_commands="$ac_config_commands default"
 
 ac_config_commands="$ac_config_commands MagickCore-config.in"
 
-ac_config_commands="$ac_config_commands Magick-config.in"
-
 ac_config_commands="$ac_config_commands MagickWand-config.in"
 
-ac_config_commands="$ac_config_commands Wand-config.in"
-
 ac_config_commands="$ac_config_commands Magick++-config.in"
 
 ac_config_commands="$ac_config_commands PerlMagick/check.sh.in"
@@ -35915,9 +35911,7 @@ do
     "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
     "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
     "MagickCore-config.in") CONFIG_COMMANDS="$CONFIG_COMMANDS MagickCore-config.in" ;;
-    "Magick-config.in") CONFIG_COMMANDS="$CONFIG_COMMANDS Magick-config.in" ;;
     "MagickWand-config.in") CONFIG_COMMANDS="$CONFIG_COMMANDS MagickWand-config.in" ;;
-    "Wand-config.in") CONFIG_COMMANDS="$CONFIG_COMMANDS Wand-config.in" ;;
     "Magick++-config.in") CONFIG_COMMANDS="$CONFIG_COMMANDS Magick++-config.in" ;;
     "PerlMagick/check.sh.in") CONFIG_COMMANDS="$CONFIG_COMMANDS PerlMagick/check.sh.in" ;;
 
@@ -37506,9 +37500,7 @@ _LT_EOF
 
  ;;
     "MagickCore-config.in":C) chmod +x MagickCore/MagickCore-config ;;
-    "Magick-config.in":C) chmod +x MagickCore/Magick-config ;;
     "MagickWand-config.in":C) chmod +x MagickWand/MagickWand-config ;;
-    "Wand-config.in":C) chmod +x MagickWand/Wand-config ;;
     "Magick++-config.in":C) chmod +x Magick++/bin/Magick++-config ;;
     "PerlMagick/check.sh.in":C) chmod +x PerlMagick/check.sh ;;
 
index 61566c83973d8ea68f93314022aa20d5e560ada3..a85d5afcbb327edb5fb8724c7bc3894acecb3f72 100755 (executable)
@@ -3623,9 +3623,7 @@ AC_SUBST(MAGICK_FEATURES)
 # Set configured scripts to executable.
 AC_CONFIG_COMMANDS([default],[],[])
 AC_CONFIG_COMMANDS([MagickCore-config.in],[chmod +x MagickCore/MagickCore-config])
-AC_CONFIG_COMMANDS([Magick-config.in],[chmod +x MagickCore/Magick-config])
 AC_CONFIG_COMMANDS([MagickWand-config.in],[chmod +x MagickWand/MagickWand-config])
-AC_CONFIG_COMMANDS([Wand-config.in],[chmod +x MagickWand/Wand-config])
 AC_CONFIG_COMMANDS([Magick++-config.in],[chmod +x Magick++/bin/Magick++-config])
 AC_CONFIG_COMMANDS([PerlMagick/check.sh.in],[chmod +x PerlMagick/check.sh])