Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ build_script:
- set MSYSTEM=MINGW64
- set PATH=C:/msys64/usr/bin;C:/msys64/mingw64/bin;%PATH%
- git submodule update --init --recursive
- "sh -lc \"autoheader && autoconf && ./configure --enable-werror CFLAGS='-g -O3' && make -j2\""
- "sh -lc \"autoreconf -i && ./configure --enable-werror CFLAGS='-g -O3' && make -j2\""

#build_script:
# - make
Expand Down
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ compile_template: &COMPILE
fi
if test "$USE_CONFIG" = "yes"; then
MAKE_OPTS=
autoreconf
autoreconf -i
eval ./configure --enable-plugins --enable-werror $CONFIG_OPTS CFLAGS=\"-g -O3 $CFLAGS\" || \
( cat config.log; false )
else
Expand Down
8 changes: 2 additions & 6 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ In addition, building the configure script requires:

autoheader
autoconf
autoreconf

Running the configure script uses awk, along with a number of
standard UNIX tools (cat, cp, grep, mv, rm, sed, among others). Almost
Expand Down Expand Up @@ -79,12 +80,7 @@ This step is only needed if configure.ac has been changed, or if configure
does not exist (for example, when building from a git clone). The
configure script and config.h.in can be built by running:

autoheader
autoconf

If you have a full GNU autotools install, you can alternatively run:

autoreconf
autoreconf -i

Basic Installation
==================
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ committed to this repository, so building the code from a Git repository
requires extra steps:

```sh
autoheader # If using configure, generate the header template...
autoconf # ...and configure script (or use autoreconf to do both)
autoreconf -i # Build the configure script and install files it uses
./configure # Optional but recommended, for choosing extra functionality
make
make install
Expand Down