summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-11-03 13:27:05 +0000
committerzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-11-03 13:27:05 +0000
commitba2e11f468e9cd6819866d13aca5274afa2f3570 (patch)
tree3b7f739590be3848df2cc39658babc2806d3e810 /m4
parent6d9969c77f81ed2c82193b565b468cb7ad9140ef (diff)
downloadmpc-ba2e11f468e9cd6819866d13aca5274afa2f3570.tar.gz
[m4/mpc.m4] fixed typo: -no-undefined should be --no-undefined (see
http://lists.gforge.inria.fr/pipermail/mpc-discuss/2011-November/000992.html) git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@1107 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'm4')
-rw-r--r--m4/mpc.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/mpc.m4 b/m4/mpc.m4
index 8f69d30..108b47e 100644
--- a/m4/mpc.m4
+++ b/m4/mpc.m4
@@ -198,12 +198,12 @@ AC_DEFUN([MPC_GMP_CC_CFLAGS], [
# DESCRIPTION
#
# Additional checks on windows
-# libtool requires "-no-undefined" for win32 dll
+# libtool requires "--no-undefined" for win32 dll
# It also disables the tests involving the linking with LIBGMP if DLL
#
AC_DEFUN([MPC_WINDOWS], [
if test "$enable_shared" = yes; then
- LDFLAGS="$LDFLAGS -Wl,-no-undefined"
+ LDFLAGS="$LDFLAGS -Wl,--no-undefined"
AC_MSG_CHECKING(for DLL/static gmp)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include "gmp.h"