Make symlink/compatibilty mode disabled by default
Signed-off-by: Lon Hohberger <lon@users.sourceforge.net>
This commit is contained in:
parent
088799e2e7
commit
4f870c4fd0
@ -1,7 +1,7 @@
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
###############################################################################
|
###############################################################################
|
||||||
##
|
##
|
||||||
## Copyright (C) 2006 Red Hat, Inc.
|
## Copyright (C) 2009 Red Hat, Inc.
|
||||||
##
|
##
|
||||||
## This copyrighted material is made available to anyone wishing to use,
|
## This copyrighted material is made available to anyone wishing to use,
|
||||||
## modify, copy, or redistribute it subject to the terms and conditions
|
## modify, copy, or redistribute it subject to the terms and conditions
|
||||||
|
@ -1,18 +1,21 @@
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
###############################################################################
|
###############################################################################
|
||||||
##
|
##
|
||||||
## Copyright (C) 2006 Red Hat, Inc.
|
## Copyright (C) 2009 Red Hat, Inc.
|
||||||
##
|
##
|
||||||
## This copyrighted material is made available to anyone wishing to use,
|
## This copyrighted material is made available to anyone wishing to use,
|
||||||
## modify, copy, or redistribute it subject to the terms and conditions
|
## modify, copy, or redistribute it subject to the terms and conditions
|
||||||
## of the GNU General Public License v.2.
|
## of the GNU General Public License v.2
|
||||||
##
|
##
|
||||||
###############################################################################
|
###############################################################################
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
include ../Makefile.top
|
include ../Makefile.top
|
||||||
|
|
||||||
|
# Serial mode
|
||||||
TARGET=fence_virt
|
TARGET=fence_virt
|
||||||
|
|
||||||
|
# XVM/Multicast mode compatibility link
|
||||||
LINK=fence_xvm
|
LINK=fence_xvm
|
||||||
|
|
||||||
fence_virt_SOURCES = mcast.c serial.c main.c options.c
|
fence_virt_SOURCES = mcast.c serial.c main.c options.c
|
||||||
@ -23,7 +26,15 @@ INCLUDES=-I../include `nss-config --cflags` `nspr-config --cflags` \
|
|||||||
# nss sucks in way too much stuff
|
# nss sucks in way too much stuff
|
||||||
LIBS+=-lnss3 `xml2-config --libs`
|
LIBS+=-lnss3 `xml2-config --libs`
|
||||||
|
|
||||||
all: ${TARGET} ${LINK}
|
TARGETS=${TARGET}
|
||||||
|
|
||||||
|
# From configure script
|
||||||
|
xvm_compat=@xvm_compat@
|
||||||
|
ifeq ($(xvm_compat),yes)
|
||||||
|
TARGETS+=${LINK}
|
||||||
|
endif
|
||||||
|
|
||||||
|
all: ${TARGETS}
|
||||||
|
|
||||||
fence_xvm: ${TARGET}
|
fence_xvm: ${TARGET}
|
||||||
ln -snf $^ $@
|
ln -snf $^ $@
|
||||||
@ -39,7 +50,9 @@ install: all
|
|||||||
install -d ${DESTDIR}/${sbindir} ; \
|
install -d ${DESTDIR}/${sbindir} ; \
|
||||||
fi
|
fi
|
||||||
install -m755 ${TARGET} ${DESTDIR}/${sbindir}
|
install -m755 ${TARGET} ${DESTDIR}/${sbindir}
|
||||||
|
ifeq ($(xvm_compat),yes)
|
||||||
cp -a ${LINK} ${DESTDIR}/${sbindir}
|
cp -a ${LINK} ${DESTDIR}/${sbindir}
|
||||||
|
endif
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f ${TARGET} ${LINK} *.o *.d *~
|
rm -f ${TARGET} ${LINK} *.o *.d *~
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
###############################################################################
|
###############################################################################
|
||||||
##
|
##
|
||||||
## Copyright (C) 2006 Red Hat, Inc.
|
## Copyright (C) 2009 Red Hat, Inc.
|
||||||
##
|
##
|
||||||
## This copyrighted material is made available to anyone wishing to use,
|
## This copyrighted material is made available to anyone wishing to use,
|
||||||
## modify, copy, or redistribute it subject to the terms and conditions
|
## modify, copy, or redistribute it subject to the terms and conditions
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
###############################################################################
|
###############################################################################
|
||||||
##
|
##
|
||||||
## Copyright (C) 2006 Red Hat, Inc.
|
## Copyright (C) 2009 Red Hat, Inc.
|
||||||
##
|
##
|
||||||
## This copyrighted material is made available to anyone wishing to use,
|
## This copyrighted material is made available to anyone wishing to use,
|
||||||
## modify, copy, or redistribute it subject to the terms and conditions
|
## modify, copy, or redistribute it subject to the terms and conditions
|
||||||
|
@ -98,6 +98,15 @@ AC_ARG_ENABLE(serial-plugin,
|
|||||||
[ mod_serial=$enableval ], [ mod_serial=no ])
|
[ mod_serial=$enableval ], [ mod_serial=no ])
|
||||||
AC_SUBST(mod_serial)
|
AC_SUBST(mod_serial)
|
||||||
|
|
||||||
|
#
|
||||||
|
# Compatibility symlink: disabled by default
|
||||||
|
#
|
||||||
|
AC_ARG_ENABLE(xvm-compat,
|
||||||
|
[AS_HELP_STRING([--enable-xvm-compat],
|
||||||
|
[Enable serial listener plugin])],
|
||||||
|
[ xvm_compat=$enableval ], [ xvm_compat=no ])
|
||||||
|
AC_SUBST(xvm_compat)
|
||||||
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([Makefile.top
|
AC_CONFIG_FILES([Makefile.top
|
||||||
Makefile
|
Makefile
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
###############################################################################
|
###############################################################################
|
||||||
##
|
##
|
||||||
## Copyright (C) 2006 Red Hat, Inc.
|
## Copyright (C) 2009 Red Hat, Inc.
|
||||||
##
|
##
|
||||||
## This copyrighted material is made available to anyone wishing to use,
|
## This copyrighted material is made available to anyone wishing to use,
|
||||||
## modify, copy, or redistribute it subject to the terms and conditions
|
## modify, copy, or redistribute it subject to the terms and conditions
|
||||||
|
Loading…
Reference in New Issue
Block a user