File: configure.in

package info (click to toggle)
pgtcl 1%3A2.7.5-1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 2,496 kB
  • sloc: ansic: 7,140; tcl: 657; sh: 470; makefile: 34; sql: 11
file content (284 lines) | stat: -rwxr-xr-x 10,813 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
#!/bin/bash -norc
dnl	This file is an input file used by the GNU "autoconf" program to
dnl	generate the file "configure", which is run during Tcl installation
dnl	to configure the system for the local environment.
#
# RCS: @(#) $Id$

#-----------------------------------------------------------------------
# Sample configure.in for Tcl Extensions.  The only places you should
# need to modify this file are marked by the string __CHANGE__
#-----------------------------------------------------------------------

#-----------------------------------------------------------------------
# __CHANGE__
# Set your package name and version numbers here.
#
# This initializes the environment with PACKAGE_NAME and PACKAGE_VERSION
# set as provided.  These will also be added as -D defs in your Makefile
# so you can encode the package version directly into the source files.
#-----------------------------------------------------------------------

AC_INIT([pgtcl], [2.7.5])

#-----
# Version with patch stripped
#-----

AC_SUBST(PKG_MAJ_MIN,`expr $PACKAGE_VERSION : '\(.*\)\..*'`)

#--------------------------------------------------------------------
# Call TEA_INIT as the first TEA_ macro to set up initial vars.
# This will define a ${TEA_PLATFORM} variable == "unix" or "windows"
# as well as PKG_LIB_FILE and PKG_STUB_LIB_FILE.
#--------------------------------------------------------------------

TEA_INIT([3.9])

AC_CONFIG_AUX_DIR(tclconfig)

#--------------------------------------------------------------------
# Load the tclConfig.sh file
#--------------------------------------------------------------------

TEA_PATH_TCLCONFIG
TEA_LOAD_TCLCONFIG

#--------------------------------------------------------------------
# Load the tkConfig.sh file if necessary (Tk extension)
#--------------------------------------------------------------------

#TEA_PATH_TKCONFIG
#TEA_LOAD_TKCONFIG

#-----------------------------------------------------------------------
# Handle the --prefix=... option by defaulting to what Tcl gave.
# Must be called after TEA_LOAD_TCLCONFIG and before TEA_SETUP_COMPILER.
#-----------------------------------------------------------------------

TEA_PREFIX

#-----------------------------------------------------------------------
# Standard compiler checks.
# This sets up CC by using the CC env var, or looks for gcc otherwise.
# This also calls AC_PROG_CC, AC_PROG_INSTALL and a few others to create
# the basic setup necessary to compile executables.
#-----------------------------------------------------------------------

TEA_SETUP_COMPILER

#--------------------------------------------------------------------
# Get the paths to the Postgres includes and libraries.
#--------------------------------------------------------------------

AC_ARG_WITH(postgres-include,  --with-postgres-include        directory containing PostgreSQL include files)
AC_ARG_WITH(postgres-lib,  --with-postgres-lib        directory containing PostgreSQL library files)

need_pg_config=""

if test "${with_postgres_include+set}" = "set"; then
    PG_INC_DIR="${with_postgres_include}"
    AC_MSG_RESULT([using PostgreSQL include dir of... "$PG_INC_DIR"])
else
    need_pg_config="1"
fi

if test "${with_postgres_lib+set}" = "set"; then
    PG_LIB_DIR="${with_postgres_lib}"
    AC_MSG_RESULT([using PostgreSQL lib dir of... "$PG_LIB_DIR"])
else
    need_pg_config="1"
fi

