-
Notifications
You must be signed in to change notification settings - Fork 2
/
clorb-options.lisp
30 lines (22 loc) · 1.06 KB
/
clorb-options.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
(in-package :clorb)
(defvar *clorb-pathname-defaults*
(if (find-package "NET.CDDR.CLORB.SYSTEM")
(symbol-value (intern "*SOURCE-PATHNAME-DEFAULTS*"
"NET.CDDR.CLORB.SYSTEM"))
(make-pathname :name nil :type nil :version nil
:defaults (or #+MCL ccl:*loading-file-source-file*
#.*compile-file-pathname*
*load-pathname* ))))
(defvar *default-include-directories*
(list (merge-pathnames (make-pathname :directory '(:relative "idl")
:name nil :type nil)
*clorb-pathname-defaults*)))
(defparameter *log-level* 3)
(defparameter *explicit-any* t
"Flag, if true, CORBA::Any will be unmarshaled to an ANY struct.
If false, the any is automaticaly translated to its value.")
(defparameter *principal* nil
"Octet sequence used for the principal field in the GIOP message.
Used by ORBit for its cookie.")
(defvar *service-context* nil
"Service context sent with every CORBA request.")