mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
See ChangeLog: Sun Jan 3 15:28:44 CET 1999 Werner Koch
This commit is contained in:
parent
d6fa538a95
commit
e3e8d9b92f
15 changed files with 92 additions and 29 deletions
25
acinclude.m4
25
acinclude.m4
|
@ -187,6 +187,31 @@ define(GNUPG_CHECK_PIC,
|
|||
])
|
||||
|
||||
|
||||
######################################################################
|
||||
# Check for rdynamic flag
|
||||
# This sets CFLAGS_RDYNAMIC to the required flags
|
||||
######################################################################
|
||||
dnl GNUPG_CHECK_RDYNAMIC
|
||||
dnl
|
||||
define(GNUPG_CHECK_RDYNAMIC,
|
||||
[ AC_MSG_CHECKING(how to specify -rdynamic)
|
||||
CFLAGS_RDYNAMIC=
|
||||
if test "$cross_compiling" = yes; then
|
||||
AC_MSG_RESULT(assume none)
|
||||
else
|
||||
case "$host_os" in
|
||||
solaris*)
|
||||
CFLAGS_RDYNAMIC="-Wl,-dy"
|
||||
;;
|
||||
*)
|
||||
CFLAGS_RDYNAMIC="-Wl,-export-dynamic"
|
||||
;;
|
||||
esac
|
||||
AC_MSG_RESULT($CFLAGS_RDYNAMIC)
|
||||
fi
|
||||
])
|
||||
|
||||
|
||||
#####################################################################
|
||||
# Check for SysV IPC (from GIMP)
|
||||
# And see whether we have a SHM_LOCK (FreeBSD does not have it).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue