shithub: jbig2

Download patch

ref: 422bfff0efc1eaedd88e5aa876a96ae36fbd13bb
parent: 389ea3e65131d1644f3c894bd67c6dc433ccb0ec
author: giles <giles@ded80894-8fb9-0310-811b-c03f3676ab4d>
date: Mon Dec 6 20:23:24 EST 2004

Add jbig2_refinement.c to the Jam and MSVC builds.


git-svn-id: http://svn.ghostscript.com/jbig2dec/trunk@357 ded80894-8fb9-0310-811b-c03f3676ab4d

--- a/Jamfile
+++ b/Jamfile
@@ -11,7 +11,7 @@
 	jbig2_arith.c jbig2_arith_int.c jbig2_arith_iaid.c jbig2_huffman.c
 	jbig2_segment.c jbig2_page.c
 	jbig2_symbol_dict.c jbig2_text.c
-	jbig2_generic.c jbig2_mmr.c
+	jbig2_generic.c jbig2_refinement.c jbig2_mmr.c
 	jbig2_image.c jbig2_image_pbm.c
 	jbig2_metadata.c 
 	jbig2.c
--- a/msvc.mak
+++ b/msvc.mak
@@ -24,11 +24,12 @@
 FE=-Fe
 
 OBJS=getopt$(OBJ) getopt1$(OBJ) jbig2$(OBJ) jbig2_arith$(OBJ) \
- jbig2_arith_iaid$(OBJ) jbig2_arith_int$(OBJ) jbig2_generic$(OBJ) \
- jbig2_huffman$(OBJ) jbig2_image$(OBJ) jbig2_image_pbm$(OBJ) \
- jbig2_image_png$(OBJ) jbig2_mmr$(OBJ) jbig2_page$(OBJ) \
+ jbig2_arith_iaid$(OBJ) jbig2_arith_int$(OBJ) jbig2_huffman$(OBJ) \ 
+ jbig2_generic$(OBJ) jbig2_refinement$(OBJ) \
+ jbig2_image$(OBJ) jbig2_image_pbm$(OBJ) jbig2_image_png$(OBJ) \
  jbig2_segment$(OBJ) jbig2_symbol_dict$(OBJ) jbig2_text$(OBJ) \
- jbig2_metadata$(OBJ) jbig2dec$(OBJ) sha1$(OBJ)
+ jbig2_mmr$(OBJ) jbig2_page$(OBJ) jbig2_metadata$(OBJ) \
+ jbig2dec$(OBJ) sha1$(OBJ)
 
 HDRS=getopt.h jbig2.h jbig2_arith.h jbig2_arith_iaid.h jbig2_arith_int.h \
  jbig2_generic.h jbig2_huffman.h jbig2_hufftab.h jbig2_image.h \
@@ -60,6 +61,9 @@
 
 jbig2_generic$(OBJ): jbig2_generic.c $(HDRS)
 	$(CC) $(CFLAGS) -c jbig2_generic.c
+
+jbig2_refinement$(OBJ): jbig2_refinement.c $(HDRS)
+	$(CC) $(CFLAGS) -c jbig2_refinement.c
 
 jbig2_huffman$(OBJ): jbig2_huffman.c $(HDRS)
 	$(CC) $(CFLAGS) -c jbig2_huffman.c