Changeset 4466321 in rtems


Ignore:
Timestamp:
11/13/14 14:13:24 (9 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
4.11, 5, master
Children:
d82f9de1
Parents:
1bcd0378
git-author:
Sebastian Huber <sebastian.huber@…> (11/13/14 14:13:24)
git-committer:
Sebastian Huber <sebastian.huber@…> (11/20/14 09:30:21)
Message:

Add crypt_r(), etc.

Add crypt_add_format(), crypt_r(), crypt_md5_r(), crypt_sha256_r() and
crypt_sha512_r().

Files:
12 added
6 edited

Legend:

Unmodified
Added
Removed
  • cpukit/Makefile.am

    r1bcd0378 r4466321  
    77SUBDIRS = . score rtems sapi posix
    88SUBDIRS += dev
     9SUBDIRS += libcrypt
    910SUBDIRS += libcsupport libblock libfs
    1011SUBDIRS += libnetworking librpc
     
    4748include_sys_HEADERS =
    4849
     50include_HEADERS += include/crypt.h
    4951include_HEADERS += include/memory.h
    5052
  • cpukit/configure.ac

    r1bcd0378 r4466321  
    421421libfs/src/nfsclient/Makefile
    422422libgnat/Makefile
     423libcrypt/Makefile
    423424libcsupport/Makefile
    424425libnetworking/Makefile
  • cpukit/preinstall.am

    r1bcd0378 r4466321  
    5151        @: > $(PROJECT_INCLUDE)/sys/$(dirstamp)
    5252PREINSTALL_DIRS += $(PROJECT_INCLUDE)/sys/$(dirstamp)
     53
     54$(PROJECT_INCLUDE)/crypt.h: include/crypt.h $(PROJECT_INCLUDE)/$(dirstamp)
     55        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/crypt.h
     56PREINSTALL_FILES += $(PROJECT_INCLUDE)/crypt.h
    5357
    5458$(PROJECT_INCLUDE)/memory.h: include/memory.h $(PROJECT_INCLUDE)/$(dirstamp)
  • cpukit/wrapup/Makefile.am

    r1bcd0378 r4466321  
    2020endif
    2121
     22TMP_LIBS += ../libcrypt/libcrypt.a
    2223TMP_LIBS += ../libcsupport/libcsupport.a
    2324TMP_LIBS += ../libblock/libblock.a
  • testsuites/libtests/Makefile.am

    r1bcd0378 r4466321  
    22
    33_SUBDIRS = POSIX
     4_SUBDIRS += crypt01
    45_SUBDIRS += sha
    56_SUBDIRS += i2c01
  • testsuites/libtests/configure.ac

    r1bcd0378 r4466321  
    6767# Explicitly list all Makefiles here
    6868AC_CONFIG_FILES([Makefile
     69crypt01/Makefile
    6970sha/Makefile
    7071i2c01/Makefile
Note: See TracChangeset for help on using the changeset viewer.