File: 05_use_debian_cflags.diff

package info (click to toggle)
sleuthkit 2.06-3etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 7,128 kB
  • ctags: 5,133
  • sloc: ansic: 41,406; sh: 14,123; perl: 4,745; cpp: 4,297; makefile: 925; python: 29
file content (44 lines) | stat: -rw-r--r-- 1,273 bytes parent folder | download | duplicates (3)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
--- sleuthkit-1.71.orig/src/fstools/Makefile
+++ sleuthkit-1.71/src/fstools/Makefile
@@ -5,7 +5,7 @@
 OPT	= -O -Wall 
 DEBUG	= -g
 INCL	= -I../misc
-CFLAGS	= $(DEFS) $(INCL) $(OPT) $(DEBUG)
+CFLAGS	+= $(DEFS) $(INCL)
 LIBOBJ	= fs_buf.o fs_inode.o fs_io.o fs_open.o \
 	fs_dent.o fs_types.o fs_data.o get.o \
 	ffs.o ffs_dent.o ext2fs.o ext2fs_dent.o ext2fs_journal.o \
--- sleuthkit-1.71.orig/src/hashtools/Makefile
+++ sleuthkit-1.71/src/hashtools/Makefile
@@ -4,7 +4,7 @@
 DEBUG	= -g
 BIN	= ../../bin
 PROGS	= $(BIN)/hfind
-CFLAGS	= $(DEFS) $(INCL) $(OPT) $(DEBUG) -I. $(XFLAGS)
+CFLAGS	+= $(DEFS) $(INCL) -I. $(XFLAGS)
 
 LIBOBJ  = md5c.o sha1c.o
 LIB = hash_lib.a
--- sleuthkit-1.71.orig/src/misc/Makefile
+++ sleuthkit-1.71/src/misc/Makefile
@@ -4,7 +4,7 @@
 # OPT	= -O
 OPT	= -O -Wall
 DEBUG	= -g
-CFLAGS	= $(DEFS) $(OPT) $(DEBUG)
+CFLAGS	+= $(DEFS)
 LIBOBJ	= mymalloc.o error.o strerror.o split_at.o 
 LIB	= aux_lib.a
 BIN_DIR	= 
--- sleuthkit-1.71.orig/src/mmtools/Makefile
+++ sleuthkit-1.71/src/mmtools/Makefile
@@ -5,7 +5,7 @@
 OPT	= -O -Wall 
 DEBUG	= -g
 INCL	= -I../misc
-CFLAGS	= $(DEFS) $(INCL) $(OPT) $(DEBUG)
+CFLAGS	+= $(DEFS) $(INCL)
 LIBOBJ	= mm_part.o mm_open.o mm_types.o dos.o mac.o bsd.o sun.o get.o gpt.o
 LIBS	= ../misc/aux_lib.a
 LIB	= mm_lib.a