This is the mail archive of the ecos-patches@sourceware.org mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

lwIP CFLAGS build options


This patch renames the CFLAGS_ADD and CFLAGS_REMOVE options to match
package macro name so they are picked up by the build system. Checked-in.

John Dallaway
eCos maintainer
Index: ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos-opt/net/net/lwip_tcpip/current/ChangeLog,v
retrieving revision 1.11
diff -U5 -r1.11 ChangeLog
--- ChangeLog	26 Jan 2010 11:27:48 -0000	1.11
+++ ChangeLog	7 Feb 2010 16:14:54 -0000
@@ -1,5 +1,10 @@
+2010-02-07  John Dallaway  <john@dallaway.org.uk>
+
+	* cdl/lwip_net.cdl: Rename CFLAGS_ADD and CFLAGS_REMOVE options to
+	match package macro name.
+
 2010-01-25  Simon Kallweit  <simon.kallweit@intefo.ch>
 
 	* all: Updated to lwIP 1.3.2
 
 2007-03-22  John Eigelaar  <jeigelaar@mweb.co.za>
@@ -210,11 +215,11 @@
 
 //===========================================================================
 //####ECOSGPLCOPYRIGHTBEGIN####
 // -------------------------------------------
 // This file is part of eCos, the Embedded Configurable Operating System.
-// Copyright (C) 2004 eCosCentric  
+// Copyright (C) 2004, 2010 Free Software Foundation 
 //
 // eCos is free software; you can redistribute it and/or modify it under
 // the terms of the GNU General Public License as published by the Free
 // Software Foundation; either version 2 or (at your option) any later version.
 //
Index: cdl/lwip_net.cdl
===================================================================
RCS file: /cvs/ecos/ecos-opt/net/net/lwip_tcpip/current/cdl/lwip_net.cdl,v
retrieving revision 1.6
diff -U5 -r1.6 lwip_net.cdl
--- cdl/lwip_net.cdl	26 Jan 2010 11:27:48 -0000	1.6
+++ cdl/lwip_net.cdl	7 Feb 2010 16:14:55 -0000
@@ -1898,27 +1898,27 @@
                     Hostname for DNS resolve and ping."
             }
         }
     }
 
-    cdl_component CYGPKG_LWIP_OPTIONS {
+    cdl_component CYGPKG_NET_LWIP_OPTIONS {
         display         "lwIP build options"
         flavor          none
         no_define
 
-        cdl_option CYGPKG_LWIP_CFLAGS_ADD {
+        cdl_option CYGPKG_NET_LWIP_CFLAGS_ADD {
             display         "Additional compiler flags"
             flavor          data
             no_define
             default_value   { "" }
             description     "
                 This option modifies the set of compiler flags for building the
                 lwIP package. These flags are used in addition to the set of
                 global flags."
         }
 
-        cdl_option CYGPKG_LWIP_CFLAGS_REMOVE {
+        cdl_option CYGPKG_NET_LWIP_CFLAGS_REMOVE {
             display         "Suppressed compiler flags"
             flavor          data
             no_define
             default_value   { "" }
             description     "

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]