Skip to content

Commit ee5f073

Browse files
committed
wxSQLite3 version number adjusted for autoconfig files
1 parent f1b6fc6 commit ee5f073

File tree

5 files changed

+149
-149
lines changed

5 files changed

+149
-149
lines changed

build/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# Init this configure script with basic info about the component
1212
# (DON'T PUT ANYTHING BEFORE AC_INIT, JUST COMMENTS)
13-
AC_INIT([wxSqlite3], [3.3.0], [utelle@users.sourceforge.net])
13+
AC_INIT([wxSqlite3], [3.3.1], [utelle@users.sourceforge.net])
1414
AC_CONFIG_AUX_DIR(build)
1515

1616
# ENABLES/DISABLES THE DEBUG MODE FOR THIS CONFIGURE SCRIPT

build28/configure.ac

Lines changed: 121 additions & 121 deletions
Original file line numberDiff line numberDiff line change
@@ -1,121 +1,121 @@
1-
# ======================================================================================
2-
# Author: Francesco Montorsi
3-
# RCS-ID: $Id: configure.ac,v 1.12 2007/11/10 09:06:31 utelle Exp $
4-
#
5-
# A basic "configure.ac" for a wxCode component.
6-
# See
7-
# http://www.gnu.org/software/autoconf/manual/autoconf-2.57/html_mono/autoconf.html
8-
# for more info about autoconf and the autoconf macros.
9-
# ======================================================================================
10-
11-
# Init this configure script with basic info about the component
12-
# (DON'T PUT ANYTHING BEFORE AC_INIT, JUST COMMENTS)
13-
AC_INIT([wxSqlite3], [3.3.0], [utelle@users.sourceforge.net])
14-
AC_CONFIG_AUX_DIR(build)
15-
16-
# ENABLES/DISABLES THE DEBUG MODE FOR THIS CONFIGURE SCRIPT
17-
#WX_DEBUG_CONFIGURE=1
18-
19-
# you need the wxCode/build/bakefiles in your local repository to generate a configure
20-
# script from this configure.ac file since wxcode.m4 is required....
21-
m4_include(../wxcode/autoconf/wxcode.m4)
22-
WXCODE_INIT
23-
24-
## CONFIGURE OPTIONS
25-
##
26-
## Before starting checks, declare the options of this configure script
27-
## Here you should use the AC_ARG_ENABLE and AC_ARG_WITH macros
28-
## or the wxCode-specific AM_WXCODE_ARG_ENABLE & AM_WXCODE_ARG_WITH macros,
29-
## to add to this configure script the --enable-XXX and/or --with-XXX
30-
## options required. If you did not use any <option> tag in your
31-
## component's bakefile, then you can leave this section as is
32-
#####################################################################
33-
34-
WXCODE_OPTIONS([debug,unicode,shared,toolkit,wxshared,wxversion])
35-
36-
AC_ARG_WITH([sqlite3_prefix],
37-
AC_HELP_STRING([--with-sqlite3-prefix],
38-
[Prefix where sqlite3 is installed (optional; default is /usr/local)]),,
39-
[with_sqlite3_prefix=/usr/local])
40-
SQLITE3_DIR=$with_sqlite3_prefix
41-
AC_SUBST(SQLITE3_DIR)
42-
43-
44-
## CONFIGURE CHECKS
45-
##
46-
## Here you should use the AC_CHECK_LIB, AC_COMPILE_IFELSE,
47-
## AC_LINK_IFELSE, etc macros to check that the libraries required
48-
## by your component exist on the host machine and match your
49-
## required options (version, build settings, etc)
50-
#####################################################################
51-
52-
# argument 1: here put the minimum required version of wx
53-
# argument 2: here you must put a comma-separed list of all wx required libraries
54-
# except for base,core (e.g. "xml,net,adv"); leave empty if you use only core & base
55-
WXCODE_CHECKS([2.8.0], [core,base,adv])
56-
57-
WXCODE_ARG_ENABLE([dynamic_load], [Enables the SQLite dynamic load support], [no])
58-
AC_MSG_CHECKING([for the --enable-dynamic-load option])
59-
if test "$enable_dynamic_load" = "yes"; then
60-
USE_DYNAMIC_SQLITE3_LOAD=1
61-
AC_MSG_RESULT([yes])
62-
else
63-
USE_DYNAMIC_SQLITE3_LOAD=0
64-
AC_MSG_RESULT([no])
65-
fi
66-
67-
WXCODE_ARG_ENABLE([metadata], [Enables the wxSQLite3 meta data support (SQLite needs to be compiled with meta data support)], [no])
68-
AC_MSG_CHECKING([for the --enable-metadata option])
69-
if test "$enable_metadata" = "yes"; then
70-
HAVE_METADATA=1
71-
AC_MSG_RESULT([yes])
72-
else
73-
HAVE_METADATA=0
74-
AC_MSG_RESULT([no])
75-
fi
76-
77-
WXCODE_ARG_ENABLE([codec], [Enables the wxSQLite3 CODEC support (SQLite needs to be compiled with CODEC support)], [no])
78-
AC_MSG_CHECKING([for the --enable-codec option])
79-
if test "$enable_codec" = "yes"; then
80-
HAVE_CODEC=1
81-
AC_MSG_RESULT([yes])
82-
else
83-
HAVE_CODEC=0
84-
AC_MSG_RESULT([no])
85-
fi
86-
87-
WXCODE_ARG_ENABLE([load_extension], [Enables the wxSQLite3 loadable extension support (SQLite needs to be compiled with loadable extension support)], [no])
88-
AC_MSG_CHECKING([for the --enable-load-extension option])
89-
if test "$enable_load_extension" = "yes"; then
90-
HAVE_LOAD_EXTENSION=1
91-
AC_MSG_RESULT([yes])
92-
else
93-
HAVE_LOAD_EXTENSION=0
94-
AC_MSG_RESULT([no])
95-
fi
96-
97-
# end in a nice way the configure script
98-
WXCODE_END_PART1
99-
if test "$USE_DYNAMIC_SQLITE3_LOAD" = "1"; then
100-
echo " - dynamic load enabled"
101-
else
102-
echo " - dynamic load disabled"
103-
fi
104-
if test "$HAVE_METADATA" = "1"; then
105-
echo " - meta data support enabled"
106-
else
107-
echo " - meta data support disabled"
108-
fi
109-
if test "$HAVE_CODEC" = "1"; then
110-
echo " - CODEC support enabled"
111-
else
112-
echo " - CODEC support disabled"
113-
fi
114-
if test "$HAVE_LOAD_EXTENSION" = "1"; then
115-
echo " - loadable extension support enabled"
116-
else
117-
echo " - loadable extension support disabled"
118-
fi
119-
WXCODE_END_PART2
120-
121-
1+
# ======================================================================================
2+
# Author: Francesco Montorsi
3+
# RCS-ID: $Id: configure.ac,v 1.12 2007/11/10 09:06:31 utelle Exp $
4+
#
5+
# A basic "configure.ac" for a wxCode component.
6+
# See
7+
# http://www.gnu.org/software/autoconf/manual/autoconf-2.57/html_mono/autoconf.html
8+
# for more info about autoconf and the autoconf macros.
9+
# ======================================================================================
10+
11+
# Init this configure script with basic info about the component
12+
# (DON'T PUT ANYTHING BEFORE AC_INIT, JUST COMMENTS)
13+
AC_INIT([wxSqlite3], [3.3.1], [utelle@users.sourceforge.net])
14+
AC_CONFIG_AUX_DIR(build)
15+
16+
# ENABLES/DISABLES THE DEBUG MODE FOR THIS CONFIGURE SCRIPT
17+
#WX_DEBUG_CONFIGURE=1
18+
19+
# you need the wxCode/build/bakefiles in your local repository to generate a configure
20+
# script from this configure.ac file since wxcode.m4 is required....
21+
m4_include(../wxcode/autoconf/wxcode.m4)
22+
WXCODE_INIT
23+
24+
## CONFIGURE OPTIONS
25+
##
26+
## Before starting checks, declare the options of this configure script
27+
## Here you should use the AC_ARG_ENABLE and AC_ARG_WITH macros
28+
## or the wxCode-specific AM_WXCODE_ARG_ENABLE & AM_WXCODE_ARG_WITH macros,
29+
## to add to this configure script the --enable-XXX and/or --with-XXX
30+
## options required. If you did not use any <option> tag in your
31+
## component's bakefile, then you can leave this section as is
32+
#####################################################################
33+
34+
WXCODE_OPTIONS([debug,unicode,shared,toolkit,wxshared,wxversion])
35+
36+
AC_ARG_WITH([sqlite3_prefix],
37+
AC_HELP_STRING([--with-sqlite3-prefix],
38+
[Prefix where sqlite3 is installed (optional; default is /usr/local)]),,
39+
[with_sqlite3_prefix=/usr/local])
40+
SQLITE3_DIR=$with_sqlite3_prefix
41+
AC_SUBST(SQLITE3_DIR)
42+
43+
44+
## CONFIGURE CHECKS
45+
##
46+
## Here you should use the AC_CHECK_LIB, AC_COMPILE_IFELSE,
47+
## AC_LINK_IFELSE, etc macros to check that the libraries required
48+
## by your component exist on the host machine and match your
49+
## required options (version, build settings, etc)
50+
#####################################################################
51+
52+
# argument 1: here put the minimum required version of wx
53+
# argument 2: here you must put a comma-separed list of all wx required libraries
54+
# except for base,core (e.g. "xml,net,adv"); leave empty if you use only core & base
55+
WXCODE_CHECKS([2.8.0], [core,base,adv])
56+
57+
WXCODE_ARG_ENABLE([dynamic_load], [Enables the SQLite dynamic load support], [no])
58+
AC_MSG_CHECKING([for the --enable-dynamic-load option])
59+
if test "$enable_dynamic_load" = "yes"; then
60+
USE_DYNAMIC_SQLITE3_LOAD=1
61+
AC_MSG_RESULT([yes])
62+
else
63+
USE_DYNAMIC_SQLITE3_LOAD=0
64+
AC_MSG_RESULT([no])
65+
fi
66+
67+
WXCODE_ARG_ENABLE([metadata], [Enables the wxSQLite3 meta data support (SQLite needs to be compiled with meta data support)], [no])
68+
AC_MSG_CHECKING([for the --enable-metadata option])
69+
if test "$enable_metadata" = "yes"; then
70+
HAVE_METADATA=1
71+
AC_MSG_RESULT([yes])
72+
else
73+
HAVE_METADATA=0
74+
AC_MSG_RESULT([no])
75+
fi
76+
77+
WXCODE_ARG_ENABLE([codec], [Enables the wxSQLite3 CODEC support (SQLite needs to be compiled with CODEC support)], [no])
78+
AC_MSG_CHECKING([for the --enable-codec option])
79+
if test "$enable_codec" = "yes"; then
80+
HAVE_CODEC=1
81+
AC_MSG_RESULT([yes])
82+
else
83+
HAVE_CODEC=0
84+
AC_MSG_RESULT([no])
85+
fi
86+
87+
WXCODE_ARG_ENABLE([load_extension], [Enables the wxSQLite3 loadable extension support (SQLite needs to be compiled with loadable extension support)], [no])
88+
AC_MSG_CHECKING([for the --enable-load-extension option])
89+
if test "$enable_load_extension" = "yes"; then
90+
HAVE_LOAD_EXTENSION=1
91+
AC_MSG_RESULT([yes])
92+
else
93+
HAVE_LOAD_EXTENSION=0
94+
AC_MSG_RESULT([no])
95+
fi
96+
97+
# end in a nice way the configure script
98+
WXCODE_END_PART1
99+
if test "$USE_DYNAMIC_SQLITE3_LOAD" = "1"; then
100+
echo " - dynamic load enabled"
101+
else
102+
echo " - dynamic load disabled"
103+
fi
104+
if test "$HAVE_METADATA" = "1"; then
105+
echo " - meta data support enabled"
106+
else
107+
echo " - meta data support disabled"
108+
fi
109+
if test "$HAVE_CODEC" = "1"; then
110+
echo " - CODEC support enabled"
111+
else
112+
echo " - CODEC support disabled"
113+
fi
114+
if test "$HAVE_LOAD_EXTENSION" = "1"; then
115+
echo " - loadable extension support enabled"
116+
else
117+
echo " - loadable extension support disabled"
118+
fi
119+
WXCODE_END_PART2
120+
121+

