GitHub has no configure
file. Only configure.am
.
No idea, how to handle it.
Asked
Active
Viewed 942 times
2

bm13kk
- 167
- 9
-
1Looks like you'll need to run the [`autogen.sh` script](https://github.com/memcached/memcached/blob/master/autogen.sh) from the checkout, and make sure that your build system has `aclocal`, `autoheader`, `automake`, and `autoconf` installed. – Castaglia Jun 24 '16 at 21:44
1 Answers
5
Memcached use Autotools to build source, as you got configure.ac
and Makefile.am
, follow these steps to build the source:
./autogen.sh
./configure
make
The binary is generated now, find the location by running find * -name memcached
.

sel-fish
- 4,308
- 2
- 20
- 39
-
+1 This is captured in BUILD file of memcached source. https://github.com/memcached/memcached/blob/master/BUILD#L14-L16 – srgsanky Jan 17 '23 at 01:33