1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2025-04-21 12:27:27 +03:00

ase: use libjpeg,libz,libpng,libfreetype from openwrt instead of included ones

(saves a little space, but also makes font rendering use our version of
libfreetype that is better tuned for the NanoNote's display)
This commit is contained in:
David Kühling
2011-06-23 16:40:42 +02:00
parent 238cd354f9
commit cbb09a522d
3 changed files with 252 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
Index: ase-0.8.2/makefile.gcc
===================================================================
--- ase-0.8.2.orig/makefile.gcc 2011-06-13 12:05:31.000000000 +0200
+++ ase-0.8.2/makefile.gcc 2011-06-13 12:20:00.000000000 +0200
--- ase-0.8.2.orig/makefile.gcc 2011-06-13 13:08:22.000000000 +0200
+++ ase-0.8.2/makefile.gcc 2011-06-21 16:27:06.000000000 +0200
@@ -21,15 +21,16 @@
LFLAGS += $(THIRD_PARTY_LIBS)
@@ -18,15 +18,15 @@ Index: ase-0.8.2/makefile.gcc
- CFLAGS += -s -O3 -DNDEBUG
- LFLAGS += -s -O3 -DNDEBUG
+ # order of include dirs important, need to add BUILD_CFLAGS after -I above
+ CFLAGS += -DNDEBUG $(BUILD_CFLAGS)
+ LFLAGS += -DNDEBUG
+ CFLAGS += $(BUILD_CFLAGS)
+ LFLAGS +=
endif
endif
Index: ase-0.8.2/makefile.linux
===================================================================
--- ase-0.8.2.orig/makefile.linux 2011-06-13 12:05:31.000000000 +0200
+++ ase-0.8.2/makefile.linux 2011-06-13 12:19:25.000000000 +0200
--- ase-0.8.2.orig/makefile.linux 2011-06-13 13:08:22.000000000 +0200
+++ ase-0.8.2/makefile.linux 2011-06-13 13:08:40.000000000 +0200
@@ -18,8 +18,8 @@
CFLAGS = `allegro-config --cflags debug`
LFLAGS = `allegro-config --libs debug`