summaryrefslogtreecommitdiff
path: root/m4/curl-functions.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/curl-functions.m4')
-rw-r--r--m4/curl-functions.m417
1 files changed, 0 insertions, 17 deletions
diff --git a/m4/curl-functions.m4 b/m4/curl-functions.m4
index bc587132e..49b4c7932 100644
--- a/m4/curl-functions.m4
+++ b/m4/curl-functions.m4
@@ -7025,20 +7025,3 @@ AC_DEFUN([CURL_RUN_IFELSE], [
AC_RUN_IFELSE([AC_LANG_SOURCE([$1])], $2, $3, $4)
LD_LIBRARY_PATH=$old # restore
])
-
-dnl CURL_CHECK_SIZEOF
-dnl -------------------------------------------------
-dnl Wrapper macro to use instead of AC_CHECK_SIZEOF. It
-dnl sets LD_LIBRARY_PATH locally for this run only, from the
-dnl CURL_LIBRARY_PATH variable. It keeps LD_LIBRARY_PATH
-dnl changes contained.
-
-AC_DEFUN([CURL_CHECK_SIZEOF], [
- AC_REQUIRE([AC_CHECK_SIZEOF])dnl
-
- old=$LD_LIBRARY_PATH
- LD_LIBRARY_PATH=$CURL_LIBRARY_PATH:$old
- export LD_LIBRARY_PATH
- AC_CHECK_SIZEOF([$1], [$2], [$3])
- LD_LIBRARY_PATH=$old # restore
-])