File: 02_use_external_libagg.patch

package info (click to toggle)
contextfree 3.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,260 kB
  • sloc: cpp: 37,992; lex: 414; makefile: 123; sh: 43; python: 34
file content (26 lines) | stat: -rw-r--r-- 596 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Description: Context Free ships with a local copy of libagg which it uses by
 default. The Makefile can be configured to use a system copy of
 libagg and this patch makes this change to the Makefile.
Author: John Horigan <john@glyphic.com>
Forwarded: not-needed

--- a/Makefile
+++ b/Makefile
@@ -98,14 +98,14 @@
 #
 # Configuration for local AGG
 #
-SRCS += $(AGG_SRCS)
-INC_DIRS += $(AGG_DIR) $(AGG_DIR)/agg2
+#SRCS += $(AGG_SRCS)
+#INC_DIRS += $(AGG_DIR) $(AGG_DIR)/agg2
 
 
 #
 # Configuration for system AGG
 #
-#LIBS += agg
+LIBS += agg
 
 
 OBJS = $(patsubst %.cpp,$(OBJ_DIR)/%.o,$(SRCS))