diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-04-07 16:55:21 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-04-07 16:55:21 +0000 |
commit | 1b0aaf49c3499944b1c477f7c3be881c9575799b (patch) | |
tree | b962d454afc1874935cb3d1f26c7909125c1c1c2 /m4 | |
parent | fcfa18c2964330bede15e566224a28ae9aec08b7 (diff) | |
download | gst-plugins-bad-1b0aaf49c3499944b1c477f7c3be881c9575799b.tar.gz gst-plugins-bad-1b0aaf49c3499944b1c477f7c3be881c9575799b.tar.bz2 gst-plugins-bad-1b0aaf49c3499944b1c477f7c3be881c9575799b.zip |
Fixes #106777
Original commit message from CVS:
Fixes #106777
Diffstat (limited to 'm4')
-rw-r--r-- | m4/lrint.m4 | 2 | ||||
-rw-r--r-- | m4/lrintf.m4 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/m4/lrint.m4 b/m4/lrint.m4 index c60665ce..7d72c73f 100644 --- a/m4/lrint.m4 +++ b/m4/lrint.m4 @@ -13,7 +13,7 @@ dnl AC_DEFUN([AC_C99_FUNC_LRINT], [AC_CACHE_CHECK(for lrint, ac_cv_c99_lrint, -[AC_TRY_COMPILE([ +[AC_TRY_LINK([ #define _ISOC9X_SOURCE 1 #define _ISOC99_SOURCE 1 #define __USE_ISOC99 1 diff --git a/m4/lrintf.m4 b/m4/lrintf.m4 index 4ea74b58..f9b76e36 100644 --- a/m4/lrintf.m4 +++ b/m4/lrintf.m4 @@ -13,7 +13,7 @@ dnl AC_DEFUN([AC_C99_FUNC_LRINTF], [AC_CACHE_CHECK(for lrintf, ac_cv_c99_lrintf, -[AC_TRY_COMPILE([ +[AC_TRY_LINK([ #define _ISOC9X_SOURCE 1 #define _ISOC99_SOURCE 1 #define __USE_ISOC99 1 |