configure

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for wxSqlite3 3.3.0.
3+
# Generated by GNU Autoconf 2.69 for wxSqlite3 3.3.1.
44
#
55
# Report bugs to <utelle@users.sourceforge.net>.
66
#
@@ -579,8 +579,8 @@ MAKEFLAGS=
579579
# Identity of this package.
580580
PACKAGE_NAME='wxSqlite3'
581581
PACKAGE_TARNAME='wxsqlite3'
582-
PACKAGE_VERSION='3.3.0'
583-
PACKAGE_STRING='wxSqlite3 3.3.0'
582+
PACKAGE_VERSION='3.3.1'
583+
PACKAGE_STRING='wxSqlite3 3.3.1'
584584
PACKAGE_BUGREPORT='utelle@users.sourceforge.net'
585585
PACKAGE_URL=''
586586

@@ -1315,7 +1315,7 @@ if test "$ac_init_help" = "long"; then
13151315
# Omit some internal or obsolete options to make the list less imposing.
13161316
# This message is too long to be a string in the A/UX 3.1 sh.
13171317
cat <<_ACEOF
1318-
\`configure' configures wxSqlite3 3.3.0 to adapt to many kinds of systems.
1318+
\`configure' configures wxSqlite3 3.3.1 to adapt to many kinds of systems.
13191319
13201320
Usage: $0 [OPTION]... [VAR=VALUE]...
13211321
@@ -1381,7 +1381,7 @@ fi
13811381

13821382
if test -n "$ac_init_help"; then
13831383
case $ac_init_help in
1384-
short | recursive ) echo "Configuration of wxSqlite3 3.3.0:";;
1384+
short | recursive ) echo "Configuration of wxSqlite3 3.3.1:";;
13851385
esac
13861386
cat <<\_ACEOF
13871387
@@ -1501,7 +1501,7 @@ fi
15011501
test -n "$ac_init_help" && exit $ac_status
15021502
if $ac_init_version; then
15031503
cat <<\_ACEOF
1504-
wxSqlite3 configure 3.3.0
1504+
wxSqlite3 configure 3.3.1
15051505
generated by GNU Autoconf 2.69
15061506
15071507
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1594,7 +1594,7 @@ cat >config.log <<_ACEOF
15941594
This file contains any messages produced by compilers while
15951595
running configure, to aid debugging if configure makes a mistake.
15961596
1597-
It was created by wxSqlite3 $as_me 3.3.0, which was
1597+
It was created by wxSqlite3 $as_me 3.3.1, which was
15981598
generated by GNU Autoconf 2.69. Invocation command line was
15991599
16001600
$ $0 $@
@@ -8327,7 +8327,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
83278327
# report actual input values of CONFIG_FILES etc. instead of their
83288328
# values after options handling.
83298329
ac_log="
8330-
This file was extended by wxSqlite3 $as_me 3.3.0, which was
8330+
This file was extended by wxSqlite3 $as_me 3.3.1, which was
83318331
generated by GNU Autoconf 2.69. Invocation command line was
83328332
83338333
CONFIG_FILES = $CONFIG_FILES
@@ -8380,7 +8380,7 @@ _ACEOF
83808380
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
83818381
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
83828382
ac_cs_version="\\
8383-
wxSqlite3 config.status 3.3.0
8383+
wxSqlite3 config.status 3.3.1
83848384
configured by $0, generated by GNU Autoconf 2.69,
83858385
with options \\"\$ac_cs_config\\"
83868386

configure28

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for wxSqlite3 3.3.0.
3+
# Generated by GNU Autoconf 2.69 for wxSqlite3 3.3.1.
44
#
55
# Report bugs to <utelle@users.sourceforge.net>.
66
#
@@ -579,8 +579,8 @@ MAKEFLAGS=
579579
# Identity of this package.
580580
PACKAGE_NAME='wxSqlite3'
581581
PACKAGE_TARNAME='wxsqlite3'
582-
PACKAGE_VERSION='3.3.0'
583-
PACKAGE_STRING='wxSqlite3 3.3.0'
582+
PACKAGE_VERSION='3.3.1'
583+
PACKAGE_STRING='wxSqlite3 3.3.1'
584584
PACKAGE_BUGREPORT='utelle@users.sourceforge.net'
585585
PACKAGE_URL=''
586586

@@ -1318,7 +1318,7 @@ if test "$ac_init_help" = "long"; then
13181318
# Omit some internal or obsolete options to make the list less imposing.
13191319
# This message is too long to be a string in the A/UX 3.1 sh.
13201320
cat <<_ACEOF
1321-
\`configure' configures wxSqlite3 3.3.0 to adapt to many kinds of systems.
1321+
\`configure' configures wxSqlite3 3.3.1 to adapt to many kinds of systems.
13221322
13231323
Usage: $0 [OPTION]... [VAR=VALUE]...
13241324
@@ -1384,7 +1384,7 @@ fi
13841384

13851385
if test -n "$ac_init_help"; then
13861386
case $ac_init_help in
1387-
short | recursive ) echo "Configuration of wxSqlite3 3.3.0:";;
1387+
short | recursive ) echo "Configuration of wxSqlite3 3.3.1:";;
13881388
esac
13891389
cat <<\_ACEOF
13901390
@@ -1504,7 +1504,7 @@ fi
15041504
test -n "$ac_init_help" && exit $ac_status
15051505
if $ac_init_version; then
15061506
cat <<\_ACEOF
1507-
wxSqlite3 configure 3.3.0
1507+
wxSqlite3 configure 3.3.1
15081508
generated by GNU Autoconf 2.69
15091509
15101510
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1597,7 +1597,7 @@ cat >config.log <<_ACEOF
15971597
This file contains any messages produced by compilers while
15981598
running configure, to aid debugging if configure makes a mistake.
15991599
1600-
It was created by wxSqlite3 $as_me 3.3.0, which was
1600+
It was created by wxSqlite3 $as_me 3.3.1, which was
16011601
generated by GNU Autoconf 2.69. Invocation command line was
16021602
16031603
$ $0 $@
@@ -8360,7 +8360,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
83608360
# report actual input values of CONFIG_FILES etc. instead of their
83618361
# values after options handling.
83628362
ac_log="
8363-
This file was extended by wxSqlite3 $as_me 3.3.0, which was
8363+
This file was extended by wxSqlite3 $as_me 3.3.1, which was
83648364
generated by GNU Autoconf 2.69. Invocation command line was
83658365
83668366
CONFIG_FILES = $CONFIG_FILES
@@ -8413,7 +8413,7 @@ _ACEOF
84138413
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
84148414
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
84158415
ac_cs_version="\\
8416-
wxSqlite3 config.status 3.3.0
8416+
wxSqlite3 config.status 3.3.1
84178417
configured by $0, generated by GNU Autoconf 2.69,
84188418
with options \\"\$ac_cs_config\\"
84198419

0 commit comments

Comments
 (0)