Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Don't subst TCL_PKGPATH in configure script. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
503f20385a707109633322bcc414baa2 |
| User & Date: | jenglish 2003-12-30 21:26:38.000 |
Context
|
2003-12-30
| ||
| 21:26 | Regenerated. check-in: 87ded2d39b user: jenglish tags: master, trunk | |
| 21:26 | Don't subst TCL_PKGPATH in configure script. check-in: 503f20385a user: jenglish tags: master, trunk | |
|
2003-12-29
| ||
| 00:02 | library/tile.tcl, library/button.tcl: moved bindings for Button, Checkbutton, and Radiobuttons into separate file. check-in: 6817a1ee94 user: jenglish tags: master, trunk | |
Changes
Changes to generic/Makefile.in.
| ︙ | ︙ | |||
10 11 12 13 14 15 16 | ### Environment division. # srcdir = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ | | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ### Environment division. # srcdir = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ TCL_PKGPATH = $(prefix)/lib pkglibdir = $(TCL_PKGPATH)/$(PACKAGE)$(VERSION) DEFS = @DEFS@ LIBS = @LIBS@ INCLUDES = @TCL_INCLUDES@ @TK_INCLUDES@ -I@srcdir@ TCL_STUB_LIB_SPEC = @TCL_STUB_LIB_SPEC@ |
| ︙ | ︙ | |||
88 89 90 91 92 93 94 | ### Build stuff section. # .SUFFIXES: .c .@OBJEXT@ .c.@OBJEXT@: | > | | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | ### Build stuff section. # .SUFFIXES: .c .@OBJEXT@ .c.@OBJEXT@: @echo $< @$(CC) $(CFLAGS) $(DEFS) $(INCLUDES) -c $< -o $@ $(tile_LIB_FILE): $(tile_OBJECTS) -rm -f $(tile_LIB_FILE) $(SHLIB_LD) @SHLIB_LD_OUT@$@ $(SHLIB_LDFLAGS) \ $(tile_OBJECTS) $(tile_LIBRARIES) $(SHLIB_LD_LIBS) \ $(TCL_STUB_LIB_SPEC) $(TK_STUB_LIB_SPEC) $(TK_LIB_SPEC) |
| ︙ | ︙ |
Changes to generic/configure.in.
1 | # | | < < < < | | 1 2 3 4 5 6 7 8 9 10 11 12 | # # $Id: configure.in,v 1.4 2003/10/16 14:45:18 jenglish Exp $ # AC_REVISION($Revision: 1.4 $) AC_INIT(tile.c) AC_CONFIG_AUX_DIR(../tclconfig) # Package identification: # PACKAGE=tile MAJOR_VERSION=0 |
| ︙ | ︙ | |||
67 68 69 70 71 72 73 |
# This is the only bit we need:
#
CFLAGS="${CFLAGS} ${CFLAGS_DEFAULT} \${CFLAGS_WARNING}"
if test "${SHARED_BUILD}" = "1" ; then
CFLAGS="${CFLAGS} \${SHLIB_CFLAGS}"
fi
| < < < < < | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# This is the only bit we need:
#
CFLAGS="${CFLAGS} ${CFLAGS_DEFAULT} \${CFLAGS_WARNING}"
if test "${SHARED_BUILD}" = "1" ; then
CFLAGS="${CFLAGS} \${SHLIB_CFLAGS}"
fi
# Windows-specific stuff:
#
if test "${TEA_PLATFORM}" = "windows" ; then
AC_DEFINE_UNQUOTED(BUILD_${PACKAGE})
CONFIG_CLEANFILES="*.lib *.dll *.exp *.ilk *.pdb vc50.pch"
EXTRA_OBJS='${WIN_OBJS}'
else
|
| ︙ | ︙ |