diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-01-23 11:28:21 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-01-27 07:28:16 +0000 |
commit | 70bcf9e8bea1fee9cca44437730324ba7805b633 (patch) | |
tree | d8d97927d773fd753ab569d1f0ace95917d14849 /soltools | |
parent | 12a5e9bd92c0969051e035a4f2b7c18f0e3e79b5 (diff) |
Remove support for AIX
As discussed in the mailing list thread starting at
<https://lists.freedesktop.org/archives/libreoffice/2023-January/089808.html>
"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 <sbergman@redhat.com>
Diffstat (limited to 'soltools')
-rw-r--r-- | soltools/Executable_cpp.mk | 2 | ||||
-rw-r--r-- | soltools/cpp/_unix.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/soltools/Executable_cpp.mk b/soltools/Executable_cpp.mk index 21ede303fcb0..e1f2d90d22dd 100644 --- a/soltools/Executable_cpp.mk +++ b/soltools/Executable_cpp.mk @@ -21,7 +21,7 @@ $(eval $(call gb_Executable_add_cobjects,cpp,\ soltools/cpp/_unix \ )) -ifneq ($(filter AIX MACOSX WNT,$(OS)),) +ifneq ($(filter MACOSX WNT,$(OS)),) $(eval $(call gb_Executable_add_cobjects,cpp,\ soltools/cpp/_getopt \ )) diff --git a/soltools/cpp/_unix.c b/soltools/cpp/_unix.c index 7c411befebea..d82a24c6ca54 100644 --- a/soltools/cpp/_unix.c +++ b/soltools/cpp/_unix.c @@ -31,7 +31,7 @@ #include "cpp.h" -#if defined(MACOSX) || defined(AIX) || defined(_WIN32) +#if defined(MACOSX) || defined(_WIN32) #include "_getopt.h" #else #include <getopt.h> @@ -54,7 +54,7 @@ void Tokenrow tr; setup_kwtab(); -#if defined(MACOSX) || defined(AIX) || defined(_WIN32) +#if defined(MACOSX) || defined(_WIN32) while ((c = stgetopt(argc, argv, "NOPV:I:D:U:F:A:X:u:l:+")) != -1) #else while ((c = getopt(argc, argv, "NOPV:I:D:U:F:A:X:u:l:+")) != -1) |