diff options
author | vektor <devnull@localhost> | 2003-06-20 12:45:41 +0000 |
---|---|---|
committer | vektor <devnull@localhost> | 2003-06-20 12:45:41 +0000 |
commit | 200402d7d5eb32e8a4a6304a62aab43dc35b18e6 (patch) | |
tree | 41df2ecd5967926b76f9e2d57884524ac99fc53d /src/outputfilter.h | |
parent | b12f30716b9e183bc55683ce1d3d59963a9319d6 (diff) |
20 Jun 2003 Billy Biggs <vektor@dumbterm.net>
* tvtime/src/console.h: This patch cleans up our usage of stdint.h to be
more friendly to Solaris users who want to use our source code.
Some files we just cleaned up the use, others we do the #ifdef stuff.
* tvtime/src/cpuinfo.c: Ibid.
* tvtime/src/credits.h: Ibid.
* tvtime/src/diffcomp.h: Ibid.
* tvtime/src/dscalerplugin.c: Ibid.
* tvtime/src/expandpng.c: Ibid.
* tvtime/src/leetft.h: Ibid.
* tvtime/src/mgaoutput.c: Ibid.
* tvtime/src/osdtools.h: Ibid.
* tvtime/src/outputapi.h: Ibid.
* tvtime/src/outputfilter.h: Ibid.
* tvtime/src/pnginput.h: Ibid.
* tvtime/src/pngoutput.h: Ibid.
* tvtime/src/ree.h: Ibid.
* tvtime/src/reepktq.h: Ibid.
* tvtime/src/rvrmain.c: Ibid.
* tvtime/src/rvrreader.c: Ibid.
* tvtime/src/rvrreader.h: Ibid.
* tvtime/src/speedy.c: Ibid.
* tvtime/src/timingtest.c: Ibid.
* tvtime/src/tvtimeosd.h: Ibid.
* tvtime/src/utils.h: Ibid.
* tvtime/src/vbiscreen.h: Ibid.
* tvtime/src/videocorrection.h: Ibid.
* tvtime/src/videoinput.h: Ibid.
* tvtime/src/videotools.h: Ibid.
* tvtime/src/xmgaoutput.c: Ibid.
Diffstat (limited to 'src/outputfilter.h')
-rw-r--r-- | src/outputfilter.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/outputfilter.h b/src/outputfilter.h index 9bf93ac..2a184dd 100644 --- a/src/outputfilter.h +++ b/src/outputfilter.h @@ -19,7 +19,11 @@ #ifndef OUTPUTFILTER_H_INCLUDED #define OUTPUTFILTER_H_INCLUDED -#include <stdint.h> +#if defined (__SVR4) && defined (__sun) +# include <sys/int_types.h> +#else +# include <stdint.h> +#endif #include "vbiscreen.h" #ifdef __cplusplus |