Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

autoreconf: command not found in Cygwin on Windows

I'm trying to compile the nDPI library in using Cygwin on Windows. When I try to run autogen.sh file I get the following error

./autogen.sh: line 5: autoreconf: command not found

I've been looking around now for four days to compile this nDPI library on Windows, and I DO NEED to compile it on Windows.

  1. How do I compile this library on Windows?, OR
  2. Is there a link that actually works and I can follow their steps to compile this library?

Here is the autogen.sh

#!/bin/sh

/bin/rm -f configure config.h config.h.in src/lib/Makefile.in
autoreconf -ivf
./configure
like image 754
the0roamer Avatar asked May 20 '15 08:05

the0roamer


People also ask

How do I install AutoMake on Windows?

Installation and UsageThe default installation directory is C:\Progra~1\AutoMake. AutoMake can be installed in another directory, but then you must change in all scripts the reference to "c:/progra~1/automake" accordingly.

What is Autoreconf used for?

autoreconf is a Autotool which is used to create automatically buildable source code for Unix-like systems. Autotool is a common name for autoconf, automake, etc. These all together are termed as Autotools.


1 Answers

Try install autoconf, automake and libtool. It's under Devel of the Cygwin setup program.

like image 76
Deqing Avatar answered Sep 19 '22 15:09

Deqing