source: trunk/packages/optimizer/src/configure.in @ 1018

Last change on this file since 1018 was 943, checked in by gah, 16 years ago

Makefile fixups

File size: 8.1 KB
Line 
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# RCS: @(#) $Id: configure.in,v 1.46 2006/01/23 19:18:55 hobbs Exp $
7
8#-----------------------------------------------------------------------
9# Sample configure.in for Tcl Extensions.  The only places you should
10# need to modify this file are marked by the string __CHANGE__
11#-----------------------------------------------------------------------
12
13#-----------------------------------------------------------------------
14# __CHANGE__
15# Set your package name and version numbers here.
16#
17# This initializes the environment with PACKAGE_NAME and PACKAGE_VERSION
18# set as provided.  These will also be added as -D defs in your Makefile
19# so you can encode the package version directly into the source files.
20#-----------------------------------------------------------------------
21
22AC_INIT([RapptureOptimizer], [1.0])
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([3.5])
31
32AC_CONFIG_AUX_DIR(tclconfig)
33
34#--------------------------------------------------------------------
35# Load the tclConfig.sh file
36#--------------------------------------------------------------------
37
38TEA_PATH_TCLCONFIG
39TEA_LOAD_TCLCONFIG
40
41#--------------------------------------------------------------------
42# Load the tkConfig.sh file if necessary (Tk extension)
43#--------------------------------------------------------------------
44
45#TEA_PATH_TKCONFIG
46#TEA_LOAD_TKCONFIG
47
48#-----------------------------------------------------------------------
49# Handle the --prefix=... option by defaulting to what Tcl gave.
50# Must be called after TEA_LOAD_TCLCONFIG and before TEA_SETUP_COMPILER.
51#-----------------------------------------------------------------------
52
53TEA_PREFIX
54
55#-----------------------------------------------------------------------
56# Standard compiler checks.
57# This sets up CC by using the CC env var, or looks for gcc otherwise.
58# This also calls AC_PROG_CC, AC_PROG_INSTALL and a few others to create
59# the basic setup necessary to compile executables.
60#-----------------------------------------------------------------------
61
62TEA_SETUP_COMPILER
63
64#-----------------------------------------------------------------------
65# __CHANGE__
66# Specify the C source files to compile in TEA_ADD_SOURCES,
67# public headers that need to be installed in TEA_ADD_HEADERS,
68# stub library C source files to compile in TEA_ADD_STUB_SOURCES,
69# and runtime Tcl library files in TEA_ADD_TCL_SOURCES.
70# This defines PKG(_STUB)_SOURCES, PKG(_STUB)_OBJECTS, PKG_HEADERS
71# and PKG_TCL_SOURCES.
72#-----------------------------------------------------------------------
73
74TEA_ADD_SOURCES([rp_optimizer.c rp_tcloptions.c rp_optimizer_tcl.c plugin_pgapack.c])
75TEA_ADD_HEADERS([])
76TEA_ADD_INCLUDES([-Ipgapack/pgapack/include])
77TEA_ADD_CFLAGS([-DWL=32])
78TEA_ADD_STUB_SOURCES([])
79# uncomment this and mkindex.tcl line in makefile when you are ready to
80# install tcl rappture library bindings
81#TEA_ADD_TCL_SOURCES([scripts/exec.tcl scripts/value.tcl init.tcl ../../tcl/scripts/library.tcl ../../tcl/scripts/result.tcl])
82TEA_ADD_TCL_SOURCES([])
83TEA_ADD_LIBS([-Lpgapack/pgapack/lib/linux -lpgaO])
84
85#--------------------------------------------------------------------
86# __CHANGE__
87# A few miscellaneous platform-specific items:
88#
89# Define a special symbol for Windows (BUILD_sample in this case) so
90# that we create the export library with the dll.
91#
92# Windows creates a few extra files that need to be cleaned up.
93# You can add more files to clean if your extension creates any extra
94# files.
95#
96# TEA_ADD_* any platform specific compiler/build info here.
97#--------------------------------------------------------------------
98
99if test "${TEA_PLATFORM}" = "windows" ; then
100    AC_DEFINE(BUILD_rappture, 1, [Build windows export dll])
101    CLEANFILES="*.lib *.dll *.exp *.ilk *.pdb vc*.pch"
102    TEA_ADD_LIBS(/LIBPATH:C:/Tcl/lib)
103    #TEA_ADD_SOURCES([win/winFile.c])
104    #TEA_ADD_INCLUDES([-I\"$(${CYGPATH} ${srcdir}/win)\"])
105else
106    CLEANFILES="*core *.o *.so *.a"
107    #TEA_ADD_SOURCES([unix/unixFile.c])
108    TEA_ADD_LIBS([-L${prefix}/lib])
109    if test "${libdir}" != "${prefix}/lib" ; then
110        TEA_ADD_LIBS([-L${libdir}])
111    fi
112fi
113AC_SUBST(CLEANFILES)
114
115#--------------------------------------------------------------------
116# __CHANGE__
117# Choose which headers you need.  Extension authors should try very
118# hard to only rely on the Tcl public header files.  Internal headers
119# contain private data structures and are subject to change without
120# notice.
121# This MUST be called after TEA_LOAD_TCLCONFIG / TEA_LOAD_TKCONFIG
122#--------------------------------------------------------------------
123
124TEA_PUBLIC_TCL_HEADERS
125#TEA_PRIVATE_TCL_HEADERS
126
127#TEA_PUBLIC_TK_HEADERS
128#TEA_PRIVATE_TK_HEADERS
129#TEA_PATH_X
130
131#--------------------------------------------------------------------
132# Check whether --enable-threads or --disable-threads was given.
133# This auto-enables if Tcl was compiled threaded.
134#--------------------------------------------------------------------
135
136TEA_ENABLE_THREADS
137
138#--------------------------------------------------------------------
139# The statement below defines a collection of symbols related to
140# building as a shared library instead of a static library.
141#--------------------------------------------------------------------
142
143TEA_ENABLE_SHARED
144
145#--------------------------------------------------------------------
146# This macro figures out what flags to use with the compiler/linker
147# when building shared/static debug/optimized objects.  This information
148# can be taken from the tclConfig.sh file, but this figures it all out.
149#--------------------------------------------------------------------
150
151TEA_CONFIG_CFLAGS
152
153#--------------------------------------------------------------------
154# Set the default compiler switches based on the --enable-symbols option.
155#--------------------------------------------------------------------
156
157TEA_ENABLE_SYMBOLS
158
159#--------------------------------------------------------------------
160# Everyone should be linking against the Tcl stub library.  If you
161# can't for some reason, remove this definition.  If you aren't using
162# stubs, you also need to modify the SHLIB_LD_LIBS setting below to
163# link against the non-stubbed Tcl library.  Add Tk too if necessary.
164#--------------------------------------------------------------------
165
166AC_DEFINE(USE_TCL_STUBS, 1, [Use Tcl stubs])
167#AC_DEFINE(USE_TK_STUBS, 1, [Use Tk stubs])
168
169#--------------------------------------------------------------------
170# This macro generates a line to use when building a library.  It
171# depends on values set by the TEA_ENABLE_SHARED, TEA_ENABLE_SYMBOLS,
172# and TEA_LOAD_TCLCONFIG macros above.
173#--------------------------------------------------------------------
174
175TEA_MAKE_LIB
176
177#--------------------------------------------------------------------
178# Determine the name of the tclsh and/or wish executables in the
179# Tcl and Tk build directories or the location they were installed
180# into. These paths are used to support running test cases only,
181# the Makefile should not be making use of these paths to generate
182# a pkgIndex.tcl file or anything else at extension build time.
183#--------------------------------------------------------------------
184
185TEA_PROG_TCLSH
186#TEA_PROG_WISH
187
188PATCHLEVEL=`${TCLSH_PROG} tclconfig/patchlevel.tcl`
189EXACT_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}-${PATCHLEVEL}
190NODOT_VERSION=${MAJOR_VERSION}${MINOR_VERSION}
191
192AC_SUBST(PATCHLEVEL)
193AC_SUBST(EXACT_VERSION)
194AC_SUBST(NODOT_VERSION)
195
196#AC_CONFIG_SUBDIRS( [pgapack/gekco/pgapack] )
197#--------------------------------------------------------------------
198# Finally, substitute all of the various values into the Makefile.
199# You may alternatively have a special pkgIndex.tcl.in or other files
200# which require substituting th AC variables in.  Include these here.
201#--------------------------------------------------------------------
202
203AC_OUTPUT([Makefile pkgIndex.tcl])
Note: See TracBrowser for help on using the repository browser.