87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
else
set_rpath='yes'
fi
], [
if test "$cross_compiling" = 'yes'; then
set_rpath='no'
else
set_rpath='yes'
fi
])
if test "$set_rpath" = 'yes'; then
OLD_LDFLAGS="$LDFLAGS"
AC_CACHE_CHECK([how to set rpath], [rsk_cv_link_set_rpath], [
|
>
|
>
>
>
|
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
else
set_rpath='yes'
fi
], [
if test "$cross_compiling" = 'yes'; then
set_rpath='no'
else
ifelse($1, [], [
set_rpath='yes'
], [
set_rpath='$1'
])
fi
])
if test "$set_rpath" = 'yes'; then
OLD_LDFLAGS="$LDFLAGS"
AC_CACHE_CHECK([how to set rpath], [rsk_cv_link_set_rpath], [
|