Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 410575
Collapse All | Expand All

(-)a/gs/base/sjpegc.c (-1 / +7 lines)
Lines 35-40 Link Here
35
 */
35
 */
36
36
37
#include "gconfig_.h"
37
#include "gconfig_.h"
38
39
#if SHARE_JPEG == 0
40
/* Don't use the non-public insterface if we're linking to a shared lib */
38
#ifdef DONT_HAVE_JMEMSYS_H
41
#ifdef DONT_HAVE_JMEMSYS_H
39
42
40
void *
43
void *
Lines 67-72 jpeg_mem_term(j_common_ptr cinfo); Link Here
67
#else
70
#else
68
#include "jmemsys.h"		/* for prototypes */
71
#include "jmemsys.h"		/* for prototypes */
69
#endif
72
#endif
73
#endif /* SHAREJPEG == 0 */
70
74
71
private_st_jpeg_block();
75
private_st_jpeg_block();
72
76
Lines 173-178 gs_jpeg_destroy(stream_DCT_state * st) Link Here
173
    return 0;
177
    return 0;
174
}
178
}
175
179
180
#if SHARE_JPEG == 0
181
/* Don't use the non-public insterface if we're linking to a shared lib */
176
/*
182
/*
177
 * These routines replace the low-level memory manager of the IJG library.
183
 * These routines replace the low-level memory manager of the IJG library.
178
 * They pass malloc/free calls to the Ghostscript memory manager.
184
 * They pass malloc/free calls to the Ghostscript memory manager.
Lines 277-279 jpeg_mem_term(j_common_ptr cinfo) Link Here
277
{
283
{
278
    /* no work */
284
    /* no work */
279
}
285
}
280
- 
286
#endif /* SHAREJPEG == 0 */

Return to bug 410575