Changeset 9e36910 in rtems


Ignore:
Timestamp:
04/09/18 04:37:39 (6 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
5, master
Children:
f0bcae38
Parents:
af6168c6
git-author:
Sebastian Huber <sebastian.huber@…> (04/09/18 04:37:39)
git-committer:
Sebastian Huber <sebastian.huber@…> (04/12/18 05:08:53)
Message:

NFS: Remove support for cexp

Avoid use of RTEMS_RELLDFLAGS.

Close #3390.

Location:
cpukit/libfs/src/nfsclient
Files:
5 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libfs/src/nfsclient/Makefile.am

    raf6168c6 r9e36910  
    11include $(top_srcdir)/automake/compile.am
    2 
    3 #%dirutils.obj: %dirutils.o
    4 #       $(LD) -r -o $@ $^
    5 project_lib_PROGRAMS = dirutils.rel
    6 dirutils_rel_SOURCES = src/dirutils.c
    7 dirutils_rel_CPPFLAGS = $(AM_CPPFLAGS)
    8 dirutils_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
    92
    103if LIBNETWORKING
    114project_lib_LIBRARIES = libnfs.a
    12 
    13 $(PROJECT_LIB)/libnfs.a: libnfs.a
    14         $(INSTALL_DATA) $< $(PROJECT_LIB)/libnfs.a
    15 TMPINSTALL_FILES = $(PROJECT_LIB)/libnfs.a
    16 
    17 
    18 # if you have CEXP set this variable to 'YES'
    19 # and some "help" info will be compiled in.
    20 libnfs_a_SOURCES = src/rpcio.c src/rpcio.h
    21 libnfs_a_SOURCES += src/nfs.c src/sock_mbuf.c src/xdr_mbuf.c
    22 libnfs_a_SOURCES += proto/mount_prot.h proto/nfs_prot.h
    23 
    24 # With CEXP
    25 # libnfs_a_SOURCES += dirutils.c rpcio.modini.c nfs.modini.c cexphelp.c
    26 
    27 # PGMS=${ARCH}/nfs.obj ${ARCH}/rpcio.obj ${ARCH}/dirutils.obj
    28 
    29 libnfs_a_CPPFLAGS = $(AM_CPPFLAGS)
    30 libnfs_a_CPPFLAGS += -I$(srcdir)/proto
    31 libnfs_a_CPPFLAGS += -UHAVE_CEXP
    32 
    33 #%nfs.obj: %nfs.o %nfs.modini.o
    34 #       $(LD) -r -o $@ $^ -L../proto/$(ARCH) -lnfsprot
    35 project_lib_PROGRAMS += nfs.rel
    36 nfs_rel_SOURCES = src/nfs.c proto/nfs_prot.h proto/mount_prot.h
    37 nfs_rel_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/proto
    38 nfs_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
    39 nfs_rel_LDADD = libnfs.a
    40 
    41 #%rpcio.obj: %rpcio.o %sock_mbuf.o %xdr_mbuf.o %rpcio.modini.o
    42 #       $(LD) -r -o $@ $^
    43 project_lib_PROGRAMS += rpcio.rel
    44 rpcio_rel_SOURCES = src/rpcio.c src/sock_mbuf.c src/xdr_mbuf.c
    45 rpcio_rel_CPPFLAGS = $(AM_CPPFLAGS)
    46 rpcio_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
    47 
    48 libnfs_a_SOURCES += proto/nfs_prot_xdr.c proto/nfs_prot.h
    49 libnfs_a_SOURCES += proto/mount_prot_xdr.c proto/mount_prot.h
    50 
    51 libnfs_a_CPPFLAGS += -I$(srcdir)/proto
    52 libnfs_a_CPPFLAGS += -UHAVE_CEXP
     5libnfs_a_SOURCES =
     6libnfs_a_SOURCES += proto/mount_prot_xdr.c
     7libnfs_a_SOURCES += proto/nfs_prot_xdr.c
     8libnfs_a_SOURCES += src/nfs.c
     9libnfs_a_SOURCES += src/rpcio.c
     10libnfs_a_SOURCES += src/sock_mbuf.c
     11libnfs_a_SOURCES += src/xdr_mbuf.c
    5312endif
    5413
  • cpukit/libfs/src/nfsclient/src/nfs.c

    raf6168c6 r9e36910  
    8181#include <arpa/inet.h>
    8282
    83 #include <nfs_prot.h>
    84 #include <mount_prot.h>
     83#include "../proto/nfs_prot.h"
     84#include "../proto/mount_prot.h"
    8585
    8686#include "rpcio.h"
Note: See TracChangeset for help on using the changeset viewer.