if test "$need_pg_config" = "1"; then
    AC_PATH_PROGS(PG_CONFIG, pg_config)
    if test "$PG_CONFIG" = ""; then
        AC_MSG_ERROR([Cannot locate program pg_config to determine PostgreSQL paths.  Make sure pg_config is in PATH or set PG_CONFIG env var to path to pg_config.])
    fi
    if test "${with_postgres_include+set}" != "set"; then
        PG_INC_DIR="`$PG_CONFIG --includedir`"
        AC_MSG_RESULT([using pg_config-reported PostgreSQL include dir of... "$PG_INC_DIR"])
    fi
    if test "${with_postgres_lib+set}" != "set"; then
        PG_LIB_DIR="`$PG_CONFIG --libdir`"
        AC_MSG_RESULT([using pg_config-reported PostgreSQL lib dir of... "$PG_LIB_DIR"])
    fi
fi

LIBPG=""
PG_INCLUDES="-I$PG_INC_DIR"
PKG_INCLUDES="-I$PG_INC_DIR"
PG_LIBS="-L$PG_LIB_DIR -lpq"
PKG_LIBS="-L$PG_LIB_DIR -lpq"
if test ! "$PG_LIB_DIR" = ""; then
    LIBPG="libpq${SHLIB_SUFFIX}"
fi

#--------------------------------------------------------------------
# Determine if certain PostgreSQL functions are defined 
# (Postgres 7.4 and above)
#--------------------------------------------------------------------

SAVE_LIBS=$LIBS
LIBS="$PG_LIBS $LIBS $TCL_LIB_SPEC"
AC_CHECK_FUNCS(PQsetSingleRowMode)
LIBS=$SAVE_LIBS


AC_SUBST(LIBPG)
AC_SUBST(PG_INC_DIR)
AC_SUBST(PG_INCLUDES)
AC_SUBST(PG_LIBS)
AC_SUBST(PG_LIB_DIR)

#-----------------------------------------------------------------------
# __CHANGE__
# Specify the C source files to compile in TEA_ADD_SOURCES,
# public headers that need to be installed in TEA_ADD_HEADERS,
# stub library C source files to compile in TEA_ADD_STUB_SOURCES,
# and runtime Tcl library files in TEA_ADD_TCL_SOURCES.
# This defines PKG(_STUB)_SOURCES, PKG(_STUB)_OBJECTS, PKG_HEADERS
# and PKG_TCL_SOURCES.
#-----------------------------------------------------------------------

TEA_ADD_SOURCES([pgtcl.c pgtclCmds.c pgtclId.c tokenize.c])
TEA_ADD_HEADERS([generic/pgtclId.h])
TEA_ADD_INCLUDES([])
TEA_ADD_LIBS([])
TEA_ADD_CFLAGS([])
TEA_ADD_STUB_SOURCES([])
TEA_ADD_TCL_SOURCES([postgres-helpers.tcl])

#--------------------------------------------------------------------
# SQLITE option
#--------------------------------------------------------------------
AC_ARG_WITH([sqlite3],
	[AS_HELP_STRING([--with-sqlite3],[Include pg_sqlite function @<:@default=check@:>@])],
	[],
	[with_sqlite3=check])
AS_IF([test "x$with_sqlite3" != "xno"],
	[AC_CHECK_LIB([sqlite3], [main],
		[TEA_ADD_LIBS([-lsqlite3])
		 TEA_ADD_SOURCES([pgtclSqlite.c])
		 AC_DEFINE([HAVE_SQLITE3], [1], [Define if you have sqlite3])
		],
		[if test "x$with_sqlite3" != "xcheck"; then
			AC_MSG_FAILURE([--with-sqlite3 was given, but test for sqlite3 failed])
		 fi
		], [])])

#--------------------------------------------------------------------
# __CHANGE__
# A few miscellaneous platform-specific items:
#
# Define a special symbol for Windows (BUILD_sample in this case) so
# that we create the export library with the dll.
#
# Windows creates a few extra files that need to be cleaned up.
# You can add more files to clean if your extension creates any extra
# files.
#
# TEA_ADD_* any platform specific compiler/build info here.
#--------------------------------------------------------------------

