Changeset c23386a in rtems
- Timestamp:
- 08/08/02 12:54:15 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ef39005
- Parents:
- a19dd35
- Location:
- c/src/lib/libbsp/m68k/ods68302
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/m68k/ods68302/ChangeLog
ra19dd35 rc23386a 1 2002-08-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * startup/Makefile.am: Remove -DGDB_MONITOR_ACTIVE (Not used 4 anywhere). 5 Add ODS60302_DEBUG conditional. 6 * include/bsp.h: Fix broken bsp_cat macros (Not compliant to gcc31). 7 * configure.ac: Add --enable-ods60302-debug. 8 Add ODS60302_DEBUG conditional. 9 1 10 2002-08-05 Joel Sherrill <joel@OARcorp.com> 2 11 -
c/src/lib/libbsp/m68k/ods68302/configure.ac
ra19dd35 rc23386a 16 16 RTEMS_CANONICALIZE_TOOLS 17 17 18 AC_ARG_ENABLE(ods68302-debug, 19 [AC_HELP_STRING([--enable-ods68302-debug], 20 [whether to support bsp debugging])], 21 [case $enable_ods68302_debug in 22 yes ) ODS68302_DEBUG=yes;; 23 * ) ODS68302_DEBUG=no;; 24 esac], 25 [ODS68302_DEBUG=no]) 18 26 27 AM_CONDITIONAL(ODS68302_DEBUG,[test "$ODS68302_DEBUG" = "yes"]) 28 29 # FIXME: Something seem to be very broken inside of this BSP 30 # It plays tricks with VARIANT 31 # For now, deactivate it. 32 # BSP_VARIANT=${BSP_VARIANT-bare} 33 # AC_DEFINE_UNQUOTED([VARIANT],[${BSP_VARIANT}],[missing explanation]) 19 34 20 35 # Explicitly list all Makefiles here -
c/src/lib/libbsp/m68k/ods68302/include/bsp.h
ra19dd35 rc23386a 45 45 46 46 #define __bsp_cat(x, y) x ## y 47 #define __bsp_xcat(x, y) __bsp_cat(x, 47 #define __bsp_xcat(x, y) __bsp_cat(x,y) 48 48 #define __bsp_str(s) #s 49 49 #define __bsp_xstr(s) __bsp_str(s) 50 50 51 #define __BSP_HEADER_FILE__ __bsp_xcat(VARIANT, 51 #define __BSP_HEADER_FILE__ __bsp_xcat(VARIANT,.h) 52 52 #define __BSP_HEADER_FILE_STR__ __bsp_xstr(__BSP_HEADER_FILE__) 53 53
Note: See TracChangeset
for help on using the changeset viewer.