Overview
Comment: | * Makefile.in: removed strncasecmp from default object set. This is only needed on the Mac, and Tcl stubs provides it. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
904004a1535c9cad50abeeea2dbb3b7e |
User & Date: | hobbs on 2002-02-04 22:45:53 |
Other Links: | manifest | tags |
Context
2002-02-04
| ||
22:46 | * configure: regen'ed. * configure.in: updated to 1.5.0 for next release. Changed default openssl location to /usr/local/ssl (this is where openssl 0.9.6c installs by default). Changed to use public Tcl headers (private not needed). check-in: 83ee7c76db user: hobbs tags: trunk | |
22:45 | * Makefile.in: removed strncasecmp from default object set. This is only needed on the Mac, and Tcl stubs provides it. check-in: 904004a153 user: hobbs tags: trunk | |
22:45 | point to updated client/server key files check-in: e7e4ce7d5b user: hobbs tags: trunk | |
Changes
Modified Makefile.in from [80f0295ff0] to [f5d09f008e].
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
...
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
# # Copyright (c) 1999-2000 Ajuba Solutions. # All rights reserved. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # RCS: @(#) $Id: Makefile.in,v 1.17 2001/06/21 23:33:38 hobbs Exp $ lib_BINARIES=$(tls_LIB_FILE) BINARIES=$(lib_BINARIES) #======================================================================== # Enumerate the names of the source files included in this package. # This will be used when a dist target is added to the Makefile. #======================================================================== tls_SOURCES = tls.c tlsIO.c tlsBIO.c \ tlsX509.c fixstrtod.c strncasecmp.c SOURCES = $(tls_SOURCES) tls_SCRIPT_FILES = tls.tcl #======================================================================== # Enumerate the names of the object files included in this package. # These objects are created and linked into the final library. #======================================================================== tls_OBJECTS = tls.$(OBJEXT) tlsIO.$(OBJEXT) tlsBIO.$(OBJEXT) \ tlsX509.$(OBJEXT) fixstrtod.$(OBJEXT) strncasecmp.$(OBJEXT) OBJECTS = $(tls_OBJECTS) #======================================================================== # The substitution of "tls_LIB_FILE" into the variable name below # allows us to refer to the objects for the library without knowing the name # of the library in advance. It also lets us use the "[email protected]" variable in # the rule for building the library, so we can refer to both the list of ................................................................................ TCL_LD_FLAGS = @[email protected] TCL_LIBS = @[email protected] TCL_SHLIB_LD_LIBS = @[email protected] TCL_SRC_DIR = @[email protected] TCL_DBGX = @[email protected] TCL_STUB_LIB_FILE = @[email protected] TCL_STUB_LIB_SPEC = @[email protected] TCL_TOOL_DIR_NATIVE = @[email protected] TCL_TOP_DIR_NATIVE = @[email protected] TCL_UNIX_DIR_NATIVE = @[email protected] TCL_WIN_DIR_NATIVE = @[email protected] INCLUDE_DIR_NATIVE = @[email protected] TCL_BMAP_DIR_NATIVE = @[email protected] TCL_PLATFORM_DIR_NATIVE = @[email protected] TCL_GENERIC_DIR_NATIVE = @[email protected] TCLSH_PROG = @[email protected] AUTOCONF = autoconf LDFLAGS = $(LDFLAGS_DEFAULT) INCLUDES = @[email protected] $(SSL_INCLUDES) |
|
|
>
|
>
<
<
<
<
<
<
<
<
|
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
...
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
# # Copyright (c) 1999-2000 Ajuba Solutions. # All rights reserved. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # RCS: @(#) $Id: Makefile.in,v 1.18 2002/02/04 22:45:53 hobbs Exp $ lib_BINARIES=$(tls_LIB_FILE) BINARIES=$(lib_BINARIES) #======================================================================== # Enumerate the names of the source files included in this package. # This will be used when a dist target is added to the Makefile. #======================================================================== tls_SOURCES = tls.c tlsIO.c tlsBIO.c \ tlsX509.c fixstrtod.c # strncasecmp.c SOURCES = $(tls_SOURCES) tls_SCRIPT_FILES = tls.tcl #======================================================================== # Enumerate the names of the object files included in this package. # These objects are created and linked into the final library. #======================================================================== tls_OBJECTS = tls.$(OBJEXT) tlsIO.$(OBJEXT) tlsBIO.$(OBJEXT) \ tlsX509.$(OBJEXT) fixstrtod.$(OBJEXT) # strncasecmp.$(OBJEXT) OBJECTS = $(tls_OBJECTS) #======================================================================== # The substitution of "tls_LIB_FILE" into the variable name below # allows us to refer to the objects for the library without knowing the name # of the library in advance. It also lets us use the "[email protected]" variable in # the rule for building the library, so we can refer to both the list of ................................................................................ TCL_LD_FLAGS = @[email protected] TCL_LIBS = @[email protected] TCL_SHLIB_LD_LIBS = @[email protected] TCL_SRC_DIR = @[email protected] TCL_DBGX = @[email protected] TCL_STUB_LIB_FILE = @[email protected] TCL_STUB_LIB_SPEC = @[email protected] TCLSH_PROG = @[email protected] AUTOCONF = autoconf LDFLAGS = $(LDFLAGS_DEFAULT) INCLUDES = @[email protected] $(SSL_INCLUDES) |