Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-09-24Fix warnings in Makefile.embedRussell Belfer
2013-07-31When building with MINGW, specify `__USE_MINGW_ANSI_STDIO`.Arthur Schreiber
This option is already present in the CMake config, but was missing from `Makefile.embed` and would cause all kinds of weird failures when compiling rugged on windows with the ruby devkit.
2013-07-25Allow Makefile.embed to be used when cross-compilingArthur Schreiber
This allows libgit2 to be cross-compiled (e.g. when building native rugged binaries for windows from Linux or OS X). ``` CROSS_COMPILE=i686-w64-mingw32 make -f Makefile.embed ```
2012-11-14makefile: Fix the builtin MakefileVicent Marti
2012-10-24Fix Makefile.embed to build src/sha1/*.cScott J. Goldman
2012-06-20More Makefile.embed cleanupsScott J. Goldman
Don't need unix/*.c for windows, don't need wildcard for regex.c
2012-06-20Fix Makefile.emebed for mingw32Scott J. Goldman
otherwise we can't compile the native parts of the rugged gem on Windows
2012-05-19Allow passing additional defines and cflags to Makefile.embed.Bruce Mitchener
2012-05-19Build xdiff as well in Makefile.embed.Bruce Mitchener
2012-02-09makefile: Define _GNU_SOURCE in the embed mkfileVicent Martí
2011-10-14Add src/transports to Makefile sourcesHargobind S. Khalsa
2011-10-14Update Makefile.embed with http-parser dependencyHargobind S. Khalsa
2011-07-06build: Add simple Makefile for embedding the libraryVicent Marti
Run `make -f Makefile.embed` to get a `libgit2.a` with no dependencies and no configuration on any Unix-like system. The generated library can be linked with any piece of software without licensing issues. Have fun.