summaryrefslogtreecommitdiff
path: root/odk/setsdkenv_unix.sh.in
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-09 16:20:25 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-09 16:20:25 +0100
commit1628005298923ad15cc78dbad63669b701f5fd04 (patch)
tree497b0250f13c5b22f80dcba06886878394973372 /odk/setsdkenv_unix.sh.in
parent0d2d8ba1a2f3fdab44b5f3e747152fce94679511 (diff)
Trying to remove the stlport mention from the code
Diffstat (limited to 'odk/setsdkenv_unix.sh.in')
-rw-r--r--odk/setsdkenv_unix.sh.in21
1 files changed, 0 insertions, 21 deletions
diff --git a/odk/setsdkenv_unix.sh.in b/odk/setsdkenv_unix.sh.in
index 96365481c104..bf9761df3e77 100644
--- a/odk/setsdkenv_unix.sh.in
+++ b/odk/setsdkenv_unix.sh.in
@@ -142,7 +142,6 @@ case ${sdk_platform} in
pltfrm=sunpro
soext=so
exampleout=SOLARISexample.out
- stldebug=_debug
LD_LIBRARY_PATH=${OO_SDK_HOME}/lib:${OO_SDK_OUT}/${exampleout}/lib:${OO_SDK_URE_LIB_DIR}:.:${LD_LIBRARY_PATH}
export LD_LIBRARY_PATH
;;
@@ -160,7 +159,6 @@ case ${sdk_platform} in
soext=dylib
exampleout=MACOSXexample.out
platform=MacOSX
- stldebug=_stldebug
DYLD_LIBRARY_PATH=${OO_SDK_OUT}/${directoryname}/lib:${OO_SDK_OUT}/${exampleout}/lib:${OO_SDK_URE_LIB_DIR}:.:${DYLD_LIBRARY_PATH}
export DYLD_LIBRARY_PATH
;;
@@ -178,7 +176,6 @@ case ${sdk_platform} in
soext=so
exampleout=LINUXexample.out
platform=Linux
- stldebug=_stldebug
LD_LIBRARY_PATH=${OO_SDK_HOME}/lib:${OO_SDK_OUT}/${exampleout}/lib:${OO_SDK_URE_LIB_DIR}:.:${LD_LIBRARY_PATH}
export LD_LIBRARY_PATH
;;
@@ -196,7 +193,6 @@ case ${sdk_platform} in
soext=so
exampleout=FREEBSDexample.out
platform=FreeBSD
- stldebug=_stldebug
LD_LIBRARY_PATH=${OO_SDK_HOME}/lib:${OO_SDK_OUT}/${exampleout}/lib:${OO_SDK_URE_LIB_DIR}:.:${LD_LIBRARY_PATH}
export LD_LIBRARY_PATH
@@ -272,12 +268,6 @@ fi
export PATH
-if [ -r "${OO_SDK_URE_LIB_DIR}/libstlport_${pltfrm}${stldebug}.${soext}" ]
-then
- STLDEBUG=${stldebug}
- export STLDEBUG
-fi
-
if [ "${platform}" = "MacOSX" ]
then
# For URE, prepare symbolic links for libraries:
@@ -291,11 +281,6 @@ then
"${OO_SDK_OUT}/${directoryname}/lib/libuno_salhelper${comid}.${soext}" \
"${OO_SDK_OUT}/${directoryname}/lib/libuno_purpenvhelper${comid}.${soext}"
- if [ -L "${OO_SDK_OUT}/${directoryname}/lib/libstlport_${pltfrm}${STLDEBUG}.${soext}" ]
- then
- rm -rf "${OO_SDK_OUT}/${directoryname}/lib/libstlport_${pltfrm}${STLDEBUG}.${soext}"
- fi
-
# prepare links
if [ "${OO_SDK_URE_HOME}" ]
then
@@ -310,12 +295,6 @@ then
"${OO_SDK_OUT}/${directoryname}/lib/libuno_salhelper${comid}.${soext}"
ln -s "${OO_SDK_URE_LIB_DIR}/libuno_purpenvhelper${comid}.${soext}.3" \
"${OO_SDK_OUT}/${directoryname}/lib/libuno_purpenvhelper${comid}.${soext}"
-
- if [ -r "${OO_SDK_URE_LIB_DIR}/libstlport_${pltfrm}${STLDEBUG}.${soext}" ]
- then
- ln -s "${OO_SDK_URE_LIB_DIR}/libstlport_${pltfrm}${STLDEBUG}.${soext}" \
- "${OO_SDK_OUT}/${directoryname}/lib/libstlport_${pltfrm}${STLDEBUG}.${soext}"
- fi
fi
fi