Changeset 07da959 in rtems
- Timestamp:
- 07/08/03 15:27:02 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b5825ab
- Parents:
- 44c889a
- Location:
- cpukit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r44c889a r07da959 1 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Merge-in libcsupport/configure.ac. 4 * Makefile.am: Add libcsupport to SUBDIRS. 5 1 6 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
cpukit/Makefile.am
r44c889a r07da959 8 8 9 9 SUBDIRS = . include ada score rtems sapi posix itron 10 SUBDIRS += lib block libfs10 SUBDIRS += libcsupport libblock libfs 11 11 SUBDIRS += libnetworking 12 12 SUBDIRS += @subdirs@ -
cpukit/configure.ac
r44c889a r07da959 49 49 50 50 RTEMS_CPU_SUBDIRS([score/cpu]) 51 AC_CONFIG_SUBDIRS([libcsupport])52 51 53 52 AS_IF([test x"$HAS_NETWORKING" = x"yes"],[ … … 64 63 ]) 65 64 ]) 65 66 66 AC_ARG_ENABLE([ada], 67 67 [AC_HELP_STRING([--enable-ada],[enable ada support])], … … 82 82 test -n "${enable_unixlib}" || enable_unixlib="yes" 83 83 ]) 84 85 84 86 85 AS_IF([test x"${enable_unixlib}" = x"yes"], … … 152 151 ]) 153 152 153 AS_IF([test x"$RTEMS_USE_NEWLIB" != x"yes"],[ 154 ## Provide headers only if the host doesn't. 155 AC_CHECK_HEADERS([sys/cdefs.h],[NEED_SYS_CDEFS_H=no],[NEED_SYS_CDEFS_H=yes]) 156 AC_CHECK_HEADERS([stdint.h],[NEED_STDINT_H=no],[NEED_STDINT_H=yes]) 157 AC_CHECK_HEADERS([inttypes.h],[NEED_INTTYPES_H=no],[NEED_INTTYPES=yes]) 158 ],[ 159 ## Using newlib, we provide sys/cdefs.h 160 NEED_SYS_CDEFS_H=yes 161 NEED_STDINT_H=yes 162 NEED_INTTYPES_H=yes 163 ]) 164 165 # FIXME: These checks are only in here to provide 166 # configuration-time diagnostics and are not really used. 167 AC_CHECK_DECLS([_POSIX_LOGIN_NAME_MAX],,,[#include <limits.h>]) 168 AC_CHECK_DECLS([CHAR_BIT],,,[#include <limits.h>]) 169 170 AS_IF([test x"${RTEMS_USE_NEWLIB}" = x"yes"],[ 171 ac_cv_have_decl_XTABS=yes 172 ac_cv_have_decl_OLCUC=yes 173 ## SUSV3, but seemingly not available on some platforms (reportedly FreeBSD) 174 ac_cv_have_decl_ONLRET=yes 175 ac_cv_have_decl_ONOCR=yes 176 ac_cv_have_decl_TABDLY=yes 177 ac_cv_have_decl_OCRNL=yes 178 ac_cv_have_decl_IUCLC=yes 179 ## SUSV3-XSI extension 180 ac_cv_have_decl_ECHOPRT=yes 181 ]) 182 183 # FIXME: Some cruft to work around portability issues with termios.c 184 ## Seemingly not covered by any standard. 185 AC_CHECK_DECLS([XTABS],,,[#include <termios.h>]) 186 AC_CHECK_DECLS([OLCUC],,,[#include <termios.h>]) 187 ## SUSV3, but seemingly not available on some platforms (reportedly FreeBSD) 188 AC_CHECK_DECLS([ONLRET],,,[#include <termios.h>]) 189 AC_CHECK_DECLS([ONOCR],,,[#include <termios.h>]) 190 AC_CHECK_DECLS([TABDLY],,,[#include <termios.h>]) 191 AC_CHECK_DECLS([OCRNL],,,[#include <termios.h>]) 192 AC_CHECK_DECLS([IUCLC],,,[#include <termios.h>]) 193 ## SUSV3-XSI extension 194 AC_CHECK_DECLS([ECHOPRT],,,[#include <termios.h>]) 195 196 ## BSD-ism, excluded from POSIX, but available on most platforms 197 AC_CHECK_DECLS([sbrk],,,[#include <unistd.h>]) 198 199 ## Check if libc provides BSD's strlcpy/strlcat 200 AC_CHECK_FUNCS(strlcpy strlcat) 201 202 203 # ... far too many conditionals ... 154 204 AM_CONDITIONAL(LIBRPC,[test "$LIBRPC" = "yes"]) 155 205 AM_CONDITIONAL(UNIX,[test x"${RTEMS_CPU}" = x"unix"]) 206 AM_CONDITIONAL(NEWLIB,test x"$RTEMS_USE_NEWLIB" = x"yes") 156 207 157 208 AM_CONDITIONAL(INLINE,test x"$INLINEdir" = x"inline" ) … … 169 220 AM_CONDITIONAL(RTEMS_ADA,[test x"$enable_ada" = x"yes" \ 170 221 && test x"$HAS_POSIX_API" = x"yes"]) 222 223 AM_CONDITIONAL([NEED_SYS_CDEFS_H],[test x"$NEED_SYS_CDEFS_H" = x"yes"]) 224 AM_CONDITIONAL([NEED_STDINT_H],[test x"$NEED_STDINT_H" = x"yes"]) 225 AM_CONDITIONAL([NEED_INTTYPES_H],[test x"$NEED_INTTYPES_H" = x"yes"]) 171 226 172 227 AM_CONDITIONAL([LIBSHELL],[test x"$HAVE_ASSIGNABLE_STDIO" = x"yes"]) … … 189 244 libfs/src/imfs/Makefile 190 245 libfs/src/dosfs/Makefile 246 libcsupport/Makefile 191 247 libnetworking/Makefile 192 248 libnetworking/lib/Makefile
Note: See TracChangeset
for help on using the changeset viewer.