JoeDog / siege

Siege is an http load tester and benchmarking utility
GNU General Public License v3.0
5.9k stars 386 forks source link

GitHub doesn't include configure #219

Open hashimaziz1 opened 1 year ago

hashimaziz1 commented 1 year ago

For some weird reason the ./configure file is missing from this repository, but is present on all the zips I grab from the website, including the latest 4.0.0 (which is not on the homepage and I only found through a post on the blog). Thought you might want to know this since I can't see why the repository versions wouldn't need a ./configure.

Jovons commented 10 months ago

This project uses Makefile.am and configure.ac, you may get configure by following this:

aclocal
autoconf
autoheader
automake --add-missing

Now you get configure.

And then follow INSTALL

./configure
make
make install