pylucene 3.5.0-3
[pylucene.git] / jcc / jcc / __init__.py
1 #   Licensed under the Apache License, Version 2.0 (the "License");
2 #   you may not use this file except in compliance with the License.
3 #   You may obtain a copy of the License at
4 #
5 #       http://www.apache.org/licenses/LICENSE-2.0
6 #
7 #   Unless required by applicable law or agreed to in writing, software
8 #   distributed under the License is distributed on an "AS IS" BASIS,
9 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 #   See the License for the specific language governing permissions and
11 #   limitations under the License.
12
13 # jcc package
14
15 import os, sys
16
17 if sys.platform == 'win32':
18
19     if '--find-jvm-dll' in sys.argv:
20         from windows import add_jvm_dll_directory_to_path
21         add_jvm_dll_directory_to_path()
22
23     from jcc.config import SHARED
24     if SHARED:
25         path = os.environ['Path'].split(os.pathsep)
26         eggpath = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
27         if eggpath not in path:
28             path.insert(0, eggpath)
29             os.environ['Path'] = os.pathsep.join(path)
30
31 from jcc import _jcc
32
33 # used when jcc is invoked with -m from python 2.5
34 if __name__ == '__main__':
35     import jcc.__main__
36 else:
37     from _jcc import initVM
38
39 CLASSPATH=os.path.join(os.path.abspath(os.path.dirname(__file__)), "classes")
40 _jcc.CLASSPATH = CLASSPATH