mirror of
https://github.com/gluster/gluster-block.git
synced 2026-02-05 12:45:33 +01:00
glibc has removed the rpc functions from current releases. Instead of relying on glibc providing these, the modern libtirpc library should be used instead. Change-Id: I46c979e52147abce956255de5ad16b01b5621f52 Updates: #56 Signed-off-by: Niels de Vos <ndevos@redhat.com> Reviewed-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com> Reviewed-by: Xiubo Li <xiubli@redhat.com> Reviewed-by: Amar Tumballi <amarts@redhat.com>
16 lines
482 B
Makefile
16 lines
482 B
Makefile
sbin_PROGRAMS = gluster-block
|
|
|
|
gluster_block_SOURCES = gluster-block.c
|
|
|
|
gluster_block_LDADD = $(TIRPC_LIBS) \
|
|
$(top_builddir)/rpc/libgbrpc.la \
|
|
$(top_builddir)/utils/libgb.la
|
|
|
|
gluster_block_CFLAGS = $(TIRPC_CFLAGS) -DDATADIR=\"$(localstatedir)\" \
|
|
-I$(top_srcdir)/ -I$(top_srcdir)/utils/ \
|
|
-I$(top_srcdir)/rpc -I$(top_builddir)/rpc/rpcl
|
|
|
|
DISTCLEANFILES = Makefile.in
|
|
|
|
CLEANFILES = *~
|