Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | switching to version 1.7.0-RC1 |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0a0533522effcf891da48a7605824baa |
User & Date: | sandro 2013-05-05 12:00:45 |
Context
2013-05-06
| ||
11:28 | fixing --disable-libxml2 check-in: df584bd3a5 user: sandro tags: trunk | |
2013-05-05
| ||
12:00 | switching to version 1.7.0-RC1 check-in: 0a0533522e user: sandro tags: trunk | |
2013-05-03
| ||
17:36 | a small WFS fix check-in: ff19ef3c77 user: sandro tags: trunk | |
Changes
Changes to Main.cpp.
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 |
wxT("Saving the current MEMORY-DB")); toolBar->AddTool(ID_Disconnect, wxT("Disconnecting current SQLite DB"), *BtnDisconnect, wxNullBitmap, wxITEM_NORMAL, wxT("Disconnecting current SQLite DB")); toolBar->AddTool(ID_Vacuum, wxT("Optimizing current SQLite DB [VACUUM]"), *BtnVacuum, wxNullBitmap, wxITEM_NORMAL, wxT("Optimizing current SQLite DB [VACUUM]")); toolBar->AddSeparator(); toolBar->AddTool(ID_Attach, wxT("Attach DataBase"), *BtnAttach, wxNullBitmap, wxITEM_NORMAL, wxT("Attach DataBase")); toolBar->AddSeparator(); toolBar->AddTool(ID_SqlLog, wxT("SQL Log"), *BtnSqlLog, wxNullBitmap, wxITEM_CHECK, wxT("SQL Log")); toolBar->AddTool(ID_DbStatus, wxT("DB Status"), *BtnDbStatus, wxNullBitmap, wxITEM_NORMAL, wxT("DB Status")); toolBar->AddSeparator(); toolBar->AddTool(ID_CheckGeom, wxT("Check Geometries"), *BtnCheckGeom, wxNullBitmap, wxITEM_NORMAL, wxT("Check Geometries")); toolBar->AddTool(ID_SaneGeom, wxT("Sanitize Geometries"), *BtnSaneGeom, wxNullBitmap, wxITEM_NORMAL, wxT("Sanitize Geometries")); toolBar->AddSeparator(); toolBar->AddTool(ID_SqlScript, wxT("Execute SQL script"), *BtnSqlScript, wxNullBitmap, wxITEM_NORMAL, wxT("Execute SQL script")); toolBar->AddSeparator(); toolBar->AddTool(ID_QueryViewComposer, wxT("Query/View Composer"), *BtnQueryComposer, wxNullBitmap, wxITEM_NORMAL, wxT("Query/View Composer")); toolBar->AddSeparator(); toolBar->AddTool(ID_LoadShp, wxT("Load Shapefile"), *BtnLoadShp, wxNullBitmap, wxITEM_NORMAL, wxT("Load Shapefile")); toolBar->AddTool(ID_VirtualShp, wxT("Virtual Shapefile"), *BtnVirtualShp, wxNullBitmap, wxITEM_NORMAL, wxT("Virtual Shapefile")); toolBar->AddSeparator(); toolBar->AddTool(ID_LoadTxt, wxT("Load CSV/TXT"), *BtnLoadTxt, wxNullBitmap, wxITEM_NORMAL, wxT("Load CSV/TXT")); toolBar->AddTool(ID_VirtualTxt, wxT("Virtual CSV/TXT"), *BtnVirtualTxt, wxNullBitmap, wxITEM_NORMAL, wxT("Virtual CSV/TXT")); toolBar->AddSeparator(); toolBar->AddTool(ID_LoadDbf, wxT("Load DBF"), *BtnLoadDbf, wxNullBitmap, wxITEM_NORMAL, wxT("Load DBF")); toolBar->AddTool(ID_VirtualDbf, wxT("Virtual DBF"), *BtnVirtualDbf, wxNullBitmap, wxITEM_NORMAL, wxT("Virtual DBF")); toolBar->AddSeparator(); toolBar->AddTool(ID_LoadXL, wxT("Load XLS"), *BtnLoadXL, wxNullBitmap, wxITEM_NORMAL, wxT("Load XLS")); toolBar->AddTool(ID_VirtualXL, wxT("Virtual XLS"), *BtnVirtualXL, wxNullBitmap, wxITEM_NORMAL, wxT("Virtual XLS")); toolBar->AddSeparator(); toolBar->AddTool(ID_Network, wxT("Build Network"), *BtnNetwork, wxNullBitmap, wxITEM_NORMAL, wxT("Build Network")); toolBar->AddSeparator(); toolBar->AddTool(ID_Exif, wxT("Import EXIF photos"), *BtnExif, wxNullBitmap, wxITEM_NORMAL, wxT("Import EXIF photos")); toolBar->AddTool(ID_LoadXml, wxT("Import XML Documents"), *BtnLoadXml, wxNullBitmap, wxITEM_NORMAL, wxT("Import XML Documents")); toolBar->AddTool(ID_WFS, wxT("Import data from WFS datasource"), *BtnWFS, wxNullBitmap, wxITEM_NORMAL, wxT("Import data from WFS datasource")); toolBar->AddSeparator(); toolBar->AddTool(ID_Srids, wxT("Search SRID by name"), *BtnSrids, wxNullBitmap, wxITEM_NORMAL, wxT("Search SRID by name")); toolBar->AddSeparator(); toolBar->AddTool(ID_Charset, wxT("Default Output Charset"), *BtnCharset, wxNullBitmap, wxITEM_NORMAL, wxT("Default Output Charset")); toolBar->AddSeparator(); toolBar->AddTool(ID_Help, wxT("Help"), *BtnHelp, wxNullBitmap, wxITEM_NORMAL, wxT("Help")); toolBar->AddTool(wxID_ABOUT, wxT("About ..."), *BtnAbout, wxNullBitmap, wxITEM_NORMAL, wxT("About ...")); toolBar->AddSeparator(); toolBar->AddTool(wxID_EXIT, wxT("Quit"), *BtnExit, wxNullBitmap, wxITEM_NORMAL, wxT("Quit")); toolBar->Realize(); SetToolBar(toolBar); // // setting up the toolbar initial state |
| | | | | | | | | | | | | | | |
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 |
wxT("Saving the current MEMORY-DB")); toolBar->AddTool(ID_Disconnect, wxT("Disconnecting current SQLite DB"), *BtnDisconnect, wxNullBitmap, wxITEM_NORMAL, wxT("Disconnecting current SQLite DB")); toolBar->AddTool(ID_Vacuum, wxT("Optimizing current SQLite DB [VACUUM]"), *BtnVacuum, wxNullBitmap, wxITEM_NORMAL, wxT("Optimizing current SQLite DB [VACUUM]")); //toolBar->AddSeparator(); toolBar->AddTool(ID_Attach, wxT("Attach DataBase"), *BtnAttach, wxNullBitmap, wxITEM_NORMAL, wxT("Attach DataBase")); //toolBar->AddSeparator(); toolBar->AddTool(ID_SqlLog, wxT("SQL Log"), *BtnSqlLog, wxNullBitmap, wxITEM_CHECK, wxT("SQL Log")); toolBar->AddTool(ID_DbStatus, wxT("DB Status"), *BtnDbStatus, wxNullBitmap, wxITEM_NORMAL, wxT("DB Status")); //toolBar->AddSeparator(); toolBar->AddTool(ID_CheckGeom, wxT("Check Geometries"), *BtnCheckGeom, wxNullBitmap, wxITEM_NORMAL, wxT("Check Geometries")); toolBar->AddTool(ID_SaneGeom, wxT("Sanitize Geometries"), *BtnSaneGeom, wxNullBitmap, wxITEM_NORMAL, wxT("Sanitize Geometries")); //toolBar->AddSeparator(); toolBar->AddTool(ID_SqlScript, wxT("Execute SQL script"), *BtnSqlScript, wxNullBitmap, wxITEM_NORMAL, wxT("Execute SQL script")); //toolBar->AddSeparator(); toolBar->AddTool(ID_QueryViewComposer, wxT("Query/View Composer"), *BtnQueryComposer, wxNullBitmap, wxITEM_NORMAL, wxT("Query/View Composer")); //toolBar->AddSeparator(); toolBar->AddTool(ID_LoadShp, wxT("Load Shapefile"), *BtnLoadShp, wxNullBitmap, wxITEM_NORMAL, wxT("Load Shapefile")); toolBar->AddTool(ID_VirtualShp, wxT("Virtual Shapefile"), *BtnVirtualShp, wxNullBitmap, wxITEM_NORMAL, wxT("Virtual Shapefile")); //toolBar->AddSeparator(); toolBar->AddTool(ID_LoadTxt, wxT("Load CSV/TXT"), *BtnLoadTxt, wxNullBitmap, wxITEM_NORMAL, wxT("Load CSV/TXT")); toolBar->AddTool(ID_VirtualTxt, wxT("Virtual CSV/TXT"), *BtnVirtualTxt, wxNullBitmap, wxITEM_NORMAL, wxT("Virtual CSV/TXT")); //toolBar->AddSeparator(); toolBar->AddTool(ID_LoadDbf, wxT("Load DBF"), *BtnLoadDbf, wxNullBitmap, wxITEM_NORMAL, wxT("Load DBF")); toolBar->AddTool(ID_VirtualDbf, wxT("Virtual DBF"), *BtnVirtualDbf, wxNullBitmap, wxITEM_NORMAL, wxT("Virtual DBF")); //toolBar->AddSeparator(); toolBar->AddTool(ID_LoadXL, wxT("Load XLS"), *BtnLoadXL, wxNullBitmap, wxITEM_NORMAL, wxT("Load XLS")); toolBar->AddTool(ID_VirtualXL, wxT("Virtual XLS"), *BtnVirtualXL, wxNullBitmap, wxITEM_NORMAL, wxT("Virtual XLS")); //toolBar->AddSeparator(); toolBar->AddTool(ID_Network, wxT("Build Network"), *BtnNetwork, wxNullBitmap, wxITEM_NORMAL, wxT("Build Network")); //toolBar->AddSeparator(); toolBar->AddTool(ID_Exif, wxT("Import EXIF photos"), *BtnExif, wxNullBitmap, wxITEM_NORMAL, wxT("Import EXIF photos")); toolBar->AddTool(ID_LoadXml, wxT("Import XML Documents"), *BtnLoadXml, wxNullBitmap, wxITEM_NORMAL, wxT("Import XML Documents")); toolBar->AddTool(ID_WFS, wxT("Import data from WFS datasource"), *BtnWFS, wxNullBitmap, wxITEM_NORMAL, wxT("Import data from WFS datasource")); //toolBar->AddSeparator(); toolBar->AddTool(ID_Srids, wxT("Search SRID by name"), *BtnSrids, wxNullBitmap, wxITEM_NORMAL, wxT("Search SRID by name")); //toolBar->AddSeparator(); toolBar->AddTool(ID_Charset, wxT("Default Output Charset"), *BtnCharset, wxNullBitmap, wxITEM_NORMAL, wxT("Default Output Charset")); //toolBar->AddSeparator(); toolBar->AddTool(ID_Help, wxT("Help"), *BtnHelp, wxNullBitmap, wxITEM_NORMAL, wxT("Help")); toolBar->AddTool(wxID_ABOUT, wxT("About ..."), *BtnAbout, wxNullBitmap, wxITEM_NORMAL, wxT("About ...")); //toolBar->AddSeparator(); toolBar->AddTool(wxID_EXIT, wxT("Quit"), *BtnExit, wxNullBitmap, wxITEM_NORMAL, wxT("Quit")); toolBar->Realize(); SetToolBar(toolBar); // // setting up the toolbar initial state |
Changes to config.h.
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
...
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
/* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "a.furieri@lqt.it" /* Define to the full name of this package. */ #define PACKAGE_NAME "spatialite_gui" /* Define to the full name and version of this package. */ #define PACKAGE_STRING "spatialite_gui 1.6.1-beta" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "spatialite_gui" /* Define to the home page for this package. */ #define PACKAGE_URL "" /* Define to the version of this package. */ #define PACKAGE_VERSION "1.6.1-beta" /* must be defined when using libspatialite-amalgamation */ /* #undef SPATIALITE_AMALGAMATION */ /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 ................................................................................ /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ #define TIME_WITH_SYS_TIME 1 /* Define to 1 if your <sys/time.h> declares `struct tm'. */ /* #undef TM_IN_SYS_TIME */ /* Version number of package */ #define VERSION "1.6.1-beta" /* Define to empty if `const' does not conform to ANSI C. */ /* #undef const */ /* Define to `long int' if <sys/types.h> does not define. */ /* #undef off_t */ /* Define to `unsigned int' if <sys/types.h> does not define. */ /* #undef size_t */ /* Define to empty if the keyword `volatile' does not work. Warning: valid code using `volatile' can become incorrect without. Disable with care. */ /* #undef volatile */ |
|
|
|
|
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
...
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
/* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "a.furieri@lqt.it" /* Define to the full name of this package. */ #define PACKAGE_NAME "spatialite_gui" /* Define to the full name and version of this package. */ #define PACKAGE_STRING "spatialite_gui 1.7.0-RC1" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "spatialite_gui" /* Define to the home page for this package. */ #define PACKAGE_URL "" /* Define to the version of this package. */ #define PACKAGE_VERSION "1.7.0-RC1" /* must be defined when using libspatialite-amalgamation */ /* #undef SPATIALITE_AMALGAMATION */ /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 ................................................................................ /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ #define TIME_WITH_SYS_TIME 1 /* Define to 1 if your <sys/time.h> declares `struct tm'. */ /* #undef TM_IN_SYS_TIME */ /* Version number of package */ #define VERSION "1.7.0-RC1" /* Define to empty if `const' does not conform to ANSI C. */ /* #undef const */ /* Define to `long int' if <sys/types.h> does not define. */ /* #undef off_t */ /* Define to `unsigned int' if <sys/types.h> does not define. */ /* #undef size_t */ /* Define to empty if the keyword `volatile' does not work. Warning: valid code using `volatile' can become incorrect without. Disable with care. */ /* #undef volatile */ |
Changes to configure.
1 2 3 4 5 6 7 8 9 10 ... 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 .... 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 .... 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 .... 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 .... 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 .... 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 ..... 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 ..... 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 |
#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for spatialite_gui 1.6.1-beta. # # Report bugs to <a.furieri@lqt.it>. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # ................................................................................ subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='spatialite_gui' PACKAGE_TARNAME='spatialite_gui' PACKAGE_VERSION='1.6.1-beta' PACKAGE_STRING='spatialite_gui 1.6.1-beta' PACKAGE_BUGREPORT='a.furieri@lqt.it' PACKAGE_URL='' # Factoring default headers for most tests. ac_includes_default="\ #include <stdio.h> #ifdef HAVE_SYS_TYPES_H ................................................................................ # # Report the --help message. # 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 spatialite_gui 1.6.1-beta to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. ................................................................................ --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of spatialite_gui 1.6.1-beta:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] ................................................................................ cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF spatialite_gui configure 1.6.1-beta generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit ................................................................................ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_decl 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 spatialite_gui $as_me 1.6.1-beta, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { ................................................................................ CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='spatialite_gui' VERSION='1.6.1-beta' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF ................................................................................ test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by spatialite_gui $as_me 1.6.1-beta, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ ................................................................................ Report bugs to <a.furieri@lqt.it>." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ spatialite_gui config.status 1.6.1-beta configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." |
| | | | | | | | | | |
1 2 3 4 5 6 7 8 9 10 ... 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 .... 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 .... 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 .... 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 .... 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 .... 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 ..... 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 ..... 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 |
#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for spatialite_gui 1.7.0-RC1. # # Report bugs to <a.furieri@lqt.it>. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # ................................................................................ subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='spatialite_gui' PACKAGE_TARNAME='spatialite_gui' PACKAGE_VERSION='1.7.0-RC1' PACKAGE_STRING='spatialite_gui 1.7.0-RC1' PACKAGE_BUGREPORT='a.furieri@lqt.it' PACKAGE_URL='' # Factoring default headers for most tests. ac_includes_default="\ #include <stdio.h> #ifdef HAVE_SYS_TYPES_H ................................................................................ # # Report the --help message. # 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 spatialite_gui 1.7.0-RC1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. ................................................................................ --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of spatialite_gui 1.7.0-RC1:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] ................................................................................ cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF spatialite_gui configure 1.7.0-RC1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit ................................................................................ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_decl 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 spatialite_gui $as_me 1.7.0-RC1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { ................................................................................ CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='spatialite_gui' VERSION='1.7.0-RC1' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF ................................................................................ test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by spatialite_gui $as_me 1.7.0-RC1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ ................................................................................ Report bugs to <a.furieri@lqt.it>." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ spatialite_gui config.status 1.7.0-RC1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." |
Changes to configure.ac.
1 2 3 4 5 6 7 8 9 10 11 12 |
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT(spatialite_gui, 1.6.1-beta, a.furieri@lqt.it)
AC_LANG(C)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
AM_CONFIG_HEADER(config.h)
|
| |
1 2 3 4 5 6 7 8 9 10 11 12 |
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT(spatialite_gui, 1.7.0-RC1, a.furieri@lqt.it)
AC_LANG(C)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
AM_CONFIG_HEADER(config.h)
|