mirror of
https://git.openafs.org/openafs.git
synced 2025-01-31 05:27:44 +00:00
Find Tivoli TSM headers in 64 bit location
When building with --enable-tivoli-tsm locate the Tivoli TSM headers if they are installed in the path used by the 64 bit Tivoli TSM installation. Reviewed-on: https://gerrit.openafs.org/12258 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Mark Vitale <mvitale@sinenomine.net> Reviewed-by: Michael Meffie <mmeffie@sinenomine.net> Reviewed-by: Benjamin Kaduk <kaduk@mit.edu> (cherry picked from commit 9c6e6d4c34d867639ac90ba9a46084f3700b57d1) Change-Id: I7d47304eed94e0bc2607309985ac9247d6908e0c Reviewed-on: https://gerrit.openafs.org/12259 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Mark Vitale <mvitale@sinenomine.net> Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
This commit is contained in:
parent
4e61e2f895
commit
104778e13d
10
acinclude.m4
10
acinclude.m4
@ -1379,6 +1379,8 @@ if test "$enable_tivoli_tsm" = "yes"; then
|
||||
XBSADIR2=/opt/tivoli/tsm/client/api/bin/xopen
|
||||
XBSADIR3=/usr/tivoli/tsm/client/api/bin/sample
|
||||
XBSADIR4=/opt/tivoli/tsm/client/api/bin/sample
|
||||
XBSADIR5=/usr/tivoli/tsm/client/api/bin64/sample
|
||||
XBSADIR6=/opt/tivoli/tsm/client/api/bin64/sample
|
||||
|
||||
if test -r "$XBSADIR3/dsmapifp.h"; then
|
||||
XBSA_CFLAGS="-Dxbsa -DNEW_XBSA -I$XBSADIR3"
|
||||
@ -1388,6 +1390,14 @@ if test "$enable_tivoli_tsm" = "yes"; then
|
||||
XBSA_CFLAGS="-Dxbsa -DNEW_XBSA -I$XBSADIR4"
|
||||
XBSA_XLIBS="-ldl"
|
||||
AC_MSG_RESULT([yes, $XBSA_CFLAGS])
|
||||
elif test -r "$XBSADIR5/dsmapifp.h"; then
|
||||
XBSA_CFLAGS="-Dxbsa -DNEW_XBSA -I$XBSADIR5"
|
||||
XBSA_XLIBS="-ldl"
|
||||
AC_MSG_RESULT([yes, $XBSA_CFLAGS])
|
||||
elif test -r "$XBSADIR6/dsmapifp.h"; then
|
||||
XBSA_CFLAGS="-Dxbsa -DNEW_XBSA -I$XBSADIR6"
|
||||
XBSA_XLIBS="-ldl"
|
||||
AC_MSG_RESULT([yes, $XBSA_CFLAGS])
|
||||
elif test -r "$XBSADIR1/xbsa.h"; then
|
||||
XBSA_CFLAGS="-Dxbsa -I$XBSADIR1"
|
||||
XBSA_XLIBS=""
|
||||
|
Loading…
x
Reference in New Issue
Block a user