Changeset b422de6c in rtems
- Timestamp:
- 07/08/03 13:50:16 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 44c889a
- Parents:
- 13482e5d
- Location:
- cpukit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r13482e5d rb422de6c 1 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Merge-in posix/configure.ac. 4 Merge-in itron/configure.ac. 5 Misc. cosmetical changes. 6 * Makefile.am: Add posix, itron to SUBDIRS. 7 1 8 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
cpukit/Makefile.am
r13482e5d rb422de6c 7 7 include $(top_srcdir)/automake/multilib.am 8 8 9 SUBDIRS = . include ada score rtems sapi libblock libfs 9 SUBDIRS = . include ada score rtems sapi posix itron 10 SUBDIRS += libblock libfs 10 11 SUBDIRS += libnetworking 11 12 SUBDIRS += @subdirs@ -
cpukit/configure.ac
r13482e5d rb422de6c 46 46 [INLINEdir="inline"]) 47 47 AC_SUBST(INLINEdir) 48 AM_CONDITIONAL(INLINE,test x"$INLINEdir" = x"inline" )49 AM_CONDITIONAL(MACROS,test x"$INLINEdir" = x"macros" )50 AM_CONDITIONAL(HAS_MP,test x"$HAS_MP" = x"yes" )51 52 48 AC_DEFINE(RTEMS_VERSION,["][_RTEMS_VERSION]["],[RTEMS version string]) 53 49 54 AM_CONDITIONAL(HAS_POSIX,test x"$HAS_POSIX_API" = x"yes")55 AM_CONDITIONAL(HAS_ITRON,test x"$HAS_ITRON_API" = x"yes")56 AM_CONDITIONAL(HAS_NETWORKING,test x"$HAS_NETWORKING" = x"yes")57 58 AS_IF([test x"$HAS_POSIX_API" = x"yes"],59 [AC_CONFIG_SUBDIRS([posix])]60 )61 AS_IF([test x"$HAS_ITRON_API" = x"yes"],62 [AC_CONFIG_SUBDIRS(itron)]63 )64 50 RTEMS_CPU_SUBDIRS([score/cpu]) 65 # FIXME: All ports should have a libscorecpu.a - But the powerpc doesn't!66 AM_CONDITIONAL([LIBSCORECPU],67 [test -f "${srcdir}/score/cpu/${RTEMS_CPU}/cpu.c"])68 69 51 AC_CONFIG_SUBDIRS([libcsupport]) 70 52 … … 82 64 ]) 83 65 ]) 84 AM_CONDITIONAL(LIBRPC,[test "$LIBRPC" = "yes"])85 86 66 AC_ARG_ENABLE([ada], 87 67 [AC_HELP_STRING([--enable-ada],[enable ada support])], … … 103 83 ]) 104 84 105 AM_CONDITIONAL(UNIX,[test x"${RTEMS_CPU}" = x"unix"])106 85 107 86 AS_IF([test x"${enable_unixlib}" = x"yes"], … … 110 89 ) 111 90 91 # BSD-isms, used throughout the sources 92 # Not really used by this configure script 93 # FIXME: They should be eliminated if possible. 112 94 AC_CHECK_FUNCS([strsep strcasecmp snprintf]) 95 AC_CHECK_FUNCS([bcopy bcmp]) 96 AC_CHECK_FUNCS([isascii fileno]) 113 97 114 98 AM_CONFIG_HEADER([score/include/rtems/score/cpuopts-tmp.h],[ … … 168 152 ]) 169 153 154 AM_CONDITIONAL(LIBRPC,[test "$LIBRPC" = "yes"]) 155 AM_CONDITIONAL(UNIX,[test x"${RTEMS_CPU}" = x"unix"]) 156 157 AM_CONDITIONAL(INLINE,test x"$INLINEdir" = x"inline" ) 158 AM_CONDITIONAL(MACROS,test x"$INLINEdir" = x"macros" ) 159 AM_CONDITIONAL(HAS_MP,test x"$HAS_MP" = x"yes" ) 160 161 AM_CONDITIONAL(HAS_POSIX,test x"$HAS_POSIX_API" = x"yes") 162 AM_CONDITIONAL(HAS_ITRON,test x"$HAS_ITRON_API" = x"yes") 163 AM_CONDITIONAL(HAS_NETWORKING,test x"$HAS_NETWORKING" = x"yes") 164 165 # FIXME: All ports should have a libscorecpu.a - But the powerpc doesn't! 166 AM_CONDITIONAL([LIBSCORECPU], 167 [test -f "${srcdir}/score/cpu/${RTEMS_CPU}/cpu.c"]) 168 170 169 AM_CONDITIONAL(RTEMS_ADA,[test x"$enable_ada" = x"yes" \ 171 170 && test x"$HAS_POSIX_API" = x"yes"]) … … 175 174 176 175 # Explicitly list all Makefiles here 177 AC_CONFIG_FILES([Makefile 176 AC_CONFIG_FILES([ 177 Makefile 178 178 include/Makefile 179 ada/Makefile 179 180 rtems/Makefile 180 181 sapi/Makefile 181 182 score/Makefile 182 183 score/cpu/Makefile 183 ]) 184 185 AC_CONFIG_FILES([libblock/Makefile]) 186 187 AC_CONFIG_FILES([libfs/Makefile 184 posix/Makefile 185 itron/Makefile 186 libblock/Makefile 187 libfs/Makefile 188 188 libfs/src/Makefile 189 189 libfs/src/imfs/Makefile 190 libfs/src/dosfs/Makefile]) 191 192 AC_CONFIG_FILES([libnetworking/Makefile 190 libfs/src/dosfs/Makefile 191 libnetworking/Makefile 193 192 libnetworking/lib/Makefile 194 193 libnetworking/libc/Makefile 195 libnetworking/wrapup/Makefile]) 196 197 AC_CONFIG_FILES([ada/Makefile]) 198 199 AC_CONFIG_FILES([libmisc/Makefile 194 libnetworking/wrapup/Makefile 195 libmisc/Makefile 200 196 libmisc/cpuuse/Makefile 201 197 libmisc/shell/Makefile … … 211 207 libmisc/mw-fb/Makefile 212 208 libmisc/wrapup/Makefile 213 ]) 214 215 AC_CONFIG_FILES([wrapup/Makefile])209 210 wrapup/Makefile 211 ]) 216 212 217 213 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.