Skip to content

Commit cf99bef

Browse files
author
Tomoaki Nishiyama
committed
autoupdate and update date
1 parent e1ce2e7 commit cf99bef

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

RPostgreSQL/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: RPostgreSQL
22
Version: 0.7-1
3-
Date: 2021-09-09
3+
Date: 2021-10-01
44
Title: R Interface to the 'PostgreSQL' Database System
55
Author: Joe Conway, Dirk Eddelbuettel, Tomoaki Nishiyama, Sameer Kumar Prayaga (during 2008), Neil Tiffin
66
Maintainer: Tomoaki Nishiyama <tomoakin@staff.kanazawa-u.ac.jp>

RPostgreSQL/configure.ac

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# This file draws heavily on configure.in files from littler, RMySQL, and RdbiPgSQL
77

88
# Set the name and version -- the version set here will propagate to other files from here
9-
AC_INIT(RPostgreSQL, 0.7)
9+
AC_INIT([RPostgreSQL],[0.7])
1010

1111
AC_CONFIG_AUX_DIR(src)
1212

@@ -126,7 +126,7 @@ AC_LANG(C)
126126
echo '#include <libpq-fe.h>' > conftest.c
127127
echo 'int main(){printf("%i",PQlibVersion());return 0;}' >> conftest.c
128128
$CC $CFLAGS -I${PG_INCDIR} -L${PG_LIBDIR} -lpq conftest.c -o pqconftest
129-
AC_TRY_RUN([int main(){return system("./pqconftest");}], ENABLE_LIBPQ="" , ENABLE_LIBPQ=$DARWIN_INTERNAL_LIBPQ; echo "system -lpq don't appear to work; use internal")
129+
AC_RUN_IFELSE([AC_LANG_SOURCE([[int main(){return system("./pqconftest");}]])],[ENABLE_LIBPQ="" ],[ENABLE_LIBPQ=$DARWIN_INTERNAL_LIBPQ; echo "system -lpq don't appear to work; use internal"],[])
130130

131131
# Expand into arguments
132132

@@ -149,4 +149,5 @@ AC_SUBST(PKG_CPPFLAGS)
149149
AC_SUBST(PKG_LIBS)
150150

151151
AC_SUBST(ENABLE_LIBPQ)
152-
AC_OUTPUT(src/Makevars)
152+
AC_CONFIG_FILES([src/Makevars])
153+
AC_OUTPUT

0 commit comments

Comments
 (0)