Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 622506 | Differences between
and this patch

Collapse All | Expand All

(-)a/base/lib.mak (-3 / +10 lines)
Lines 1824-1832 $(GLOBJ)sjpx.$(OBJ) : $(GLSRC)sjpx.c $(AK) \ Link Here
1824
 $(gdebug_h) $(strimpl_h) $(sjpx_h) $(LIB_MAK) $(MAKEDIRS)
1824
 $(gdebug_h) $(strimpl_h) $(sjpx_h) $(LIB_MAK) $(MAKEDIRS)
1825
	$(GLJASCC) $(GLO_)sjpx.$(OBJ) $(C_) $(GLSRC)sjpx.c
1825
	$(GLJASCC) $(GLO_)sjpx.$(OBJ) $(C_) $(GLSRC)sjpx.c
1826
1826
1827
$(GLD)sjpx_.dev : $(LIB_MAK) $(ECHOGS_XE) $(LIB_MAK) $(MAKEDIRS)
1828
	$(SETMOD) $(GLD)sjpx_
1829
1830
# luratech version
1827
# luratech version
1831
sjpx_luratech=$(GLOBJ)sjpx_luratech.$(OBJ)
1828
sjpx_luratech=$(GLOBJ)sjpx_luratech.$(OBJ)
1832
$(GLD)sjpx_luratech.dev : $(LIB_MAK) $(ECHOGS_XE) \
1829
$(GLD)sjpx_luratech.dev : $(LIB_MAK) $(ECHOGS_XE) \
Lines 1856-1861 $(GLOBJ)sjpx_openjpeg.$(OBJ) : $(GLSRC)sjpx_openjpeg.c $(AK) \ Link Here
1856
	$(GLJPXOPJCC) $(GLO_)sjpx_openjpeg.$(OBJ) \
1853
	$(GLJPXOPJCC) $(GLO_)sjpx_openjpeg.$(OBJ) \
1857
		$(C_) -DOPJ_STATIC $(GLSRC)sjpx_openjpeg.c
1854
		$(C_) -DOPJ_STATIC $(GLSRC)sjpx_openjpeg.c
1858
1855
1856
# no jpx version
1857
sjpx_none=$(GLOBJ)sjpx_none.$(OBJ)
1858
$(GLD)sjpx_.dev : $(LIB_MAK) $(ECHOGS_XE) \
1859
 $(sjpx_none) $(LIB_MAK) $(MAKEDIRS)
1860
	$(SETMOD) $(GLD)sjpx_ $(sjpx_none)
1861
1862
$(GLOBJ)sjpx_none.$(OBJ) : $(GLSRC)sjpx_none.c $(AK) \
1863
 $(memory__h) $(LIB_MAK) $(MAKEDIRS)
1864
	$(GLJPXOPJCC) $(GLO_)sjpx_none.$(OBJ) $(C_) $(GLSRC)sjpx_none.c
1865
1859
# ---------------- Pixel-difference filters ---------------- #
1866
# ---------------- Pixel-difference filters ---------------- #
1860
# The Predictor facility of the LZW and Flate filters uses these.
1867
# The Predictor facility of the LZW and Flate filters uses these.
1861
1868
(-)a/base/sjpx_none.c (+28 lines)
Line 0 Link Here
1
/* Copyright (C) 2001-2012 Artifex Software, Inc.
2
   All Rights Reserved.
3
4
   This software is provided AS-IS with no warranty, either express or
5
   implied.
6
7
   This software is distributed under license and may not be copied,
8
   modified or distributed except as expressly authorized under the terms
9
   of the license contained in the file LICENSE in this distribution.
10
11
   Refer to licensing information at http://www.artifex.com or contact
12
   Artifex Software, Inc.,  7 Mt. Lassen Drive - Suite A-134, San Rafael,
13
   CA  94903, U.S.A., +1(415)492-9861, for further information.
14
*/
15
16
/* Dummy for no JPX support */
17
#include "memory_.h"
18
19
20
int sjpxd_create(gs_memory_t *mem)
21
{
22
    return 0;
23
}
24
25
void sjpxd_destroy(gs_memory_t *mem)
26
{
27
}
28

Return to bug 622506