From 48e301d3291a6514e035c0122a0fdcca1044afe3 Mon Sep 17 00:00:00 2001 From: Simon Goldschmidt Date: Tue, 14 Feb 2012 21:43:21 +0100 Subject: [PATCH] Fixed unix makefiles by adding IPv6 source files to the binary --- ports/unix/proj/lib/Makefile | 2 +- ports/unix/proj/minimal/Makefile | 2 +- ports/unix/proj/unixsim/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ports/unix/proj/lib/Makefile b/ports/unix/proj/lib/Makefile index 3b735f8..ce00d20 100644 --- a/ports/unix/proj/lib/Makefile +++ b/ports/unix/proj/lib/Makefile @@ -73,7 +73,7 @@ NETIFFILES=$(LWIPDIR)/netif/etharp.c ARCHFILES=$(wildcard $(LWIPARCH)/*.c $(LWIPARCH)/netif/tapif.c $(LWIPARCH)/netif/tunif.c $(LWIPARCH)/netif/unixif.c $(LWIPARCH)/netif/list.c $(LWIPARCH)/netif/tcpdump.c) # LWIPFILES: All the above. -LWIPFILES=$(COREFILES) $(CORE4FILES) $(APIFILES) $(NETIFFILES) $(ARCHFILES) +LWIPFILES=$(COREFILES) $(CORE4FILES) $(CORE6FILES) $(APIFILES) $(NETIFFILES) $(ARCHFILES) LWIPFILESW=$(wildcard $(LWIPFILES)) LWIPOBJS=$(notdir $(LWIPFILESW:.c=.o)) diff --git a/ports/unix/proj/minimal/Makefile b/ports/unix/proj/minimal/Makefile index 2922854..0f6f8d9 100644 --- a/ports/unix/proj/minimal/Makefile +++ b/ports/unix/proj/minimal/Makefile @@ -77,7 +77,7 @@ NETIFFILES=$(LWIPDIR)/netif/etharp.c mintapif.c ARCHFILES=$(LWIPARCH)/sys_arch.c # LWIPFILES: All the above. -LWIPFILES=$(COREFILES) $(CORE4FILES) $(SNMPFILES) $(NETIFFILES) $(ARCHFILES) +LWIPFILES=$(COREFILES) $(CORE4FILES) $(CORE6FILES) $(SNMPFILES) $(NETIFFILES) $(ARCHFILES) LWIPFILESW=$(wildcard $(LWIPFILES)) LWIPOBJS=$(notdir $(LWIPFILESW:.c=.o)) diff --git a/ports/unix/proj/unixsim/Makefile b/ports/unix/proj/unixsim/Makefile index 96cbe53..b2e7026 100644 --- a/ports/unix/proj/unixsim/Makefile +++ b/ports/unix/proj/unixsim/Makefile @@ -106,7 +106,7 @@ APPFILES=$(CONTRIBDIR)/apps/httpserver_raw/fs.c $(CONTRIBDIR)/apps/httpserver_ra $(CONTRIBDIR)/apps/shell/shell.c # LWIPFILES: All the above. -LWIPFILES=$(COREFILES) $(CORE4FILES) $(SNMPFILES) $(APIFILES) $(NETIFFILES) $(ARCHFILES) +LWIPFILES=$(COREFILES) $(CORE4FILES) $(CORE6FILES) $(SNMPFILES) $(APIFILES) $(NETIFFILES) $(ARCHFILES) LWIPFILESW=$(wildcard $(LWIPFILES)) LWIPOBJS=$(notdir $(LWIPFILESW:.c=.o))