Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for TileDB-R 0.9.3.
# Generated by GNU Autoconf 2.69 for TileDB-R 0.9.6.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -577,8 +577,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='TileDB-R'
PACKAGE_TARNAME='tiledb-r'
PACKAGE_VERSION='0.9.3'
PACKAGE_STRING='TileDB-R 0.9.3'
PACKAGE_VERSION='0.9.6'
PACKAGE_STRING='TileDB-R 0.9.6'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''

Expand Down Expand Up @@ -1243,7 +1243,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures TileDB-R 0.9.3 to adapt to many kinds of systems.
\`configure' configures TileDB-R 0.9.6 to adapt to many kinds of systems.

Usage: $0 [OPTION]... [VAR=VALUE]...

Expand Down Expand Up @@ -1305,7 +1305,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of TileDB-R 0.9.3:";;
short | recursive ) echo "Configuration of TileDB-R 0.9.6:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -1397,7 +1397,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
TileDB-R configure 0.9.3
TileDB-R configure 0.9.6
generated by GNU Autoconf 2.69

Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1649,7 +1649,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by TileDB-R $as_me 0.9.3, which was
It was created by TileDB-R $as_me 0.9.6, which was
generated by GNU Autoconf 2.69. Invocation command line was

$ $0 $@
Expand Down Expand Up @@ -4057,7 +4057,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by TileDB-R $as_me 0.9.3, which was
This file was extended by TileDB-R $as_me 0.9.6, which was
generated by GNU Autoconf 2.69. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -4110,7 +4110,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
TileDB-R config.status 0.9.3
TileDB-R config.status 0.9.6
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

Expand Down
11 changes: 4 additions & 7 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

## require at least autoconf 2.69
AC_PREREQ([2.69])
AC_INIT([TileDB-R], [0.9.3])
AC_INIT([TileDB-R],[0.9.6])

## -- Part 1: Setup -------------------------------------------------------------
##
Expand Down Expand Up @@ -80,8 +80,7 @@ machine=`uname -m`
## Allow forced build override, value of 'yes' or 'no' set in enable_building variable
## (and sets by autoconf standards the 'enable_building' variable to 'yes' or 'no')
AC_ARG_ENABLE([building],
AC_HELP_STRING([--enable-building],
[build TileDB library instead of downloading prebuilt]))
AS_HELP_STRING([--enable-building],[build TileDB library instead of downloading prebuilt]))
#[building="${enable_building}"
# AC_MSG_RESULT([Enabled chosen])],
#[building="${enable_building}"
Expand All @@ -91,8 +90,7 @@ AC_ARG_ENABLE([building],
## Allow --with-tiledb if given (though system location is found too)
## (and sets by autconf standards the 'with_tiledb' variable)
AC_ARG_WITH([tiledb],
AC_HELP_STRING([--with-tiledb=PATH],
[absolute path to installed built of TileDB]),
AS_HELP_STRING([--with-tiledb=PATH],[absolute path to installed built of TileDB]),
[TILEDB_INCLUDE="-I${with_tiledb}/include ${TILEDB_INCLUDE}"
TILEDB_LIBS="-L${with_tiledb}/lib ${TILEDB_LIBS}"
TILEDB_RPATH="-Wl,-rpath,${with_tiledb}/lib"],
Expand All @@ -108,8 +106,7 @@ fi
## Allow --with-download if given (though system location is found too)
## (and sets by autconf standards the 'with_download' variable)
AC_ARG_WITH([download],
AC_HELP_STRING([--with-download=URL],
[URL override for TileDB library to download]),
AS_HELP_STRING([--with-download=URL],[URL override for TileDB library to download]),
[TILEDB_LIB_URL="${with_download}"],
[])

Expand Down