xref: /freebsd-src/contrib/smbfs/config.mk.in (revision f1b9d12761de3c33754f03e6d2a5bf9f1b40aad9)
1*f1b9d127SSheldon Hearn# SMBFS build configuration
2*f1b9d127SSheldon Hearn# copy this file to config.mk and edit as needed.
3*f1b9d127SSheldon Hearn# If you want to disable an option just comment it with '#' char.
4*f1b9d127SSheldon Hearn#
5*f1b9d127SSheldon Hearn# $Id: config.mk.in,v 1.16 2001/04/16 04:34:26 bp Exp $
6*f1b9d127SSheldon Hearn
7*f1b9d127SSheldon Hearn# Where your kernel source tree located (/usr/src/sys for example)
8*f1b9d127SSheldon HearnSYSDIR=/usr/src/sys
9*f1b9d127SSheldon Hearn
10*f1b9d127SSheldon Hearn# Where the kernel module gets installed
11*f1b9d127SSheldon HearnKMODDIR=/modules
12*f1b9d127SSheldon Hearn
13*f1b9d127SSheldon Hearn# Where all files get installed
14*f1b9d127SSheldon HearnPREFIX?=/usr/local
15*f1b9d127SSheldon Hearn
16*f1b9d127SSheldon Hearn# Build shared smb library, or link all executables statically
17*f1b9d127SSheldon HearnUSE_SHAREDLIBS=no
18*f1b9d127SSheldon Hearn
19*f1b9d127SSheldon Hearn# Comment this to disable support for encrypted passwords (requires
20*f1b9d127SSheldon Hearn# src/sys/crypto directory). By default, NT and Win* machines use encrypted
21*f1b9d127SSheldon Hearn# passwords.
22*f1b9d127SSheldon HearnENCRYPTED_PASSWD=yes
23*f1b9d127SSheldon Hearn
24*f1b9d127SSheldon Hearn# Uncomment this option if kernel compiled with SMP suppport.
25*f1b9d127SSheldon Hearn# SMP_SUPPORT=
26*f1b9d127SSheldon Hearn
27*f1b9d127SSheldon Hearn# This turns on debug logging, be careful - it produces a lot of kernel
28*f1b9d127SSheldon Hearn# messages.
29*f1b9d127SSheldon Hearn#KDEBUG+= -DSMB_SOCKET_DEBUG
30*f1b9d127SSheldon Hearn#KDEBUG+= -DSMB_SOCKETDATA_DEBUG
31*f1b9d127SSheldon Hearn#KDEBUG+= -DSMB_VNODE_DEBUG
32*f1b9d127SSheldon Hearn
33*f1b9d127SSheldon Hearn# Compile binaries with debugging symbols
34*f1b9d127SSheldon Hearn#SMBGDB=yes
35*f1b9d127SSheldon Hearn
36*f1b9d127SSheldon Hearn# Build kernel module (don't touch that)
37*f1b9d127SSheldon HearnSINGLEKLD=yes
38