#CLEANFILES="pkgIndex.tcl"
if test "${TEA_PLATFORM}" = "windows" ; then
    AC_DEFINE(BUILD_libpgtcl, 1, [Build windows export dll])
    CLEANFILES="$CLEANFILES *.lib *.dll *.exp *.ilk *.pdb vc*.pch"
    #TEA_ADD_SOURCES([win/winFile.c])
    #TEA_ADD_INCLUDES([-I\"$(${CYGPATH} ${srcdir}/win)\"])
else
    # Ensure no empty else clauses
    :
    #TEA_ADD_SOURCES([unix/unixFile.c])
    #TEA_ADD_LIBS([-lsuperfly])
fi
AC_SUBST(CLEANFILES)

#--------------------------------------------------------------------
# __CHANGE__
# Choose which headers you need.  Extension authors should try very
# hard to only rely on the Tcl public header files.  Internal headers
# contain private data structures and are subject to change without
# notice.
# This MUST be called after TEA_LOAD_TCLCONFIG / TEA_LOAD_TKCONFIG
#--------------------------------------------------------------------

TEA_PUBLIC_TCL_HEADERS
#TEA_PRIVATE_TCL_HEADERS

#TEA_PUBLIC_TK_HEADERS
#TEA_PRIVATE_TK_HEADERS
#TEA_PATH_X

#--------------------------------------------------------------------
# Check whether --enable-threads or --disable-threads was given.
# This auto-enables if Tcl was compiled threaded.
#--------------------------------------------------------------------

TEA_ENABLE_THREADS

#--------------------------------------------------------------------
# The statement below defines a collection of symbols related to
# building as a shared library instead of a static library.
#--------------------------------------------------------------------

TEA_ENABLE_SHARED

#--------------------------------------------------------------------
# This macro figures out what flags to use with the compiler/linker
# when building shared/static debug/optimized objects.  This information
# can be taken from the tclConfig.sh file, but this figures it all out.
#--------------------------------------------------------------------

# NOTE - WE HAVE A SPECIFAL VERSION OF TEA_CONFIG_CFLAGS that includes
# paths to the postgres libraries alongside the Tcl libraries.
# see aclocal.m4
# This now gets included by TEA_ENABLE_SYMBOLS below, so don't include
# anything here. Leaving this comment here so the next person to try and
# figure out what happened in 2.0 won't go down the rabbit hole.

#--------------------------------------------------------------------
# Set the default compiler switches based on the --enable-symbols option.
#--------------------------------------------------------------------

TEA_ENABLE_SYMBOLS

#--------------------------------------------------------------------
# Everyone should be linking against the Tcl stub library.  If you
# can't for some reason, remove this definition.  If you aren't using
# stubs, you also need to modify the SHLIB_LD_LIBS setting below to
# link against the non-stubbed Tcl library.  Add Tk too if necessary.
#--------------------------------------------------------------------

AC_DEFINE(USE_TCL_STUBS, 1, [Use Tcl stubs])
#AC_DEFINE(USE_TK_STUBS, 1, [Use Tk stubs])

#--------------------------------------------------------------------
# This macro generates a line to use when building a library.  It
# depends on values set by the TEA_ENABLE_SHARED, TEA_ENABLE_SYMBOLS,
# and TEA_LOAD_TCLCONFIG macros above.
#--------------------------------------------------------------------

TEA_MAKE_LIB

#--------------------------------------------------------------------
# Determine the name of the tclsh and/or wish executables in the
# Tcl and Tk build directories or the location they were installed
# into. These paths are used to support running test cases only,
# the Makefile should not be making use of these paths to generate
# a pkgIndex.tcl file or anything else at extension build time.
#--------------------------------------------------------------------

TEA_PROG_TCLSH
#TEA_PROG_WISH

#--------------------------------------------------------------------
# Finally, substitute all of the various values into the Makefile.
# You may alternatively have a special pkgIndex.tcl.in or other files
# which require substituting th AC variables in.  Include these here.
#--------------------------------------------------------------------

AC_OUTPUT([Makefile pkgIndex.tcl])