You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
700 B

Index: Makefile
--- Makefile.orig 2009-08-27 19:59:54.000000000 +0200
+++ Makefile 2010-03-14 15:31:58.000000000 +0100
@@ -1,5 +1,8 @@
all: sfnt2woff woff2sfnt
+.c.o:
+ $(CC) $(CFLAGS) -o $@ -c $<
+
sfnt2woff: sfnt2woff.o woff.o woff.h Makefile
$(CC) $(LDFLAGS) -o $@ $< woff.o -lz
Index: woff-private.h
--- woff-private.h.orig 2009-09-16 14:08:54.000000000 +0200
+++ woff-private.h 2010-03-14 15:33:29.000000000 +0100
@@ -77,8 +77,6 @@
(uint16_t) ((uint8_t*)&(x))[1] )
#endif
-#pragma pack(push,1)
-
typedef struct {
uint32_t version;
uint16_t numTables;
@@ -146,6 +144,4 @@
uint16_t newIndex;
} tableOrderRec;
-#pragma pack(pop)
-
#endif