1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
|
# git2r, R bindings to the libgit2 library.
# Copyright (C) 2013-2022 The git2r contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2,
# as published by the Free Software Foundation.
#
# git2r is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
AC_PREREQ([2.69])
AC_INIT([git2r], [see.DESCRIPTION.file], [https://github.com/ropensci/git2r/issues])
AC_CONFIG_SRCDIR([src/git2r.c])
AC_CONFIG_AUX_DIR([tools])
AC_CANONICAL_HOST
m4_include([tools/iconv.m4])
m4_include([tools/lib-ld.m4])
m4_include([tools/lib-link.m4])
m4_include([tools/lib-prefix.m4])
m4_include([tools/pkg.m4])
# System libgit2
AC_ARG_WITH([libgit2],
AS_HELP_STRING([--without-libgit2],
[Ignore presence of a system libgit2 library and instead use the internal git2r libgit2 library]))
## Check for brew on macOS
AC_DEFUN([AC_PROG_BREW], [AC_CHECK_PROG(BREW,brew,yes)])
# Check for pkg-config
PKG_PROG_PKG_CONFIG
# Check for R
: ${R_HOME=`R RHOME`}
if test -z "${R_HOME}"; then
AC_MSG_FAILURE([Could not determine R_HOME])
fi
RBIN="${R_HOME}/bin/R"
# Library settings
m4_pattern_allow([PKG_CONFIG_NAME])
m4_pattern_allow([PKG_BREW_NAME])
PKG_CONFIG_NAME="libgit2"
PKG_BREW_NAME="libgit2"
PKG_LIBS="-lgit2"
PKG_CFLAGS=""
# The minimum version of libgit2 that is compatible with git2r. The
# version 0.26 is in all Fedora releases and at least the latest
# Ubuntu.
LIBGIT2_MIN_VERSION=0.26.0
# Check if building against bundled libgit2 or system libgit2
USE_BUNDLED_LIBGIT2=yes
if test "x$with_libgit2" = "xno"; then
AC_MSG_NOTICE([ignore presence of a system libgit2 library])
elif test "x${INCLUDE_DIR}${LIB_DIR}" = x; then
if test [ -n "$PKG_CONFIG" ] ; then
# Check if libgit2 is installed and have a version that is
# compatible with git2r.
if $PKG_CONFIG ${PKG_CONFIG_NAME} --atleast-version=${LIBGIT2_MIN_VERSION}; then
PKGCONFIG_CFLAGS=`"${PKG_CONFIG}" --cflags "${PKG_CONFIG_NAME}"`
PKGCONFIG_LIBS=`"${PKG_CONFIG}" --libs "${PKG_CONFIG_NAME}"`
fi
fi
if test "x${PKGCONFIG_CFLAGS}${PKGCONFIG_LIBS}" = x; then
case "${host_os}" in
darwin*)
AC_PROG_BREW
if test "x${BREW}" = xyes; then
BREWDIR=`brew --prefix`
USE_BUNDLED_LIBGIT2=no
else
curl -sfL "https://autobrew.github.io/scripts/libgit2" > autobrew
. autobrew
USE_BUNDLED_LIBGIT2=no
fi
;;
esac
else
echo "Found pkg-config cflags and libs!"
PKG_CFLAGS="${PKGCONFIG_CFLAGS}"
PKG_LIBS="${PKGCONFIG_LIBS}"
USE_BUNDLED_LIBGIT2=no
fi
else
echo "Found INCLUDE_DIR and/or LIB_DIR!"
PKG_CFLAGS="-I${INCLUDE_DIR} ${PKG_CFLAGS}"
PKG_LIBS="-L${LIB_DIR} ${PKG_LIBS}"
USE_BUNDLED_LIBGIT2=no
fi
# Find the compiler and compiler flags to use
CC=`"${RBIN}" CMD config CC`
CFLAGS=`"${RBIN}" CMD config CFLAGS`
CPPFLAGS=`"${RBIN}" CMD config CPPFLAGS`
# If a system installation of libgit2 is available, check that the version
# works with git2r.
if test "x${USE_BUNDLED_LIBGIT2}" = xno; then
AC_MSG_CHECKING([whether the libgit2 version will work in git2r])
libgit2_ver_ok=no
${CC} ${CPPFLAGS} ${PKG_CFLAGS} ${CFLAGS} -E tools/version.c >/dev/null 2>&1 && libgit2_ver_ok=yes
AC_MSG_RESULT([${libgit2_ver_ok}])
if test "x${libgit2_ver_ok}" = xno; then
USE_BUNDLED_LIBGIT2=yes
fi
fi
################# Begin configuration to use system libgit2 ##################
if test "x${USE_BUNDLED_LIBGIT2}" = xno; then
# The function 'git_buf_free' is deprecated in libgit2
# v0.28.0. Use 'git_buf_dispose', if available, instead.
AC_MSG_CHECKING([whether the libgit2 function git_buf_dispose is available])
have_buf_dispose=no
AC_LANG_CONFTEST([AC_LANG_PROGRAM(
[[#include <git2.h>]],
[[git_buf_dispose(NULL);]])])
PKG_CFLAGS="${PKG_CFLAGS} -Werror" "$RBIN" CMD SHLIB conftest.c \
1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD && have_buf_dispose=yes
AC_MSG_RESULT([${have_buf_dispose}])
if test "x${have_buf_dispose}" = xyes; then
PKG_CFLAGS="${PKG_CFLAGS} -DGIT2R_HAVE_BUF_DISPOSE"
fi
# The constants GIT_OBJ_ANY, GIT_OBJ_BLOB, GIT_OBJ_COMMIT,
# GIT_OBJ_TAG_GIT_OBJ_TREE and GIT_REF_OID are deprecated in
# libgit2 v0.28.0. Use GIT_OBJECT_ANY, GIT_OBJECT_BLOB,
# GIT_OBJECT_COMMIT, GIT_OBJECT_TAG_GIT_OBJECT_TREE and
# GIT_REFERENCE_DIRECT, if available, instead.
AC_MSG_CHECKING([whether the libgit2 constant GIT_OBJECT_ANY is available])
have_git_object_any=no
AC_LANG_CONFTEST([AC_LANG_PROGRAM(
[[#include <git2.h>]],
[[git_object_typeisloose(GIT_OBJECT_ANY);]])])
PKG_CFLAGS="${PKG_CFLAGS} -Werror" "$RBIN" CMD SHLIB conftest.c \
1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD && have_git_object_any=yes
AC_MSG_RESULT([${have_git_object_any}])
if test "x${have_git_object_any}" = xyes; then
PKG_CFLAGS="${PKG_CFLAGS} -DGIT2R_HAVE_OBJECT_ANY"
fi
# Several libgit2 error functions and enumaration values have been
# deprecated, use newer versions.
AC_MSG_CHECKING([whether the libgit2 function git_error_last is available])
have_git_error_last=no
AC_LANG_CONFTEST([AC_LANG_PROGRAM(
[[#include <git2.h>]],
[[git_error_last();]])])
PKG_CFLAGS="${PKG_CFLAGS} -Werror" "$RBIN" CMD SHLIB conftest.c \
1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD && have_git_error_last=yes
AC_MSG_RESULT([${have_git_error_last}])
if test "x${have_git_error_last}" = xyes; then
PKG_CFLAGS="${PKG_CFLAGS} -DGIT2R_HAVE_GIT_ERROR"
fi
# libgit v0.99.0: Several structures, enums and values have been
# renamed in libgit version 0.99.0. The former names are
# deprecated. See
# https://github.com/libgit2/libgit2/releases/tag/v0.99.0
AC_MSG_CHECKING([whether the libgit2 function git_oid_is_zero is available])
have_git_oid_is_zero=no
AC_LANG_CONFTEST([AC_LANG_PROGRAM(
[[#include <git2.h>]],
[[git_oid_is_zero(NULL);]])])
PKG_CFLAGS="${PKG_CFLAGS} -Werror" "$RBIN" CMD SHLIB conftest.c \
1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD && have_git_oid_is_zero=yes
AC_MSG_RESULT([${have_git_oid_is_zero}])
if test "x${have_git_oid_is_zero}" = xyes; then
PKG_CFLAGS="${PKG_CFLAGS} -DGIT2R_LIBGIT2_V0_99_0_RENAMES"
fi
# For debugging
echo "----- Results of the git2r package configure -----"
echo ""
echo " PKG_CFLAGS: ${PKG_CFLAGS}"
echo " PKG_LIBS: ${PKG_LIBS}"
echo ""
echo "--------------------------------------------------"
AC_SUBST([PKG_CFLAGS], ["${PKG_CFLAGS}"])
AC_SUBST([PKG_LIBS], ["${PKG_LIBS}"])
AC_CONFIG_FILES([src/Makevars])
AC_OUTPUT
fi
################# End configuration to use system libgit2 ####################
################# Begin configuration to build bundled libgit2 ###############
if test "x${USE_BUNDLED_LIBGIT2}" = xyes; then
if test "x$with_libgit2" = "xyes"; then
AC_MSG_FAILURE([system libgit2 requested but not found])
elif test "x$with_libgit2" = "xno"; then
AC_MSG_NOTICE([attempting configuration of bundled libgit2])
else
AC_MSG_NOTICE([package dependency requirement 'libgit2 >= ${LIBGIT2_MIN_VERSION}' could not be satisfied.])
echo "
-----------------------------------------------------------------------
Unable to find the libgit2 library on this system. Building 'git2r'
using the bundled source of the libgit2 library.
To build git2r with a system installation of libgit2, please install:
libgit2-dev (package on e.g. Debian and Ubuntu)
libgit2-devel (package on e.g. Fedora, CentOS and RHEL)
libgit2 (Homebrew package on OS X)
and try again.
If the libgit2 library is installed on your system but the git2r
configuration is unable to find it, you can specify the include and
lib path to libgit2 with:
given you downloaded a tar-gz archive:
R CMD INSTALL git2r-.tar.gz --configure-vars='INCLUDE_DIR=/path/to/include LIB_DIR=/path/to/lib'
or cloned the GitHub git2r repository into a directory:
R CMD INSTALL git2r/ --configure-vars='INCLUDE_DIR=/path/to/include LIB_DIR=/path/to/lib'
or download and install git2r in R using
install.packages('git2r', type='source', configure.vars='LIB_DIR=-L/path/to/libs INCLUDE_DIR=-I/path/to/headers')
On macOS, another possibility is to let the configuration
automatically download the libgit2 library from the Homebrew
package manager with:
R CMD INSTALL git2r-.tar.gz --configure-vars='autobrew=yes'
or
R CMD INSTALL git2r/ --configure-vars='autobrew=yes'
or
install.packages('git2r', type='source', configure.vars='autobrew=yes')
-----------------------------------------------------------------------
"
AC_MSG_NOTICE([attempting configuration of bundled libgit2])
fi
# Use R to determine architecture of the machine
AC_MSG_CHECKING([size of void*])
sizeof_voidp=`"${RBIN}" --slave --vanilla -e "cat(.Machine\\$sizeof.pointer)"`
AC_MSG_RESULT([$sizeof_voidp])
if test "x$sizeof_voidp" = "x8"; then
CPPFLAGS="${CPPFLAGS} -DGIT_ARCH_64"
elif test "x$sizeof_voidp" = "x4"; then
CPPFLAGS="${CPPFLAGS} -DGIT_ARCH_32"
else
AC_MSG_FAILURE([Unsupported architecture])
fi
# Check for zlib
have_zlib=no
if test [ -n "$PKG_CONFIG" ] ; then
PKG_CHECK_MODULES([zlib], [zlib],
[CPPFLAGS="${zlib_CFLAGS} ${CPPFLAGS}"
LIBS="${zlib_LIBS} ${LIBS}"
have_zlib=yes], [ ])
fi
if test "x${have_zlib}" = xno; then
AC_SEARCH_LIBS([inflate], [z], [have_zlib=yes])
fi
if test "x${have_zlib}" = xno; then
AC_MSG_FAILURE([
---------------------------------------------
The zlib library that is required to build
git2r was not found.
Please install:
zlib1g-dev (package on e.g. Debian and Ubuntu)
zlib-devel (package on e.g. Fedora, CentOS and RHEL)
and try again.
If the zlib library is installed on your
system but the git2r configuration is
unable to find it, you can specify the
include and lib path to zlib with:
R CMD INSTALL git2r --configure-vars='LIBS=-L/path/to/libs CPPFLAGS=-I/path/to/headers'
---------------------------------------------])
fi
# Check for SSL for https transport
have_ssl=no
case "${host_os}" in
darwin*)
# On macOS, use the Security and CoreFoundation framework
have_ssl=yes
CPPFLAGS="${CPPFLAGS} -DGIT_SECURE_TRANSPORT=1 -DGIT_HTTPS=1"
LIBS="${LIBS} -framework Security -framework CoreFoundation"
;;
*)
if test "x${OPENSSL_INCLUDES}" = x; then :; else
CPPFLAGS="${CPPFLAGS} -I${OPENSSL_INCLUDES}"
fi
if test [ -n "$PKG_CONFIG" ] ; then
PKG_CHECK_MODULES([openssl], [openssl],
[CPPFLAGS="${openssl_CFLAGS} ${CPPFLAGS}"
LIBS="${openssl_LIBS} ${LIBS}"
have_ssl=yes], [ ])
fi
if test "x${have_ssl}" = xno; then
AC_SEARCH_LIBS([EVP_EncryptInit],
[crypto],
[AC_SEARCH_LIBS([SSL_library_init], [ssl], [have_ssl=yes])
AC_SEARCH_LIBS([OPENSSL_init_ssl], [ssl], [have_ssl=yes])])
fi
if test "x${have_ssl}" = xyes; then
CPPFLAGS="${CPPFLAGS} -DGIT_OPENSSL=1 -DGIT_HTTPS=1"
else
AC_MSG_WARN([
---------------------------------------------
Unable to find the OpenSSL library on this
system. Building a version without support
for https transport.
To build with https support, please install:
libssl-dev (package on e.g. Debian and Ubuntu)
openssl-devel (package on e.g. Fedora, CentOS and RHEL)
and try again.
If the OpenSSL library is installed on
your system but the git2r configuration
is unable to find it, you can specify
the include and lib path to OpenSSL with:
R CMD INSTALL git2r --configure-vars='LIBS=-L/path/to/libs CPPFLAGS=-I/path/to/headers'
---------------------------------------------])
fi
;;
esac
# Check for LibSSH2
have_ssh2=no
if test [ -n "$PKG_CONFIG" ] ; then
PKG_CHECK_MODULES([libssh2], [libssh2 >= 1.8],
[CPPFLAGS="${libssh2_CFLAGS} ${CPPFLAGS}"
LIBS="${libssh2_LIBS} ${LIBS}"
have_ssh2=yes], [ ])
fi
if test "x${have_ssh2}" = xno; then
AC_MSG_WARN([
---------------------------------------------
Unable to find the LibSSH2 (ver >= v1.8)
library on this system. Building git2r
without support for SSH transport.
To build with SSH support, please install:
libssh2-1-dev (package on e.g. Debian and Ubuntu)
libssh2-devel (package on e.g. Fedora, CentOS and RHEL)
libssh2 (Homebrew package on OS X)
and try again.
If the LibSSH2 library is installed on
your system but the git2r configuration
is unable to find it, you can specify
the include and lib path to LibSSH2 with:
R CMD INSTALL git2r --configure-vars='LIBS=-L/path/to/libs CPPFLAGS=-I/path/to/headers'
---------------------------------------------])
else
CPPFLAGS="${CPPFLAGS} -DGIT_SSH"
fi
# Check for iconv
case "${host_os}" in
darwin*)
AM_ICONV
if test "x${am_cv_func_iconv}" = xyes; then
CPPFLAGS="${CPPFLAGS} -DGIT_USE_ICONV"
fi
;;
esac
# Configuration specific for solaris
case "${host_os}" in
solaris*)
AC_SEARCH_LIBS(connect, [socket])
AC_SEARCH_LIBS(gethostbyname, [nsl socket])
# Include and use regex on solaris
CPPFLAGS="-Ilibgit2/deps/regex ${CPPFLAGS}"
GIT2R_SRC_REGEX=libgit2/deps/regex/regex.o
;;
esac
# Add include paths for git2r
CPPFLAGS="-I. -Ilibgit2/src -Ilibgit2/include -Ilibgit2/deps/http-parser ${CPPFLAGS}"
# Add definitions
CPPFLAGS="${CPPFLAGS} -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DLIBGIT2_NO_FEATURES_H -DR_NO_REMAP -DSTRICT_R_HEADERS"
# Specify sha1 implementation
case "${host_os}" in
darwin*)
CPPFLAGS="${CPPFLAGS} -DGIT_SHA1_COLLISIONDETECT=1 -DSHA1DC_NO_STANDARD_INCLUDES=1"
CPPFLAGS="${CPPFLAGS} -DSHA1DC_CUSTOM_INCLUDE_SHA1_C=\\\"common.h\\\" -DSHA1DC_CUSTOM_INCLUDE_UBC_CHECK_C=\\\"common.h\\\""
GIT2R_SRC_SHA1="libgit2/src/hash/sha1/collisiondetect.o libgit2/src/hash/sha1/sha1dc/sha1.o libgit2/src/hash/sha1/sha1dc/ubc_check.o"
;;
*)
if test "x${have_ssl}" = xyes; then
CPPFLAGS="${CPPFLAGS} -DGIT_SHA1_OPENSSL=1"
GIT2R_SRC_SHA1="libgit2/src/hash/sha1/openssl.o"
else
CPPFLAGS="${CPPFLAGS} -DGIT_SHA1_COLLISIONDETECT=1 -DSHA1DC_NO_STANDARD_INCLUDES=1"
CPPFLAGS="${CPPFLAGS} -DSHA1DC_CUSTOM_INCLUDE_SHA1_C=\\\"common.h\\\" -DSHA1DC_CUSTOM_INCLUDE_UBC_CHECK_C=\\\"common.h\\\""
GIT2R_SRC_SHA1="libgit2/src/hash/sha1/sha1dc/sha1.o libgit2/src/hash/sha1/sha1dc/ubc_check.o"
fi
;;
esac
# Add definitions specific for solaris
case "${host_os}" in
solaris*)
CPPFLAGS="${CPPFLAGS} -D_POSIX_C_SOURCE=200112L -D__EXTENSIONS__ -D_POSIX_PTHREAD_SEMANTICS"
;;
esac
# Checks for structures
AC_CHECK_MEMBER([struct stat.st_mtim],
[CPPFLAGS="${CPPFLAGS} -DGIT_USE_STAT_MTIM"],
[], [AC_INCLUDES_DEFAULT])
AC_CHECK_MEMBER([struct stat.st_mtimespec],
[CPPFLAGS="${CPPFLAGS} -DGIT_USE_STAT_MTIMESPEC"],
[], [AC_INCLUDES_DEFAULT])
AC_CHECK_MEMBER([struct stat.st_mtime_nsec],
[CPPFLAGS="${CPPFLAGS} -DGIT_USE_STAT_MTIME_NSEC"],
[], [AC_INCLUDES_DEFAULT])
if test "x$ac_cv_member_struct_stat_st_mtim" = "xyes"; then
AC_CHECK_MEMBER([struct stat.st_mtim.tv_nsec],
[CPPFLAGS="${CPPFLAGS} -DGIT_USE_NSEC"],
[], [AC_INCLUDES_DEFAULT])
elif test "x$ac_cv_member_struct_stat_st_mtimespec" = "xyes"; then
AC_CHECK_MEMBER([struct stat.st_mtimespec.tv_nsec],
[CPPFLAGS="${CPPFLAGS} -DGIT_USE_NSEC"],
[], [AC_INCLUDES_DEFAULT])
else
CPPFLAGS="${CPPFLAGS} -DGIT_USE_NSEC"
fi
# Checks for library functions.
AC_CHECK_FUNCS([futimens qsort_r qsort_s])
if test $ac_cv_func_futimens = yes; then
CPPFLAGS="${CPPFLAGS} -DHAVE_FUTIMENS"
fi
if test $ac_cv_func_qsort_r = yes; then
CPPFLAGS="${CPPFLAGS} -DHAVE_QSORT_R"
fi
if test $ac_cv_func_qsort_s = yes; then
CPPFLAGS="${CPPFLAGS} -DHAVE_QSORT_S"
fi
# The function 'git_buf_free' is deprecated in libgit2. Use
# 'git_buf_dispose' instead.
#
# CPPFLAGS="${CPPFLAGS} -DGIT_DEPRECATE_HARD -DGIT2R_HAVE_BUF_DISPOSE"
CPPFLAGS="${CPPFLAGS} -DGIT2R_HAVE_BUF_DISPOSE"
# The constants GIT_OBJ_ANY, GIT_OBJ_BLOB, GIT_OBJ_COMMIT,
# GIT_OBJ_TAG_GIT_OBJ_TREE and GIT_REF_OID are deprecated in
# libgit2. Use GIT_OBJECT_ANY, GIT_OBJECT_BLOB, GIT_OBJECT_COMMIT,
# GIT_OBJECT_TAG_GIT_OBJECT_TREE and GIT_REFERENCE_DIRECT instead.
CPPFLAGS="${CPPFLAGS} -DGIT2R_HAVE_OBJECT_ANY"
# Several libgit2 error functions and enumaration values have been
# deprecated, use newer versions.
CPPFLAGS="${CPPFLAGS} -DGIT2R_HAVE_GIT_ERROR"
# libgit v0.99.0: Several structures, enums and values have been
# renamed in libgit version 0.99.0. The former names are
# deprecated. See
# https://github.com/libgit2/libgit2/releases/tag/v0.99.0
CPPFLAGS="${CPPFLAGS} -DGIT2R_LIBGIT2_V0_99_0_RENAMES"
CPPFLAGS="${CPPFLAGS} -DGIT_REGEX_REGCOMP -DTHREADSAFE=OFF"
AC_SUBST(GIT2R_SRC_REGEX)
AC_SUBST(GIT2R_SRC_SHA1)
AC_SUBST([PKG_CFLAGS], ["${PKG_CFLAGS}"])
AC_SUBST([PKG_CPPFLAGS], ["${CPPFLAGS}"])
AC_SUBST([PKG_LIBS], ["${LIBS} ${LIBICONV}"])
AC_CONFIG_FILES([src/Makevars_libgit2])
echo "
----- Results of the git2r package configure -----
HTTPS transport......................: ${have_ssl}
LibSSH2 to enable the SSH transport..: ${have_ssh2}
--------------------------------------------------
"
AC_OUTPUT
cd src; mv Makevars_libgit2 Makevars
fi
################# End configuration to build bundled libgit2 #################
|