diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1996-02-07 09:36:53 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1996-02-07 09:36:53 +0000 |
commit | 05a7b898326838b820e37f0c6e19c68d698d8720 (patch) | |
tree | 2d95a52888c9a279bb3b92cf176ff922fb0fab08 /lang/expect/files | |
parent | 394c2c89706a18d5df9d90f529d5d07c2d603c07 (diff) |
The latest change (adding DEPENDS) made expect build and install
tcl/tk even if they are properly found by LIB_DEPENDS. Make it
only extract in that case.
While I'm here, make expect and expectk link with shared tcl/tk libs.
expectk used to be a 1/2 MB binary! (now it's 136KB)
I'd also rather change `-g' to whatever CFLAGS defined in
/etc/make.conf, but the author of expect has an explicit comment in
the Makefile about him not trusting compilers' optimization. Well,
if you say so.
Notes
Notes:
svn path=/head/; revision=2687
Diffstat (limited to 'lang/expect/files')
-rw-r--r-- | lang/expect/files/patch-aa | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/lang/expect/files/patch-aa b/lang/expect/files/patch-aa index 3ae055969612..986efd66dd5c 100644 --- a/lang/expect/files/patch-aa +++ b/lang/expect/files/patch-aa @@ -1,46 +1,3 @@ -diff -cdNr expect-5.18.ORG/Makefile.in expect-5.18/Makefile.in -*** expect-5.18.ORG/Makefile.in Tue Nov 21 23:15:13 1995 ---- Makefile.in Thu Dec 7 23:33:58 1995 -*************** -*** 174,181 **** ---- 174,183 ---- - - INSTALL = @INSTALL@ - #INSTALL_PROGRAM = $(INSTALL) -+ #INSTALL_SCRIPT = $(INSTALL) - #INSTALL_DATA = $(INSTALL) - INSTALL_PROGRAM = @INSTALL_PROGRAM@ -+ INSTALL_SCRIPT = @INSTALL_SCRIPT@ - INSTALL_DATA = @INSTALL_DATA@ - - AR = ar -*************** -*** 190,195 **** ---- 192,198 ---- - "HDEFS=$(HDEFS)" \ - "INSTALL=$(INSTALL)" \ - "INSTALL_DATA=$(INSTALL_DATA)" \ -+ "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \ - "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ - "LDFLAGS=$(LDFLAGS)" \ - "RUNTEST=$(RUNTEST)" \ -*************** -*** 377,383 **** - ${srcdir}/mkinstalldirs $(bindir_arch_indep) $(man1dir) $(SCRIPTDIR) $(EXECSCRIPTDIR) - -for i in $(SCRIPT_LIST) ; do \ - if [ -f $$i ] ; then \ -! $(INSTALL_PROGRAM) $$i $(bindir_arch_indep)/$$i ; \ - rm -f $$i ; \ - else true; fi ; \ - done ---- 380,386 ---- - ${srcdir}/mkinstalldirs $(bindir_arch_indep) $(man1dir) $(SCRIPTDIR) $(EXECSCRIPTDIR) - -for i in $(SCRIPT_LIST) ; do \ - if [ -f $$i ] ; then \ -! $(INSTALL_SCRIPT) $$i $(bindir_arch_indep)/$$i ; \ - rm -f $$i ; \ - else true; fi ; \ - done diff -cdNr expect-5.18.ORG/configure expect-5.18/configure *** expect-5.18.ORG/configure Tue Nov 21 23:38:23 1995 --- configure Thu Dec 7 23:35:09 1995 |