~peter-pearse/ubuntu/natty/unzip/prop001

« back to all changes in this revision

Viewing changes to vms/bzlib.h

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2009-05-08 20:02:40 UTC
  • mfrom: (1.1.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20090508200240-7l4gypruop5863bd
* New upstream release. Closes: #496989.
* Enabled new Unicode support. Closes: #197427. This may or may not work
  for your already created zipfiles, but it's not a bug unless they were
  created using the Unicode feature present in zip 3.0.
* Built using DATE_FORMAT=DF_YMD so that unzip -l show dates in ISO format,
  as that's the only available one which makes sense. Closes: #312886.
* Enabled new bzip2 support. Closes: #426798.
* Exit code for zipgrep should now be the right one. Closes: #441997.
* The reason why a file may not be created is now shown. Closes: #478791.
* Summary of changes in this version not being the debian/* files:
- Manpages in section 1, not 1L.
- Branding patch. UnZip by Debian. Original by Info-ZIP.
- Always #include <unistd.h>. Debian GNU/kFreeBSD needs it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 2007-01-02 SMS.
 
2
 * VMS-specific BZLIB.H jacket header file to ensure compatibility with
 
3
 * BZIP2 code compiled using /NAMES = AS_IS.
 
4
 *
 
5
 * The logical name INCL_BZIP2 must point to the BZIP2 source directory.
 
6
 *
 
7
 * A "names as_is" prototype for bz_internal_error() is included for the
 
8
 * same reason.  See bzip2 "bzlib_private.h".  Note that this "names
 
9
 * as_is" prototype must be the first to be read by the compiler, but
 
10
 * one or more other prototypes (perhaps with the default "names"
 
11
 * attributes) should cause no trouble.
 
12
 */
 
13
 
 
14
#pragma names save
 
15
#pragma names as_is
 
16
 
 
17
#include "INCL_BZIP2:BZLIB.H"
 
18
 
 
19
extern void bz_internal_error ( int bzerrcode );
 
20
 
 
21
#pragma names restore