mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-29 13:07:50 +00:00
Fix bug: Make xfrout works well in source code tree(reported in ticket 151). (now the UNIX_SOCKET_FILE shared by auth srv and xfrout locates in @@LOCALSTATEDIR@@)
git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1853 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
parent
c8457efe93
commit
3afb8da35e
@ -431,7 +431,7 @@ AC_OUTPUT([src/bin/cfgmgr/b10-cfgmgr.py
|
|||||||
src/bin/msgq/tests/msgq_test
|
src/bin/msgq/tests/msgq_test
|
||||||
src/bin/msgq/run_msgq.sh
|
src/bin/msgq/run_msgq.sh
|
||||||
src/bin/auth/auth.spec.pre
|
src/bin/auth/auth.spec.pre
|
||||||
src/bin/auth/spec_config.h
|
src/bin/auth/spec_config.h.pre
|
||||||
src/lib/config/tests/data_def_unittests_config.h
|
src/lib/config/tests/data_def_unittests_config.h
|
||||||
src/lib/python/isc/config/tests/config_test
|
src/lib/python/isc/config/tests/config_test
|
||||||
src/lib/python/isc/cc/tests/cc_test
|
src/lib/python/isc/cc/tests/cc_test
|
||||||
|
@ -23,6 +23,9 @@ endif
|
|||||||
auth.spec: auth.spec.pre
|
auth.spec: auth.spec.pre
|
||||||
$(SED) -e "s|@@LOCALSTATEDIR@@|$(localstatedir)|" auth.spec.pre >$@
|
$(SED) -e "s|@@LOCALSTATEDIR@@|$(localstatedir)|" auth.spec.pre >$@
|
||||||
|
|
||||||
|
spec_config.h: spec_config.h.pre
|
||||||
|
$(SED) -e "s|@@LOCALSTATEDIR@@|$(localstatedir)|" spec_config.h.pre >$@
|
||||||
|
|
||||||
pkglibexec_PROGRAMS = b10-auth
|
pkglibexec_PROGRAMS = b10-auth
|
||||||
b10_auth_SOURCES = auth_srv.cc auth_srv.h
|
b10_auth_SOURCES = auth_srv.cc auth_srv.h
|
||||||
b10_auth_SOURCES += common.h
|
b10_auth_SOURCES += common.h
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
// Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
|
// Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
|
||||||
//
|
//
|
||||||
// Permission to use, copy, modify, and/or distribute this software for any
|
// Permission to use, copy, modify, and/or distribute this software for any
|
||||||
// purpose with or without fee is hereby granted, provided that the above
|
// purpose with or without fee is hereby granted, provided that the above
|
||||||
// copyright notice and this permission notice appear in all copies.
|
// copyright notice and this permission notice appear in all copies.
|
||||||
//
|
//
|
||||||
// THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
|
// THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
|
||||||
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||||
// AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
|
// AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||||
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||||
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
||||||
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
// PERFORMANCE OF THIS SOFTWARE.
|
// PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
#define AUTH_SPECFILE_LOCATION "@prefix@/share/@PACKAGE@/auth.spec"
|
#define AUTH_SPECFILE_LOCATION "@prefix@/share/@PACKAGE@/auth.spec"
|
||||||
#define UNIX_SOCKET_FILE "@prefix@/var/auth_xfrout_conn"
|
#define UNIX_SOCKET_FILE "@@LOCALSTATEDIR@@/auth_xfrout_conn"
|
@ -44,7 +44,7 @@ else:
|
|||||||
DATAROOTDIR = "@datarootdir@"
|
DATAROOTDIR = "@datarootdir@"
|
||||||
SPECFILE_PATH = "@datadir@/@PACKAGE@".replace("${datarootdir}", DATAROOTDIR).replace("${prefix}", PREFIX)
|
SPECFILE_PATH = "@datadir@/@PACKAGE@".replace("${datarootdir}", DATAROOTDIR).replace("${prefix}", PREFIX)
|
||||||
SPECFILE_LOCATION = SPECFILE_PATH + "/xfrout.spec"
|
SPECFILE_LOCATION = SPECFILE_PATH + "/xfrout.spec"
|
||||||
UNIX_SOCKET_FILE = "@localstatedir@".replace("${prefix}", PREFIX) + "/auth_xfrout_conn"
|
UNIX_SOCKET_FILE = "@@LOCALSTATEDIR@@/auth_xfrout_conn"
|
||||||
|
|
||||||
MAX_TRANSFERS_OUT = 10
|
MAX_TRANSFERS_OUT = 10
|
||||||
verbose_mode = False
|
verbose_mode = False
|
||||||
|
Loading…
x
Reference in New Issue
Block a user