Changeset 1f64ebf in rtems


Ignore:
Timestamp:
11/19/02 17:10:36 (21 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
47c0220
Parents:
86f12bc
Message:

2002-11-19 Ralf Corsepius <corsepiu@…>

  • aclocal/sysv-ipc.m4: Adaptation to autoconf-2.5x.
  • aclocal/check-newlib.m4: Sync with ../aclocal/check-newlib.m4.
Location:
cpukit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r86f12bc r1f64ebf  
     12002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * aclocal/sysv-ipc.m4: Adaptation to autoconf-2.5x.
     4        * aclocal/check-newlib.m4: Sync with ../aclocal/check-newlib.m4.
     5
    162002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    27
    3         * include/rtems/libio.h: Remove.
     8        * include/rtems/libio_.h: Remove.
    49
    5102002-11-18      Joel Sherrill <joel@OARcorp.com>
  • cpukit/aclocal/check-newlib.m4

    r86f12bc r1f64ebf  
    99  [
    1010dnl some versions of newlib provide not_required_by_rtems
    11     AC_TRY_LINK(
    12       [extern void not_required_by_rtems() ;],
    13       [not_required_by_rtems()],
    14       rtems_cv_use_newlib="yes")
     11    AC_LINK_IFELSE(
     12      [AC_LANG_PROGRAM([[extern void not_required_by_rtems() ;]],
     13        [[not_required_by_rtems()]])],
     14      [rtems_cv_use_newlib="yes"],[])
    1515
    1616dnl some versions of newlib provide rtems_provides_crt0()
    1717    AS_IF([test -z "$rtems_cv_use_newlib"],
    18       [AC_TRY_LINK(
    19         [extern void rtems_provides_crt0() ;],
    20         [rtems_provides_crt0()],
    21         rtems_cv_use_newlib="yes",
    22         rtems_cv_use_newlib="no")]
    23     )
     18      [AC_LINK_IFELSE(
     19         [AC_LANG_PROGRAM([[extern void rtems_provides_crt0() ;]],
     20           [[rtems_provides_crt0()]])],
     21         [rtems_cv_use_newlib="yes"],[rtems_cv_use_newlib="no"])
     22    ])
    2423  ])
    2524  RTEMS_USE_NEWLIB="$rtems_cv_use_newlib"
  • cpukit/aclocal/sysv-ipc.m4

    r86f12bc r1f64ebf  
    2121AC_CACHE_CHECK([whether $host defines union semun],
    2222  rtems_cv_HAS_UNION_SEMUN,
    23   [AC_TRY_COMPILE([
     23  [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
    2424#include <sys/types.h>
    2525#include <sys/ipc.h>
    26 #include <sys/sem.h>],
    27 [union semun arg ;],
    28 [rtems_cv_HAS_UNION_SEMUN="yes"],
    29 [rtems_cv_HAS_UNION_SEMUN="no"])
     26#include <sys/sem.h>]], [[union semun arg ;]])],[rtems_cv_HAS_UNION_SEMUN="yes"],[rtems_cv_HAS_UNION_SEMUN="no"])
    3027])
    3128if test "$rtems_cv_HAS_UNION_SEMUN" = "yes"; then
     
    4037rtems_cv_sysv_sem,
    4138[
    42 AC_TRY_RUN(
    43 [
     39AC_RUN_IFELSE([AC_LANG_SOURCE([[
    4440#include <sys/types.h>
    4541#include <sys/ipc.h>
     
    6359  exit(0);
    6460}
    65 ],
    66 rtems_cv_sysv_sem="yes", rtems_cv_sysv_sem="no", :)
     61]])],[rtems_cv_sysv_sem="yes"],[rtems_cv_sysv_sem="no"],[:])
    6762])
    6863])
     
    7469rtems_cv_sysv_shm,
    7570[
    76 AC_TRY_RUN([
     71AC_RUN_IFELSE([AC_LANG_SOURCE([[
    7772#include <sys/types.h>
    7873#include <sys/ipc.h>
     
    8681  exit(0);
    8782}
    88 ],
    89 rtems_cv_sysv_shm="yes", rtems_cv_sysv_shm="no", :)
     83]])],[rtems_cv_sysv_shm="yes"],[rtems_cv_sysv_shm="no"],[:])
    9084])
    9185])
     
    9791rtems_cv_sysv_msg,
    9892[
    99 AC_TRY_RUN([
     93AC_RUN_IFELSE([AC_LANG_SOURCE([[
    10094#include <sys/types.h>
    10195#include <sys/ipc.h>
     
    109103  exit(0);
    110104}
    111 ],
    112 rtems_cv_sysv_msg="yes", rtems_cv_sysv_msg="no", :)
     105]])],[rtems_cv_sysv_msg="yes"],[rtems_cv_sysv_msg="no"],[:])
    113106])
    114107])
Note: See TracChangeset for help on using the changeset viewer.