Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/m4/check_path.m4

    r414 r745  
    2020piddir="\${VARDIR}/locks"
    2121ncalrpcdir="\${VARDIR}/ncalrpc"
     22nmbdsocketdir="\${VARDIR}/nmbd"
    2223test "${mandir}" || mandir="\${prefix}/man"
    2324logfilebase="\${VARDIR}"
     
    167168
    168169#################################################
     170# set nmbd socket directory location
     171AC_ARG_WITH(nmbdsocketdir,
     172[AS_HELP_STRING([--with-nmbdsocketdir=DIR], [Where to put the nmbd socket directory ($ac_default_prefix/var/nmbd)])],
     173[ case "$withval" in
     174  yes|no)
     175  #
     176  # Just in case anybody calls it without argument
     177  #
     178    AC_MSG_WARN([--with-nmbdsocketdir called without argument - will use default])
     179  ;;
     180  * )
     181    nmbdsocketdir="$withval"
     182    ;;
     183  esac])
     184
     185#################################################
    169186# set SWAT directory location
    170187AC_ARG_WITH(swatdir,
     
    299316AC_SUBST(lockdir)
    300317AC_SUBST(piddir)
     318AC_SUBST(nmbdsocketdir)
    301319AC_SUBST(ncalrpcdir)
    302320AC_SUBST(logfilebase)
Note: See TracChangeset for help on using the changeset viewer.