setsdkenv_unix.sh.in (45ef6fe1) setsdkenv_unix.sh.in (985d02c7)
1#! /bin/sh
2###############################################################
3#
4# Licensed to the Apache Software Foundation (ASF) under one
5# or more contributor license agreements. See the NOTICE file
6# distributed with this work for additional information
7# regarding copyright ownership. The ASF licenses this file
8# to you under the Apache License, Version 2.0 (the

--- 36 unchanged lines hidden (view full) ---

45# Directory of the make command.
46# Example: OO_SDK_MAKE_HOME=/usr/bin
47OO_SDK_MAKE_HOME=@OO_SDK_MAKE_HOME@
48
49# Directory of the zip command.
50# Example: OO_SDK_ZIP_HOME=/usr/bin
51OO_SDK_ZIP_HOME=@OO_SDK_ZIP_HOME@
52
1#! /bin/sh
2###############################################################
3#
4# Licensed to the Apache Software Foundation (ASF) under one
5# or more contributor license agreements. See the NOTICE file
6# distributed with this work for additional information
7# regarding copyright ownership. The ASF licenses this file
8# to you under the Apache License, Version 2.0 (the

--- 36 unchanged lines hidden (view full) ---

45# Directory of the make command.
46# Example: OO_SDK_MAKE_HOME=/usr/bin
47OO_SDK_MAKE_HOME=@OO_SDK_MAKE_HOME@
48
49# Directory of the zip command.
50# Example: OO_SDK_ZIP_HOME=/usr/bin
51OO_SDK_ZIP_HOME=@OO_SDK_ZIP_HOME@
52
53# Directory of the cat command.
54# Example: OO_SDK_CAT_HOME=/usr/bin
55OO_SDK_CAT_HOME=@OO_SDK_CAT_HOME@
56
57# Directory of the sed command.
58# Example: OO_SDK_SED_HOME=/usr/bin
59OO_SDK_SED_HOME=@OO_SDK_SED_HOME@
60
53# Directory of the C++ compiler.
54# Example: OO_SDK_CPP_HOME=/usr/bin
55OO_SDK_CPP_HOME=@OO_SDK_CPP_HOME@
56
57# Solaris only
58OO_SDK_CC_55_OR_HIGHER=@OO_SDK_CC_55_OR_HIGHER@
59
60# Directory of the Java SDK.

--- 201 unchanged lines hidden (view full) ---

262
263# Add directory of the zip tool to the path, if necessary.
264if [ -n "${OO_SDK_ZIP_HOME}" ]
265then
266 PATH=${OO_SDK_ZIP_HOME}:${PATH}
267 export OO_SDK_ZIP_HOME
268fi
269
61# Directory of the C++ compiler.
62# Example: OO_SDK_CPP_HOME=/usr/bin
63OO_SDK_CPP_HOME=@OO_SDK_CPP_HOME@
64
65# Solaris only
66OO_SDK_CC_55_OR_HIGHER=@OO_SDK_CC_55_OR_HIGHER@
67
68# Directory of the Java SDK.

--- 201 unchanged lines hidden (view full) ---

270
271# Add directory of the zip tool to the path, if necessary.
272if [ -n "${OO_SDK_ZIP_HOME}" ]
273then
274 PATH=${OO_SDK_ZIP_HOME}:${PATH}
275 export OO_SDK_ZIP_HOME
276fi
277
278# Add directory of the sed tool to the path, if necessary.
279if [ -n "${OO_SDK_SED_HOME}" ]
280then
281 PATH=${OO_SDK_SED_HOME}:${PATH}
282 export OO_SDK_SED_HOME
283fi
284
285# Add directory of the cat tool to the path, if necessary.
286if [ -n "${OO_SDK_CAT_HOME}" ]
287then
288 PATH=${OO_SDK_CAT_HOME}:${PATH}
289 export OO_SDK_CAT_HOME
290fi
291
270# Add directory of the C++ tools to the path, if necessary.
271if [ -n "${OO_SDK_CPP_HOME}" ]
272then
273 PATH=${OO_SDK_CPP_HOME}:${PATH}
274 export OO_SDK_CPP_HOME
275
276 if [ -n "${OO_SDK_CC_55_OR_HIGHER}" ]
277 then

--- 60 unchanged lines hidden (view full) ---

338 fi
339 fi
340fi
341
342
343# Prepare shell with all necessary environment variables.
344echo
345echo " ************************************************************************"
292# Add directory of the C++ tools to the path, if necessary.
293if [ -n "${OO_SDK_CPP_HOME}" ]
294then
295 PATH=${OO_SDK_CPP_HOME}:${PATH}
296 export OO_SDK_CPP_HOME
297
298 if [ -n "${OO_SDK_CC_55_OR_HIGHER}" ]
299 then

--- 60 unchanged lines hidden (view full) ---

360 fi
361 fi
362fi
363
364
365# Prepare shell with all necessary environment variables.
366echo
367echo " ************************************************************************"
346echo " *"
347echo " * SDK environment is prepared for ${platform}"
348echo " *"
368echo " *"
369echo " * SDK environment is prepared for ${platform}"
370echo " *"
349echo " * SDK = $OO_SDK_HOME"
350echo " * Office = $OFFICE_HOME"
351echo " * Office Base = $OFFICE_BASE_HOME"
352echo " * URE = $OO_SDK_URE_HOME"
353echo " * Make = $OO_SDK_MAKE_HOME"
354echo " * Zip = $OO_SDK_ZIP_HOME"
371echo " * SDK = $OO_SDK_HOME"
372echo " * Office = $OFFICE_HOME"
373echo " * Office Base = $OFFICE_BASE_HOME"
374echo " * URE = $OO_SDK_URE_HOME"
375echo " * Make = $OO_SDK_MAKE_HOME"
376echo " * Zip = $OO_SDK_ZIP_HOME"
377echo " * cat = $OO_SDK_CAT_HOME"
378echo " * sed = $OO_SDK_SED_HOME"
355echo " * C++ Compiler = $OO_SDK_CPP_HOME"
356echo " * Java = $OO_SDK_JAVA_HOME"
357echo " * SDK Output directory = $OO_SDK_OUT"
358echo " * Auto deployment = $SDK_AUTO_DEPLOYMENT"
359echo " *"
360echo " ************************************************************************"
361
362echo "]2;Shell prepared with the SDK environment"
363
379echo " * C++ Compiler = $OO_SDK_CPP_HOME"
380echo " * Java = $OO_SDK_JAVA_HOME"
381echo " * SDK Output directory = $OO_SDK_OUT"
382echo " * Auto deployment = $SDK_AUTO_DEPLOYMENT"
383echo " *"
384echo " ************************************************************************"
385
386echo "]2;Shell prepared with the SDK environment"
387