Index: head/crypto/openssh/regress/unittests/sshkey/test_sshkey.c =================================================================== --- head/crypto/openssh/regress/unittests/sshkey/test_sshkey.c +++ head/crypto/openssh/regress/unittests/sshkey/test_sshkey.c @@ -9,6 +9,7 @@ #include #include +#include #include #ifdef HAVE_STDINT_H #include @@ -79,7 +80,7 @@ critopts = sshbuf_new(); ASSERT_PTR_NE(critopts, NULL); - put_opt(critopts, "force-command", "/usr/local/bin/nethack"); + put_opt(critopts, "force-command", _PATH_LOCALBASE "/bin/nethack"); put_opt(critopts, "source-address", "192.168.0.0/24,127.0.0.1,::1"); exts = sshbuf_new(); Index: head/lib/libc/nls/msgcat.c =================================================================== --- head/lib/libc/nls/msgcat.c +++ head/lib/libc/nls/msgcat.c @@ -49,6 +49,7 @@ #include #include #include +#include #include #include #include @@ -58,7 +59,9 @@ #include "../locale/xlocale_private.h" -#define _DEFAULT_NLS_PATH "/usr/share/nls/%L/%N.cat:/usr/share/nls/%N/%L:/usr/local/share/nls/%L/%N.cat:/usr/local/share/nls/%N/%L" +#define _DEFAULT_NLS_PATH "/usr/share/nls/%L/%N.cat:/usr/share/nls/%N/%L:" \ + _PATH_LOCALBASE "/share/nls/%L/%N.cat:" \ + _PATH_LOCALBASE "/share/nls/%N/%L" #define RLOCK(fail) { int ret; \ if (__isthreaded && \ Index: head/lib/libfetch/common.c =================================================================== --- head/lib/libfetch/common.c +++ head/lib/libfetch/common.c @@ -44,6 +44,7 @@ #include #include #include +#include #include #include #include @@ -1071,7 +1072,7 @@ /* * Configure peer verification based on environment. */ -#define LOCAL_CERT_FILE "/usr/local/etc/ssl/cert.pem" +#define LOCAL_CERT_FILE _PATH_LOCALBASE "/etc/ssl/cert.pem" #define BASE_CERT_FILE "/etc/ssl/cert.pem" static int fetch_ssl_setup_peer_verification(SSL_CTX *ctx, int verbose) Index: head/sbin/nvmecontrol/nvmecontrol.c =================================================================== --- head/sbin/nvmecontrol/nvmecontrol.c +++ head/sbin/nvmecontrol/nvmecontrol.c @@ -179,7 +179,7 @@ cmd_init(); cmd_load_dir("/lib/nvmecontrol", NULL, NULL); - cmd_load_dir("/usr/local/lib/nvmecontrol", NULL, NULL); + cmd_load_dir(_PATH_LOCALBASE "/lib/nvmecontrol", NULL, NULL); cmd_dispatch(argc, argv, NULL); Index: head/secure/lib/libssh/Makefile =================================================================== --- head/secure/lib/libssh/Makefile +++ head/secure/lib/libssh/Makefile @@ -53,6 +53,10 @@ SRCS+= krb5_config.h .endif +.if defined(LOCALBASE) +CFLAGS+= -D_PATH_SSH_ASKPASS_DEFAULT='"${LOCALBASE}/bin/ssh-askpass"' +.endif + NO_LINT= LIBADD+= crypto crypt z Index: head/secure/usr.bin/ssh-agent/Makefile =================================================================== --- head/secure/usr.bin/ssh-agent/Makefile +++ head/secure/usr.bin/ssh-agent/Makefile @@ -16,6 +16,10 @@ #LDADD+= -lldns .endif +.if defined(LOCALBASE) +CFLAGS+= -DDEFAULT_PKCS11_WHITELIST='"/usr/lib*/*,${LOCALBASE}/lib*/*"' +.endif + LIBADD+= crypto .include Index: head/tools/tools/ath/athprom/athprom.c =================================================================== --- head/tools/tools/ath/athprom/athprom.c +++ head/tools/tools/ath/athprom/athprom.c @@ -41,12 +41,13 @@ #include #include #include +#include #include #include #include #ifndef DIR_TEMPLATE -#define DIR_TEMPLATE "/usr/local/libdata/athprom" +#define DIR_TEMPLATE _PATH_LOCALBASE "/libdata/athprom" #endif struct ath_diag atd; Index: head/tools/tools/net80211/wesside/wesside/wesside.c =================================================================== --- head/tools/tools/net80211/wesside/wesside/wesside.c +++ head/tools/tools/net80211/wesside/wesside/wesside.c @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include @@ -154,7 +155,7 @@ * XXX builtin pathnames */ #define CRACK_LOCAL_CMD "../aircrack/aircrack" -#define CRACK_INSTALL_CMD "/usr/local/bin/aircrack" +#define CRACK_INSTALL_CMD _PATH_LOCALBASE "/bin/aircrack" #define INCR 10000 int thresh_incr = INCR; Index: head/usr.bin/fortune/fortune/pathnames.h =================================================================== --- head/usr.bin/fortune/fortune/pathnames.h +++ head/usr.bin/fortune/fortune/pathnames.h @@ -30,5 +30,7 @@ * $FreeBSD$ */ +#include + #define FORTDIR "/usr/share/games/fortune:" \ - "/usr/local/share/games/fortune" + _PATH_LOCALBASE "/share/games/fortune" Index: head/usr.bin/mail/pathnames.h =================================================================== --- head/usr.bin/mail/pathnames.h +++ head/usr.bin/mail/pathnames.h @@ -33,8 +33,10 @@ * $FreeBSD$ */ +#include + #define _PATH_EX "/usr/bin/ex" #define _PATH_HELP "/usr/share/misc/mail.help" #define _PATH_TILDE "/usr/share/misc/mail.tildehelp" -#define _PATH_MASTER_RC "/usr/share/misc/mail.rc:/usr/local/etc/mail.rc:/etc/mail.rc" +#define _PATH_MASTER_RC "/usr/share/misc/mail.rc:" _PATH_LOCALBASE "/etc/mail.rc:/etc/mail.rc" #define _PATH_LESS "/usr/bin/less" Index: head/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmpimport.c =================================================================== --- head/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmpimport.c +++ head/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmpimport.c @@ -81,6 +81,7 @@ #include #include #include +#include #include #include #include @@ -148,7 +149,7 @@ static const char *paths[MAX_PATHS + 1] = { "/usr/share/snmp/defs", - "/usr/local/share/snmp/defs", + _PATH_LOCALBASE "/share/snmp/defs", NULL }; Index: head/usr.sbin/cpucontrol/cpucontrol.c =================================================================== --- head/usr.sbin/cpucontrol/cpucontrol.c +++ head/usr.sbin/cpucontrol/cpucontrol.c @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include @@ -59,7 +60,7 @@ int verbosity_level = 0; -#define DEFAULT_DATADIR "/usr/local/share/cpucontrol" +#define DEFAULT_DATADIR _PATH_LOCALBASE "/share/cpucontrol" #define FLAG_I 0x01 #define FLAG_M 0x02 Index: head/usr.sbin/cron/cron/pathnames.h =================================================================== --- head/usr.sbin/cron/cron/pathnames.h +++ head/usr.sbin/cron/cron/pathnames.h @@ -59,7 +59,7 @@ /* 4.3BSD-style crontab */ #define SYSCRONTAB "/etc/crontab" #define SYSCRONTABS "/etc/cron.d" -#define LOCALSYSCRONTABS "/usr/local/etc/cron.d" +#define LOCALSYSCRONTABS _PATH_LOCALBASE "/etc/cron.d" /* what editor to use if no EDITOR or VISUAL * environment variable specified. Index: head/usr.sbin/mailwrapper/mailwrapper.c =================================================================== --- head/usr.sbin/mailwrapper/mailwrapper.c +++ head/usr.sbin/mailwrapper/mailwrapper.c @@ -40,6 +40,7 @@ #include #include +#include #include #include #include @@ -105,7 +106,7 @@ addarg(&al, argv[0]); snprintf(localmailerconf, MAXPATHLEN, "%s/etc/mail/mailer.conf", - getenv("LOCALBASE") ? getenv("LOCALBASE") : "/usr/local"); + getenv("LOCALBASE") ? getenv("LOCALBASE") : _PATH_LOCALBASE); mailerconf = localmailerconf; if ((config = fopen(localmailerconf, "r")) == NULL) Index: head/usr.sbin/pciconf/pathnames.h =================================================================== --- head/usr.sbin/pciconf/pathnames.h +++ head/usr.sbin/pciconf/pathnames.h @@ -1,4 +1,6 @@ /* $FreeBSD$ */ +#include + #define _PATH_DEVPCI "/dev/pci" #define _PATH_PCIVDB "/usr/share/misc/pci_vendors" -#define _PATH_LPCIVDB "/usr/local/share/pciids/pci.ids" +#define _PATH_LPCIVDB _PATH_LOCALBASE "/share/pciids/pci.ids" Index: head/usr.sbin/pkg/config.h =================================================================== --- head/usr.sbin/pkg/config.h +++ head/usr.sbin/pkg/config.h @@ -31,7 +31,8 @@ #ifndef _PKG_CONFIG_H #define _PKG_CONFIG_H -#define _LOCALBASE "/usr/local" +#include + #define URL_SCHEME_PREFIX "pkg+" typedef enum { Index: head/usr.sbin/pkg/config.c =================================================================== --- head/usr.sbin/pkg/config.c +++ head/usr.sbin/pkg/config.c @@ -40,6 +40,7 @@ #include #include #include +#include #include #include @@ -454,7 +455,7 @@ } /* Read LOCALBASE/etc/pkg.conf first. */ - localbase = getenv("LOCALBASE") ? getenv("LOCALBASE") : _LOCALBASE; + localbase = getenv("LOCALBASE") ? getenv("LOCALBASE") : _PATH_LOCALBASE; snprintf(confpath, sizeof(confpath), "%s/etc/pkg.conf", localbase); Index: head/usr.sbin/pkg/pkg.c =================================================================== --- head/usr.sbin/pkg/pkg.c +++ head/usr.sbin/pkg/pkg.c @@ -1046,7 +1046,7 @@ yes = false; snprintf(pkgpath, MAXPATHLEN, "%s/sbin/pkg", - getenv("LOCALBASE") ? getenv("LOCALBASE") : _LOCALBASE); + getenv("LOCALBASE") ? getenv("LOCALBASE") : _PATH_LOCALBASE); if (argc > 1 && strcmp(argv[1], "bootstrap") == 0) { bootstrap_only = true;