Ignore:
Timestamp:
Aug 24, 2010, 7:45:35 AM (14 years ago)
Author:
gah
Message:
 
Location:
branches/blt4/packages/vizservers/nanovis
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/blt4/packages/vizservers/nanovis/RpAVTranslate.h

    r1798 r1874  
    1818
    1919extern "C" {
    20 #define __STDC_CONSTANT_MACROS 1
     20#ifndef INT64_C
     21#if SIZEOF_LONG == 8
     22#  define INT64_C(c)  c ## L
     23#  define UINT64_C(c) c ## UL
     24#else
     25#  define INT64_C(c)  c ## LL
     26#  define UINT64_C(c) c ## ULL
     27# endif
     28#endif
    2129#ifdef HAVE_FFMPEG_AVFORMAT_H
    2230#include <ffmpeg/avformat.h>
  • branches/blt4/packages/vizservers/nanovis/nanovis.cpp

    r1823 r1874  
    3030#include <string>
    3131#include <sys/resource.h>
     32#include <sys/stat.h>
    3233#include <sys/time.h>
    3334#include <sys/times.h>
  • branches/blt4/packages/vizservers/nanovis/nvconf.h.in

    r1823 r1874  
    8888#undef PACKAGE_TARNAME
    8989
     90/* Define to the home page for this package. */
     91#undef PACKAGE_URL
     92
    9093/* Define to the version of this package. */
    9194#undef PACKAGE_VERSION
     95
     96/* The size of `float', as computed by sizeof. */
     97#undef SIZEOF_FLOAT
     98
     99/* The size of `int', as computed by sizeof. */
     100#undef SIZEOF_INT
     101
     102/* The size of `long', as computed by sizeof. */
     103#undef SIZEOF_LONG
     104
     105/* The size of `long long', as computed by sizeof. */
     106#undef SIZEOF_LONG_LONG
     107
     108/* The size of `void *', as computed by sizeof. */
     109#undef SIZEOF_VOID_P
    92110
    93111/* Define to 1 if you have the ANSI C header files. */
Note: See TracChangeset for help on using the changeset viewer.