mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
glibc in Fedora is currently configured with `--enable-obsolete-rpc', so I guess we can see which way the wind is blowing. (1) This changes our configure script to prefer libtirpc if it is available. If libtirpc is _not_ available then: (a) Headers must be located in <rpc/xdr.h>, or the user must supply the right CFLAGS. (b) XDR functions must be located in one of -lportablexdr, -lrpc, -lxdr, -lnsl or no library at all (ie. -lc), and the user must set LDFLAGS if needed. (2) We no longer add these paths automatically to $(CFLAGS)/$(LIBS). Any part of libguestfs which needs <rpc/*.h> or the xdr_* functions must use $(RPC_CFLAGS)/$(RPC_LIBS) explicitly. (3) Previously Mac OS X had a workaround for the broken 64 bit support in the supplied rpcgen. This workaround "activates" all the time if you use tirpc, so breaking Linux after the above changes. tirpc is supported on OS X, so I think it's just better to use that rather than the broken rpcgen. For that reason I removed the workaround completely. Thanks: Roy Keene
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
# libguestfs
|
|
# Copyright (C) 2017 Red Hat Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
include $(top_srcdir)/subdir-rules.mk
|
|
|
|
generator_built = \
|
|
guestfs_protocol.x
|
|
|
|
BUILT_SOURCES = \
|
|
$(generator_built) \
|
|
guestfs_protocol.c \
|
|
guestfs_protocol.h
|
|
|
|
EXTRA_DIST = \
|
|
$(BUILT_SOURCES)
|
|
|
|
noinst_LTLIBRARIES = libprotocol.la
|
|
|
|
# Because rpcgen generates archaic code, we cannot use ordinary
|
|
# warnings here.
|
|
libprotocol_la_SOURCES = guestfs_protocol.c guestfs_protocol.h
|
|
libprotocol_la_CFLAGS = \
|
|
-Wall -Wno-unused -fno-strict-aliasing $(GCC_VISIBILITY_HIDDEN)
|
|
|
|
if HAVE_RPCGEN
|
|
|
|
guestfs_protocol.c: guestfs_protocol.x
|
|
rm -f $@-t $@-t2
|
|
$(RPCGEN) -c -o $@-t $<
|
|
$(SED) 's,\.\./\(\.\./\)*lib,.,' < $@-t > $@-t2
|
|
rm $@-t
|
|
mv $@-t2 $@
|
|
|
|
guestfs_protocol.h: guestfs_protocol.x
|
|
rm -f $@-t
|
|
$(RPCGEN) -h -o $@-t $<
|
|
mv $@-t $@
|
|
endif
|