Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/file/file
Read-only mirror of file CVS repository, updated every half hour. NOTE: do not make pull requests here, nor comment any commits, submit them usual way to bug tracker or to the mailing list. Maintainer(s) are not tracking this git mirror.
https://github.com/file/file
Last synced: 29 days ago
JSON representation
Read-only mirror of file CVS repository, updated every half hour. NOTE: do not make pull requests here, nor comment any commits, submit them usual way to bug tracker or to the mailing list. Maintainer(s) are not tracking this git mirror.
- Host: GitHub
- URL: https://github.com/file/file
- Owner: file
- License: other
- Created: 2011-01-28T15:20:14.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T03:00:07.000Z (7 months ago)
- Last Synced: 2024-04-13T16:34:06.927Z (7 months ago)
- Language: C
- Homepage: http://www.darwinsys.com/file/
- Size: 10.2 MB
- Stars: 1,166
- Watchers: 62
- Forks: 358
- Open Issues: 2
-
Metadata Files:
- Readme: README.DEVELOPER
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
# How to get started developing
@(#) $File: README.DEVELOPER,v 1.9 2021/09/20 14:04:39 christos Exp $
## Auto files
After checking out the source, run the following:
autoreconf -f -i
make distclean # this can fail if you have not built before
./configure --disable-silent-rules
make -j4
make -C tests checkIf you see errors, make sure you have the latest libtool and autoconf
This has been tested with autoconf-2.69 and libtool-2.4.2## Installing dependencies
If your platform doesn't have the above tools, install the following
packages first.### Debian
apt-get install \
automake \
gcc \
libtool \
make \
python \
zlib1g-dev \See also `.travis.yml`.
### Mac OS X (MacPorts)
port install \
autoconf \
automake \
libtool \### Mac OS X (HomeBrew)
brew install autoconf automake libtool
Tested with:
autoconf 2.69
automake 1.16.1
libtool 2.4.6