Merge pull request #74 from rrockru/master

Fixed build issue on linux (missing webp include path).
This commit is contained in:
okamstudio 2014-02-20 23:56:27 -02:00
commit 287a6347e6
5 changed files with 9 additions and 7 deletions

2
.gitignore vendored
View file

@ -73,6 +73,8 @@ bld/
*.VisualState.xml
TestResult.xml
*.o
*.a
*_i.c
*_p.c
*_i.h

View file

@ -12,7 +12,7 @@
#ifndef WEBP_WEBP_DECODE_VP8_H_
#define WEBP_WEBP_DECODE_VP8_H_
#include "../webp/decode.h"
#include "../decode.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View file

@ -14,7 +14,7 @@
#include "./vp8i.h"
#include "./vp8li.h"
#include "./webpi.h"
#include "../webp/format_constants.h"
#include "../format_constants.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View file

@ -8,13 +8,13 @@
// WebP container demux.
//
#include "../webp/mux.h"
#include "../mux.h"
#include <stdlib.h>
#include <string.h>
#include "../webp/decode.h" // WebPGetInfo
#include "../webp/format_constants.h"
#include "../decode.h" // WebPGetInfo
#include "../format_constants.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View file

@ -15,8 +15,8 @@
#include <stdlib.h>
#include "../dec/vp8i.h"
#include "../dec/vp8li.h"
#include "../webp/format_constants.h"
#include "../webp/mux.h"
#include "../format_constants.h"
#include "../mux.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {