gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/trunk r12040: openbsd uses libpng instead


From: Rob Savoye
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r12040: openbsd uses libpng instead of png.
Date: Sat, 13 Mar 2010 17:38:55 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 12040
committer: Rob Savoye <address@hidden>
branch nick: trunk
timestamp: Sat 2010-03-13 17:38:55 -0700
message:
  openbsd uses libpng instead of png.
modified:
  configure.ac
=== modified file 'configure.ac'
--- a/configure.ac      2010-03-12 19:28:39 +0000
+++ b/configure.ac      2010-03-14 00:38:55 +0000
@@ -1804,7 +1804,11 @@
 
 GNASH_PKG_FIND(z, [zlib.h], [zlib compression library], compress)
 GNASH_PKG_FIND(jpeg, [jpeglib.h], [jpeg images], jpeg_mem_init)
-GNASH_PKG_FIND(png, [png.h], [png images], png_info_init)
+if test x"${openbsd_os}" = x"yes"; then
+  GNASH_PKG_FIND(libpng, [png.h], [png images], png_info_init)
+else
+  GNASH_PKG_FIND(png, [png.h], [png images], png_info_init)
+fi
 GNASH_PKG_FIND(gif, [gif_lib.h], [gif images], DGifOpen)
 if test x"${GIF_LIBS}" = x ; then
  GNASH_PKG_FIND(ungif, [gif_lib.h], [gif images], DGifOpen)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]