937a200089
This is actually a fully functional build except: * All internal shared libraries are static linked to make sure there is no interference with ports (and to reduce build time). * It does not have the python/perl/etc plugin or API support. * By default, it installs as "svnlite" rather than "svn". * If WITH_SVN added in make.conf, you get "svn". * If WITHOUT_SVNLITE is in make.conf, this is completely disabled. To be absolutely clear, this is not intended for any use other than checking out freebsd source and committing, like we once did with cvs. It should be usable for small scale local repositories that don't need the python/perl plugin architecture.
16 lines
488 B
Plaintext
16 lines
488 B
Plaintext
;; M-x load-file <this file>
|
|
;; or emacs -l <this file>
|
|
;; to use this style: C-c . apache
|
|
(c-add-style "apache"
|
|
'((inclass . ++)
|
|
(defun-block-intro . ++)
|
|
(statement-block-intro . ++)
|
|
(substatement . ++)
|
|
(brace-list-intro . ++)
|
|
(statement-case-intro . ++)
|
|
(inextern-lang . 0)
|
|
))
|
|
(setq-default indent-tabs-mode nil)
|
|
;; if you forgot to do this at startup, then M-x eval-expression
|
|
;; (setq indent-tabs-mode nil) on each buffer
|