-
-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wxSQLite3 version number adjusted for autoconfig files
- Loading branch information
Showing
5 changed files
with
149 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
# Init this configure script with basic info about the component | ||
# (DON'T PUT ANYTHING BEFORE AC_INIT, JUST COMMENTS) | ||
AC_INIT([wxSqlite3], [3.3.0], [[email protected]]) | ||
AC_INIT([wxSqlite3], [3.3.1], [[email protected]]) | ||
AC_CONFIG_AUX_DIR(build) | ||
|
||
# ENABLES/DISABLES THE DEBUG MODE FOR THIS CONFIGURE SCRIPT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,121 +1,121 @@ | ||
# ====================================================================================== | ||
# Author: Francesco Montorsi | ||
# RCS-ID: $Id: configure.ac,v 1.12 2007/11/10 09:06:31 utelle Exp $ | ||
# | ||
# A basic "configure.ac" for a wxCode component. | ||
# See | ||
# http://www.gnu.org/software/autoconf/manual/autoconf-2.57/html_mono/autoconf.html | ||
# for more info about autoconf and the autoconf macros. | ||
# ====================================================================================== | ||
|
||
# Init this configure script with basic info about the component | ||
# (DON'T PUT ANYTHING BEFORE AC_INIT, JUST COMMENTS) | ||
AC_INIT([wxSqlite3], [3.3.0], [[email protected]]) | ||
AC_CONFIG_AUX_DIR(build) | ||
|
||
# ENABLES/DISABLES THE DEBUG MODE FOR THIS CONFIGURE SCRIPT | ||
#WX_DEBUG_CONFIGURE=1 | ||
|
||
# you need the wxCode/build/bakefiles in your local repository to generate a configure | ||
# script from this configure.ac file since wxcode.m4 is required.... | ||
m4_include(../wxcode/autoconf/wxcode.m4) | ||
WXCODE_INIT | ||
|
||
## CONFIGURE OPTIONS | ||
## | ||
## Before starting checks, declare the options of this configure script | ||
## Here you should use the AC_ARG_ENABLE and AC_ARG_WITH macros | ||
## or the wxCode-specific AM_WXCODE_ARG_ENABLE & AM_WXCODE_ARG_WITH macros, | ||
## to add to this configure script the --enable-XXX and/or --with-XXX | ||
## options required. If you did not use any <option> tag in your | ||
## component's bakefile, then you can leave this section as is | ||
##################################################################### | ||
|
||
WXCODE_OPTIONS([debug,unicode,shared,toolkit,wxshared,wxversion]) | ||
|
||
AC_ARG_WITH([sqlite3_prefix], | ||
AC_HELP_STRING([--with-sqlite3-prefix], | ||
[Prefix where sqlite3 is installed (optional; default is /usr/local)]),, | ||
[with_sqlite3_prefix=/usr/local]) | ||
SQLITE3_DIR=$with_sqlite3_prefix | ||
AC_SUBST(SQLITE3_DIR) | ||
|
||
|
||
## CONFIGURE CHECKS | ||
## | ||
## Here you should use the AC_CHECK_LIB, AC_COMPILE_IFELSE, | ||
## AC_LINK_IFELSE, etc macros to check that the libraries required | ||
## by your component exist on the host machine and match your | ||
## required options (version, build settings, etc) | ||
##################################################################### | ||
|
||
# argument 1: here put the minimum required version of wx | ||
# argument 2: here you must put a comma-separed list of all wx required libraries | ||
# except for base,core (e.g. "xml,net,adv"); leave empty if you use only core & base | ||
WXCODE_CHECKS([2.8.0], [core,base,adv]) | ||
|
||
WXCODE_ARG_ENABLE([dynamic_load], [Enables the SQLite dynamic load support], [no]) | ||
AC_MSG_CHECKING([for the --enable-dynamic-load option]) | ||
if test "$enable_dynamic_load" = "yes"; then | ||
USE_DYNAMIC_SQLITE3_LOAD=1 | ||
AC_MSG_RESULT([yes]) | ||
else | ||
USE_DYNAMIC_SQLITE3_LOAD=0 | ||
AC_MSG_RESULT([no]) | ||
fi | ||
|
||
WXCODE_ARG_ENABLE([metadata], [Enables the wxSQLite3 meta data support (SQLite needs to be compiled with meta data support)], [no]) | ||
AC_MSG_CHECKING([for the --enable-metadata option]) | ||
if test "$enable_metadata" = "yes"; then | ||
HAVE_METADATA=1 | ||
AC_MSG_RESULT([yes]) | ||
else | ||
HAVE_METADATA=0 | ||
AC_MSG_RESULT([no]) | ||
fi | ||
|
||
WXCODE_ARG_ENABLE([codec], [Enables the wxSQLite3 CODEC support (SQLite needs to be compiled with CODEC support)], [no]) | ||
AC_MSG_CHECKING([for the --enable-codec option]) | ||
if test "$enable_codec" = "yes"; then | ||
HAVE_CODEC=1 | ||
AC_MSG_RESULT([yes]) | ||
else | ||
HAVE_CODEC=0 | ||
AC_MSG_RESULT([no]) | ||
fi | ||
|
||
WXCODE_ARG_ENABLE([load_extension], [Enables the wxSQLite3 loadable extension support (SQLite needs to be compiled with loadable extension support)], [no]) | ||
AC_MSG_CHECKING([for the --enable-load-extension option]) | ||
if test "$enable_load_extension" = "yes"; then | ||
HAVE_LOAD_EXTENSION=1 | ||
AC_MSG_RESULT([yes]) | ||
else | ||
HAVE_LOAD_EXTENSION=0 | ||
AC_MSG_RESULT([no]) | ||
fi | ||
|
||
# end in a nice way the configure script | ||
WXCODE_END_PART1 | ||
if test "$USE_DYNAMIC_SQLITE3_LOAD" = "1"; then | ||
echo " - dynamic load enabled" | ||
else | ||
echo " - dynamic load disabled" | ||
fi | ||
if test "$HAVE_METADATA" = "1"; then | ||
echo " - meta data support enabled" | ||
else | ||
echo " - meta data support disabled" | ||
fi | ||
if test "$HAVE_CODEC" = "1"; then | ||
echo " - CODEC support enabled" | ||
else | ||
echo " - CODEC support disabled" | ||
fi | ||
if test "$HAVE_LOAD_EXTENSION" = "1"; then | ||
echo " - loadable extension support enabled" | ||
else | ||
echo " - loadable extension support disabled" | ||
fi | ||
WXCODE_END_PART2 | ||
|
||
|
||
# ====================================================================================== | ||
# Author: Francesco Montorsi | ||
# RCS-ID: $Id: configure.ac,v 1.12 2007/11/10 09:06:31 utelle Exp $ | ||
# | ||
# A basic "configure.ac" for a wxCode component. | ||
# See | ||
# http://www.gnu.org/software/autoconf/manual/autoconf-2.57/html_mono/autoconf.html | ||
# for more info about autoconf and the autoconf macros. | ||
# ====================================================================================== | ||
|
||
# Init this configure script with basic info about the component | ||
# (DON'T PUT ANYTHING BEFORE AC_INIT, JUST COMMENTS) | ||
AC_INIT([wxSqlite3], [3.3.1], [[email protected]]) | ||
AC_CONFIG_AUX_DIR(build) | ||
|
||
# ENABLES/DISABLES THE DEBUG MODE FOR THIS CONFIGURE SCRIPT | ||
#WX_DEBUG_CONFIGURE=1 | ||
|
||
# you need the wxCode/build/bakefiles in your local repository to generate a configure | ||
# script from this configure.ac file since wxcode.m4 is required.... | ||
m4_include(../wxcode/autoconf/wxcode.m4) | ||
WXCODE_INIT | ||
|
||
## CONFIGURE OPTIONS | ||
## | ||
## Before starting checks, declare the options of this configure script | ||
## Here you should use the AC_ARG_ENABLE and AC_ARG_WITH macros | ||
## or the wxCode-specific AM_WXCODE_ARG_ENABLE & AM_WXCODE_ARG_WITH macros, | ||
## to add to this configure script the --enable-XXX and/or --with-XXX | ||
## options required. If you did not use any <option> tag in your | ||
## component's bakefile, then you can leave this section as is | ||
##################################################################### | ||
|
||
WXCODE_OPTIONS([debug,unicode,shared,toolkit,wxshared,wxversion]) | ||
|
||
AC_ARG_WITH([sqlite3_prefix], | ||
AC_HELP_STRING([--with-sqlite3-prefix], | ||
[Prefix where sqlite3 is installed (optional; default is /usr/local)]),, | ||
[with_sqlite3_prefix=/usr/local]) | ||
SQLITE3_DIR=$with_sqlite3_prefix | ||
AC_SUBST(SQLITE3_DIR) | ||
|
||
|
||
## CONFIGURE CHECKS | ||
## | ||
## Here you should use the AC_CHECK_LIB, AC_COMPILE_IFELSE, | ||
## AC_LINK_IFELSE, etc macros to check that the libraries required | ||
## by your component exist on the host machine and match your | ||
## required options (version, build settings, etc) | ||
##################################################################### | ||
|
||
# argument 1: here put the minimum required version of wx | ||
# argument 2: here you must put a comma-separed list of all wx required libraries | ||
# except for base,core (e.g. "xml,net,adv"); leave empty if you use only core & base | ||
WXCODE_CHECKS([2.8.0], [core,base,adv]) | ||
|
||
WXCODE_ARG_ENABLE([dynamic_load], [Enables the SQLite dynamic load support], [no]) | ||
AC_MSG_CHECKING([for the --enable-dynamic-load option]) | ||
if test "$enable_dynamic_load" = "yes"; then | ||
USE_DYNAMIC_SQLITE3_LOAD=1 | ||
AC_MSG_RESULT([yes]) | ||
else | ||
USE_DYNAMIC_SQLITE3_LOAD=0 | ||
AC_MSG_RESULT([no]) | ||
fi | ||
|
||
WXCODE_ARG_ENABLE([metadata], [Enables the wxSQLite3 meta data support (SQLite needs to be compiled with meta data support)], [no]) | ||
AC_MSG_CHECKING([for the --enable-metadata option]) | ||
if test "$enable_metadata" = "yes"; then | ||
HAVE_METADATA=1 | ||
AC_MSG_RESULT([yes]) | ||
else | ||
HAVE_METADATA=0 | ||
AC_MSG_RESULT([no]) | ||
fi | ||
|
||
WXCODE_ARG_ENABLE([codec], [Enables the wxSQLite3 CODEC support (SQLite needs to be compiled with CODEC support)], [no]) | ||
AC_MSG_CHECKING([for the --enable-codec option]) | ||
if test "$enable_codec" = "yes"; then | ||
HAVE_CODEC=1 | ||
AC_MSG_RESULT([yes]) | ||
else | ||
HAVE_CODEC=0 | ||
AC_MSG_RESULT([no]) | ||
fi | ||
|
||
WXCODE_ARG_ENABLE([load_extension], [Enables the wxSQLite3 loadable extension support (SQLite needs to be compiled with loadable extension support)], [no]) | ||
AC_MSG_CHECKING([for the --enable-load-extension option]) | ||
if test "$enable_load_extension" = "yes"; then | ||
HAVE_LOAD_EXTENSION=1 | ||
AC_MSG_RESULT([yes]) | ||
else | ||
HAVE_LOAD_EXTENSION=0 | ||
AC_MSG_RESULT([no]) | ||
fi | ||
|
||
# end in a nice way the configure script | ||
WXCODE_END_PART1 | ||
if test "$USE_DYNAMIC_SQLITE3_LOAD" = "1"; then | ||
echo " - dynamic load enabled" | ||
else | ||
echo " - dynamic load disabled" | ||
fi | ||
if test "$HAVE_METADATA" = "1"; then | ||
echo " - meta data support enabled" | ||
else | ||
echo " - meta data support disabled" | ||
fi | ||
if test "$HAVE_CODEC" = "1"; then | ||
echo " - CODEC support enabled" | ||
else | ||
echo " - CODEC support disabled" | ||
fi | ||
if test "$HAVE_LOAD_EXTENSION" = "1"; then | ||
echo " - loadable extension support enabled" | ||
else | ||
echo " - loadable extension support disabled" | ||
fi | ||
WXCODE_END_PART2 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 wxSqlite3 3.3.0. | ||
# Generated by GNU Autoconf 2.69 for wxSqlite3 3.3.1. | ||
# | ||
# Report bugs to <[email protected]>. | ||
# | ||
|
@@ -579,8 +579,8 @@ MAKEFLAGS= | |
# Identity of this package. | ||
PACKAGE_NAME='wxSqlite3' | ||
PACKAGE_TARNAME='wxsqlite3' | ||
PACKAGE_VERSION='3.3.0' | ||
PACKAGE_STRING='wxSqlite3 3.3.0' | ||
PACKAGE_VERSION='3.3.1' | ||
PACKAGE_STRING='wxSqlite3 3.3.1' | ||
PACKAGE_BUGREPORT='[email protected]' | ||
PACKAGE_URL='' | ||
|
||
|
@@ -1315,7 +1315,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 wxSqlite3 3.3.0 to adapt to many kinds of systems. | ||
\`configure' configures wxSqlite3 3.3.1 to adapt to many kinds of systems. | ||
Usage: $0 [OPTION]... [VAR=VALUE]... | ||
|
@@ -1381,7 +1381,7 @@ fi | |
|
||
if test -n "$ac_init_help"; then | ||
case $ac_init_help in | ||
short | recursive ) echo "Configuration of wxSqlite3 3.3.0:";; | ||
short | recursive ) echo "Configuration of wxSqlite3 3.3.1:";; | ||
esac | ||
cat <<\_ACEOF | ||
|
@@ -1501,7 +1501,7 @@ fi | |
test -n "$ac_init_help" && exit $ac_status | ||
if $ac_init_version; then | ||
cat <<\_ACEOF | ||
wxSqlite3 configure 3.3.0 | ||
wxSqlite3 configure 3.3.1 | ||
generated by GNU Autoconf 2.69 | ||
Copyright (C) 2012 Free Software Foundation, Inc. | ||
|
@@ -1594,7 +1594,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 wxSqlite3 $as_me 3.3.0, which was | ||
It was created by wxSqlite3 $as_me 3.3.1, which was | ||
generated by GNU Autoconf 2.69. Invocation command line was | ||
$ $0 $@ | ||
|
@@ -8327,7 +8327,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 wxSqlite3 $as_me 3.3.0, which was | ||
This file was extended by wxSqlite3 $as_me 3.3.1, which was | ||
generated by GNU Autoconf 2.69. Invocation command line was | ||
CONFIG_FILES = $CONFIG_FILES | ||
|
@@ -8380,7 +8380,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="\\ | ||
wxSqlite3 config.status 3.3.0 | ||
wxSqlite3 config.status 3.3.1 | ||
configured by $0, generated by GNU Autoconf 2.69, | ||
with options \\"\$ac_cs_config\\" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 wxSqlite3 3.3.0. | ||
# Generated by GNU Autoconf 2.69 for wxSqlite3 3.3.1. | ||
# | ||
# Report bugs to <[email protected]>. | ||
# | ||
|
@@ -579,8 +579,8 @@ MAKEFLAGS= | |
# Identity of this package. | ||
PACKAGE_NAME='wxSqlite3' | ||
PACKAGE_TARNAME='wxsqlite3' | ||
PACKAGE_VERSION='3.3.0' | ||
PACKAGE_STRING='wxSqlite3 3.3.0' | ||
PACKAGE_VERSION='3.3.1' | ||
PACKAGE_STRING='wxSqlite3 3.3.1' | ||
PACKAGE_BUGREPORT='[email protected]' | ||
PACKAGE_URL='' | ||
|
||
|
@@ -1318,7 +1318,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 wxSqlite3 3.3.0 to adapt to many kinds of systems. | ||
\`configure' configures wxSqlite3 3.3.1 to adapt to many kinds of systems. | ||
Usage: $0 [OPTION]... [VAR=VALUE]... | ||
|
@@ -1384,7 +1384,7 @@ fi | |
|
||
if test -n "$ac_init_help"; then | ||
case $ac_init_help in | ||
short | recursive ) echo "Configuration of wxSqlite3 3.3.0:";; | ||
short | recursive ) echo "Configuration of wxSqlite3 3.3.1:";; | ||
esac | ||
cat <<\_ACEOF | ||
|
@@ -1504,7 +1504,7 @@ fi | |
test -n "$ac_init_help" && exit $ac_status | ||
if $ac_init_version; then | ||
cat <<\_ACEOF | ||
wxSqlite3 configure 3.3.0 | ||
wxSqlite3 configure 3.3.1 | ||
generated by GNU Autoconf 2.69 | ||
Copyright (C) 2012 Free Software Foundation, Inc. | ||
|
@@ -1597,7 +1597,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 wxSqlite3 $as_me 3.3.0, which was | ||
It was created by wxSqlite3 $as_me 3.3.1, which was | ||
generated by GNU Autoconf 2.69. Invocation command line was | ||
$ $0 $@ | ||
|
@@ -8360,7 +8360,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 wxSqlite3 $as_me 3.3.0, which was | ||
This file was extended by wxSqlite3 $as_me 3.3.1, which was | ||
generated by GNU Autoconf 2.69. Invocation command line was | ||
CONFIG_FILES = $CONFIG_FILES | ||
|
@@ -8413,7 +8413,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="\\ | ||
wxSqlite3 config.status 3.3.0 | ||
wxSqlite3 config.status 3.3.1 | ||
configured by $0, generated by GNU Autoconf 2.69, | ||
with options \\"\$ac_cs_config\\" | ||
|
Oops, something went wrong.