rugged 0.27.9 → 0.27.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/AUTHORS +1 -0
- data/vendor/libgit2/CMakeLists.txt +98 -54
- data/vendor/libgit2/COPYING +28 -0
- data/vendor/libgit2/cmake/Modules/AddCFlagIfSupported.cmake +15 -1
- data/vendor/libgit2/cmake/Modules/EnableWarnings.cmake +9 -8
- data/vendor/libgit2/cmake/Modules/FindCoreFoundation.cmake +2 -2
- data/vendor/libgit2/cmake/Modules/FindGSSAPI.cmake +1 -1
- data/vendor/libgit2/cmake/Modules/FindGSSFramework.cmake +28 -0
- data/vendor/libgit2/cmake/Modules/FindPCRE.cmake +38 -0
- data/vendor/libgit2/cmake/Modules/FindPCRE2.cmake +37 -0
- data/vendor/libgit2/cmake/Modules/FindSecurity.cmake +2 -2
- data/vendor/libgit2/cmake/Modules/FindStatNsec.cmake +6 -0
- data/vendor/libgit2/cmake/Modules/FindmbedTLS.cmake +93 -0
- data/vendor/libgit2/cmake/Modules/PkgBuildConfig.cmake +110 -0
- data/vendor/libgit2/cmake/Modules/SelectGSSAPI.cmake +53 -0
- data/vendor/libgit2/cmake/Modules/SelectHTTPSBackend.cmake +124 -0
- data/vendor/libgit2/cmake/Modules/SelectHashes.cmake +66 -0
- data/vendor/libgit2/deps/http-parser/CMakeLists.txt +2 -0
- data/vendor/libgit2/deps/http-parser/{LICENSE-MIT → COPYING} +0 -0
- data/vendor/libgit2/deps/http-parser/http_parser.c +11 -6
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +21 -0
- data/vendor/libgit2/deps/ntlmclient/compat.h +33 -0
- data/vendor/libgit2/deps/ntlmclient/crypt.h +64 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +120 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +18 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +145 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +18 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +130 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +21 -0
- data/vendor/libgit2/deps/ntlmclient/ntlm.c +1420 -0
- data/vendor/libgit2/deps/ntlmclient/ntlm.h +174 -0
- data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +320 -0
- data/vendor/libgit2/deps/ntlmclient/unicode.h +36 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +445 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +201 -0
- data/vendor/libgit2/deps/ntlmclient/utf8.h +1257 -0
- data/vendor/libgit2/deps/ntlmclient/util.c +21 -0
- data/vendor/libgit2/deps/ntlmclient/util.h +14 -0
- data/vendor/libgit2/deps/pcre/CMakeLists.txt +140 -0
- data/vendor/libgit2/deps/pcre/COPYING +5 -0
- data/vendor/libgit2/deps/pcre/cmake/COPYING-CMAKE-SCRIPTS +22 -0
- data/vendor/libgit2/deps/pcre/cmake/FindEditline.cmake +17 -0
- data/vendor/libgit2/deps/pcre/cmake/FindPackageHandleStandardArgs.cmake +58 -0
- data/vendor/libgit2/deps/pcre/cmake/FindReadline.cmake +29 -0
- data/vendor/libgit2/deps/pcre/config.h.in +57 -0
- data/vendor/libgit2/deps/pcre/pcre.h +641 -0
- data/vendor/libgit2/deps/pcre/pcre_byte_order.c +319 -0
- data/vendor/libgit2/deps/pcre/pcre_chartables.c +198 -0
- data/vendor/libgit2/deps/pcre/pcre_compile.c +9800 -0
- data/vendor/libgit2/deps/pcre/pcre_config.c +190 -0
- data/vendor/libgit2/deps/pcre/pcre_dfa_exec.c +3676 -0
- data/vendor/libgit2/deps/pcre/pcre_exec.c +7173 -0
- data/vendor/libgit2/deps/pcre/pcre_fullinfo.c +245 -0
- data/vendor/libgit2/deps/pcre/pcre_get.c +669 -0
- data/vendor/libgit2/deps/pcre/pcre_globals.c +86 -0
- data/vendor/libgit2/deps/pcre/pcre_internal.h +2787 -0
- data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +11913 -0
- data/vendor/libgit2/deps/pcre/pcre_maketables.c +156 -0
- data/vendor/libgit2/deps/pcre/pcre_newline.c +210 -0
- data/vendor/libgit2/deps/pcre/pcre_ord2utf8.c +94 -0
- data/vendor/libgit2/deps/pcre/pcre_printint.c +834 -0
- data/vendor/libgit2/deps/pcre/pcre_refcount.c +92 -0
- data/vendor/libgit2/deps/pcre/pcre_string_utils.c +211 -0
- data/vendor/libgit2/deps/pcre/pcre_study.c +1686 -0
- data/vendor/libgit2/deps/pcre/pcre_tables.c +727 -0
- data/vendor/libgit2/deps/pcre/pcre_ucd.c +3644 -0
- data/vendor/libgit2/deps/pcre/pcre_valid_utf8.c +301 -0
- data/vendor/libgit2/deps/pcre/pcre_version.c +98 -0
- data/vendor/libgit2/deps/pcre/pcre_xclass.c +268 -0
- data/vendor/libgit2/deps/pcre/pcreposix.c +421 -0
- data/vendor/libgit2/deps/pcre/pcreposix.h +117 -0
- data/vendor/libgit2/deps/pcre/ucp.h +224 -0
- data/vendor/libgit2/deps/winhttp/COPYING.GPL +993 -0
- data/vendor/libgit2/deps/winhttp/COPYING.LGPL +502 -0
- data/vendor/libgit2/deps/zlib/CMakeLists.txt +1 -0
- data/vendor/libgit2/deps/zlib/COPYING +27 -0
- data/vendor/libgit2/deps/zlib/adler32.c +0 -7
- data/vendor/libgit2/deps/zlib/crc32.c +0 -7
- data/vendor/libgit2/include/git2.h +5 -0
- data/vendor/libgit2/include/git2/annotated_commit.h +9 -0
- data/vendor/libgit2/include/git2/apply.h +149 -0
- data/vendor/libgit2/include/git2/attr.h +38 -20
- data/vendor/libgit2/include/git2/blame.h +42 -25
- data/vendor/libgit2/include/git2/blob.h +45 -13
- data/vendor/libgit2/include/git2/branch.h +1 -1
- data/vendor/libgit2/include/git2/buffer.h +22 -16
- data/vendor/libgit2/include/git2/cert.h +135 -0
- data/vendor/libgit2/include/git2/checkout.h +65 -32
- data/vendor/libgit2/include/git2/cherrypick.h +9 -7
- data/vendor/libgit2/include/git2/clone.h +12 -10
- data/vendor/libgit2/include/git2/commit.h +53 -3
- data/vendor/libgit2/include/git2/common.h +60 -8
- data/vendor/libgit2/include/git2/config.h +30 -19
- data/vendor/libgit2/include/git2/cred.h +308 -0
- data/vendor/libgit2/include/git2/deprecated.h +493 -0
- data/vendor/libgit2/include/git2/describe.h +32 -9
- data/vendor/libgit2/include/git2/diff.h +208 -156
- data/vendor/libgit2/include/git2/errors.h +54 -46
- data/vendor/libgit2/include/git2/filter.h +8 -0
- data/vendor/libgit2/include/git2/ignore.h +2 -2
- data/vendor/libgit2/include/git2/index.h +74 -52
- data/vendor/libgit2/include/git2/indexer.h +76 -6
- data/vendor/libgit2/include/git2/mailmap.h +115 -0
- data/vendor/libgit2/include/git2/merge.h +35 -18
- data/vendor/libgit2/include/git2/net.h +0 -5
- data/vendor/libgit2/include/git2/notes.h +1 -1
- data/vendor/libgit2/include/git2/object.h +17 -29
- data/vendor/libgit2/include/git2/odb.h +12 -11
- data/vendor/libgit2/include/git2/odb_backend.h +10 -9
- data/vendor/libgit2/include/git2/oid.h +2 -2
- data/vendor/libgit2/include/git2/pack.h +14 -3
- data/vendor/libgit2/include/git2/proxy.h +14 -8
- data/vendor/libgit2/include/git2/rebase.h +53 -6
- data/vendor/libgit2/include/git2/refs.h +33 -15
- data/vendor/libgit2/include/git2/refspec.h +17 -0
- data/vendor/libgit2/include/git2/remote.h +123 -24
- data/vendor/libgit2/include/git2/repository.h +76 -39
- data/vendor/libgit2/include/git2/revert.h +6 -4
- data/vendor/libgit2/include/git2/revwalk.h +7 -7
- data/vendor/libgit2/include/git2/signature.h +2 -2
- data/vendor/libgit2/include/git2/stash.h +15 -12
- data/vendor/libgit2/include/git2/status.h +33 -20
- data/vendor/libgit2/include/git2/submodule.h +30 -12
- data/vendor/libgit2/include/git2/sys/alloc.h +101 -0
- data/vendor/libgit2/include/git2/sys/commit.h +1 -1
- data/vendor/libgit2/include/git2/sys/config.h +13 -13
- data/vendor/libgit2/include/git2/sys/cred.h +90 -0
- data/vendor/libgit2/include/git2/sys/filter.h +6 -6
- data/vendor/libgit2/include/git2/sys/index.h +3 -0
- data/vendor/libgit2/include/git2/sys/mempack.h +35 -35
- data/vendor/libgit2/include/git2/sys/merge.h +9 -4
- data/vendor/libgit2/include/git2/sys/odb_backend.h +66 -22
- data/vendor/libgit2/include/git2/sys/path.h +64 -0
- data/vendor/libgit2/include/git2/sys/refdb_backend.h +76 -40
- data/vendor/libgit2/include/git2/sys/repository.h +5 -1
- data/vendor/libgit2/include/git2/sys/stream.h +92 -12
- data/vendor/libgit2/include/git2/sys/transport.h +129 -83
- data/vendor/libgit2/include/git2/tag.h +13 -4
- data/vendor/libgit2/include/git2/trace.h +2 -2
- data/vendor/libgit2/include/git2/transaction.h +1 -0
- data/vendor/libgit2/include/git2/transport.h +11 -311
- data/vendor/libgit2/include/git2/tree.h +4 -4
- data/vendor/libgit2/include/git2/types.h +33 -111
- data/vendor/libgit2/include/git2/version.h +4 -4
- data/vendor/libgit2/include/git2/worktree.h +48 -13
- data/vendor/libgit2/src/CMakeLists.txt +96 -164
- data/vendor/libgit2/src/alloc.c +43 -0
- data/vendor/libgit2/src/alloc.h +40 -0
- data/vendor/libgit2/src/allocators/stdalloc.c +119 -0
- data/vendor/libgit2/src/{streams/curl.h → allocators/stdalloc.h} +5 -5
- data/vendor/libgit2/src/allocators/win32_crtdbg.c +118 -0
- data/vendor/libgit2/src/{transports/cred.h → allocators/win32_crtdbg.h} +5 -4
- data/vendor/libgit2/src/annotated_commit.c +15 -8
- data/vendor/libgit2/src/apply.c +537 -31
- data/vendor/libgit2/src/apply.h +3 -1
- data/vendor/libgit2/src/array.h +2 -2
- data/vendor/libgit2/src/attr.c +81 -75
- data/vendor/libgit2/src/attr_file.c +207 -121
- data/vendor/libgit2/src/attr_file.h +9 -9
- data/vendor/libgit2/src/attrcache.c +51 -53
- data/vendor/libgit2/src/attrcache.h +2 -1
- data/vendor/libgit2/src/blame.c +47 -20
- data/vendor/libgit2/src/blame.h +2 -1
- data/vendor/libgit2/src/blame_git.c +37 -20
- data/vendor/libgit2/src/blob.c +128 -42
- data/vendor/libgit2/src/blob.h +19 -2
- data/vendor/libgit2/src/branch.c +67 -43
- data/vendor/libgit2/src/buf_text.c +7 -6
- data/vendor/libgit2/src/buffer.c +69 -57
- data/vendor/libgit2/src/buffer.h +1 -1
- data/vendor/libgit2/src/cache.c +38 -45
- data/vendor/libgit2/src/cache.h +3 -3
- data/vendor/libgit2/src/cc-compat.h +20 -3
- data/vendor/libgit2/src/checkout.c +109 -90
- data/vendor/libgit2/src/cherrypick.c +15 -9
- data/vendor/libgit2/src/clone.c +49 -27
- data/vendor/libgit2/src/clone.h +4 -0
- data/vendor/libgit2/src/commit.c +117 -49
- data/vendor/libgit2/src/commit.h +7 -0
- data/vendor/libgit2/src/commit_list.c +30 -78
- data/vendor/libgit2/src/commit_list.h +2 -2
- data/vendor/libgit2/src/common.h +27 -91
- data/vendor/libgit2/src/config.c +194 -176
- data/vendor/libgit2/src/config.h +8 -20
- data/vendor/libgit2/src/config_backend.h +96 -0
- data/vendor/libgit2/src/config_cache.c +41 -35
- data/vendor/libgit2/src/config_entries.c +229 -0
- data/vendor/libgit2/src/config_entries.h +24 -0
- data/vendor/libgit2/src/config_file.c +439 -753
- data/vendor/libgit2/src/config_mem.c +220 -0
- data/vendor/libgit2/src/config_parse.c +114 -63
- data/vendor/libgit2/src/config_parse.h +17 -16
- data/vendor/libgit2/src/config_snapshot.c +206 -0
- data/vendor/libgit2/src/crlf.c +219 -190
- data/vendor/libgit2/src/delta.c +25 -18
- data/vendor/libgit2/src/describe.c +42 -41
- data/vendor/libgit2/src/diff.c +53 -68
- data/vendor/libgit2/src/diff.h +2 -1
- data/vendor/libgit2/src/diff_driver.c +47 -49
- data/vendor/libgit2/src/diff_file.c +19 -17
- data/vendor/libgit2/src/diff_file.h +1 -1
- data/vendor/libgit2/src/diff_generate.c +162 -106
- data/vendor/libgit2/src/diff_generate.h +3 -3
- data/vendor/libgit2/src/diff_parse.c +4 -4
- data/vendor/libgit2/src/diff_print.c +42 -30
- data/vendor/libgit2/src/diff_stats.c +22 -7
- data/vendor/libgit2/src/diff_tform.c +16 -16
- data/vendor/libgit2/src/diff_xdiff.c +15 -3
- data/vendor/libgit2/src/errors.c +51 -39
- data/vendor/libgit2/src/errors.h +81 -0
- data/vendor/libgit2/src/features.h.in +11 -3
- data/vendor/libgit2/src/fetch.c +10 -5
- data/vendor/libgit2/src/fetchhead.c +17 -17
- data/vendor/libgit2/src/filebuf.c +32 -36
- data/vendor/libgit2/src/filebuf.h +2 -2
- data/vendor/libgit2/src/filter.c +46 -38
- data/vendor/libgit2/src/filter.h +0 -10
- data/vendor/libgit2/src/{fileops.c → futils.c} +80 -73
- data/vendor/libgit2/src/{fileops.h → futils.h} +6 -6
- data/vendor/libgit2/src/global.c +48 -63
- data/vendor/libgit2/src/global.h +0 -2
- data/vendor/libgit2/src/hash.c +61 -0
- data/vendor/libgit2/src/hash.h +20 -19
- data/vendor/libgit2/src/hash/sha1.h +38 -0
- data/vendor/libgit2/src/hash/sha1/collisiondetect.c +48 -0
- data/vendor/libgit2/src/hash/sha1/collisiondetect.h +19 -0
- data/vendor/libgit2/src/hash/{hash_common_crypto.h → sha1/common_crypto.c} +17 -17
- data/vendor/libgit2/src/hash/sha1/common_crypto.h +19 -0
- data/vendor/libgit2/src/hash/{hash_generic.c → sha1/generic.c} +22 -10
- data/vendor/libgit2/src/hash/{hash_generic.h → sha1/generic.h} +4 -10
- data/vendor/libgit2/src/hash/sha1/mbedtls.c +46 -0
- data/vendor/libgit2/src/hash/sha1/mbedtls.h +19 -0
- data/vendor/libgit2/src/hash/sha1/openssl.c +59 -0
- data/vendor/libgit2/src/hash/sha1/openssl.h +19 -0
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/sha1.c +14 -3
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/sha1.h +0 -0
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/ubc_check.c +0 -0
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/ubc_check.h +0 -0
- data/vendor/libgit2/src/hash/{hash_win32.c → sha1/win32.c} +47 -37
- data/vendor/libgit2/src/hash/{hash_win32.h → sha1/win32.h} +6 -19
- data/vendor/libgit2/src/hashsig.c +5 -5
- data/vendor/libgit2/src/idxmap.c +107 -61
- data/vendor/libgit2/src/idxmap.h +153 -31
- data/vendor/libgit2/src/ignore.c +43 -47
- data/vendor/libgit2/src/index.c +337 -232
- data/vendor/libgit2/src/index.h +17 -1
- data/vendor/libgit2/src/indexer.c +346 -175
- data/vendor/libgit2/src/integer.h +71 -26
- data/vendor/libgit2/src/iterator.c +142 -70
- data/vendor/libgit2/src/iterator.h +15 -0
- data/vendor/libgit2/src/khash.h +3 -1
- data/vendor/libgit2/src/mailmap.c +485 -0
- data/vendor/libgit2/src/mailmap.h +35 -0
- data/vendor/libgit2/src/map.h +1 -1
- data/vendor/libgit2/src/merge.c +144 -100
- data/vendor/libgit2/src/merge_driver.c +11 -11
- data/vendor/libgit2/src/merge_file.c +2 -2
- data/vendor/libgit2/src/mwindow.c +24 -29
- data/vendor/libgit2/src/mwindow.h +4 -4
- data/vendor/libgit2/src/net.c +184 -0
- data/vendor/libgit2/src/net.h +36 -0
- data/vendor/libgit2/src/netops.c +55 -156
- data/vendor/libgit2/src/netops.h +3 -23
- data/vendor/libgit2/src/notes.c +16 -11
- data/vendor/libgit2/src/object.c +120 -69
- data/vendor/libgit2/src/object.h +22 -9
- data/vendor/libgit2/src/object_api.c +8 -8
- data/vendor/libgit2/src/odb.c +116 -93
- data/vendor/libgit2/src/odb.h +8 -7
- data/vendor/libgit2/src/odb_loose.c +62 -55
- data/vendor/libgit2/src/odb_mempack.c +21 -34
- data/vendor/libgit2/src/odb_pack.c +18 -14
- data/vendor/libgit2/src/offmap.c +53 -35
- data/vendor/libgit2/src/offmap.h +108 -21
- data/vendor/libgit2/src/oid.c +12 -7
- data/vendor/libgit2/src/oidmap.c +49 -47
- data/vendor/libgit2/src/oidmap.h +101 -24
- data/vendor/libgit2/src/pack-objects.c +88 -87
- data/vendor/libgit2/src/pack-objects.h +2 -8
- data/vendor/libgit2/src/pack.c +99 -101
- data/vendor/libgit2/src/pack.h +17 -19
- data/vendor/libgit2/src/parse.c +10 -0
- data/vendor/libgit2/src/parse.h +3 -3
- data/vendor/libgit2/src/patch.c +4 -4
- data/vendor/libgit2/src/patch_generate.c +20 -20
- data/vendor/libgit2/src/patch_parse.c +151 -63
- data/vendor/libgit2/src/path.c +169 -125
- data/vendor/libgit2/src/path.h +3 -71
- data/vendor/libgit2/src/pathspec.c +19 -19
- data/vendor/libgit2/src/pool.c +26 -22
- data/vendor/libgit2/src/pool.h +7 -7
- data/vendor/libgit2/src/posix.c +10 -10
- data/vendor/libgit2/src/posix.h +12 -1
- data/vendor/libgit2/src/proxy.c +8 -3
- data/vendor/libgit2/src/push.c +37 -31
- data/vendor/libgit2/src/push.h +2 -1
- data/vendor/libgit2/src/reader.c +265 -0
- data/vendor/libgit2/src/reader.h +107 -0
- data/vendor/libgit2/src/rebase.c +115 -59
- data/vendor/libgit2/src/refdb.c +15 -3
- data/vendor/libgit2/src/refdb_fs.c +381 -254
- data/vendor/libgit2/src/reflog.c +13 -15
- data/vendor/libgit2/src/refs.c +118 -88
- data/vendor/libgit2/src/refs.h +5 -3
- data/vendor/libgit2/src/refspec.c +56 -37
- data/vendor/libgit2/src/refspec.h +1 -1
- data/vendor/libgit2/src/regexp.c +221 -0
- data/vendor/libgit2/src/regexp.h +97 -0
- data/vendor/libgit2/src/remote.c +266 -215
- data/vendor/libgit2/src/remote.h +11 -2
- data/vendor/libgit2/src/repository.c +280 -225
- data/vendor/libgit2/src/repository.h +52 -40
- data/vendor/libgit2/src/reset.c +8 -8
- data/vendor/libgit2/src/revert.c +14 -9
- data/vendor/libgit2/src/revparse.c +47 -48
- data/vendor/libgit2/src/revwalk.c +120 -57
- data/vendor/libgit2/src/revwalk.h +22 -1
- data/vendor/libgit2/src/settings.c +47 -10
- data/vendor/libgit2/src/signature.c +11 -11
- data/vendor/libgit2/src/sortedcache.c +22 -36
- data/vendor/libgit2/src/sortedcache.h +1 -1
- data/vendor/libgit2/src/stash.c +125 -99
- data/vendor/libgit2/src/status.c +28 -22
- data/vendor/libgit2/src/stream.h +17 -2
- data/vendor/libgit2/src/streams/mbedtls.c +483 -0
- data/vendor/libgit2/src/streams/mbedtls.h +23 -0
- data/vendor/libgit2/src/streams/openssl.c +224 -114
- data/vendor/libgit2/src/streams/openssl.h +4 -108
- data/vendor/libgit2/src/streams/registry.c +118 -0
- data/vendor/libgit2/src/streams/registry.h +19 -0
- data/vendor/libgit2/src/streams/socket.c +55 -30
- data/vendor/libgit2/src/streams/stransport.c +57 -32
- data/vendor/libgit2/src/streams/stransport.h +5 -0
- data/vendor/libgit2/src/streams/tls.c +50 -19
- data/vendor/libgit2/src/streams/tls.h +12 -4
- data/vendor/libgit2/src/strmap.c +47 -74
- data/vendor/libgit2/src/strmap.h +108 -33
- data/vendor/libgit2/src/submodule.c +272 -216
- data/vendor/libgit2/src/submodule.h +1 -1
- data/vendor/libgit2/src/sysdir.c +29 -19
- data/vendor/libgit2/src/tag.c +41 -28
- data/vendor/libgit2/src/tag.h +2 -1
- data/vendor/libgit2/src/trace.c +2 -2
- data/vendor/libgit2/src/trace.h +3 -3
- data/vendor/libgit2/src/trailer.c +52 -38
- data/vendor/libgit2/src/transaction.c +30 -29
- data/vendor/libgit2/src/transport.c +5 -5
- data/vendor/libgit2/src/transports/auth.c +15 -11
- data/vendor/libgit2/src/transports/auth.h +10 -3
- data/vendor/libgit2/src/transports/auth_negotiate.c +33 -18
- data/vendor/libgit2/src/transports/auth_negotiate.h +2 -2
- data/vendor/libgit2/src/transports/auth_ntlm.c +223 -0
- data/vendor/libgit2/src/transports/auth_ntlm.h +35 -0
- data/vendor/libgit2/src/transports/cred.c +24 -24
- data/vendor/libgit2/src/transports/git.c +26 -31
- data/vendor/libgit2/src/transports/http.c +881 -348
- data/vendor/libgit2/src/transports/http.h +2 -0
- data/vendor/libgit2/src/transports/local.c +35 -35
- data/vendor/libgit2/src/transports/smart.c +70 -47
- data/vendor/libgit2/src/transports/smart.h +3 -4
- data/vendor/libgit2/src/transports/smart_pkt.c +43 -40
- data/vendor/libgit2/src/transports/smart_protocol.c +96 -116
- data/vendor/libgit2/src/transports/ssh.c +77 -66
- data/vendor/libgit2/src/transports/winhttp.c +318 -314
- data/vendor/libgit2/src/tree-cache.c +19 -12
- data/vendor/libgit2/src/tree.c +103 -142
- data/vendor/libgit2/src/tree.h +1 -12
- data/vendor/libgit2/src/unix/map.c +3 -3
- data/vendor/libgit2/src/unix/posix.h +1 -11
- data/vendor/libgit2/src/userdiff.h +3 -1
- data/vendor/libgit2/src/util.c +70 -56
- data/vendor/libgit2/src/util.h +28 -156
- data/vendor/libgit2/src/vector.c +4 -4
- data/vendor/libgit2/src/wildmatch.c +320 -0
- data/vendor/libgit2/src/wildmatch.h +23 -0
- data/vendor/libgit2/src/win32/dir.c +3 -3
- data/vendor/libgit2/src/win32/findfile.c +3 -3
- data/vendor/libgit2/src/win32/map.c +9 -11
- data/vendor/libgit2/src/win32/msvc-compat.h +6 -0
- data/vendor/libgit2/src/win32/path_w32.c +113 -9
- data/vendor/libgit2/src/win32/path_w32.h +18 -29
- data/vendor/libgit2/src/win32/posix.h +1 -4
- data/vendor/libgit2/src/win32/posix_w32.c +70 -45
- data/vendor/libgit2/src/win32/precompiled.h +0 -2
- data/vendor/libgit2/src/win32/thread.c +5 -10
- data/vendor/libgit2/src/win32/w32_buffer.c +9 -5
- data/vendor/libgit2/src/win32/w32_common.h +39 -0
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +3 -2
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +26 -75
- data/vendor/libgit2/src/win32/w32_stack.c +6 -11
- data/vendor/libgit2/src/win32/w32_stack.h +3 -3
- data/vendor/libgit2/src/win32/w32_util.c +27 -64
- data/vendor/libgit2/src/win32/w32_util.h +5 -49
- data/vendor/libgit2/src/worktree.c +95 -60
- data/vendor/libgit2/src/worktree.h +2 -0
- data/vendor/libgit2/src/xdiff/xdiffi.c +7 -5
- data/vendor/libgit2/src/xdiff/xhistogram.c +1 -1
- data/vendor/libgit2/src/xdiff/xmerge.c +27 -15
- data/vendor/libgit2/src/xdiff/xpatience.c +3 -0
- data/vendor/libgit2/src/zstream.c +4 -4
- metadata +122 -33
- data/vendor/libgit2/deps/regex/CMakeLists.txt +0 -2
- data/vendor/libgit2/deps/regex/config.h +0 -7
- data/vendor/libgit2/deps/regex/regcomp.c +0 -3857
- data/vendor/libgit2/deps/regex/regex.c +0 -92
- data/vendor/libgit2/deps/regex/regex.h +0 -582
- data/vendor/libgit2/deps/regex/regex_internal.c +0 -1744
- data/vendor/libgit2/deps/regex/regex_internal.h +0 -819
- data/vendor/libgit2/deps/regex/regexec.c +0 -4369
- data/vendor/libgit2/include/git2/inttypes.h +0 -309
- data/vendor/libgit2/include/git2/sys/time.h +0 -31
- data/vendor/libgit2/libgit2.pc.in +0 -13
- data/vendor/libgit2/src/config_file.h +0 -73
- data/vendor/libgit2/src/fnmatch.c +0 -248
- data/vendor/libgit2/src/fnmatch.h +0 -48
- data/vendor/libgit2/src/hash/hash_collisiondetect.h +0 -47
- data/vendor/libgit2/src/hash/hash_openssl.h +0 -59
- data/vendor/libgit2/src/streams/curl.c +0 -385
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60877d4cbb2ebf7883b23ed495e44d5aee569227cb3d708e430f2cda0477d149
|
4
|
+
data.tar.gz: dd362a1862f13fea15e02619590bffc233b76ebc54f0fce022f14df0c664b0c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fb127dd23146018109bf859280e31f68d3d3634f8657f8771364603b9d79fcbf5d9402805d25a169bd83f606dfdae9019ed911a0486d430f5154ab5e1dcbc63
|
7
|
+
data.tar.gz: aff42c35c12233cafcea2314ec0dc4d932fe408bf396ea43f9b003ed0c398a412a57965949a09e98cc27bede1586881af792d7b2b8d42cccbc75d51b9e715a16
|
data/lib/rugged/version.rb
CHANGED
data/vendor/libgit2/AUTHORS
CHANGED
@@ -12,14 +12,17 @@
|
|
12
12
|
# > cmake --build . --target install
|
13
13
|
|
14
14
|
PROJECT(libgit2 C)
|
15
|
-
CMAKE_MINIMUM_REQUIRED(VERSION
|
15
|
+
CMAKE_MINIMUM_REQUIRED(VERSION 3.5.1)
|
16
16
|
CMAKE_POLICY(SET CMP0015 NEW)
|
17
|
-
IF
|
17
|
+
IF(POLICY CMP0051)
|
18
18
|
CMAKE_POLICY(SET CMP0051 NEW)
|
19
19
|
ENDIF()
|
20
|
-
IF
|
20
|
+
IF(POLICY CMP0042)
|
21
21
|
CMAKE_POLICY(SET CMP0042 NEW)
|
22
22
|
ENDIF()
|
23
|
+
IF(POLICY CMP0054)
|
24
|
+
CMAKE_POLICY(SET CMP0054 NEW)
|
25
|
+
ENDIF()
|
23
26
|
|
24
27
|
# Add find modules to the path
|
25
28
|
SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${libgit2_SOURCE_DIR}/cmake/Modules/")
|
@@ -39,63 +42,66 @@ INCLUDE(EnableWarnings)
|
|
39
42
|
|
40
43
|
# Build options
|
41
44
|
#
|
42
|
-
OPTION(
|
43
|
-
OPTION(
|
44
|
-
OPTION(
|
45
|
-
OPTION(
|
46
|
-
OPTION(
|
47
|
-
OPTION(
|
48
|
-
OPTION(
|
49
|
-
OPTION(
|
50
|
-
OPTION(
|
51
|
-
|
52
|
-
|
53
|
-
OPTION(
|
54
|
-
OPTION(
|
55
|
-
OPTION(
|
56
|
-
OPTION(
|
57
|
-
OPTION(
|
58
|
-
OPTION(
|
59
|
-
OPTION(
|
60
|
-
OPTION(
|
61
|
-
OPTION(
|
45
|
+
OPTION(SONAME "Set the (SO)VERSION of the target" ON)
|
46
|
+
OPTION(BUILD_SHARED_LIBS "Build Shared Library (OFF for Static)" ON)
|
47
|
+
OPTION(THREADSAFE "Build libgit2 as threadsafe" ON)
|
48
|
+
OPTION(BUILD_CLAR "Build Tests using the Clar suite" ON)
|
49
|
+
OPTION(BUILD_EXAMPLES "Build library usage example apps" OFF)
|
50
|
+
OPTION(BUILD_FUZZERS "Build the fuzz targets" OFF)
|
51
|
+
OPTION(TAGS "Generate tags" OFF)
|
52
|
+
OPTION(PROFILE "Generate profiling information" OFF)
|
53
|
+
OPTION(ENABLE_TRACE "Enables tracing support" ON)
|
54
|
+
OPTION(LIBGIT2_FILENAME "Name of the produced binary" OFF)
|
55
|
+
OPTION(USE_SSH "Link with libssh2 to enable SSH support" ON)
|
56
|
+
OPTION(USE_HTTPS "Enable HTTPS support. Can be set to a specific backend" ON)
|
57
|
+
OPTION(USE_SHA1 "Enable SHA1. Can be set to CollisionDetection(ON)/HTTPS/Generic" ON)
|
58
|
+
OPTION(USE_GSSAPI "Link with libgssapi for SPNEGO auth" OFF)
|
59
|
+
OPTION(USE_STANDALONE_FUZZERS "Enable standalone fuzzers (compatible with gcc)" OFF)
|
60
|
+
OPTION(USE_LEAK_CHECKER "Run tests with leak checker" OFF)
|
61
|
+
OPTION(VALGRIND "Configure build for valgrind" OFF)
|
62
|
+
OPTION(DEBUG_POOL "Enable debug pool allocator" OFF)
|
63
|
+
OPTION(ENABLE_WERROR "Enable compilation with -Werror" OFF)
|
64
|
+
OPTION(USE_BUNDLED_ZLIB "Use the bundled version of zlib" OFF)
|
65
|
+
SET(USE_HTTP_PARSER "" CACHE STRING "Specifies the HTTP Parser implementation; either system or builtin.")
|
66
|
+
OPTION(DEPRECATE_HARD "Do not include deprecated functions in the library" OFF)
|
67
|
+
SET(REGEX_BACKEND "" CACHE STRING "Regular expression implementation. One of regcomp_l, pcre2, pcre, regcomp, or builtin.")
|
68
|
+
|
69
|
+
IF (UNIX)
|
70
|
+
IF (NOT USE_HTTPS)
|
71
|
+
OPTION(USE_NTLMCLIENT "Enable NTLM support on Unix." OFF )
|
72
|
+
ELSE()
|
73
|
+
OPTION(USE_NTLMCLIENT "Enable NTLM support on Unix." ON )
|
74
|
+
ENDIF()
|
75
|
+
ENDIF()
|
62
76
|
|
63
77
|
IF (UNIX AND NOT APPLE)
|
64
|
-
OPTION(
|
78
|
+
OPTION(ENABLE_REPRODUCIBLE_BUILDS "Enable reproducible builds" OFF)
|
65
79
|
ENDIF()
|
66
80
|
|
67
81
|
IF (APPLE)
|
68
|
-
OPTION(
|
82
|
+
OPTION(USE_ICONV "Link with and use iconv library" ON)
|
69
83
|
ENDIF()
|
70
84
|
|
71
85
|
IF(MSVC)
|
72
|
-
# This option is only available when building with MSVC. By default, libgit2
|
73
|
-
# is build using the cdecl calling convention, which is useful if you're
|
74
|
-
# writing C. However, the CLR and Win32 API both expect stdcall.
|
75
|
-
#
|
76
|
-
# If you are writing a CLR program and want to link to libgit2, you'll want
|
77
|
-
# to turn this on by invoking CMake with the "-DSTDCALL=ON" argument.
|
78
|
-
OPTION( STDCALL "Build libgit2 with the __stdcall convention" OFF )
|
79
|
-
|
80
86
|
# This option must match the settings used in your program, in particular if you
|
81
87
|
# are linking statically
|
82
|
-
OPTION(
|
88
|
+
OPTION(STATIC_CRT "Link the static CRT libraries" ON)
|
83
89
|
|
84
90
|
# If you want to embed a copy of libssh2 into libgit2, pass a
|
85
91
|
# path to libssh2
|
86
|
-
OPTION(
|
92
|
+
OPTION(EMBED_SSH_PATH "Path to libssh2 to embed (Windows)" OFF)
|
87
93
|
ENDIF()
|
88
94
|
|
89
95
|
|
90
96
|
IF(WIN32)
|
91
97
|
# By default, libgit2 is built with WinHTTP. To use the built-in
|
92
98
|
# HTTP transport, invoke CMake with the "-DWINHTTP=OFF" argument.
|
93
|
-
OPTION(
|
99
|
+
OPTION(WINHTTP "Use Win32 WinHTTP routines" ON)
|
94
100
|
ENDIF()
|
95
101
|
|
96
102
|
IF(MSVC)
|
97
103
|
# Enable MSVC CRTDBG memory leak reporting when in debug mode.
|
98
|
-
OPTION(MSVC_CRTDBG
|
104
|
+
OPTION(MSVC_CRTDBG "Enable CRTDBG memory leak reporting" OFF)
|
99
105
|
ENDIF()
|
100
106
|
|
101
107
|
FILE(STRINGS "${libgit2_SOURCE_DIR}/include/git2/version.h" GIT2_HEADER REGEX "^#define LIBGIT2_VERSION \"[^\"]*\"$")
|
@@ -108,8 +114,16 @@ SET(LIBGIT2_VERSION_STRING "${LIBGIT2_VERSION_MAJOR}.${LIBGIT2_VERSION_MINOR}.${
|
|
108
114
|
FILE(STRINGS "${libgit2_SOURCE_DIR}/include/git2/version.h" GIT2_HEADER_SOVERSION REGEX "^#define LIBGIT2_SOVERSION [0-9]+$")
|
109
115
|
STRING(REGEX REPLACE "^.*LIBGIT2_SOVERSION ([0-9]+)$" "\\1" LIBGIT2_SOVERSION "${GIT2_HEADER_SOVERSION}")
|
110
116
|
|
117
|
+
IF (DEPRECATE_HARD)
|
118
|
+
ADD_DEFINITIONS(-DGIT_DEPRECATE_HARD)
|
119
|
+
ENDIF()
|
120
|
+
|
111
121
|
# Platform specific compilation flags
|
112
122
|
IF (MSVC)
|
123
|
+
IF (STDCALL)
|
124
|
+
MESSAGE(FATAL_ERROR "The STDCALL option is no longer supported; libgit2 is now always built as a cdecl library. If you're using PInvoke, please add the CallingConventions.Cdecl attribute for support.")
|
125
|
+
ENDIF()
|
126
|
+
|
113
127
|
ADD_DEFINITIONS(-D_SCL_SECURE_NO_WARNINGS)
|
114
128
|
ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE)
|
115
129
|
ADD_DEFINITIONS(-D_CRT_NONSTDC_NO_DEPRECATE)
|
@@ -120,10 +134,8 @@ IF (MSVC)
|
|
120
134
|
# /MP - Parallel build
|
121
135
|
SET(CMAKE_C_FLAGS "/GF /MP /nologo ${CMAKE_C_FLAGS}")
|
122
136
|
|
123
|
-
|
124
|
-
|
125
|
-
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /Gz")
|
126
|
-
ENDIF ()
|
137
|
+
# /Gd - explicitly set cdecl calling convention
|
138
|
+
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /Gd")
|
127
139
|
|
128
140
|
IF (STATIC_CRT)
|
129
141
|
SET(CRT_FLAG_DEBUG "/MTd")
|
@@ -162,6 +174,9 @@ IF (MSVC)
|
|
162
174
|
# /O1 - Optimize for size
|
163
175
|
SET(CMAKE_C_FLAGS_MINSIZEREL "/DNDEBUG /O1 /Oy /GL /Gy ${CRT_FLAG_RELEASE}")
|
164
176
|
|
177
|
+
# /IGNORE:4221 - Ignore empty compilation units
|
178
|
+
SET(CMAKE_STATIC_LINKER_FLAGS "/IGNORE:4221")
|
179
|
+
|
165
180
|
# /DYNAMICBASE - Address space load randomization (ASLR)
|
166
181
|
# /NXCOMPAT - Data execution prevention (DEP)
|
167
182
|
# /LARGEADDRESSAWARE - >2GB user address space on x86
|
@@ -197,7 +212,7 @@ ELSE ()
|
|
197
212
|
ENABLE_WARNINGS(extra)
|
198
213
|
|
199
214
|
IF (CMAKE_SYSTEM_NAME MATCHES "(Solaris|SunOS)")
|
200
|
-
SET(CMAKE_C_FLAGS "-
|
215
|
+
SET(CMAKE_C_FLAGS "-D_POSIX_C_SOURCE=200112L -D__EXTENSIONS__ -D_POSIX_PTHREAD_SEMANTICS ${CMAKE_C_FLAGS}")
|
201
216
|
ENDIF()
|
202
217
|
|
203
218
|
SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D_DEBUG -O0")
|
@@ -223,14 +238,23 @@ ELSE ()
|
|
223
238
|
ENABLE_WARNINGS(strict-prototypes)
|
224
239
|
ENABLE_WARNINGS(declaration-after-statement)
|
225
240
|
ENABLE_WARNINGS(shift-count-overflow)
|
226
|
-
|
227
|
-
|
228
|
-
ENABLE_WARNINGS(format)
|
229
|
-
ENABLE_WARNINGS(format-security)
|
241
|
+
ENABLE_WARNINGS(unused-const-variable)
|
242
|
+
ENABLE_WARNINGS(unused-function)
|
230
243
|
ENABLE_WARNINGS(int-conversion)
|
231
244
|
|
232
|
-
|
233
|
-
|
245
|
+
# MinGW uses gcc, which expects POSIX formatting for printf, but
|
246
|
+
# uses the Windows C library, which uses its own format specifiers.
|
247
|
+
# Disable format specifier warnings.
|
248
|
+
IF(MINGW)
|
249
|
+
DISABLE_WARNINGS(format)
|
250
|
+
DISABLE_WARNINGS(format-security)
|
251
|
+
ELSE()
|
252
|
+
ENABLE_WARNINGS(format)
|
253
|
+
ENABLE_WARNINGS(format-security)
|
254
|
+
ENDIF()
|
255
|
+
|
256
|
+
IF("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang")
|
257
|
+
DISABLE_WARNINGS(documentation-deprecated-sync)
|
234
258
|
ENDIF()
|
235
259
|
|
236
260
|
IF (PROFILE)
|
@@ -239,6 +263,11 @@ ELSE ()
|
|
239
263
|
ENDIF ()
|
240
264
|
ENDIF()
|
241
265
|
|
266
|
+
# Ensure that MinGW provides the correct header files.
|
267
|
+
IF (WIN32 AND NOT CYGWIN)
|
268
|
+
ADD_DEFINITIONS(-DWIN32 -D_WIN32_WINNT=0x0600)
|
269
|
+
ENDIF()
|
270
|
+
|
242
271
|
IF( NOT CMAKE_CONFIGURATION_TYPES )
|
243
272
|
# Build Debug by default
|
244
273
|
IF (NOT CMAKE_BUILD_TYPE)
|
@@ -249,6 +278,14 @@ ELSE()
|
|
249
278
|
# that uses CMAKE_CONFIGURATION_TYPES and not CMAKE_BUILD_TYPE
|
250
279
|
ENDIF()
|
251
280
|
|
281
|
+
IF(BUILD_FUZZERS AND NOT USE_STANDALONE_FUZZERS)
|
282
|
+
# The actual sanitizer link target will be added when linking the fuzz
|
283
|
+
# targets.
|
284
|
+
SET(CMAKE_REQUIRED_FLAGS "-fsanitize=fuzzer-no-link")
|
285
|
+
ADD_C_FLAG(-fsanitize=fuzzer-no-link)
|
286
|
+
UNSET(CMAKE_REQUIRED_FLAGS)
|
287
|
+
ENDIF ()
|
288
|
+
|
252
289
|
ADD_SUBDIRECTORY(src)
|
253
290
|
|
254
291
|
# Tests
|
@@ -286,10 +323,17 @@ IF (BUILD_EXAMPLES)
|
|
286
323
|
ADD_SUBDIRECTORY(examples)
|
287
324
|
ENDIF ()
|
288
325
|
|
289
|
-
IF(
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
326
|
+
IF(BUILD_FUZZERS)
|
327
|
+
IF(NOT USE_STANDALONE_FUZZERS)
|
328
|
+
IF(BUILD_EXAMPLES)
|
329
|
+
MESSAGE(FATAL_ERROR "Cannot build the fuzzer targets and the examples together")
|
330
|
+
ENDIF()
|
331
|
+
IF(BUILD_CLAR)
|
332
|
+
MESSAGE(FATAL_ERROR "Cannot build the fuzzer targets and the tests together")
|
333
|
+
ENDIF()
|
334
|
+
ENDIF()
|
335
|
+
ADD_SUBDIRECTORY(fuzzers)
|
295
336
|
ENDIF()
|
337
|
+
|
338
|
+
FEATURE_SUMMARY(WHAT ENABLED_FEATURES DESCRIPTION "Enabled features:")
|
339
|
+
FEATURE_SUMMARY(WHAT DISABLED_FEATURES DESCRIPTION "Disabled features:")
|
data/vendor/libgit2/COPYING
CHANGED
@@ -991,3 +991,31 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
991
991
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
992
992
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
993
993
|
SOFTWARE.
|
994
|
+
|
995
|
+
----------------------------------------------------------------------
|
996
|
+
|
997
|
+
The bundled wildmatch code is licensed under the BSD license:
|
998
|
+
|
999
|
+
Copyright Rich Salz.
|
1000
|
+
All rights reserved.
|
1001
|
+
|
1002
|
+
Redistribution and use in any form are permitted provided that the
|
1003
|
+
following restrictions are are met:
|
1004
|
+
|
1005
|
+
1. Source distributions must retain this entire copyright notice
|
1006
|
+
and comment.
|
1007
|
+
2. Binary distributions must include the acknowledgement ``This
|
1008
|
+
product includes software developed by Rich Salz'' in the
|
1009
|
+
documentation or other materials provided with the
|
1010
|
+
distribution. This must not be represented as an endorsement
|
1011
|
+
or promotion without specific prior written permission.
|
1012
|
+
3. The origin of this software must not be misrepresented, either
|
1013
|
+
by explicit claim or by omission. Credits must appear in the
|
1014
|
+
source and documentation.
|
1015
|
+
4. Altered versions must be plainly marked as such in the source
|
1016
|
+
and documentation and must not be misrepresented as being the
|
1017
|
+
original software.
|
1018
|
+
|
1019
|
+
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
|
1020
|
+
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
1021
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
@@ -5,9 +5,23 @@
|
|
5
5
|
|
6
6
|
INCLUDE(CheckCCompilerFlag)
|
7
7
|
|
8
|
+
MACRO(ADD_C_FLAG _FLAG)
|
9
|
+
STRING(TOUPPER ${_FLAG} UPCASE)
|
10
|
+
STRING(REGEX REPLACE "[-=]" "_" UPCASE_PRETTY ${UPCASE})
|
11
|
+
STRING(REGEX REPLACE "^_+" "" UPCASE_PRETTY ${UPCASE_PRETTY})
|
12
|
+
CHECK_C_COMPILER_FLAG(${_FLAG} IS_${UPCASE_PRETTY}_SUPPORTED)
|
13
|
+
|
14
|
+
IF(IS_${UPCASE_PRETTY}_SUPPORTED)
|
15
|
+
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${_FLAG}")
|
16
|
+
ELSE()
|
17
|
+
MESSAGE(FATAL_ERROR "Required flag ${_FLAG} is not supported")
|
18
|
+
ENDIF()
|
19
|
+
ENDMACRO()
|
20
|
+
|
8
21
|
MACRO(ADD_C_FLAG_IF_SUPPORTED _FLAG)
|
9
22
|
STRING(TOUPPER ${_FLAG} UPCASE)
|
10
|
-
STRING(REGEX REPLACE "
|
23
|
+
STRING(REGEX REPLACE "[-=]" "_" UPCASE_PRETTY ${UPCASE})
|
24
|
+
STRING(REGEX REPLACE "^_+" "" UPCASE_PRETTY ${UPCASE_PRETTY})
|
11
25
|
CHECK_C_COMPILER_FLAG(${_FLAG} IS_${UPCASE_PRETTY}_SUPPORTED)
|
12
26
|
|
13
27
|
IF(IS_${UPCASE_PRETTY}_SUPPORTED)
|
@@ -1,14 +1,15 @@
|
|
1
1
|
MACRO(ENABLE_WARNINGS flag)
|
2
|
-
|
3
|
-
ADD_C_FLAG_IF_SUPPORTED(-Werror=${flag})
|
4
|
-
ELSE()
|
5
|
-
ADD_C_FLAG_IF_SUPPORTED(-W${flag})
|
6
|
-
ENDIF()
|
2
|
+
ADD_C_FLAG_IF_SUPPORTED(-W${flag})
|
7
3
|
ENDMACRO()
|
8
4
|
|
9
5
|
MACRO(DISABLE_WARNINGS flag)
|
10
6
|
ADD_C_FLAG_IF_SUPPORTED(-Wno-${flag})
|
11
|
-
IF(ENABLE_WERROR)
|
12
|
-
ADD_C_FLAG_IF_SUPPORTED(-Wno-error=${flag})
|
13
|
-
ENDIF()
|
14
7
|
ENDMACRO()
|
8
|
+
|
9
|
+
IF(ENABLE_WERROR)
|
10
|
+
IF(MSVC)
|
11
|
+
ADD_COMPILE_OPTIONS(-WX)
|
12
|
+
ELSE()
|
13
|
+
ADD_C_FLAG_IF_SUPPORTED(-Werror)
|
14
|
+
ENDIF()
|
15
|
+
ENDIF()
|
@@ -10,14 +10,14 @@ FIND_PATH(COREFOUNDATION_INCLUDE_DIR NAMES CoreFoundation.h)
|
|
10
10
|
FIND_LIBRARY(COREFOUNDATION_LIBRARIES NAMES CoreFoundation)
|
11
11
|
IF (COREFOUNDATION_INCLUDE_DIR AND COREFOUNDATION_LIBRARIES)
|
12
12
|
IF (NOT CoreFoundation_FIND_QUIETLY)
|
13
|
-
MESSAGE("
|
13
|
+
MESSAGE(STATUS "Found CoreFoundation ${COREFOUNDATION_LIBRARIES}")
|
14
14
|
ENDIF()
|
15
15
|
SET(COREFOUNDATION_FOUND TRUE)
|
16
16
|
SET(COREFOUNDATION_LDFLAGS "-framework CoreFoundation")
|
17
17
|
ENDIF ()
|
18
18
|
|
19
19
|
IF (CoreFoundation_FIND_REQUIRED AND NOT COREFOUNDATION_FOUND)
|
20
|
-
MESSAGE(
|
20
|
+
MESSAGE(FATAL_ERROR "CoreFoundation not found")
|
21
21
|
ENDIF()
|
22
22
|
|
23
23
|
MARK_AS_ADVANCED(
|
@@ -6,7 +6,7 @@
|
|
6
6
|
#
|
7
7
|
# Read-Only variables:
|
8
8
|
# GSSAPI_FLAVOR_MIT - set to TURE if MIT Kerberos has been found
|
9
|
-
# GSSAPI_FLAVOR_HEIMDAL - set to TRUE if Heimdal
|
9
|
+
# GSSAPI_FLAVOR_HEIMDAL - set to TRUE if Heimdal Kerberos has been found
|
10
10
|
# GSSAPI_FOUND - system has GSSAPI
|
11
11
|
# GSSAPI_INCLUDE_DIR - the GSSAPI include directory
|
12
12
|
# GSSAPI_LIBRARIES - Link these to use GSSAPI
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# Find GSS.framework
|
2
|
+
# This will define :
|
3
|
+
#
|
4
|
+
# GSSFRAMEWORK_FOUND
|
5
|
+
# GSSFRAMEWORK_INCLUDE_DIR
|
6
|
+
# GSSFRAMEWORK_LIBRARIES
|
7
|
+
# GSSFRAMEWORK_LDFLAGS
|
8
|
+
#
|
9
|
+
|
10
|
+
FIND_PATH(GSSFRAMEWORK_INCLUDE_DIR NAMES GSS.h)
|
11
|
+
FIND_LIBRARY(GSSFRAMEWORK_LIBRARIES NAMES GSS)
|
12
|
+
IF (GSSFRAMEWORK_INCLUDE_DIR AND GSSFRAMEWORK_LIBRARIES)
|
13
|
+
IF (NOT CoreFoundation_FIND_QUIETLY)
|
14
|
+
MESSAGE(STATUS "Found GSS.framework ${GSSFRAMEWORK_LIBRARIES}")
|
15
|
+
ENDIF()
|
16
|
+
SET(GSSFRAMEWORK_FOUND TRUE)
|
17
|
+
SET(GSSFRAMEWORK_LDFLAGS "-framework GSS")
|
18
|
+
ENDIF ()
|
19
|
+
|
20
|
+
IF (GSS_FIND_REQUIRED AND NOT GSSFRAMEWORK_FOUND)
|
21
|
+
MESSAGE(FATAL_ERROR "CoreFoundation not found")
|
22
|
+
ENDIF()
|
23
|
+
|
24
|
+
MARK_AS_ADVANCED(
|
25
|
+
GSSFRAMEWORK_INCLUDE_DIR
|
26
|
+
GSSFRAMEWORK_LIBRARIES
|
27
|
+
GSSFRAMEWORK_LDFLAGS
|
28
|
+
)
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# Copyright (C) 2007-2009 LuaDist.
|
2
|
+
# Created by Peter Kapec <kapecp@gmail.com>
|
3
|
+
# Redistribution and use of this file is allowed according to the terms of the MIT license.
|
4
|
+
# For details see the COPYRIGHT file distributed with LuaDist.
|
5
|
+
# Note:
|
6
|
+
# Searching headers and libraries is very simple and is NOT as powerful as scripts
|
7
|
+
# distributed with CMake, because LuaDist defines directories to search for.
|
8
|
+
# Everyone is encouraged to contact the author with improvements. Maybe this file
|
9
|
+
# becomes part of CMake distribution sometimes.
|
10
|
+
|
11
|
+
# - Find pcre
|
12
|
+
# Find the native PCRE headers and libraries.
|
13
|
+
#
|
14
|
+
# PCRE_INCLUDE_DIRS - where to find pcre.h, etc.
|
15
|
+
# PCRE_LIBRARIES - List of libraries when using pcre.
|
16
|
+
# PCRE_FOUND - True if pcre found.
|
17
|
+
|
18
|
+
# Look for the header file.
|
19
|
+
FIND_PATH(PCRE_INCLUDE_DIR NAMES pcreposix.h)
|
20
|
+
|
21
|
+
# Look for the library.
|
22
|
+
FIND_LIBRARY(PCRE_LIBRARY NAMES pcre)
|
23
|
+
FIND_LIBRARY(PCRE_POSIX_LIBRARY NAMES pcreposix)
|
24
|
+
|
25
|
+
# Handle the QUIETLY and REQUIRED arguments and set PCRE_FOUND to TRUE if all listed variables are TRUE.
|
26
|
+
INCLUDE(FindPackageHandleStandardArgs)
|
27
|
+
FIND_PACKAGE_HANDLE_STANDARD_ARGS(PCRE DEFAULT_MSG PCRE_LIBRARY PCRE_POSIX_LIBRARY PCRE_INCLUDE_DIR)
|
28
|
+
|
29
|
+
# Copy the results to the output variables.
|
30
|
+
IF(PCRE_FOUND)
|
31
|
+
SET(PCRE_LIBRARIES ${PCRE_LIBRARY} ${PCRE_POSIX_LIBRARY})
|
32
|
+
SET(PCRE_INCLUDE_DIRS ${PCRE_INCLUDE_DIR})
|
33
|
+
ELSE(PCRE_FOUND)
|
34
|
+
SET(PCRE_LIBRARIES)
|
35
|
+
SET(PCRE_INCLUDE_DIRS)
|
36
|
+
ENDIF(PCRE_FOUND)
|
37
|
+
|
38
|
+
MARK_AS_ADVANCED(PCRE_INCLUDE_DIRS PCRE_LIBRARIES)
|