configure.ac (0f996f45418e82dae151e5d1da478da38d70049f) | configure.ac (de9468837c92cab304c658480bd32dbe4e022d01) |
---|---|
1#!/bin/bash -norc 2dnl This file is an input file used by the GNU "autoconf" program to 3dnl generate the file "configure", which is run during Tcl installation 4dnl to configure the system for the local environment. 5 6#----------------------------------------------------------------------- 7# Sample configure.ac for Tcl Extensions. The only places you should 8# need to modify this file are marked by the string __CHANGE__ --- 5 unchanged lines hidden (view full) --- 14# 15# This initializes the environment with PACKAGE_NAME and PACKAGE_VERSION 16# set as provided. These will also be added as -D defs in your Makefile 17# so you can encode the package version directly into the source files. 18# This will also define a special symbol for Windows (BUILD_<PACKAGE_NAME> 19# so that we create the export library with the dll. 20#----------------------------------------------------------------------- 21 | 1#!/bin/bash -norc 2dnl This file is an input file used by the GNU "autoconf" program to 3dnl generate the file "configure", which is run during Tcl installation 4dnl to configure the system for the local environment. 5 6#----------------------------------------------------------------------- 7# Sample configure.ac for Tcl Extensions. The only places you should 8# need to modify this file are marked by the string __CHANGE__ --- 5 unchanged lines hidden (view full) --- 14# 15# This initializes the environment with PACKAGE_NAME and PACKAGE_VERSION 16# set as provided. These will also be added as -D defs in your Makefile 17# so you can encode the package version directly into the source files. 18# This will also define a special symbol for Windows (BUILD_<PACKAGE_NAME> 19# so that we create the export library with the dll. 20#----------------------------------------------------------------------- 21 |
22AC_INIT([sqlite],[3.46.0]) | 22AC_INIT([sqlite],[3.46.1]) |
23 24#-------------------------------------------------------------------- 25# Call TEA_INIT as the first TEA_ macro to set up initial vars. 26# This will define a ${TEA_PLATFORM} variable == "unix" or "windows" 27# as well as PKG_LIB_FILE and PKG_STUB_LIB_FILE. 28#-------------------------------------------------------------------- 29 30TEA_INIT() --- 197 unchanged lines hidden --- | 23 24#-------------------------------------------------------------------- 25# Call TEA_INIT as the first TEA_ macro to set up initial vars. 26# This will define a ${TEA_PLATFORM} variable == "unix" or "windows" 27# as well as PKG_LIB_FILE and PKG_STUB_LIB_FILE. 28#-------------------------------------------------------------------- 29 30TEA_INIT() --- 197 unchanged lines hidden --- |