diff options
author | das <das> | 2007-04-29 02:25:36 (GMT) |
---|---|---|
committer | das <das> | 2007-04-29 02:25:36 (GMT) |
commit | d1da82b0a87023ad752173dda374a0656228af58 (patch) | |
tree | e0eae405a5eb0121715cb86e8df7aa229a7cb2de /unix/configure | |
parent | 1a476a1767db9dd2a37ed65dbe0cd3a24413d4b4 (diff) | |
download | tk-d1da82b0a87023ad752173dda374a0656228af58.zip tk-d1da82b0a87023ad752173dda374a0656228af58.tar.gz tk-d1da82b0a87023ad752173dda374a0656228af58.tar.bz2 |
* unix/Makefile.in (dist): copy license.terms to dist macosx dir.
* unix/configure.in: install license.terms into Tk.framework; fix tk
debug build detection.
* unix/configure: autoconf-2.13
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/configure b/unix/configure index 773a949..aa4dbf2 100755 --- a/unix/configure +++ b/unix/configure @@ -5006,7 +5006,7 @@ EOF LIBS="$LIBS -framework Carbon" CFLAGS="$CFLAGS -fpascal-strings" TK_WINDOWINGSYSTEM=AQUA - if test "${enable_symbols}" = yes; then + if test -n "${enable_symbols}" -a "${enable_symbols}" != no; then cat >> confdefs.h <<\EOF #define TK_MAC_DEBUG 1 EOF @@ -5929,6 +5929,7 @@ EOF EXTRA_INSTALL="install-private-headers html-tk" EXTRA_BUILD_HTML='@ln -fs contents.htm $(HTML_INSTALL_DIR)/TkTOC.html' EXTRA_INSTALL_BINARIES='@echo "Installing Info.plist to $(LIB_INSTALL_DIR)/Resources" && mkdir -p "$(LIB_INSTALL_DIR)/Resources" && $(INSTALL_DATA) Tk-Info.plist "$(LIB_INSTALL_DIR)/Resources/Info.plist"' + EXTRA_INSTALL_BINARIES="$EXTRA_INSTALL_BINARIES"' && echo "Installing license.terms to $(LIB_INSTALL_DIR)/Resources" && $(INSTALL_DATA) "$(TOP_DIR)/license.terms" "$(LIB_INSTALL_DIR)/Resources"' if test $tk_aqua = yes; then EXTRA_INSTALL_BINARIES="$EXTRA_INSTALL_BINARIES"' && echo "Installing ${TK_RSRC_FILE} to $(LIB_INSTALL_DIR)/Resources" && mkdir -p "$(LIB_INSTALL_DIR)/Resources" && $(INSTALL_DATA) "${TK_RSRC_FILE}" "$(LIB_INSTALL_DIR)/Resources"' EXTRA_INSTALL_BINARIES="$EXTRA_INSTALL_BINARIES"' && echo "Installing wish$(VERSION) script to $(INSTALL_ROOT)/'"${bindir}"'" && mkdir -p "$(INSTALL_ROOT)/'"${bindir}"'" && printf > "$(INSTALL_ROOT)/'"${bindir}"'/wish$(VERSION)" "#!/bin/sh\n\"\$$(dirname \$$0)'"`eval d="${bindir}"; echo "$d" | sed -e 's#/[^/][^/]*#/..#g'`"'$(bindir)/Wish\" \"\$$@\"" && chmod +x "$(INSTALL_ROOT)/'"${bindir}"'/wish$(VERSION)"' |