~ubuntu-branches/ubuntu/gutsy/vtk/gutsy

« back to all changes in this revision

Viewing changes to Utilities/vtkmpeg2encode/mpeg2encDllConfig.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Michele Angrisano
  • Date: 2007-06-30 22:39:48 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070630223948-6tn51upaurwfrcz8
Tags: 5.0.3-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add export SHELL=/bin/bash in debian/rules.
  - Update maintainer in field debian/control.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _mpeg2encDllConfig_h
2
 
#define _mpeg2encDllConfig_h
3
 
 
4
 
/* Defined if this library is built static.  */
5
 
#cmakedefine VTK_MPEG2ENC_STATIC
6
 
 
7
 
/* VTK_IN_MPEG2ENC is defined when building source files in this library.  */
8
 
#if defined(VTK_IN_MPEG2ENC)
9
 
  /* Disable warnings from mpeg2enc so we do not have to change code.  */
10
 
# if defined(_MSC_VER)
11
 
#  pragma warning (disable: 4131) /* old-style declarator */
12
 
#  pragma warning (disable: 4244) /* conversion with loss of data */
13
 
#  pragma warning (disable: 4701) /* local variable used uninitialized */
14
 
#  pragma warning (disable: 4706) /* assignment within conditional */
15
 
# endif
16
 
#endif
17
 
 
18
 
#endif