]> git.imager.perl.org - imager.git/blobdiff - README
PNG re-work: collect more text tags
[imager.git] / README
diff --git a/README b/README
index b07e60521223ac145c348751813accbc0d1d7491..1967667bd45a08b9492be4aadce57c8fd6ba3352 100644 (file)
--- a/README
+++ b/README
@@ -1,14 +1,17 @@
 ================================================================
 Copyright (c) 1999-2004 Arnar M. Hrafnkelsson. All rights reserved.
-Copyright (c) 2004-2009 Anthony Cook.
+Copyright (c) 2004-2012 Anthony Cook.
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
+
+A test font, FT2/fontfiles/MMOne.pfb contains Postscript code
+copyrighted by Adobe.  See adobe.txt for license information.
 ================================================================
 
 >> THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY WHATSOEVER <<
 
 If you like or hate Imager, please let me know by sending mail 
-to imager@imager.perl.org - I love feedback.
+to tonyc@cpan.org - I love feedback.
 
 ================================================================
 
@@ -72,7 +75,7 @@ If either fails do take a peek at the file errep.perl.  It's creates a
 file report.txt.  This is some information which will help me discover
 where the problem is so I can try to fix it in future releases.  If
 you find running it ok (just remember - no warranty!) please send the
-report.txt via email to imager@imager.perl.org.
+report.txt via email to tonyc@cpan.org.
 
 Troubleshooting tips:
 
@@ -256,7 +259,7 @@ at least version 4.1.4.  If you have a recent Linux distribution you
 should be safe with whatever giflib it provides, but if you're
 building from source, please try to use the latest version.
 
-With the expiration of the LZQ patent there's no reason to use
+With the expiration of the LZW patent there's no reason to use
 libungif.
 
 libgif 4.1.4 has no problems known to me at this point.
@@ -361,6 +364,9 @@ If you get errors from your make tool, make sure you're using the same
 make that was used to build your perl - generally GNU make for cygwin,
 nmake for Visual C/C++ and dmake for MinGW.
 
+Imager and all of the libraries it requires are supplied with
+Strawberry Perl.
+
 ============
 6. Mac OS X
 ============
@@ -396,6 +402,26 @@ c) if you want to build GCC 4.0 from scratch and use that you will
    For example:
 
      perl Makefile.PL LDDLFLAGS="`perl -MConfig -e 'print "-g $Config{lddlflags}"'`"
+
+d) The default perl build in Snow Leopard and Lion is a fat binary,
+   and default builds of giflib, libpng and libjpeg (and maybe other
+   libraries) will produce link failures.
+
+   To avoid this you need to supply a CFLAGS parameter to the
+   library's configure script, but since the -arch flag conflicts with
+   the options used to build the dependency files, you need to supply
+   another flag to disable dependency tracking.
+
+   Snow Leopard fat binaries include i386, x86_64 and PPC objects,
+   hence you would run configure like:
+
+    ./configure --disable-dependency-tracking CFLAGS='-arch x86_64 -arch i386 -arch ppc'
+
+   Lion doesn't support PPC, so there you run configure like:
+
+   ./configure --disable-dependency-tracking CFLAGS='-arch x86_64 -arch i386'
+
+   For libgif you might also want to supply the --without-x option.
    
 =======================
 7. General information
@@ -435,5 +461,15 @@ Thanks go to:
   Roderick Schertler  ( Roderick )
   Nathan Torkington   ( gnat )
   Gabriel Vasseur
+  kmx
+  Nicolas Roggli
+  Justin Davis
+  Maurice Height
+  Krzysztof Wojtaś
+  David Cantrell
+  Eleneldil G. Arilou
+  Slaven Rezic
+  Richard Fairhurst
+  Nikita Dedik
 
 (and just to play it safe) all those I forgot to mention.