Changeset ceadb90 in rtems


Ignore:
Timestamp:
11/20/08 21:50:11 (15 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 5, master
Children:
d05ab351
Parents:
4aec1cf
Message:

2008-11-20 Joel Sherrill <joel.sherrill@…>

  • libcsupport/Makefile.am, posix/Makefile.am: Comment out including files which contain routines which are now provided by the newlib posix subdirectory. Document a few which come from the unix directory.
Location:
cpukit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r4aec1cf rceadb90  
     12008-11-20      Joel Sherrill <joel.sherrill@oarcorp.com>
     2
     3        * libcsupport/Makefile.am, posix/Makefile.am: Comment out including
     4        files which contain routines which are now provided by the newlib
     5        posix subdirectory.  Document a few which come from the unix directory.
     6
    172008-11-20      Joel Sherrill <joel.sherrill@oarcorp.com>
    28
  • cpukit/libcsupport/Makefile.am

    r4aec1cf rceadb90  
    7272endif
    7373
    74 DIRECTORY_SCAN_C_FILES = src/opendir.c src/closedir.c src/readdir.c \
    75     src/readdir_r.c src/rewinddir.c src/scandir.c src/seekdir.c \
    76     src/telldir.c src/getcwd.c
     74DIRECTORY_SCAN_C_FILES =
     75## 20 Nov 2008: Now using these from newlib's posix directory
     76## DIRECTORY_SCAN_C_FILES = src/opendir.c src/closedir.c src/readdir.c \
     77##     src/rewinddir.c src/scandir.c src/seekdir.c src/telldir.c
     78## Newlib SHOULD have provided this one
     79DIRECTORY_SCAN_C_FILES += src/readdir_r.c
     80## Comment out when using these from newlib's unix directory
     81DIRECTORY_SCAN_C_FILES += src/getcwd.c
    7782
    7883ID_C_FILES = src/getegid.c src/geteuid.c src/getgid.c src/getgroups.c \
     
    9196PASSWORD_GROUP_C_FILES = src/getpwent.c
    9297
    93 TERMINAL_IDENTIFICATION_C_FILES = src/ctermid.c src/isatty.c src/ttyname.c
     98TERMINAL_IDENTIFICATION_C_FILES = src/ctermid.c src/isatty.c
     99## 20 Nov 2008: Now using these from newlib's posix directory
     100TERMINAL_IDENTIFICATION_C_FILES += src/isatty.c
     101## Comment out when using these from newlib's unix directory
     102TERMINAL_IDENTIFICATION_C_FILES += src/ttyname.c
    94103
    95104LIBC_GLUE_C_FILES = src/__getpid.c src/__gettod.c src/__times.c \
  • cpukit/posix/Makefile.am

    r4aec1cf rceadb90  
    1818
    1919# Some POSIX functions that are nice to always have
    20 libposix_a_SOURCES += src/sleep.c src/usleep.c src/nanosleep.c \
    21     src/clockgettime.c src/clocksettime.c
     20## 20 Nov 2008: Now using these from newlib's posix directory
     21## libposix_a_SOURCES += src/sleep.c src/usleep.c
     22libposix_a_SOURCES += src/nanosleep.c src/clockgettime.c src/clocksettime.c
    2223
    2324if HAS_PTHREADS
Note: See TracChangeset for help on using the changeset viewer.