Replace create_from_file with empty blob if HB_NO_OPEN is defined
This commit is contained in:
parent
ccf1448238
commit
bb4cdf8e0b
|
@ -38,6 +38,10 @@
|
||||||
|
|
||||||
using namespace OT;
|
using namespace OT;
|
||||||
|
|
||||||
|
#ifdef HB_NO_OPEN
|
||||||
|
#define hb_blob_create_from_file(x) hb_blob_get_empty ()
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char **argv)
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
|
|
@ -34,6 +34,10 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#ifdef HB_NO_OPEN
|
||||||
|
#define hb_blob_create_from_file(x) hb_blob_get_empty ()
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char **argv)
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#ifdef HB_NO_OPEN
|
||||||
|
#define hb_blob_create_from_file(x) hb_blob_get_empty ()
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char **argv)
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
|
|
@ -35,6 +35,10 @@
|
||||||
#include "hb-ft.h"
|
#include "hb-ft.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HB_NO_OPEN
|
||||||
|
#define hb_blob_create_from_file(x) hb_blob_get_empty ()
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char **argv)
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
|
|
@ -27,6 +27,10 @@
|
||||||
|
|
||||||
#include <cairo.h>
|
#include <cairo.h>
|
||||||
|
|
||||||
|
#ifdef HB_NO_OPEN
|
||||||
|
#define hb_blob_create_from_file(x) hb_blob_get_empty ()
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined(HB_NO_COLOR) && defined(CAIRO_HAS_SVG_SURFACE)
|
#if !defined(HB_NO_COLOR) && defined(CAIRO_HAS_SVG_SURFACE)
|
||||||
|
|
||||||
#include "hb-ot.h"
|
#include "hb-ot.h"
|
||||||
|
|
|
@ -30,6 +30,10 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#ifdef HB_NO_OPEN
|
||||||
|
#define hb_blob_create_from_file(x) hb_blob_get_empty ()
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char **argv)
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
|
|
@ -34,6 +34,10 @@
|
||||||
#include "hb-ft.h"
|
#include "hb-ft.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HB_NO_OPEN
|
||||||
|
#define hb_blob_create_from_file(x) hb_blob_get_empty ()
|
||||||
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char **argv)
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue