| 1 |
%define VER 6.5.4
|
| 2 |
%define Patchlevel 7
|
| 3 |
|
| 4 |
Name: ImageMagick
|
| 5 |
Version: %{VER}.%{Patchlevel}
|
| 6 |
Release: 3%{?dist}
|
| 7 |
Summary: An X application for displaying and manipulating images
|
| 8 |
Group: Applications/Multimedia
|
| 9 |
License: ImageMagick
|
| 10 |
Url: http://www.imagemagick.org/
|
| 11 |
Source0: ftp://ftp.ImageMagick.org/pub/%{name}/%{name}-%{VER}-%{Patchlevel}.tar.lzma
|
| 12 |
Patch1: ImageMagick-6.4.0-multilib.patch
|
| 13 |
|
| 14 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
| 15 |
BuildRequires: bzip2-devel, freetype-devel, libjpeg-devel, libpng-devel
|
| 16 |
BuildRequires: libtiff-devel, giflib-devel, zlib-devel, perl-devel
|
| 17 |
BuildRequires: ghostscript-devel, djvulibre-devel
|
| 18 |
BuildRequires: libwmf-devel, jasper-devel, libtool-ltdl-devel
|
| 19 |
BuildRequires: libX11-devel, libXext-devel, libXt-devel
|
| 20 |
BuildRequires: lcms-devel, libxml2-devel, librsvg2-devel
|
| 21 |
|
| 22 |
%description
|
| 23 |
ImageMagick is an image display and manipulation tool for the X
|
| 24 |
Window System. ImageMagick can read and write JPEG, TIFF, PNM, GIF,
|
| 25 |
and Photo CD image formats. It can resize, rotate, sharpen, color
|
| 26 |
reduce, or add special effects to an image, and when finished you can
|
| 27 |
either save the completed work in the original format or a different
|
| 28 |
one. ImageMagick also includes command line programs for creating
|
| 29 |
animated or transparent .gifs, creating composite images, creating
|
| 30 |
thumbnail images, and more.
|
| 31 |
|
| 32 |
ImageMagick is one of your choices if you need a program to manipulate
|
| 33 |
and display images. If you want to develop your own applications
|
| 34 |
which use ImageMagick code or APIs, you need to install
|
| 35 |
ImageMagick-devel as well.
|
| 36 |
|
| 37 |
|
| 38 |
%package devel
|
| 39 |
Summary: Library links and header files for ImageMagick app development
|
| 40 |
Group: Development/Libraries
|
| 41 |
Requires: %{name} = %{version}-%{release}
|
| 42 |
Requires: libX11-devel, libXext-devel, libXt-devel
|
| 43 |
Requires: ghostscript-devel
|
| 44 |
Requires: bzip2-devel
|
| 45 |
Requires: freetype-devel
|
| 46 |
Requires: libtiff-devel
|
| 47 |
Requires: libjpeg-devel
|
| 48 |
Requires: lcms-devel
|
| 49 |
Requires: jasper-devel
|
| 50 |
Requires: pkgconfig
|
| 51 |
|
| 52 |
%description devel
|
| 53 |
ImageMagick-devel contains the library links and header files you'll
|
| 54 |
need to develop ImageMagick applications. ImageMagick is an image
|
| 55 |
manipulation program.
|
| 56 |
|
| 57 |
If you want to create applications that will use ImageMagick code or
|
| 58 |
APIs, you need to install ImageMagick-devel as well as ImageMagick.
|
| 59 |
You do not need to install it if you just want to use ImageMagick,
|
| 60 |
however.
|
| 61 |
|
| 62 |
|
| 63 |
%package djvu
|
| 64 |
Summary: DjVu plugin for ImageMagick
|
| 65 |
Group: Applications/Multimedia
|
| 66 |
Requires: %{name} = %{version}-%{release}
|
| 67 |
|
| 68 |
%description djvu
|
| 69 |
This packages contains a plugin for ImageMagick which makes it possible to
|
| 70 |
save and load DjvU files from ImageMagick and libMagickCore using applications.
|
| 71 |
|
| 72 |
|
| 73 |
%package doc
|
| 74 |
Summary: ImageMagick html documentation
|
| 75 |
Group: Documentation
|
| 76 |
|
| 77 |
%description doc
|
| 78 |
ImageMagick documentation, this package contains usage (for the
|
| 79 |
commandline tools) and API (for the libraries) documentation in html format.
|
| 80 |
Note this documentation can also be found on the ImageMagick website:
|
| 81 |
http://www.imagemagick.org/
|
| 82 |
|
| 83 |
|
| 84 |
%package perl
|
| 85 |
Summary: ImageMagick perl bindings
|
| 86 |
Group: System Environment/Libraries
|
| 87 |
Requires: %{name} = %{version}-%{release}
|
| 88 |
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
| 89 |
|
| 90 |
%description perl
|
| 91 |
Perl bindings to ImageMagick.
|
| 92 |
|
| 93 |
Install ImageMagick-perl if you want to use any perl scripts that use
|
| 94 |
ImageMagick.
|
| 95 |
|
| 96 |
|
| 97 |
%package c++
|
| 98 |
Summary: ImageMagick Magick++ library (C++ bindings)
|
| 99 |
Group: System Environment/Libraries
|
| 100 |
Requires: %{name} = %{version}-%{release}
|
| 101 |
|
| 102 |
%description c++
|
| 103 |
This package contains the Magick++ library, a C++ binding to the ImageMagick
|
| 104 |
graphics manipulation library.
|
| 105 |
|
| 106 |
Install ImageMagick-c++ if you want to use any applications that use Magick++.
|
| 107 |
|
| 108 |
|
| 109 |
%package c++-devel
|
| 110 |
Summary: C++ bindings for the ImageMagick library
|
| 111 |
Group: Development/Libraries
|
| 112 |
Requires: %{name}-c++ = %{version}-%{release}
|
| 113 |
Requires: %{name}-devel = %{version}-%{release}
|
| 114 |
|
| 115 |
%description c++-devel
|
| 116 |
ImageMagick-devel contains the static libraries and header files you'll
|
| 117 |
need to develop ImageMagick applications using the Magick++ C++ bindings.
|
| 118 |
ImageMagick is an image manipulation program.
|
| 119 |
|
| 120 |
If you want to create applications that will use Magick++ code
|
| 121 |
or APIs, you'll need to install ImageMagick-c++-devel, ImageMagick-devel and
|
| 122 |
ImageMagick.
|
| 123 |
You don't need to install it if you just want to use ImageMagick, or if you
|
| 124 |
want to develop/compile applications using the ImageMagick C interface,
|
| 125 |
however.
|
| 126 |
|
| 127 |
|
| 128 |
%prep
|
| 129 |
%setup -q -n %{name}-%{VER}-%{Patchlevel}
|
| 130 |
%patch1 -p1 -b .multilib
|
| 131 |
sed -i 's/libltdl.la/libltdl.so/g' configure
|
| 132 |
iconv -f ISO-8859-1 -t UTF-8 README.txt > README.txt.tmp
|
| 133 |
touch -r README.txt README.txt.tmp
|
| 134 |
mv README.txt.tmp README.txt
|
| 135 |
# for %doc
|
| 136 |
mkdir Magick++/examples
|
| 137 |
cp -p Magick++/demo/*.cpp Magick++/demo/*.miff Magick++/examples
|
| 138 |
|
| 139 |
|
| 140 |
%build
|
| 141 |
%configure --enable-shared \
|
| 142 |
--disable-static \
|
| 143 |
--with-modules \
|
| 144 |
--with-perl \
|
| 145 |
--with-x \
|
| 146 |
--with-threads \
|
| 147 |
--with-magick_plus_plus \
|
| 148 |
--with-gslib \
|
| 149 |
--with-wmf \
|
| 150 |
--with-lcms \
|
| 151 |
--with-rsvg \
|
| 152 |
--with-xml \
|
| 153 |
--with-perl-options="INSTALLDIRS=vendor %{?perl_prefix} CC='%__cc -L$PWD/magick/.libs' LDDLFLAGS='-shared -L$PWD/magick/.libs'" \
|
| 154 |
--without-dps \
|
| 155 |
--without-included-ltdl --with-ltdl-include=%{_includedir} \
|
| 156 |
--with-ltdl-lib=%{_libdir}
|
| 157 |
# Disable rpath
|
| 158 |
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
| 159 |
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
| 160 |
# Do *NOT* use %%{?_smp_mflags}, this causes PerlMagick to be silently misbuild
|
| 161 |
make
|
| 162 |
|
| 163 |
|
| 164 |
%install
|
| 165 |
rm -rf $RPM_BUILD_ROOT
|
| 166 |
|
| 167 |
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
| 168 |
cp -a www/source $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{VER}
|
| 169 |
rm $RPM_BUILD_ROOT%{_libdir}/*.la
|
| 170 |
|
| 171 |
# fix weird perl Magick.so permissions
|
| 172 |
chmod 755 $RPM_BUILD_ROOT%{perl_vendorarch}/auto/Image/Magick/Magick.so
|
| 173 |
|
| 174 |
# perlmagick: fix perl path of demo files
|
| 175 |
%{__perl} -MExtUtils::MakeMaker -e 'MY->fixin(@ARGV)' PerlMagick/demo/*.pl
|
| 176 |
|
| 177 |
# perlmagick: cleanup various perl tempfiles from the build which get installed
|
| 178 |
find $RPM_BUILD_ROOT -name "*.bs" |xargs rm -f
|
| 179 |
find $RPM_BUILD_ROOT -name ".packlist" |xargs rm -f
|
| 180 |
find $RPM_BUILD_ROOT -name "perllocal.pod" |xargs rm -f
|
| 181 |
|
| 182 |
# perlmagick: build files list
|
| 183 |
echo "%defattr(-,root,root,-)" > perl-pkg-files
|
| 184 |
find $RPM_BUILD_ROOT/%{_libdir}/perl* -type f -print \
|
| 185 |
| sed "s@^$RPM_BUILD_ROOT@@g" > perl-pkg-files
|
| 186 |
find $RPM_BUILD_ROOT%{perl_vendorarch} -type d -print \
|
| 187 |
| sed "s@^$RPM_BUILD_ROOT@%dir @g" \
|
| 188 |
| grep -v '^%dir %{perl_vendorarch}$' \
|
| 189 |
| grep -v '/auto$' >> perl-pkg-files
|
| 190 |
if [ -z perl-pkg-files ] ; then
|
| 191 |
echo "ERROR: EMPTY FILE LIST"
|
| 192 |
exit -1
|
| 193 |
fi
|
| 194 |
|
| 195 |
# These don't belong here, we include them in %%doc
|
| 196 |
rm $RPM_BUILD_ROOT%{_datadir}/%{name}-%{VER}/{ChangeLog,LICENSE,NEWS.txt}
|
| 197 |
|
| 198 |
# fix multilib issues
|
| 199 |
%ifarch x86_64 s390x ia64 ppc64 alpha sparc64
|
| 200 |
%define wordsize 64
|
| 201 |
%else
|
| 202 |
%define wordsize 32
|
| 203 |
%endif
|
| 204 |
|
| 205 |
mv $RPM_BUILD_ROOT%{_includedir}/%{name}/magick/magick-config.h \
|
| 206 |
$RPM_BUILD_ROOT%{_includedir}/%{name}/magick/magick-config-%{wordsize}.h
|
| 207 |
|
| 208 |
cat >$RPM_BUILD_ROOT%{_includedir}/%{name}/magick/magick-config.h <<EOF
|
| 209 |
#ifndef IMAGEMAGICK_MULTILIB
|
| 210 |
#define IMAGEMAGICK_MULTILIB
|
| 211 |
|
| 212 |
#include <bits/wordsize.h>
|
| 213 |
|
| 214 |
#if __WORDSIZE == 32
|
| 215 |
# include "magick-config-32.h"
|
| 216 |
#elif __WORDSIZE == 64
|
| 217 |
# include "magick-config-64.h"
|
| 218 |
#else
|
| 219 |
# error "unexpected value for __WORDSIZE macro"
|
| 220 |
#endif
|
| 221 |
|
| 222 |
#endif
|
| 223 |
EOF
|
| 224 |
|
| 225 |
|
| 226 |
%clean
|
| 227 |
rm -rf $RPM_BUILD_ROOT
|
| 228 |
|
| 229 |
|
| 230 |
%post -p /sbin/ldconfig
|
| 231 |
|
| 232 |
%post c++ -p /sbin/ldconfig
|
| 233 |
|
| 234 |
%postun -p /sbin/ldconfig
|
| 235 |
|
| 236 |
%postun c++ -p /sbin/ldconfig
|
| 237 |
|
| 238 |
|
| 239 |
%files
|
| 240 |
%defattr(-,root,root,-)
|
| 241 |
%doc QuickStart.txt ChangeLog Platforms.txt
|
| 242 |
%doc README.txt LICENSE NOTICE AUTHORS.txt NEWS.txt
|
| 243 |
%{_libdir}/libMagickCore.so.*
|
| 244 |
%{_libdir}/libMagickWand.so.*
|
| 245 |
%{_bindir}/[a-z]*
|
| 246 |
%{_libdir}/%{name}-%{VER}
|
| 247 |
%{_datadir}/%{name}-%{VER}
|
| 248 |
%{_mandir}/man[145]/[a-z]*
|
| 249 |
%{_mandir}/man1/%{name}.*
|
| 250 |
%exclude %{_libdir}/%{name}-%{VER}/modules-Q16/coders/djvu.*
|
| 251 |
|
| 252 |
%files devel
|
| 253 |
%defattr(-,root,root,-)
|
| 254 |
%{_bindir}/MagickCore-config
|
| 255 |
%{_bindir}/Magick-config
|
| 256 |
%{_bindir}/MagickWand-config
|
| 257 |
%{_bindir}/Wand-config
|
| 258 |
%{_libdir}/libMagickCore.so
|
| 259 |
%{_libdir}/libMagickWand.so
|
| 260 |
%{_libdir}/pkgconfig/MagickCore.pc
|
| 261 |
%{_libdir}/pkgconfig/ImageMagick.pc
|
| 262 |
%{_libdir}/pkgconfig/MagickWand.pc
|
| 263 |
%{_libdir}/pkgconfig/Wand.pc
|
| 264 |
%dir %{_includedir}/%{name}
|
| 265 |
%{_includedir}/%{name}/magick
|
| 266 |
%{_includedir}/%{name}/wand
|
| 267 |
%{_mandir}/man1/Magick-config.*
|
| 268 |
%{_mandir}/man1/MagickCore-config.*
|
| 269 |
%{_mandir}/man1/Wand-config.*
|
| 270 |
%{_mandir}/man1/MagickWand-config.*
|
| 271 |
|
| 272 |
%files djvu
|
| 273 |
%defattr(-,root,root,-)
|
| 274 |
%{_libdir}/%{name}-%{VER}/modules-Q16/coders/djvu.*
|
| 275 |
|
| 276 |
%files doc
|
| 277 |
%defattr(-,root,root,-)
|
| 278 |
%doc %{_datadir}/doc/%{name}-%{VER}
|
| 279 |
|
| 280 |
%files c++
|
| 281 |
%defattr(-,root,root,-)
|
| 282 |
%doc Magick++/AUTHORS Magick++/ChangeLog Magick++/NEWS Magick++/README
|
| 283 |
%doc www/Magick++/COPYING
|
| 284 |
%{_libdir}/libMagick++.so.*
|
| 285 |
|
| 286 |
%files c++-devel
|
| 287 |
%defattr(-,root,root,-)
|
| 288 |
%doc Magick++/examples
|
| 289 |
%{_bindir}/Magick++-config
|
| 290 |
%{_includedir}/%{name}/Magick++
|
| 291 |
%{_includedir}/%{name}/Magick++.h
|
| 292 |
%{_libdir}/libMagick++.so
|
| 293 |
%{_libdir}/pkgconfig/Magick++.pc
|
| 294 |
%{_libdir}/pkgconfig/ImageMagick++.pc
|
| 295 |
%{_mandir}/man1/Magick++-config.*
|
| 296 |
|
| 297 |
%files perl -f perl-pkg-files
|
| 298 |
%defattr(-,root,root,-)
|
| 299 |
%{_mandir}/man3/*
|
| 300 |
%doc PerlMagick/demo/ PerlMagick/Changelog PerlMagick/README.txt
|
| 301 |
|
| 302 |
|
| 303 |
%changelog
|
| 304 |
* Mon Aug 3 2009 Pavel Alexeev <Pahan@Hubbitus.info> - 6.5.4.7-3
|
| 305 |
- Update to version 6.5.4-7
|
| 306 |
- Use lzma-compressed source tarball as sugested by Ville Skyttä (BZ#515319)
|
| 307 |
|
| 308 |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.5.3.7-2
|
| 309 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
| 310 |
|
| 311 |
* Mon Jun 15 2009 Hans de Goede <hdegoede@redhat.com> 6.5.3.7-1
|
| 312 |
- New upstream release 6.5.3-7
|
| 313 |
|
| 314 |
* Mon Apr 13 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 6.5.1.2-1
|
| 315 |
- update to 6.5.1-2
|
| 316 |
|
| 317 |
* Fri Mar 13 2009 Hans de Goede <hdegoede@redhat.com> 6.4.9.6-2
|
| 318 |
- Fix undefined warning in magick-type.h (#489453)
|
| 319 |
- Do not link PerlMagick against system ImageMagick, but against the just
|
| 320 |
build one
|
| 321 |
|
| 322 |
* Mon Mar 9 2009 Hans de Goede <hdegoede@redhat.com> 6.4.9.6-1
|
| 323 |
- New upstream release 6.4.9-6
|
| 324 |
|
| 325 |
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.4.5.5-9
|
| 326 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
| 327 |
|
| 328 |
* Fri Jan 30 2009 Hans de Goede <hdegoede@redhat.com> 6.4.5.5-8
|
| 329 |
- Remove (TM) from description as per new guidelines
|
| 330 |
|
| 331 |
* Sat Jan 17 2009 Rakesh Pandit <rakesh@fedoraproject.org> 6.4.5.5-7
|
| 332 |
- Corrected the wrong release and bumped
|
| 333 |
|
| 334 |
* Sat Jan 17 2009 Rakesh Pandit <rakesh@fedoraproject.org> 6.4.5.5-6
|
| 335 |
- Rebuild with new djvulibre
|
| 336 |
|
| 337 |
* Sat Dec 27 2008 Hans de Goede <hdegoede@redhat.com> 6.4.5.5-5
|
| 338 |
- Remove 2 included copies of the non Free artbrush font (rh 477399)
|
| 339 |
|
| 340 |
* Wed Dec 10 2008 Hans de Goede <hdegoede@redhat.com> 6.4.5.5-4
|
| 341 |
- Do not pass -jX to make when building, this breaks PerlMagick (rh 475554)
|
| 342 |
|
| 343 |
* Wed Nov 19 2008 Hans de Goede <hdegoede@redhat.com> 6.4.5.5-3
|
| 344 |
- Remove --without-windows-font-dir from configure args, specifying it
|
| 345 |
makes ImageMagick search for windows fonts in the "no/" dir (rh 472244)
|
| 346 |
|
| 347 |
* Fri Nov 14 2008 Hans de Goede <hdegoede@redhat.com> 6.4.5.5-2
|
| 348 |
- Enable djvu support, put the new djvu plugin into a separate -djvu
|
| 349 |
subpackage because of deps (rh 225897)
|
| 350 |
|
| 351 |
* Fri Nov 14 2008 Hans de Goede <hdegoede@redhat.com> 6.4.5.5-1
|
| 352 |
- New upstream release 6.4.5-5
|
| 353 |
- Various specfile fixes from merge review (rh 225897)
|
| 354 |
- Fix building with new libtool (rh 471468)
|
| 355 |
|
| 356 |
* Thu Nov 13 2008 Hans de Goede <hdegoede@redhat.com> 6.4.0.10-3
|
| 357 |
- Rebuild for new libtool (rh 471468)
|
| 358 |
|
| 359 |
* Sun Jul 27 2008 Hans de Goede <jwrdegoede@fedoraproject.org> 6.4.0.10-2
|
| 360 |
- Fix ownership of /usr/include/ImageMagick (bz 444647)
|
| 361 |
|
| 362 |
* Sat Apr 26 2008 Hans de Goede <jwrdegoede@fedoraproject.org> 6.4.0.10-1
|
| 363 |
- New upstream release 6.4.0.10
|
| 364 |
- This fixes conversion of 24 bpp windows icons (bz 440136)
|
| 365 |
- Don't reuse GError structs, that upsets glib2 (bz 325211)
|
| 366 |
- Use the system ltdl, not the included copy (bz 237475)
|
| 367 |
- Fix various multilib conflicts (bz 341561)
|
| 368 |
- Use xdg-open instead of htmlview (bz 388451)
|
| 369 |
- Some small specfile cleanups (utf-8 stuff & others) fixing rpmlint warnings
|
| 370 |
|
| 371 |
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 6.3.8.1-3
|
| 372 |
- Rebuild for perl 5.10 (again)
|
| 373 |
|
| 374 |
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 6.3.8.1-2
|
| 375 |
- Autorebuild for GCC 4.3
|
| 376 |
|
| 377 |
* Thu Jan 24 2008 Tom "spot" Callaway <tcallawa@redhat.com> 6.3.8.1-1
|
| 378 |
- update to 6.3.8.1
|
| 379 |
- rebuild for new perl
|
| 380 |
- fix license tag
|
| 381 |
- fix rpath issues
|
| 382 |
- add sparc64 to 64bit arch list
|
| 383 |
|
| 384 |
* Fri Sep 21 2007 Norm Murray <nmurray@redhat.com> 6.3.5.9-1.fc8
|
| 385 |
- rebase to 6.3.5.9
|
| 386 |
- fix build with missing open() arg
|
| 387 |
- add build require of jasper-devel, remove windows font dir
|
| 388 |
- update multilib patch
|
| 389 |
|
| 390 |
* Thu Apr 5 2007 Norm Murray <nmurray@redhat.com> 6.3.2.9-3.fc7
|
| 391 |
- heap overflows (#235075, CVE-2007-1797)
|
| 392 |
|
| 393 |
* Fri Mar 30 2007 Norm Murray <nmurray@redhat.com> 6.3.2.9-2.fc7
|
| 394 |
- perlmagick build fix (#231259)
|
| 395 |
|
| 396 |
* Fri Mar 2 2007 Norm Murray <nmurray@redhat.com> 6.3.2.9-1.fc7.0
|
| 397 |
- update to 6.3.2-9
|
| 398 |
|
| 399 |
* Wed Aug 23 2006 Matthias Clasen <mclasen@redhat.com> - 6.2.8.0-3.fc6
|
| 400 |
- fix several integer and buffer overflows (#202193, CVE-2006-3743)
|
| 401 |
- fix more integer overflows (#202771, CVE-2006-4144)
|
| 402 |
|
| 403 |
* Mon Jul 24 2006 Matthias Clasen <mclasen@redhat.com> - 6.2.8.0-2
|
| 404 |
- Add missing BRs
|
| 405 |
|
| 406 |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 6.2.8.0-1.1
|
| 407 |
- rebuild
|
| 408 |
|
| 409 |
* Fri Jun 9 2006 Matthias Clasen <mclasen@redhat.com> - 6.2.8-1
|
| 410 |
- Update to 6.2.8
|
| 411 |
|
| 412 |
* Fri Jun 2 2006 Matthias Clasen <mclasen@redhat.com> - 6.2.5.4-7
|
| 413 |
- Fix multilib issues
|
| 414 |
|
| 415 |
* Thu May 25 2006 Matthias Clasen <mclasen@redhat.com> - 6.2.5.4-6
|
| 416 |
- Fix a heap overflow CVE-2006-2440 (#192279)
|
| 417 |
- Include required .la files
|
| 418 |
|
| 419 |
* Mon Mar 20 2006 Matthias Clasen <mclasen@redhat.com> - 6.2.5.4-5
|
| 420 |
- Don't ship .la and .a files (#185237)
|
| 421 |
|
| 422 |
* Mon Feb 13 2006 Jesse Keating <jkeating@redhat.com> - 6.2.5.4-4.2.1
|
| 423 |
- rebump for build order issues during double-long bump
|
| 424 |
|
| 425 |
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 6.2.5.4-4.2
|
| 426 |
- bump again for double-long bug on ppc(64)
|
| 427 |
|
| 428 |
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 6.2.5.4-4.1
|
| 429 |
- rebuilt for new gcc4.1 snapshot and glibc changes
|
| 430 |
|
| 431 |
* Mon Jan 30 2006 Matthias Clasen <mclasen@redhat.com> 6.2.5.4-4
|
| 432 |
- Make -devel require lcms-devel (#179200)
|
| 433 |
|
| 434 |
* Mon Jan 23 2006 Matthias Clasen <mclasen@redhat.com> 6.2.5.4-3
|
| 435 |
- Fix linking of DSOs. (#176695)
|
| 436 |
|
| 437 |
* Mon Jan 9 2006 Matthias Clasen <mclasen@redhat.com> 6.2.5.4-2
|
| 438 |
- fix a format string vulnerability (CVE-2006-0082)
|
| 439 |
|
| 440 |
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
| 441 |
- rebuilt
|
| 442 |
|
| 443 |
* Tue Nov 1 2005 Matthias Clasen <mclasen@redhat.com> 6.2.5.4-1
|
| 444 |
- Switch requires to modular X
|
| 445 |
- Update to 6.2.5
|
| 446 |
|
| 447 |
* Tue Sep 20 2005 Matthias Clasen <mclasen@redhat.com> 6.2.4.6-1
|
| 448 |
- Update to 6.2.4-6
|
| 449 |
- Drop upstreamed patches
|
| 450 |
- Disable DPS (#158984)
|
| 451 |
- Add missing requires (#165931)
|
| 452 |
|
| 453 |
* Thu Jun 9 2005 Tim Waugh <twaugh@redhat.com> 6.2.2.0-4
|
| 454 |
- Rebuilt for fixed ghostscript.
|
| 455 |
|
| 456 |
* Mon Jun 6 2005 Tim Waugh <twaugh@redhat.com> 6.2.2.0-3
|
| 457 |
- Rebuilt for new ghostscript.
|
| 458 |
|
| 459 |
* Thu May 26 2005 <mclasen@redhat.com> - 6.2.2.0-2
|
| 460 |
- fix a denial of service in the xwd coder (#158791, CAN-2005-1739)
|
| 461 |
|
| 462 |
* Tue Apr 26 2005 Matthias Clasen <mclasen@redhat.com> - 6.2.2.0-1
|
| 463 |
- Update to 6.2.2 to fix a heap corruption issue
|
| 464 |
in the pnm coder.
|
| 465 |
|
| 466 |
* Mon Apr 25 2005 Matthias Clasen <mclasen@redhat.com> - 6.2.1.7-4
|
| 467 |
- .la files for modules are needed, actually
|
| 468 |
|
| 469 |
* Mon Apr 25 2005 Matthias Clasen <mclasen@redhat.com> - 6.2.1.7-3
|
| 470 |
- Really remove .la files for modules
|
| 471 |
|
| 472 |
* Mon Apr 25 2005 <mclasen@redhat.com> - 6.2.1.7-1
|
| 473 |
- Update to 6.2.1
|
| 474 |
- Include multiple improvements and bugfixes
|
| 475 |
by Rex Dieter et al (111961, 145466, 151196, 149970,
|
| 476 |
146518, 113951, 145449, 144977, 144570, 139298)
|
| 477 |
|
| 478 |
* Sun Apr 24 2005 <mclasen@redhat.com> - 6.2.0.7-3
|
| 479 |
- Make zip compression work for tiff (#154045)
|
| 480 |
|
| 481 |
* Wed Mar 16 2005 <mclasen@redhat.com> - 6.2.0.7-2
|
| 482 |
- Update to 6.2.0 to fix a number of security issues:
|
| 483 |
#145112 (CAN-2005-05), #151265 (CAN-2005-0397)
|
| 484 |
- Drop a lot of upstreamed patches
|
| 485 |
|
| 486 |
* Wed Mar 2 2005 Matthias Clasen <mclasen@redhat.com> 6.0.7.1-7
|
| 487 |
- rebuild with gcc4
|
| 488 |
- remove an extraneous vsnprintf prototype which causes
|
| 489 |
gcc4 to complain
|
| 490 |
|
| 491 |
* Mon Oct 11 2004 Tim Waugh <twaugh@redhat.com> 6.0.7.1-4
|
| 492 |
- The devel subpackage requires XFree86-devel (bug #126509).
|
| 493 |
- Fixed build requirements (bug #120776). From Robert Scheck.
|
| 494 |
|
| 495 |
* Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 6.0.7.1-3
|
| 496 |
- move *.mgk files (#132007, #131708, #132397)
|
| 497 |
|
| 498 |
* Sun Sep 12 2004 Karsten Hopp <karsten@redhat.de> 6.0.7.1-1
|
| 499 |
- update to 6.0.7 Patchlevel 1, fixes #132106
|
| 500 |
|
| 501 |
* Sat Sep 4 2004 Bill Nottingham <notting@redhat.com> 6.0.6.2-2
|
| 502 |
- move libWand out of -devel, fix requirements (#131767)
|
| 503 |
|
| 504 |
* Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 6.0.6.2-1
|
| 505 |
- update to latest stable version
|
| 506 |
- get rid of obsolete patches
|
| 507 |
- fix remaining patches
|
| 508 |
|
| 509 |
* Sat Jun 19 2004 Alan Cox <alan@redhat.com>
|
| 510 |
- Easyfixes (#124791) - fixed missing dependancy between -devel and
|
| 511 |
libexif-devel
|
| 512 |
|
| 513 |
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
| 514 |
- rebuilt
|
| 515 |
|
| 516 |
* Tue Mar 23 2004 Karsten Hopp <karsten@redhat.de> 5.5.7.15-1.3
|
| 517 |
- freetype patch to fix convert (#115716)
|
| 518 |
|
| 519 |
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
| 520 |
- rebuilt
|
| 521 |
|
| 522 |
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
| 523 |
- rebuilt
|
| 524 |
|
| 525 |
* Sun Jan 25 2004 Nils Philippsen <nphilipp@redhat.com> 5.5.7.15-0.2
|
| 526 |
- make perl module link against the built library instead of the installed one
|
| 527 |
|
| 528 |
* Thu Jan 22 2004 Nils Philippsen <nphilipp@redhat.com> 5.5.7.15-0.1
|
| 529 |
- version 5.5.7 patchlevel 15
|
| 530 |
|
| 531 |
* Mon Oct 13 2003 Nils Philippsen <nphilipp@redhat.com> 5.5.7.10-0.1
|
| 532 |
- rebuild with release 0.1 to not block an official update package
|
| 533 |
|
| 534 |
* Wed Sep 10 2003 Nils Philippsen <nphilipp@redhat.com> 5.5.7.10-2
|
| 535 |
- hack around libtool stupidity
|
| 536 |
- disable automake patch as we require automake-1.7 anyway
|
| 537 |
|
| 538 |
* Wed Sep 10 2003 Nils Philippsen <nphilipp@redhat.com> 5.5.7.10-1
|
| 539 |
- version 5.5.7 patchlevel 10
|
| 540 |
|
| 541 |
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
| 542 |
- rebuilt
|
| 543 |
|
| 544 |
* Thu May 29 2003 Tim Powers <timp@redhat.com> 5.5.6-4
|
| 545 |
- rebuild for RHEL to fix broken deps
|
| 546 |
|
| 547 |
* Thu May 15 2003 Tim Powers <timp@redhat.com> 5.5.6-3
|
| 548 |
- rebuild again to fix broken dep on libMagick.so.5
|
| 549 |
|
| 550 |
* Mon May 12 2003 Karsten Hopp <karsten@redhat.de> 5.5.6-2
|
| 551 |
- rebuild
|
| 552 |
|
| 553 |
* Fri May 09 2003 Karsten Hopp <karsten@redhat.de> 5.5.6-1
|
| 554 |
- update
|
| 555 |
- specfile fixes
|
| 556 |
#63897 (_target instead of _arch)
|
| 557 |
#74521 (SRPM doesn't compile)
|
| 558 |
#80441 (RFE: a newer version of ImageMagick is available)
|
| 559 |
#88450 (-devel package missing dependancy)
|
| 560 |
#57396 (convert won't read RAW format images)
|
| 561 |
- verified that the upstream version fixes the following bugreports:
|
| 562 |
#57544 (display cannot handle many xpm's which both ee and rh71 display can)
|
| 563 |
#63727 (ImageMagick fails to handle RGBA files)
|
| 564 |
#73864 (composite dumps core on certain operations)
|
| 565 |
#78242 (Header files for c missing in devel rpms)
|
| 566 |
#79783 (magick_config.h is missing from ImageMagick-c++-devel)
|
| 567 |
#80117 (Documentation is installed twice by RPM )
|
| 568 |
#82762 (Trouble with browsing help files)
|
| 569 |
#85760 (Segmentation fault)
|
| 570 |
#86120 (eps->ppm convert crashes)
|
| 571 |
|
| 572 |
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
| 573 |
- rebuilt
|
| 574 |
|
| 575 |
* Sat Jan 4 2003 Jeff Johnson <jbj@redhat.com> 5.4.7-9
|
| 576 |
- use internal dep generator.
|
| 577 |
|
| 578 |
* Mon Dec 16 2002 Tim Powers <timp@redhat.com> 5.4.7-8
|
| 579 |
- rebuild
|
| 580 |
|
| 581 |
* Sat Dec 14 2002 Tim Powers <timp@redhat.com> 5.4.7-7
|
| 582 |
- don't use rpms internal dep generator
|
| 583 |
|
| 584 |
* Fri Nov 22 2002 Tim Powers <timp@redhat.com>
|
| 585 |
- fix perl paths in file list
|
| 586 |
|
| 587 |
* Thu Nov 21 2002 Tim Powers <timp@redhat.com>
|
| 588 |
- lib64'ize
|
| 589 |
- don't throw stuff in /usr/X11R6, that's for X only
|
| 590 |
- remove files we aren't shipping
|
| 591 |
|
| 592 |
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com>
|
| 593 |
- rebuilt with gcc-3.2 (we hope)
|
| 594 |
|
| 595 |
* Tue Jul 23 2002 Tim Powers <timp@redhat.com> 5.4.7-4
|
| 596 |
- build using gcc-3.2-0.1
|
| 597 |
|
| 598 |
* Wed Jul 03 2002 Karsten Hopp <karsten@redhat.de> 5.4.7-3
|
| 599 |
- fix non-cpp headers in -devel package
|
| 600 |
- fix #62157 (wrong path for include files in ImageMagick-devel)
|
| 601 |
- fix #63897 (use _target instead of _arch) in libtool workaround
|
| 602 |
- fix #65860, #65780 (tiff2ps) expands images to >10 MB Postscript files.
|
| 603 |
|
| 604 |
* Mon Jul 01 2002 Karsten Hopp <karsten@redhat.de> 5.4.7-1
|
| 605 |
- update
|
| 606 |
- fix localdoc patch
|
| 607 |
- fix %%files section
|
| 608 |
- disable nonroot patch
|
| 609 |
- fix #62100,55950,62162,63136 (display doesn't start form gnome menu)
|
| 610 |
- fix libtool workaround
|
| 611 |
- moved Magick*-config into -devel package (#64249)
|
| 612 |
|
| 613 |
* Sun May 26 2002 Tim Powers <timp@redhat.com>
|
| 614 |
- automated rebuild
|
| 615 |
|
| 616 |
* Mon May 6 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.4.6-1
|
| 617 |
- 5.4.6
|
| 618 |
|
| 619 |
* Thu Mar 14 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.4.3.11-1
|
| 620 |
- Update to pl 11
|
| 621 |
|
| 622 |
* Fri Feb 22 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.4.3.5-1
|
| 623 |
- Update to 5.4.3 pl5; this fixes #58080
|
| 624 |
|
| 625 |
* Thu Jan 17 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.4.2.3-1
|
| 626 |
- Patchlevel 3
|
| 627 |
|
| 628 |
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
| 629 |
- automated rebuild
|
| 630 |
|
| 631 |
* Fri Jan 4 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.4.2.2-1
|
| 632 |
- Update to 5.4.2-2
|
| 633 |
- Fix #57923, also don't hardcode netscape as html viewer
|
| 634 |
|
| 635 |
* Wed Dec 5 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.4.1-1
|
| 636 |
- 5.4.1
|
| 637 |
- Link against new libstdc++
|
| 638 |
|
| 639 |
* Fri Nov 9 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.4.0.5-1
|
| 640 |
- 5.4.0.5
|
| 641 |
- Make the error message when trying to display an hpgl file more
|
| 642 |
explicit (#55875)
|
| 643 |
|
| 644 |
* Mon Nov 5 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.4.0.3-1
|
| 645 |
- 5.4.0.3
|
| 646 |
- Fix names of man pages
|
| 647 |
|
| 648 |
* Mon Oct 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.4.0-1
|
| 649 |
- 5.4.0
|
| 650 |
- work around build system breakage causing applications to be named
|
| 651 |
%%{_arch}-redhat-linux-foo rather than foo
|
| 652 |
|
| 653 |
* Wed Sep 19 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.3.9-1
|
| 654 |
- 5.3.9
|
| 655 |
|
| 656 |
* Mon Aug 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.3.8-3
|
| 657 |
- Add delegates.mgk back, got lost during the update to 5.3.8 (Makefile bug)
|
| 658 |
(#52611)
|
| 659 |
|
| 660 |
* Mon Aug 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.3.8-2
|
| 661 |
- Remove Magick++ includes from -devel, they're already in -c++-devel
|
| 662 |
(#51590)
|
| 663 |
|
| 664 |
* Sun Jul 28 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.3.8-1
|
| 665 |
- 5.3.8 (bugfix release)
|
| 666 |
|
| 667 |
* Sat Jul 27 2001 Than Ngo <than@redhat.com> 5.3.7-3
|
| 668 |
- fix to build Perlmagic on s390 s390x
|
| 669 |
|
| 670 |
* Thu Jul 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.3.7-2
|
| 671 |
- Add delegates.mgk to the package (#50725)
|
| 672 |
|
| 673 |
* Tue Jul 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.3.7-1
|
| 674 |
- 5.3.7
|
| 675 |
- Fix build without previously installed ImageMagick-devel (#49816)
|
| 676 |
- Move perl bindings to a separate package.
|
| 677 |
|
| 678 |
* Mon Jul 9 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.3.6-2
|
| 679 |
- Fix build as non-root again
|
| 680 |
- Shut up rpmlint
|
| 681 |
|
| 682 |
* Tue Jul 3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.3.6-1
|
| 683 |
- 5.3.6
|
| 684 |
- Get rid of the ia64 patch, it's no longer needed since glibc was fixed
|
| 685 |
|
| 686 |
* Sat Jun 16 2001 Than Ngo <than@redhat.com>
|
| 687 |
- update to 5.3.5
|
| 688 |
- cleanup specfile
|
| 689 |
|
| 690 |
* Sat May 19 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.3.3-2
|
| 691 |
- 5.3.3-respin, fixes #41196
|
| 692 |
|
| 693 |
* Tue May 1 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.3.3-1
|
| 694 |
- 5.3.3
|
| 695 |
- Add a desktop file for "display" (RFE#17417)
|
| 696 |
|
| 697 |
* Sun Apr 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
|
| 698 |
- 5.3.2
|
| 699 |
- work around bugs in ia64 glibc headers
|
| 700 |
|
| 701 |
* Mon Jan 08 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
| 702 |
- remove patch for s390, it is not necessary
|
| 703 |
|
| 704 |
* Mon Jan 1 2001 Bernhard Rosenkraenzer <bero@redhat.com>
|
| 705 |
- 5.2.7
|
| 706 |
|
| 707 |
* Wed Dec 27 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
| 708 |
- 5.2.6
|
| 709 |
|
| 710 |
* Mon Dec 18 2000 Than Ngo <than@redhat.com>
|
| 711 |
- ported to s390
|
| 712 |
|
| 713 |
* Mon Sep 25 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
| 714 |
- 5.2.4
|
| 715 |
- Fix up and package the C++ bindings in the new c++/c++-devel packages.
|
| 716 |
|
| 717 |
* Wed Aug 2 2000 Matt Wilson <msw@redhat.com>
|
| 718 |
- rebuild against new libpng
|
| 719 |
|
| 720 |
* Wed Jul 19 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 721 |
- include images with docs (#10312)
|
| 722 |
|
| 723 |
* Thu Jul 13 2000 Matt Wilson <msw@redhat.com>
|
| 724 |
- don't build with -ggdb, use -g instead.
|
| 725 |
|
| 726 |
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
| 727 |
- automatic rebuild
|
| 728 |
|
| 729 |
* Mon Jul 3 2000 Florian La Roche <laroche@redhat.com>
|
| 730 |
- update to 5.2.2 beta
|
| 731 |
|
| 732 |
* Mon Jul 3 2000 Florian La Roche <laroche@redhat.com>
|
| 733 |
- update to 5.2.1, redone patches as they failed
|
| 734 |
|
| 735 |
* Fri Jun 30 2000 Matt Wilson <msw@redhat.com>
|
| 736 |
- remove hacks to move perl man pages
|
| 737 |
- don't include the perl*/man stuff, these files go in /usr/share/man now.
|
| 738 |
|
| 739 |
* Thu Jun 15 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 740 |
- disable optimization on Alpha and Sparc
|
| 741 |
|
| 742 |
* Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com>
|
| 743 |
- update to 5.2.0
|
| 744 |
- update URL
|
| 745 |
- remove redundant CXXFLAGS=$RPM_OPT_FLAGS
|
| 746 |
|
| 747 |
* Thu Jun 1 2000 Matt Wilson <msw@redhat.com>
|
| 748 |
- bootstrap rebuilt to nuke broken libbz2 deps
|
| 749 |
- add Prefix: tag such that the FHS macros work properly
|
| 750 |
|
| 751 |
* Wed May 17 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
| 752 |
- now compiles with bzip2 1.0
|
| 753 |
- changed buildroot to include version
|
| 754 |
|
| 755 |
* Fri May 5 2000 Bill Nottingham <notting@redhat.com>
|
| 756 |
- fix compilation with new perl
|
| 757 |
|
| 758 |
* Sat Mar 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
| 759 |
- 5.1.1
|
| 760 |
|
| 761 |
* Thu Feb 3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
| 762 |
- Rebuild to get compressed man pages
|
| 763 |
|
| 764 |
* Thu Nov 18 1999 Michael K. Johnson <johnsonm@redhat.com>
|
| 765 |
- ugly hack to print with lpr instead of lp
|
| 766 |
|
| 767 |
* Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
|
| 768 |
- update to 4.2.9
|
| 769 |
|
| 770 |
* Tue Aug 17 1999 Bill Nottingham <notting@redhat.com>
|
| 771 |
- update to 4.2.8
|
| 772 |
|
| 773 |
* Fri Apr 09 1999 Cristian Gafton <gafton@redhat.com>
|
| 774 |
- include the perl man pages as well
|
| 775 |
|
| 776 |
* Tue Apr 06 1999 Michael K. Johnson <johnsonm@redhat.com>
|
| 777 |
- remove --enable-16bit because it damages interoperability
|
| 778 |
|
| 779 |
* Mon Apr 5 1999 Bill Nottingham <notting@redhat.com>
|
| 780 |
- update to 4.2.2
|
| 781 |
- change ChangeLog to refer to actual dates.
|
| 782 |
- strip binaries
|
| 783 |
|
| 784 |
* Thu Apr 1 1999 Bill Nottingham <notting@redhat.com>
|
| 785 |
- add more files. Oops.
|
| 786 |
|
| 787 |
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
| 788 |
- auto rebuild in the new build environment (release 2)
|
| 789 |
|
| 790 |
* Wed Mar 10 1999 Bill Nottingham <notting@redhat.com>
|
| 791 |
- version 4.2.1
|
| 792 |
|
| 793 |
* Tue Jan 19 1999 Michael K. Johnson <johnsonm@redhat.com>
|
| 794 |
- changed group
|
| 795 |
|
| 796 |
* Tue Jan 19 1999 Cristian Gafton <gafton@redhat.com>
|
| 797 |
- hacks to make it work with the new perl
|
| 798 |
- version 4.1.0 (actually installs the sonames as 4.0.10... doh!)
|
| 799 |
- make sure the libraries have the x bit on
|
| 800 |
|
| 801 |
* Wed Jun 10 1998 Prospector System <bugs@redhat.com>
|
| 802 |
- translations modified for de, fr
|
| 803 |
|
| 804 |
* Thu May 07 1998 Prospector System <bugs@redhat.com>
|
| 805 |
- translations modified for de, fr, tr
|
| 806 |
|
| 807 |
* Tue Apr 21 1998 Cristian Gafton <gafton@redhat.com>
|
| 808 |
- updated to 4.0.5
|
| 809 |
|
| 810 |
* Wed Apr 08 1998 Cristian Gafton <gafton@redhat.com>
|
| 811 |
- updated to 4.0.4
|
| 812 |
- added BuildRoot
|
| 813 |
|
| 814 |
* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
|
| 815 |
- updated from 3.8.3 to 3.9.1
|
| 816 |
- removed PNG patch (appears to be fixed)
|
| 817 |
|
| 818 |
* Wed Oct 15 1997 Erik Troan <ewt@redhat.com>
|
| 819 |
- build against new libpng
|
| 820 |
|
| 821 |
* Thu Jul 10 1997 Erik Troan <ewt@redhat.com>
|
| 822 |
- built against glibc
|
| 823 |
|
| 824 |
* Thu Mar 20 1997 Michael Fulbright <msf@redhat.com>
|
| 825 |
- updated to version 3.8.3.
|
| 826 |
- updated source and url tags.
|