summaryrefslogtreecommitdiffstats
path: root/recipes/driftnet/driftnet-0.1.6/arm.patch
blob: c5b715553c93fbf118d49c4839bc547b6aa5c192 (plain)
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
--- driftnet-0.1.6/Makefile~	2004-12-07 23:26:53.211878920 +0000
+++ driftnet-0.1.6/Makefile	2004-12-07 23:25:59.900983408 +0000
@@ -13,14 +13,14 @@
 #
 
 # Compiler to use.
-#CC = gcc
+CC ?= arm-linux-gcc
 
 # Basic compiler, linker flags; should not need any changes.
 CFLAGS += -g -Wall
 LDFLAGS += -g
 
 # You might need these if libpcap is installed somewhere random.
-CFLAGS += -I/usr/include/pcap
+#CFLAGS += -I/usr/include/pcap
 #LDFLAGS += -L/path/to/libpcap.so
 
 # Required on Linux to get BSDish definitions of the TCP/IP structs.
@@ -81,13 +81,13 @@
 	( echo '.\" DO NOT EDIT THIS FILE-- edit driftnet.1.in instead' ; sed s/@@@VERSION@@@/$(VERSION)/ ) < driftnet.1.in > driftnet.1
 
 endianness: endian
-	./endian > endianness
+
 
 endian: endian.c
 	$(CC) $(CFLAGS) -o endian endian.c
 
 %.o:    %.c Makefile endianness
-	$(CC) $(CFLAGS) `cat endianness` -c -o $@ $<
+	$(CC) $(CFLAGS) -DDRIFTNET_LITTLE_ENDIAN -c -o $@ $<
 
 clean:  nodepend
 	rm -f *~ *.bak *.o core $(BINS) TAGS driftnet.1 endian endianness
@@ -103,7 +103,7 @@
 	mv driftnet-$(VERSION).tar.gz ..
 	
 depend: endianness
-	makedepend -- $(CFLAGS) `cat endianness` -- $(SRCS)
+	makedepend -- $(CFLAGS) -DDRIFTNET_LITTLE_ENDIAN -- $(SRCS)
 	touch depend
 	rm -f Makefile.bak