mirror of
https://github.com/samba-team/samba.git
synced 2025-02-15 05:57:49 +03:00
11 lines
270 B
Plaintext
11 lines
270 B
Plaintext
|
AC_DEFUN([AC_LD_EXPORT_DYNAMIC],
|
||
|
[
|
||
|
saved_LDFLAGS="$LDFLAGS"
|
||
|
LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
|
||
|
AC_LINK_IFELSE([ int main() { return 0; } ],
|
||
|
[ LD_EXPORT_DYNAMIC=-Wl,--export-dynamic ],
|
||
|
[ LD_EXPORT_DYNAMIC= ])
|
||
|
AC_SUBST(LD_EXPORT_DYNAMIC)
|
||
|
LDFLAGS="$saved_LDFLAGS"
|
||
|
])
|