]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
misc: use "autoreconf -fi" instead buildconf
authorPhilip H <47042125+pheiduck@users.noreply.github.com>
Mon, 2 May 2022 15:52:16 +0000 (17:52 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 2 May 2022 15:53:06 +0000 (17:53 +0200)
Signed-off-by: Philip H <47042125+pheiduck@users.noreply.github.com>
Closes #8777

docs/HYPER.md
docs/RUSTLS.md
scripts/coverage.sh
tests/testcurl.pl

index 00c85d576a75701f1b2f2fa56fcc4ab00ab5668e..ad23a9039d8bb6b9e1604bdacef12bb8a4915d5b 100644 (file)
@@ -33,7 +33,7 @@ Build curl to use hyper's C API:
 
      % git clone https://github.com/curl/curl
      % cd curl
-     % ./buildconf
+     % autoreconf -fi
      % ./configure --with-hyper=<hyper dir>
      % make
 
index 17faa20e7cc5964773e7cadacc693f662e4f7c00..4b49b5cf79c4990b0cb2845394663b281ef55a8b 100644 (file)
@@ -21,6 +21,6 @@ Now configure and build curl with rustls:
 
     % git clone https://github.com/curl/curl
     % cd curl
-    % ./buildconf
+    % autoreconf -fi
     % ./configure --with-rustls=${HOME}/rustls-ffi-built
     % make
index e2b65b7f05096052cd180fdda4add7175d3856fd..aeaa235843e621540e3cd47adc35e0ed71316d31 100755 (executable)
@@ -6,7 +6,7 @@
 #                            | (__| |_| |  _ <| |___
 #                             \___|\___/|_| \_\_____|
 #
-# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
 #
 # This software is licensed as described in the file COPYING, which
 # you should have received as part of this distribution. The terms
@@ -21,7 +21,7 @@
 #
 ###########################################################################
 
-./buildconf
+autoreconf -fi
 mkdir -p cvr
 cd cvr
 ../configure --disable-shared --enable-debug --enable-maintainer-mode --enable-code-coverage
index eeb42c07032d9065cac5a82ed423fbb78b2d8539..e642658af4016a8c57fc307812b01240ad4a3bf0 100755 (executable)
@@ -466,8 +466,8 @@ if ($git) {
     unlink "autom4te.cache";
 
     # generate the build files
-    logit "invoke buildconf";
-    open(F, "./buildconf 2>&1 |") or die;
+    logit "invoke autoreconf";
+    open(F, "autoreconf -fi 2>&1 |") or die;
     open(LOG, ">$buildlog") or die;
     while (<F>) {
       my $ll = $_;