sleinen / samplicator

Send copies of (UDP) datagrams to multiple receivers, with optional sampling and spoofing
GNU General Public License v2.0
389 stars 132 forks source link

configure file not exist #29

Closed MrAliFu closed 9 years ago

MrAliFu commented 9 years ago

I can not see configure file

tneuville commented 9 years ago

same here - no configure script in the listings of the files in either this or the main branch.

colebrumley commented 9 years ago

This issue is preventing me from moving https://registry.hub.docker.com/u/elcolio/samplicator/ to target this repo instead :)

bewing commented 9 years ago

I used a standard bootstrap.sh file to handle the bootstrapping, and was able to build without issue.

sleinen commented 9 years ago

Sorry for the late reaction. I used to distribute samplicator as an archive (samplicator-1.X.Y.tar.gz, can be created using make dist once you have a Makefile), which included the configure script. But I didn't want to include the configure script in the Git repository.

I have now added some instructions to INSTALL.md (previously INSTALL) for compiling from source. I also updated the automake input to work with newer versions of automake.

Can you check whether this works better?

twopoint71 commented 9 years ago

Works perfectly.

git clone https://github.com/sleinen/samplicator

cd samplicator

./autogen.sh

./configure

make

cp ./samplicate /usr/local/bin/

sleinen commented 9 years ago

Thanks for testing!

In the meantime, I have also found that I can make "releases" on GitHub, and add "traditional" .tar.gz files to them. These have been made using "make dist" and contain a generated configure script, so the original simple instructions should work there.

sleinen commented 9 years ago

I'm closing this issue, as I think it has been resolved by

a) releases that include configure scripts, and b) better installation documentation.

Feel free to reopen if you find this unsatisfactory.