diff options
author | Sander Vesik <svesik@openoffice.org> | 2001-11-12 20:45:53 +0000 |
---|---|---|
committer | Sander Vesik <svesik@openoffice.org> | 2001-11-12 20:45:53 +0000 |
commit | 1c0c2b709db0307aa596e9fc3b244880b432af21 (patch) | |
tree | c60ac0a11bd7bc0f09f43aafa8323b0272f25041 /config_office/configure.in | |
parent | 198d3c0742456005b92da778d9b46f95ead73bb2 (diff) |
Support detecting either a STLport4 library built with Mipspro or
GCC on IRIX.
Contributed by: The SGI OpenOffice.org porting team
Diffstat (limited to 'config_office/configure.in')
-rw-r--r-- | config_office/configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config_office/configure.in b/config_office/configure.in index c3ca34b33a59..45fe9b9971d8 100644 --- a/config_office/configure.in +++ b/config_office/configure.in @@ -689,7 +689,11 @@ if test -d "$with_stlport4_home"; then if test -f "$STLPORT4/lib/libstlport_mipspro_41.so"; then AC_MSG_RESULT([checked]) else - AC_MSG_ERROR([STLport4 libraries not found]) + if test -f "$STLPORT4/lib/libstlport_gcc.so"; then + AC_MSG_RESULT([checked]) + else + AC_MSG_ERROR([STLport4 libraries not found]) + fi fi else if test -f "$STLPORT4/lib/libstlport_gcc.so"; then |