emcrisostomo / fsw

A file change monitor with multiple backends: Apple OS X File System Events API, *BSD kqueue, Linux inotify and a stat-based backend.
http://emcrisostomo.github.io/fsw/
GNU General Public License v3.0
43 stars 7 forks source link

./configure missing #1

Closed VSilantyev closed 10 years ago

VSilantyev commented 10 years ago

The INSTALL file refers to ./configure script. There is no such file.

How can I compile fsw on osx ?

emcrisostomo commented 10 years ago

Hi,

configure is a script automatically generated by the GNU Build System and this kind of files should not generally be tracked by source control management systems (GitHub in this case).

If you grab the sources (as I think you're doing), you can bootstrap the GNU Build System using the autogen.sh script: configure will be generated alongside all the required files to build fsw on your platform.

However, this process requires the GNU Build System to be installed on your machine and is indicated only to developers who want to build the sources.

If you just want to build fsw, you should grab a release tarball (I just updated v. 1.2.0): release tarballs package the sources and all the things you need to build fsw.

To get a release tarball:

Let me know if you still have problems.

Cheers, Enrico M. Crisostomo

VSilantyev commented 10 years ago

Thanks, it works

emcrisostomo commented 10 years ago

You are welcome.

Cheers, Enrico M. Crisostomo