# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= R-odbc VERSION= 1.4.2 KEYWORDS= cran VARIANTS= standard SDESC[standard]= DBI-compatible interface to ODBC databases HOMEPAGE= https://odbc.r-dbi.org CONTACT= CRAN_Automaton[cran@ironwolf.systems] DOWNLOAD_GROUPS= main SITES[main]= CRAN/src/contrib https://loki.dragonflybsd.org/cranfiles/ DISTFILE[1]= odbc_1.4.2.tar.gz:main DIST_SUBDIR= CRAN DF_INDEX= 1 SPKGS[standard]= single OPTIONS_AVAILABLE= none OPTIONS_STANDARD= none BUILD_DEPENDS= unixODBC:dev:standard BUILDRUN_DEPENDS= R-bit64:single:standard R-blob:single:standard R-DBI:single:standard R-hms:single:standard R-lifecycle:single:standard R-Rcpp:single:standard R-rlang:single:standard unixODBC:primary:standard USES= cran gmake DISTNAME= odbc GENERATED= yes INSTALL_REQ_TOOLCHAIN= yes [FILE:116:descriptions/desc.single] odbc: Connect to ODBC Compatible Databases (using the DBI Interface) A DBI-compatible interface to ODBC databases. [FILE:101:distinfo] a7faf9c598a1ae3193ba26cff06d508ad7b14d923c11e4e4aaa30bf51c67a603 273959 CRAN/odbc_1.4.2.tar.gz [FILE:515:patches/patch-src_cctz_src_time__zone__info.cc] --- src/cctz/src/time_zone_info.cc.orig 2021-02-26 16:03:16 UTC +++ src/cctz/src/time_zone_info.cc @@ -54,7 +54,7 @@ char* errmsg(int errnum, char* buf, size #if defined(_WIN32) || defined(_WIN64) strerror_s(buf, buflen, errnum); return buf; -#elif defined(__APPLE__) +#elif defined(__APPLE__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) strerror_r(errnum, buf, buflen); return buf; #elif ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !_GNU_SOURCE) || __MUSL__ [FILE:404:patches/patch-src_cctz_src_time__zone__libc.cc] --- src/cctz/src/time_zone_libc.cc.orig 2020-10-23 14:44:20 UTC +++ src/cctz/src/time_zone_libc.cc @@ -28,7 +28,7 @@ # define OFFSET(tm) ((tm).__tm_gmtoff) # define ABBR(tm) ((tm).__tm_zone) # endif -#elif defined(__APPLE__) +#elif defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__) # define OFFSET(tm) ((tm).tm_gmtoff) # define ABBR(tm) ((tm).tm_zone) #elif defined(__sun)