| Commit message (Collapse) | Author | Age |
... | |
| |
| |
| |
| |
| |
| |
| |
| | |
- Some systems have the FindCurses.cmake module to find
the curses/ncurses libraries using find_package(). And
in some CheckLibraries is not very reliable, so as
fallback FindCurses is now used if no other option
works.
|
|\ \
| |/
|/| |
Fixed headers and links to dependencies in README.md
|
| |
| |
| |
| |
| |
| | |
Dependency headers for OSes needed anchors to work with links from
content list. Reordered OSes in content list to match headers
(all Linuxes first, Mac OS X last)
|
|/
|
|
| |
Fixed header markup in README.md. Previously, header markup did not match levels in the content list.
|
|
|
|
|
| |
This is necessary to keep the build from 'erroring' since running the tests
with valgrind will take a long time
|
|
|
|
| |
This should fix previous build failures
|
| |
|
|
|
|
| |
It was broke because the ls command failed when no valgrind.* file were found
|
| |
|
|
|
|
|
| |
This will slow down testing but will detect pull requests that introduce memory
leaks.
|
| |
|
| |
|
|\
| |
| |
| |
| | |
Conflicts:
README.md
|
| |\
| | |
| | |
| | |
| | | |
Conflicts:
README.md
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
That should work in most versions of Ubuntu and Debian.
|
| | |
| | |
| | |
| | | |
Thanks @thiderman!
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
use shared libuv library if not using the bundled version
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Use the new LibUV_USE_STATIC configuration flag to use static linkage
when using the bundled libuv.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
If LibUV_USE_STATIC is set then the static libuv library will be
preferred to the shared library. This is useful when building with the
bundled libuv but is less useful when building with a system libuv.
|
|\ \ \
| | | |
| | | | |
add required dependency on Debian/Ubuntu system
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Following GitHub convention by adding a CONTRIBUTING.md file.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
1. Following GitHub convention by adding a CONTRIBUTING.md file.
2. Linking to the wiki page for communicating.
3. Referencing the waffle.io page for Neovim.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix Markdown syntax
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
#165 fix README.md for Building OS X
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Makefile: use "make -C build" idiom
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Change an explicit ``cd build && make`` into the more usual
``${MAKE} -C build`` style of invoking make in a subdirectory. This
should mean that ``make -jN`` from the top-level Makefile should work.
Closes #162.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
As noted in #128, if clock_gettime is provided by librt then it does not
end up being linked into the static libuv.a binary. This might be
considered a bug in libuv but we can address it here.
Detect if librt provides the clock_gettime symbol and, if so, append it
to the list of libraries linked into nvim. On non-librt systems the
behaviour should be as before.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Explicitly try to find the static libuv library first.
This might be considered a hack and if it weren't a single-use module it
might be preferable to control static versus shared preferences with a
configuration variable.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
We use the standard CMAKE_PREFIX_PATH variable to pass the location of
.deps as a search location on the command line. There is now no need for
explicitly hard-coding it.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
CMake now required libuv so fetch it first.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Idiomatically discover if libuv is installed.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The CMake prefix path is the set of directories CMake searches for
libraries, header files, etc. Use the .deps directory we create when
building libuv as one of those locations.
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This commit removes a K&R promoted parameter error, the final warning
I have when building.
I realize that this creates only one function that is written in a
different style, but I thought it might be worth it to have a warning
free build.
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Add a brief README on the purpose of the third-party directory and some
suggestions for how to manage it. The neovim bigwigs may want to
re-draft the README.
|