Fixed build issue on linux (missing webp include path).
Tested on ArchLinux.
This commit is contained in:
parent
c12a8e922f
commit
a17d76e60b
5 changed files with 9 additions and 7 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -59,6 +59,8 @@ bld/
|
||||||
*.VisualState.xml
|
*.VisualState.xml
|
||||||
TestResult.xml
|
TestResult.xml
|
||||||
|
|
||||||
|
*.o
|
||||||
|
*.a
|
||||||
*_i.c
|
*_i.c
|
||||||
*_p.c
|
*_p.c
|
||||||
*_i.h
|
*_i.h
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#ifndef WEBP_WEBP_DECODE_VP8_H_
|
#ifndef WEBP_WEBP_DECODE_VP8_H_
|
||||||
#define WEBP_WEBP_DECODE_VP8_H_
|
#define WEBP_WEBP_DECODE_VP8_H_
|
||||||
|
|
||||||
#include "../webp/decode.h"
|
#include "../decode.h"
|
||||||
|
|
||||||
#if defined(__cplusplus) || defined(c_plusplus)
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
#include "./vp8i.h"
|
#include "./vp8i.h"
|
||||||
#include "./vp8li.h"
|
#include "./vp8li.h"
|
||||||
#include "./webpi.h"
|
#include "./webpi.h"
|
||||||
#include "../webp/format_constants.h"
|
#include "../format_constants.h"
|
||||||
|
|
||||||
#if defined(__cplusplus) || defined(c_plusplus)
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
|
@ -8,13 +8,13 @@
|
||||||
// WebP container demux.
|
// WebP container demux.
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "../webp/mux.h"
|
#include "../mux.h"
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "../webp/decode.h" // WebPGetInfo
|
#include "../decode.h" // WebPGetInfo
|
||||||
#include "../webp/format_constants.h"
|
#include "../format_constants.h"
|
||||||
|
|
||||||
#if defined(__cplusplus) || defined(c_plusplus)
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "../dec/vp8i.h"
|
#include "../dec/vp8i.h"
|
||||||
#include "../dec/vp8li.h"
|
#include "../dec/vp8li.h"
|
||||||
#include "../webp/format_constants.h"
|
#include "../format_constants.h"
|
||||||
#include "../webp/mux.h"
|
#include "../mux.h"
|
||||||
|
|
||||||
#if defined(__cplusplus) || defined(c_plusplus)
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
Loading…
Reference in a new issue