cvs: gd(GD_2_0) /libgd NEWS gdtest.c /libgd/VMS CONFIGURE.COM README.VMS
[email protected] ("Pierre-Alain Joye")
| Newsgroups | php.gd.cvs |
|---|---|
| Message-ID | <cvspajoye1177261982@cvsserver> |
pajoye Sun Apr 22 17:13:02 2007 UTC
Added files: (Branch: GD_2_0)
/gd/libgd/VMS CONFIGURE.COM README.VMS
Modified files:
/gd/libgd NEWS gdtest.c
Log:
- #68, add OpenVMS build script
http://cvs.php.net/viewvc.cgi/gd/libgd/NEWS?r1=1.4.2.14&r2=1.4.2.15&diff_format=u
Index: gd/libgd/NEWS
diff -u gd/libgd/NEWS:1.4.2.14 gd/libgd/NEWS:1.4.2.15
--- gd/libgd/NEWS:1.4.2.14 Thu Apr 19 12:54:56 2007
+++ gd/libgd/NEWS Sun Apr 22 17:13:02 2007
@@ -1,14 +1,18 @@
+'GD NEWS
+|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
GD 2.0.35RC3 (2007-04-??)
41, Fix valgrind error in gdImageFillTiled (Nuno Lopes)
45, Add missing custom cmake macros (required for the tests suite)
51, Avoid signature buffer copy in gd_gif_c (Nuno Lopes)
48, Race condition in gdImageStringFTEx (Antony Dogval, Pierre
- Scott MacVicar)
+ Scott MacVicar)
52, Reading GIF images is not thread safe (static usage in private
functions) (Roman Nemecek, Nuno Lopes, Pierre)
60, GIF Local palette is read twice
66, GIF, Use local frame dimension when possible instead of the
- logical screen size
+ logical screen size
+68, OpenVMS build support, see VMS/README.VMS for the details
+ (Alexey Chupahin)
70, GIF, do not try to use the global colmap if it does not exist
(Nuno Lopes, Pierre)
72, gdImageAALine draws axis lines with two pixels width
http://cvs.php.net/viewvc.cgi/gd/libgd/gdtest.c?r1=1.13&r2=1.13.2.1&diff_format=u
Index: gd/libgd/gdtest.c
diff -u gd/libgd/gdtest.c:1.13 gd/libgd/gdtest.c:1.13.2.1
--- gd/libgd/gdtest.c:1.13 Wed Apr 5 15:51:53 2006
+++ gd/libgd/gdtest.c Sun Apr 22 17:13:02 2007
@@ -62,7 +62,11 @@
/* */
/* Send to PNG File then Ptr */
/* */
+#ifdef VMS
+ sprintf (of, "%s-png", argv[1]);
+#else
sprintf (of, "%s.png", argv[1]);
+#endif
out = fopen (of, "wb");
gdImagePng (im, out);
fclose (out);
@@ -92,7 +96,11 @@
/* */
/* Send to GD2 File then Ptr */
/* */
- sprintf (of, "%s.gd2", argv[1]);
+#ifdef VMS
+ sprintf (of, "%s-gd2", argv[1]);
+#else
+sprintf (of, "%s.gd2", argv[1]);
+#endif
out = fopen (of, "wb");
gdImageGd2 (im, out, 128, 2);
fclose (out);
@@ -124,7 +132,11 @@
/* */
/* Send to GD File then Ptr */
/* */
+#ifdef VMS
+ sprintf (of, "%s-gd", argv[1]);
+#else
sprintf (of, "%s.gd", argv[1]);
+#endif
out = fopen (of, "wb");
gdImageGd (im, out);
fclose (out);
@@ -179,8 +191,11 @@
/*
** Test gdImagePngToSink'
* */
-
+#ifdef VMS
+ sprintf (of, "%s-snk", argv[1]);
+#else
sprintf (of, "%s.snk", argv[1]);
+#endif
out = fopen (of, "wb");
imgsnk.sink = fwriteWrapper;
imgsnk.context = out;
http://cvs.php.net/viewvc.cgi/gd/libgd/VMS/CONFIGURE.COM?view=markup&rev=1.1
Index: gd/libgd/VMS/CONFIGURE.COM
+++ gd/libgd/VMS/CONFIGURE.COM
http://cvs.php.net/viewvc.cgi/gd/libgd/VMS/README.VMS?view=markup&rev=1.1
Index: gd/libgd/VMS/README.VMS
+++ gd/libgd/VMS/README.VMS