[pisa-src] r1605 - in trunk: configure.ac pisacd/cdmain.c pisasd/sdmain.c tools/subversion/pisa_runautobuild

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Tue, 10 Nov 2009 16:08:35 +0100

Author: biurrun
Date: Tue Nov 10 16:08:35 2009
New Revision: 1605

Log:
Remove CONFIG_PISA_OPENWRT compile-time option.
It is no longer used anywhere.

Modified:
   trunk/configure.ac
   trunk/pisacd/cdmain.c
   trunk/pisasd/sdmain.c
   trunk/tools/subversion/pisa_runautobuild

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac  Tue Nov 10 15:41:29 2009        (r1604)
+++ trunk/configure.ac  Tue Nov 10 16:08:35 2009        (r1605)
@@ -66,18 +66,6 @@
 fi
 AM_CONDITIONAL(PISA_LOGGING, test x"$enable_logging" = x"yes")
 
-AC_ARG_ENABLE(openwrt,
-              AC_HELP_STRING([--enable-openwrt],
-                             [enable building of OpenWRT supporting parts 
(default=no)]),
-              [enable_openwrt=$enableval],
-              [enable_openwrt=no])
-AC_MSG_CHECKING([whether to use OpenWRT])
-AC_MSG_RESULT([$enable_openwrt])
-if test x"$enable_openwrt" = x"yes"; then
-        AC_DEFINE(CONFIG_PISA_OPENWRT)
-        AH_TEMPLATE(CONFIG_PISA_OPENWRT)
-        AC_SUBST(OPENWRT_CFLAGS, "-lc")
-fi
 
 # Set default AM_CFLAGS for the complete project.
 AC_SUBST(AM_CFLAGS, "-std=gnu99 -Wall -Wextra -Wredundant-decls 
-Wstrict-prototypes -Wdisabled-optimization -Wpointer-arith -Wundef -Winline 
-Wno-deprecated-declarations -Wmissing-prototypes -Wwrite-strings -Wcast-qual 
-Wshadow -Werror")

Modified: trunk/pisacd/cdmain.c
==============================================================================
--- trunk/pisacd/cdmain.c       Tue Nov 10 15:41:29 2009        (r1604)
+++ trunk/pisacd/cdmain.c       Tue Nov 10 16:08:35 2009        (r1605)
@@ -146,12 +146,6 @@
        fprintf(stderr, " -DEBUG");
 #endif /* CONFIG_PISA_DEBUG */
 
-#ifdef CONFIG_PISA_OPENWRT
-       fprintf(stderr, " +OPENWRT");
-#else
-       fprintf(stderr, " -OPENWRT");
-#endif /* CONFIG_PISA_OPENWRT */
-
        fprintf(stderr, "\n");
 
        exit(EXIT_FAILURE);

Modified: trunk/pisasd/sdmain.c
==============================================================================
--- trunk/pisasd/sdmain.c       Tue Nov 10 15:41:29 2009        (r1604)
+++ trunk/pisasd/sdmain.c       Tue Nov 10 16:08:35 2009        (r1605)
@@ -154,12 +154,6 @@
        fprintf(stderr, " -DEBUG");
 #endif /* CONFIG_PISA_DEBUG */
 
-#ifdef CONFIG_PISA_OPENWRT
-       fprintf(stderr, " +OPENWRT");
-#else
-       fprintf(stderr, " -OPENWRT");
-#endif /* CONFIG_PISA_OPENWRT */
-
        fprintf(stderr, "\n");
 
        exit(EXIT_FAILURE);

Modified: trunk/tools/subversion/pisa_runautobuild
==============================================================================
--- trunk/tools/subversion/pisa_runautobuild    Tue Nov 10 15:41:29 2009        
(r1604)
+++ trunk/tools/subversion/pisa_runautobuild    Tue Nov 10 16:08:35 2009        
(r1605)
@@ -49,7 +49,6 @@
 compile_pisa
 compile_pisa --disable-debug
 compile_pisa --enable-logging
-compile_pisa --enable-openwrt
 compile_pisa --enable-performance
 
 # Compile PISA within an OpenWrt checkout

Other related posts:

  • » [pisa-src] r1605 - in trunk: configure.ac pisacd/cdmain.c pisasd/sdmain.c tools/subversion/pisa_runautobuild - Diego Biurrun