| OLD | NEW |
| 1 #!/bin/bash -norc | 1 #!/bin/bash -norc |
| 2 dnl This file is an input file used by the GNU "autoconf" program to | 2 dnl This file is an input file used by the GNU "autoconf" program to |
| 3 dnl generate the file "configure", which is run during Tcl installation | 3 dnl generate the file "configure", which is run during Tcl installation |
| 4 dnl to configure the system for the local environment. | 4 dnl to configure the system for the local environment. |
| 5 # | 5 # |
| 6 # RCS: @(#) $Id: configure.in,v 1.43 2005/07/26 19:17:05 mdejong Exp $ | 6 # RCS: @(#) $Id: configure.in,v 1.43 2005/07/26 19:17:05 mdejong Exp $ |
| 7 | 7 |
| 8 #----------------------------------------------------------------------- | 8 #----------------------------------------------------------------------- |
| 9 # Sample configure.in for Tcl Extensions. The only places you should | 9 # Sample configure.in for Tcl Extensions. The only places you should |
| 10 # need to modify this file are marked by the string __CHANGE__ | 10 # need to modify this file are marked by the string __CHANGE__ |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 # and PKG_TCL_SOURCES. | 71 # and PKG_TCL_SOURCES. |
| 72 #----------------------------------------------------------------------- | 72 #----------------------------------------------------------------------- |
| 73 | 73 |
| 74 TEA_ADD_SOURCES([tclsqlite3.c]) | 74 TEA_ADD_SOURCES([tclsqlite3.c]) |
| 75 TEA_ADD_HEADERS([]) | 75 TEA_ADD_HEADERS([]) |
| 76 TEA_ADD_INCLUDES([-I\"`\${CYGPATH} \${srcdir}/generic`\"]) | 76 TEA_ADD_INCLUDES([-I\"`\${CYGPATH} \${srcdir}/generic`\"]) |
| 77 TEA_ADD_LIBS([]) | 77 TEA_ADD_LIBS([]) |
| 78 TEA_ADD_CFLAGS([-DSQLITE_ENABLE_FTS3=1]) | 78 TEA_ADD_CFLAGS([-DSQLITE_ENABLE_FTS3=1]) |
| 79 TEA_ADD_CFLAGS([-DSQLITE_3_SUFFIX_ONLY=1]) | 79 TEA_ADD_CFLAGS([-DSQLITE_3_SUFFIX_ONLY=1]) |
| 80 TEA_ADD_CFLAGS([-DSQLITE_ENABLE_RTREE=1]) | 80 TEA_ADD_CFLAGS([-DSQLITE_ENABLE_RTREE=1]) |
| 81 TEA_ADD_CFLAGS([-DSQLITE_OMIT_DEPRECATED=1]) | |
| 82 TEA_ADD_STUB_SOURCES([]) | 81 TEA_ADD_STUB_SOURCES([]) |
| 83 TEA_ADD_TCL_SOURCES([]) | 82 TEA_ADD_TCL_SOURCES([]) |
| 84 | 83 |
| 85 #-------------------------------------------------------------------- | 84 #-------------------------------------------------------------------- |
| 86 # The --with-system-sqlite causes the TCL bindings to SQLite to use | 85 # The --with-system-sqlite causes the TCL bindings to SQLite to use |
| 87 # the system shared library for SQLite rather than statically linking | 86 # the system shared library for SQLite rather than statically linking |
| 88 # against its own private copy. This is dangerous and leads to | 87 # against its own private copy. This is dangerous and leads to |
| 89 # undersirable dependences and is not recommended. | 88 # undersirable dependences and is not recommended. |
| 90 # Patchs from rmax. | 89 # Patchs from rmax. |
| 91 #-------------------------------------------------------------------- | 90 #-------------------------------------------------------------------- |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 TEA_PROG_TCLSH | 192 TEA_PROG_TCLSH |
| 194 #TEA_PROG_WISH | 193 #TEA_PROG_WISH |
| 195 | 194 |
| 196 #-------------------------------------------------------------------- | 195 #-------------------------------------------------------------------- |
| 197 # Finally, substitute all of the various values into the Makefile. | 196 # Finally, substitute all of the various values into the Makefile. |
| 198 # You may alternatively have a special pkgIndex.tcl.in or other files | 197 # You may alternatively have a special pkgIndex.tcl.in or other files |
| 199 # which require substituting th AC variables in. Include these here. | 198 # which require substituting th AC variables in. Include these here. |
| 200 #-------------------------------------------------------------------- | 199 #-------------------------------------------------------------------- |
| 201 | 200 |
| 202 AC_OUTPUT([Makefile pkgIndex.tcl]) | 201 AC_OUTPUT([Makefile pkgIndex.tcl]) |
| OLD | NEW |