| Commit message (Collapse) | Author | Age |
... | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Now it checks for the existance of curl after
failing to find wget.
Note that I ended up removing the quotes around $url
when referencing it in the call to wget, since urls can't have spaces
anyways, and the correct quoting was messy.
To test, I did
rm -r .deps
make clean
make cmake
make
And it worked.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This module will contain all functions that perform OS calls such as IO,
filesystem access, etc.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Despite being an io library, the functions currently implemented with
libuv include some non-I/O tasks like getting the total amount of
memory.
|
| | | | |
|
| | | | |
|
| |/ /
|/| | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Also updated affected config files and test49.vim
|
| | | |
|
|\ \ \
| | | |
| | | | |
scripts/common.sh: remove a couple bashisms
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This allows the scripts to work on systems that don't have /bin/bash as
/bin/sh--such as Debian.
|
|\ \ \ \
| | | | |
| | | | | |
Added 'neovim' to the feature list, following discussion on #44
|
| |/ / / |
|
| | | | |
|
| | | |
| | | |
| | | | |
I added a table of contents to the readme and replaced the html links with markdown links. Thought you might find it useful!
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
CMake ships with a standard FindThreads module which can be used to a)
test for a threading library and b) confirm that it is pthread. It also
allows the hard-coding of the threading library name to be removed from
``src/CMakeLists.txt``.
Make it an error not to have a pthread library installed and indicate to
CMake that we strongly prefer pthread to any other platform threading
library.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
Conflicts:
README.md
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
waffle.io Badge
|
|/ / / / |
|
| |/ /
|/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
cproto (http://invisible-island.net/cproto/) was used to do the bulk of
the work in batch; even the most recent version had some issues with
typedef'd parameters; a quick "patch" was to modify `lex.l` to
explicitly include all vim typedefs as known types. One example from
`vim.h` is
typedef unsigned char char_u;
which was added in `lex.l` as
<INITIAL>char_u { save_text_offset(); return T_CHAR; }
Even with these changes there were some problems:
* Two files (`mbyte.c` and `os_unix.c`) were not cleanly converted.
* Any function with the `UNUSED` macro in its parameter list was not converted.
Rather than spend more time fixing the automated approach, the two files
`mbyte.c` and `os_unix.c` were converted by hand.
The `UNUSED` macros were compiler specific, and the alternative, generic
version would require a different syntax, so in order to simplify the
conversion all uses of `UNUSED` were stripped, and then the sources were
run back through cproto. It is planned to reconsider each use of
`UNUSED` manually using a new macro definition.
|
|\ \ \
| |/ /
|/| | |
Add documentation on installing root SSL certificates on OS X
|
|/ /
| |
| |
| | |
which is required for retrieving the libuv archive before building.
|
|\ \
| | |
| | | |
Clean up main.c:parse_command_name
|
| | | |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Fixed travis image
|
|/ / |
|
| | |
|
|\ \
| | |
| | | |
Added automake as build dependency on OS X
|
| | |
| | |
| | |
| | | |
complaints of missing aclocal.
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Remove trailing spaces from gitignore
|
|/ / |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Add Arch dependency instructions to README.md.
|
| |/
| |
| |
| | |
Also accidentally clear trailing whitespace in README. vim autocommands ftw.
|
|/ |
|
|\
| |
| | |
Adding note about IRC channel in README.
|
|/ |
|
|\
| |
| | |
Update README.md: Add libtool to OSX installs
|
|/ |
|
|\
| |
| | |
Update README.md
|