Merge pull request #351 from sonninnos/libchdr-buildfix

libchdr buildfix attempt
This commit is contained in:
LibretroAdmin 2024-05-14 16:16:24 -07:00 committed by GitHub
commit c3bfcd04d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 13 additions and 14 deletions

View File

@ -9,7 +9,7 @@
***************************************************************************/
#include <stdlib.h>
#include <libchdr/bitstream.h>
#include "bitstream.h"
/***************************************************************************
* INLINE FUNCTIONS

View File

@ -18,7 +18,7 @@
#include <assert.h>
#include <string.h>
#include <libchdr/cdrom.h>
#include "cdrom.h"
#ifdef WANT_RAW_DATA_SECTOR

View File

@ -14,7 +14,6 @@
#define __CDROM_H__
#include <stdint.h>
#include <libchdr/chdconfig.h>
/***************************************************************************
CONSTANTS

View File

@ -42,12 +42,13 @@
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <libchdr/chd.h>
#include <libchdr/cdrom.h>
#include <libchdr/flac.h>
#include <libchdr/huffman.h>
#include "types.h"
#include "osd.h"
#include "macros.h"
#include "chd.h"
#include "cdrom.h"
#include "flac.h"
#include "huffman.h"
#include "zlib.h"
#include "LzmaEnc.h"
#include "LzmaDec.h"

View File

@ -46,8 +46,7 @@
extern "C" {
#endif
#include <libchdr/coretypes.h>
#include <libchdr/chdconfig.h>
#include "coretypes.h"
/***************************************************************************

View File

@ -11,7 +11,7 @@
#include <assert.h>
#include <string.h>
#include <libchdr/flac.h>
#include "flac.h"
#define DR_FLAC_IMPLEMENTATION
#include <dr_libs/dr_flac.h>

View File

@ -101,7 +101,7 @@
#include <stdio.h>
#include <string.h>
#include <libchdr/huffman.h>
#include "huffman.h"
#define MAX(x,y) ((x) > (y) ? (x) : (y))

View File

@ -13,7 +13,7 @@
#ifndef __HUFFMAN_H__
#define __HUFFMAN_H__
#include <libchdr/bitstream.h>
#include "bitstream.h"
/***************************************************************************