Author: thatsafunnyname
Date: Fri Mar  6 04:07:56 2009
New Revision: 700

Modified:
    trunk/Changes
    trunk/NYTProf.xs

Log:
NYTProf.xs's open_output_file use mode 'wb' and not 'wbx'
     to avoid unsupported error when on VMS.


Modified: trunk/Changes
==============================================================================
--- trunk/Changes       (original)
+++ trunk/Changes       Fri Mar  6 04:07:56 2009
@@ -20,6 +20,8 @@
      request-using-ENV test, to help maintain portable files,
      currently .indent.pro and .perltidyrc fall foul of portable
      filename characters as defined by ANSI C and perlport.
+  NYTProf.xs's open_output_file use mode 'wb' and not 'wbx'
+    to avoid unsupported error when on VMS.

  =head2 Changes in Devel::NYTProf 2.08 (svn r685) 15th Feb 2009


Modified: trunk/NYTProf.xs
==============================================================================
--- trunk/NYTProf.xs    (original)
+++ trunk/NYTProf.xs    Fri Mar  6 04:07:56 2009
@@ -1875,6 +1875,9 @@
  #ifdef WIN32
      mode = "wb";
  #endif
+#ifdef VMS
+    mode = "wb";
+#endif

      if ((profile_opts & NYTP_OPTf_ADDPID)
      || out /* already opened so assume forking */

--~--~---------~--~----~------------~-------~--~----~
You've received this message because you are subscribed to
the Devel::NYTProf Development User group.

Group hosted at:  http://groups.google.com/group/develnytprof-dev
Project hosted at:  http://perl-devel-nytprof.googlecode.com
CPAN distribution:  http://search.cpan.org/dist/Devel-NYTProf

To post, email:  [email protected]
To unsubscribe, email:  [email protected]
-~----------~----~----~----~------~----~------~--~---

Reply via email to