From 70bcf9e8bea1fee9cca44437730324ba7805b633 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 23 Jan 2023 11:28:21 +0100 Subject: Remove support for AIX As discussed in the mailing list thread starting at "Plan to remove dead C++ UNO bridge implementations (bridges/source/cpp_uno/*)", the bridge implementation at bridges/source/cpp_uno/gcc3_aix_powerpc is apparently dead and should thus be removed. However, that was the only bridge implementation for AIX, which implies that support for the AIX platform as a whole is dead and should thus be removed. Change-Id: I96de3f7f97d4fd770ff78256f0ea435383688be9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146057 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- cpputools/scripts/uno.sh | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'cpputools') diff --git a/cpputools/scripts/uno.sh b/cpputools/scripts/uno.sh index f5222ba1c025..0da19fd87487 100755 --- a/cpputools/scripts/uno.sh +++ b/cpputools/scripts/uno.sh @@ -30,17 +30,8 @@ epath=$(dirname "$0") if [ -x "${epath}/javaldx" ] ; then jpath=$("${epath}/javaldx" $my_envargs) if [ -n "${jpath}" ]; then - sd_platform=$(uname -s) - case $sd_platform in - AIX) - LIBPATH=${jpath}${LIBPATH:+:${LIBPATH}} - export LIBPATH - ;; - *) - LD_LIBRARY_PATH=${jpath}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}} - export LD_LIBRARY_PATH - ;; - esac + LD_LIBRARY_PATH=${jpath}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}} + export LD_LIBRARY_PATH fi fi -- cgit