Makefile.in: Allow for PWDCMD to override hardcoded pwd.
* Makefile.in: Allow for PWDCMD to override hardcoded pwd. * config-ml.in: Likewise. * configure: Likewise. * configure.in: Likewise. boehm-gc: * acinclude.m4: Allow for PWDCMD to override hardcoded pwd. * aclocal.m4: Regenerate. * configure: Regenerate. config: * acinclude.m4: Allow for PWDCMD to override hardcoded pwd. contrib: * test_installed: Allow for PWDCMD to override hardcoded pwd. * test_summary: Likewise. gcc: * Makefile.in: Allow for PWDCMD to override hardcoded pwd. * configure.in: Likewise. * fixinc/check.tpl: Likewise. * fixinc/fixinc.dgux: Likewise. * fixinc/fixinc.svr4: Likewise. * fixinc/fixinc.winnt: Likewise. * fixinc/fixincl.sh: Likewise. * fixproto: Likewise. * configure: Regenerate. gcc/ada: * Makefile.adalib: Allow for PWDCMD to override hardcoded pwd. * Makefile.in: Likewise. gcc/f: * Make-lang.in: Allow for PWDCMD to override hardcoded pwd. gcc/java: * Make-lang.in: Allow for PWDCMD to override hardcoded pwd. gcc/po: * exgettext: Allow for PWDCMD to override hardcoded pwd. gcc/treelang: * Make-lang.in: Allow for PWDCMD to override hardcoded pwd. libf2c: * Makefile.in: Allow for PWDCMD to override hardcoded pwd. * aclocal.m4: Likewise. * configure: Regenerate. libjava: * acinclude.m4: Allow for PWDCMD to override hardcoded pwd. * configure.in: Likewise. * aclocal.m4: Regenerate. * configure: Regenerate. libobjc: * aclocal.m4: Allow for PWDCMD to override hardcoded pwd. * configure: Regenerate. libstdc++-v3: * Makefile.am: Allow for PWDCMD to override hardcoded pwd. * acinclude.m4: Likewise. * docs/html/Makefile: Likewise. * aclocal.m4: Regenerate. * configure: Regenerate. * Makefile.in: Regenerate. zlib: * configure.in: Allow for PWDCMD to override hardcoded pwd. * configure: Regenerate. * ChangeLog: Move entries to ChangeLog.gcj. From-SVN: r53523
This commit is contained in:
parent
355e4ec445
commit
1e6347d8b9
@ -1,3 +1,10 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* Makefile.in: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
* config-ml.in: Likewise.
|
||||||
|
* configure: Likewise.
|
||||||
|
* configure.in: Likewise.
|
||||||
|
|
||||||
2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
|
2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
|
||||||
|
|
||||||
* MAINTAINERS: Update my email address.
|
* MAINTAINERS: Update my email address.
|
||||||
|
130
Makefile.in
130
Makefile.in
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Makefile for directory with subdirs to build.
|
# Makefile for directory with subdirs to build.
|
||||||
# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
||||||
# 1999, 2000, 2001 Free Software Foundation
|
# 1999, 2000, 2001, 2002 Free Software Foundation
|
||||||
#
|
#
|
||||||
# This file is free software; you can redistribute it and/or modify
|
# This file is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -65,6 +65,12 @@ GDB_NLM_DEPS =
|
|||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# pwd command to use. Allow user to override default by setting PWDCMD in
|
||||||
|
# the environment to account for automounters. The make variable must not
|
||||||
|
# be called PWDCMD, otherwise the value set here is passed to make
|
||||||
|
# subprocesses and overrides the setting from the user's environment.
|
||||||
|
PWD = $${PWDCMD-pwd}
|
||||||
|
|
||||||
# INSTALL_PROGRAM_ARGS is changed by configure.in to use -x for a
|
# INSTALL_PROGRAM_ARGS is changed by configure.in to use -x for a
|
||||||
# cygwin host.
|
# cygwin host.
|
||||||
INSTALL_PROGRAM_ARGS =
|
INSTALL_PROGRAM_ARGS =
|
||||||
@ -984,8 +990,8 @@ DO_X = \
|
|||||||
.PHONY: $(DO_X)
|
.PHONY: $(DO_X)
|
||||||
$(DO_X):
|
$(DO_X):
|
||||||
@target=`echo $@ | sed -e 's/^do-//'`; \
|
@target=`echo $@ | sed -e 's/^do-//'`; \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
for i in $(SUBDIRS) -dummy-; do \
|
for i in $(SUBDIRS) -dummy-; do \
|
||||||
if [ -f ./$$i/Makefile ]; then \
|
if [ -f ./$$i/Makefile ]; then \
|
||||||
@ -1011,8 +1017,8 @@ $(DO_X):
|
|||||||
else true; fi; \
|
else true; fi; \
|
||||||
done
|
done
|
||||||
@target=`echo $@ | sed -e 's/^do-//'`; \
|
@target=`echo $@ | sed -e 's/^do-//'`; \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
for i in $(TARGET_CONFIGDIRS) -dummy-; do \
|
for i in $(TARGET_CONFIGDIRS) -dummy-; do \
|
||||||
if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \
|
if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \
|
||||||
@ -1042,7 +1048,7 @@ dvi: do-dvi
|
|||||||
do-info: all-texinfo
|
do-info: all-texinfo
|
||||||
|
|
||||||
install-info: do-install-info dir.info
|
install-info: do-install-info dir.info
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
if [ -f dir.info ] ; then \
|
if [ -f dir.info ] ; then \
|
||||||
$(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
|
$(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
|
||||||
else true ; fi
|
else true ; fi
|
||||||
@ -1077,8 +1083,8 @@ realclean: maintainer-clean
|
|||||||
$(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc:
|
$(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc:
|
||||||
@dir=`echo $@ | sed -e 's/clean-//'`; \
|
@dir=`echo $@ | sed -e 's/clean-//'`; \
|
||||||
if [ -f ./$${dir}/Makefile ] ; then \
|
if [ -f ./$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) clean); \
|
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) clean); \
|
||||||
else \
|
else \
|
||||||
@ -1090,8 +1096,8 @@ $(CLEAN_TARGET_MODULES):
|
|||||||
@dir=`echo $@ | sed -e 's/clean-target-//'`; \
|
@dir=`echo $@ | sed -e 's/clean-target-//'`; \
|
||||||
rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
|
rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
|
||||||
if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
|
if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) clean); \
|
(cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) clean); \
|
||||||
else \
|
else \
|
||||||
@ -1164,7 +1170,7 @@ vault-install:
|
|||||||
.PHONY: install.all
|
.PHONY: install.all
|
||||||
install.all: install-no-fixedincludes
|
install.all: install-no-fixedincludes
|
||||||
@if [ -f ./gcc/Makefile ] ; then \
|
@if [ -f ./gcc/Makefile ] ; then \
|
||||||
r=`pwd` ; export r ; \
|
r=`${PWD}` ; export r ; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd ./gcc; \
|
(cd ./gcc; \
|
||||||
$(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
|
$(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
|
||||||
@ -1199,8 +1205,8 @@ gcc-no-fixedincludes:
|
|||||||
cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
|
cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
|
||||||
touch gcc/stmp-fixinc gcc/include/fixed; \
|
touch gcc/stmp-fixinc gcc/include/fixed; \
|
||||||
rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
|
rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd` ; export s; \
|
s=`cd $(srcdir); ${PWD}` ; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd ./gcc; \
|
(cd ./gcc; \
|
||||||
$(MAKE) $(GCC_FLAGS_TO_PASS) install); \
|
$(MAKE) $(GCC_FLAGS_TO_PASS) install); \
|
||||||
@ -1214,8 +1220,8 @@ gcc-no-fixedincludes:
|
|||||||
$(ALL_BUILD_MODULES):
|
$(ALL_BUILD_MODULES):
|
||||||
dir=`echo $@ | sed -e 's/all-build-//'`; \
|
dir=`echo $@ | sed -e 's/all-build-//'`; \
|
||||||
if [ -f ./$${dir}/Makefile ] ; then \
|
if [ -f ./$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
(cd $(BUILD_SUBDIR)/$${dir} && $(MAKE) all); \
|
(cd $(BUILD_SUBDIR)/$${dir} && $(MAKE) all); \
|
||||||
else \
|
else \
|
||||||
true; \
|
true; \
|
||||||
@ -1233,8 +1239,8 @@ $(CONFIGURE_BUILD_MODULES):
|
|||||||
elif echo " $(BUILD_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
|
elif echo " $(BUILD_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
|
||||||
if [ -d $(srcdir)/$${dir} ]; then \
|
if [ -d $(srcdir)/$${dir} ]; then \
|
||||||
[ -d $(BUILD_SUBDIR)/$${dir} ] || mkdir $(BUILD_SUBDIR)/$${dir};\
|
[ -d $(BUILD_SUBDIR)/$${dir} ] || mkdir $(BUILD_SUBDIR)/$${dir};\
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
AR="$(AR_FOR_BUILD)"; export AR; \
|
AR="$(AR_FOR_BUILD)"; export AR; \
|
||||||
AS="$(AS_FOR_BUILD)"; export AS; \
|
AS="$(AS_FOR_BUILD)"; export AS; \
|
||||||
CC="$(CC_FOR_BUILD)"; export CC; \
|
CC="$(CC_FOR_BUILD)"; export CC; \
|
||||||
@ -1318,8 +1324,8 @@ $(CONFIGURE_BUILD_MODULES):
|
|||||||
$(ALL_MODULES) all-gui all-libproc:
|
$(ALL_MODULES) all-gui all-libproc:
|
||||||
@dir=`echo $@ | sed -e 's/all-//'`; \
|
@dir=`echo $@ | sed -e 's/all-//'`; \
|
||||||
if [ -f ./$${dir}/Makefile ] ; then \
|
if [ -f ./$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
|
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
|
||||||
else \
|
else \
|
||||||
@ -1335,8 +1341,8 @@ $(NATIVE_CHECK_MODULES):
|
|||||||
@if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
|
@if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
|
||||||
dir=`echo $@ | sed -e 's/check-//'`; \
|
dir=`echo $@ | sed -e 's/check-//'`; \
|
||||||
if [ -f ./$${dir}/Makefile ] ; then \
|
if [ -f ./$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
|
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
|
||||||
else \
|
else \
|
||||||
@ -1347,8 +1353,8 @@ $(NATIVE_CHECK_MODULES):
|
|||||||
$(CROSS_CHECK_MODULES):
|
$(CROSS_CHECK_MODULES):
|
||||||
@dir=`echo $@ | sed -e 's/check-//'`; \
|
@dir=`echo $@ | sed -e 's/check-//'`; \
|
||||||
if [ -f ./$${dir}/Makefile ] ; then \
|
if [ -f ./$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
|
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
|
||||||
else \
|
else \
|
||||||
@ -1361,8 +1367,8 @@ $(CROSS_CHECK_MODULES):
|
|||||||
$(INSTALL_MODULES): installdirs
|
$(INSTALL_MODULES): installdirs
|
||||||
@dir=`echo $@ | sed -e 's/install-//'`; \
|
@dir=`echo $@ | sed -e 's/install-//'`; \
|
||||||
if [ -f ./$${dir}/Makefile ] ; then \
|
if [ -f ./$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
|
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
|
||||||
else \
|
else \
|
||||||
@ -1375,7 +1381,7 @@ $(INSTALL_MODULES): installdirs
|
|||||||
$(CONFIGURE_TARGET_MODULES):
|
$(CONFIGURE_TARGET_MODULES):
|
||||||
@dir=`echo $@ | sed -e 's/configure-target-//'`; \
|
@dir=`echo $@ | sed -e 's/configure-target-//'`; \
|
||||||
if [ -d $(TARGET_SUBDIR)/$${dir} ]; then \
|
if [ -d $(TARGET_SUBDIR)/$${dir} ]; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/$${dir}/tmpmulti.out 2> /dev/null; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/$${dir}/tmpmulti.out 2> /dev/null; \
|
||||||
if [ -s $(TARGET_SUBDIR)/$${dir}/tmpmulti.out ]; then \
|
if [ -s $(TARGET_SUBDIR)/$${dir}/tmpmulti.out ]; then \
|
||||||
if [ -f $(TARGET_SUBDIR)/$${dir}/multilib.out ]; then \
|
if [ -f $(TARGET_SUBDIR)/$${dir}/multilib.out ]; then \
|
||||||
@ -1399,8 +1405,8 @@ $(CONFIGURE_TARGET_MODULES):
|
|||||||
elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
|
elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
|
||||||
if [ -d $(srcdir)/$${dir} ]; then \
|
if [ -d $(srcdir)/$${dir} ]; then \
|
||||||
[ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\
|
[ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
AR="$(AR_FOR_TARGET)"; export AR; \
|
AR="$(AR_FOR_TARGET)"; export AR; \
|
||||||
AS="$(AS_FOR_TARGET)"; export AS; \
|
AS="$(AS_FOR_TARGET)"; export AS; \
|
||||||
@ -1481,8 +1487,8 @@ $(CONFIGURE_TARGET_MODULES):
|
|||||||
$(ALL_TARGET_MODULES):
|
$(ALL_TARGET_MODULES):
|
||||||
@dir=`echo $@ | sed -e 's/all-target-//'`; \
|
@dir=`echo $@ | sed -e 's/all-target-//'`; \
|
||||||
if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
|
if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $(TARGET_SUBDIR)/$${dir}; \
|
(cd $(TARGET_SUBDIR)/$${dir}; \
|
||||||
$(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
|
||||||
@ -1496,8 +1502,8 @@ $(ALL_TARGET_MODULES):
|
|||||||
$(CHECK_TARGET_MODULES):
|
$(CHECK_TARGET_MODULES):
|
||||||
@dir=`echo $@ | sed -e 's/check-target-//'`; \
|
@dir=`echo $@ | sed -e 's/check-target-//'`; \
|
||||||
if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
|
if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $(TARGET_SUBDIR)/$${dir}; \
|
(cd $(TARGET_SUBDIR)/$${dir}; \
|
||||||
$(MAKE) $(TARGET_FLAGS_TO_PASS) check);\
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) check);\
|
||||||
@ -1512,8 +1518,8 @@ $(CHECK_TARGET_MODULES):
|
|||||||
$(INSTALL_TARGET_MODULES): installdirs
|
$(INSTALL_TARGET_MODULES): installdirs
|
||||||
@dir=`echo $@ | sed -e 's/install-target-//'`; \
|
@dir=`echo $@ | sed -e 's/install-target-//'`; \
|
||||||
if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
|
if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $(TARGET_SUBDIR)/$${dir}; \
|
(cd $(TARGET_SUBDIR)/$${dir}; \
|
||||||
$(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
|
||||||
@ -1527,8 +1533,8 @@ $(INSTALL_TARGET_MODULES): installdirs
|
|||||||
$(ALL_X11_MODULES):
|
$(ALL_X11_MODULES):
|
||||||
@dir=`echo $@ | sed -e 's/all-//'`; \
|
@dir=`echo $@ | sed -e 's/all-//'`; \
|
||||||
if [ -f ./$${dir}/Makefile ] ; then \
|
if [ -f ./$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $${dir}; \
|
(cd $${dir}; \
|
||||||
$(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
|
$(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
|
||||||
@ -1542,8 +1548,8 @@ $(ALL_X11_MODULES):
|
|||||||
$(CHECK_X11_MODULES):
|
$(CHECK_X11_MODULES):
|
||||||
@dir=`echo $@ | sed -e 's/check-//'`; \
|
@dir=`echo $@ | sed -e 's/check-//'`; \
|
||||||
if [ -f ./$${dir}/Makefile ] ; then \
|
if [ -f ./$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $${dir}; \
|
(cd $${dir}; \
|
||||||
$(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
|
$(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
|
||||||
@ -1557,8 +1563,8 @@ $(CHECK_X11_MODULES):
|
|||||||
$(INSTALL_X11_MODULES): installdirs
|
$(INSTALL_X11_MODULES): installdirs
|
||||||
@dir=`echo $@ | sed -e 's/install-//'`; \
|
@dir=`echo $@ | sed -e 's/install-//'`; \
|
||||||
if [ -f ./$${dir}/Makefile ] ; then \
|
if [ -f ./$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $${dir}; \
|
(cd $${dir}; \
|
||||||
$(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
|
$(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
|
||||||
@ -1570,8 +1576,8 @@ $(INSTALL_X11_MODULES): installdirs
|
|||||||
.PHONY: all-gcc
|
.PHONY: all-gcc
|
||||||
all-gcc:
|
all-gcc:
|
||||||
@if [ -f ./gcc/Makefile ] ; then \
|
@if [ -f ./gcc/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
|
(cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
|
||||||
else \
|
else \
|
||||||
@ -1590,13 +1596,13 @@ all-gcc:
|
|||||||
#
|
#
|
||||||
.PHONY: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean
|
.PHONY: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean
|
||||||
bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean: all-bootstrap
|
bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean: all-bootstrap
|
||||||
@r=`pwd`; export r; \
|
@r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
echo "Bootstrapping the compiler"; \
|
echo "Bootstrapping the compiler"; \
|
||||||
cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) $@
|
cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) $@
|
||||||
@r=`pwd`; export r; \
|
@r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
case "$@" in \
|
case "$@" in \
|
||||||
*bootstrap4-lean ) \
|
*bootstrap4-lean ) \
|
||||||
msg="Comparing stage3 and stage4 of the compiler"; \
|
msg="Comparing stage3 and stage4 of the compiler"; \
|
||||||
@ -1611,21 +1617,21 @@ bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean b
|
|||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
echo "$$msg"; \
|
echo "$$msg"; \
|
||||||
cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) $$compare
|
cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) $$compare
|
||||||
@r=`pwd`; export r; \
|
@r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd` ; export s; \
|
s=`cd $(srcdir); ${PWD}` ; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
echo "Building runtime libraries"; \
|
echo "Building runtime libraries"; \
|
||||||
$(MAKE) $(BASE_FLAGS_TO_PASS) $(RECURSE_FLAGS) all
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(RECURSE_FLAGS) all
|
||||||
|
|
||||||
.PHONY: cross
|
.PHONY: cross
|
||||||
cross: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
|
cross: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
|
||||||
@r=`pwd`; export r; \
|
@r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
echo "Building the C and C++ compiler"; \
|
echo "Building the C and C++ compiler"; \
|
||||||
cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++"
|
cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++"
|
||||||
@r=`pwd`; export r; \
|
@r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd` ; export s; \
|
s=`cd $(srcdir); ${PWD}` ; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
echo "Building runtime libraries"; \
|
echo "Building runtime libraries"; \
|
||||||
$(MAKE) $(BASE_FLAGS_TO_PASS) $(RECURSE_FLAGS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(RECURSE_FLAGS) \
|
||||||
@ -1634,8 +1640,8 @@ cross: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
|
|||||||
.PHONY: check-gcc
|
.PHONY: check-gcc
|
||||||
check-gcc:
|
check-gcc:
|
||||||
@if [ -f ./gcc/Makefile ] ; then \
|
@if [ -f ./gcc/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
|
(cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
|
||||||
else \
|
else \
|
||||||
@ -1645,8 +1651,8 @@ check-gcc:
|
|||||||
.PHONY: check-c++
|
.PHONY: check-c++
|
||||||
check-c++:
|
check-c++:
|
||||||
@if [ -f ./gcc/Makefile ] ; then \
|
@if [ -f ./gcc/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check-c++); \
|
(cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check-c++); \
|
||||||
$(MAKE) check-target-libstdc++-v3; \
|
$(MAKE) check-target-libstdc++-v3; \
|
||||||
@ -1657,8 +1663,8 @@ check-c++:
|
|||||||
.PHONY: install-gcc
|
.PHONY: install-gcc
|
||||||
install-gcc:
|
install-gcc:
|
||||||
@if [ -f ./gcc/Makefile ] ; then \
|
@if [ -f ./gcc/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
|
(cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
|
||||||
else \
|
else \
|
||||||
@ -1668,8 +1674,8 @@ install-gcc:
|
|||||||
.PHONY: install-gcc-cross
|
.PHONY: install-gcc-cross
|
||||||
install-gcc-cross:
|
install-gcc-cross:
|
||||||
@if [ -f ./gcc/Makefile ] ; then \
|
@if [ -f ./gcc/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++" install); \
|
(cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++" install); \
|
||||||
else \
|
else \
|
||||||
@ -1682,8 +1688,8 @@ install-gcc-cross:
|
|||||||
install-dosrel: installdirs info
|
install-dosrel: installdirs info
|
||||||
@dir=`echo $@ | sed -e 's/install-//'`; \
|
@dir=`echo $@ | sed -e 's/install-//'`; \
|
||||||
if [ -f ./$${dir}/Makefile ] ; then \
|
if [ -f ./$${dir}/Makefile ] ; then \
|
||||||
r=`pwd`; export r; \
|
r=`${PWD}`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
|
(cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
|
||||||
else \
|
else \
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* acinclude.m4: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
* aclocal.m4: Regenerate.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2002-05-08 Alexandre Oliva <aoliva@redhat.com>
|
2002-05-08 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
* configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
|
* configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (c) 1999-2001 by Red Hat, Inc. All rights reserved.
|
# Copyright (c) 1999-2001, 2002 by Red Hat, Inc. All rights reserved.
|
||||||
#
|
#
|
||||||
# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
|
# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
|
||||||
# OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
|
# OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
|
||||||
@ -52,7 +52,7 @@ fi
|
|||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
|
|
||||||
# This works around an automake problem.
|
# This works around an automake problem.
|
||||||
mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"
|
mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
|
||||||
AC_SUBST(mkinstalldirs)
|
AC_SUBST(mkinstalldirs)
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE(gc, 6.1a1, no-define)
|
AM_INIT_AUTOMAKE(gc, 6.1a1, no-define)
|
||||||
|
4
boehm-gc/aclocal.m4
vendored
4
boehm-gc/aclocal.m4
vendored
@ -10,7 +10,7 @@ dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|||||||
dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
dnl PARTICULAR PURPOSE.
|
dnl PARTICULAR PURPOSE.
|
||||||
|
|
||||||
# Copyright (c) 1999-2001 by Red Hat, Inc. All rights reserved.
|
# Copyright (c) 1999-2001, 2002 by Red Hat, Inc. All rights reserved.
|
||||||
#
|
#
|
||||||
# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
|
# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
|
||||||
# OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
|
# OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
|
||||||
@ -64,7 +64,7 @@ fi
|
|||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
|
|
||||||
# This works around an automake problem.
|
# This works around an automake problem.
|
||||||
mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"
|
mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
|
||||||
AC_SUBST(mkinstalldirs)
|
AC_SUBST(mkinstalldirs)
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE(gc, 6.0, no-define)
|
AM_INIT_AUTOMAKE(gc, 6.0, no-define)
|
||||||
|
2
boehm-gc/configure
vendored
2
boehm-gc/configure
vendored
@ -966,7 +966,7 @@ test "$host_alias" != "$target_alias" &&
|
|||||||
|
|
||||||
|
|
||||||
# This works around an automake problem.
|
# This works around an automake problem.
|
||||||
mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"
|
mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
16
config-ml.in
16
config-ml.in
@ -527,14 +527,16 @@ multidirs=`echo "$multidirs" | sed -e 's/^[ ][ ]*//' -e 's/[ ][ ]*$//' -e 's/[ ]
|
|||||||
|
|
||||||
cat > Multi.tem <<\EOF
|
cat > Multi.tem <<\EOF
|
||||||
|
|
||||||
|
PWD=$${PWDCMD-pwd}
|
||||||
|
|
||||||
# FIXME: There should be an @-sign in front of the `if'.
|
# FIXME: There should be an @-sign in front of the `if'.
|
||||||
# Leave out until this is tested a bit more.
|
# Leave out until this is tested a bit more.
|
||||||
multi-do:
|
multi-do:
|
||||||
if [ -z "$(MULTIDIRS)" ]; then \
|
if [ -z "$(MULTIDIRS)" ]; then \
|
||||||
true; \
|
true; \
|
||||||
else \
|
else \
|
||||||
rootpre=`pwd`/; export rootpre; \
|
rootpre=`${PWD}`/; export rootpre; \
|
||||||
srcrootpre=`cd $(srcdir); pwd`/; export srcrootpre; \
|
srcrootpre=`cd $(srcdir); ${PWD}`/; export srcrootpre; \
|
||||||
lib=`echo $${rootpre} | sed -e 's,^.*/\([^/][^/]*\)/$$,\1,'`; \
|
lib=`echo $${rootpre} | sed -e 's,^.*/\([^/][^/]*\)/$$,\1,'`; \
|
||||||
compiler="$(CC)"; \
|
compiler="$(CC)"; \
|
||||||
for i in `$${compiler} --print-multi-lib 2>/dev/null`; do \
|
for i in `$${compiler} --print-multi-lib 2>/dev/null`; do \
|
||||||
@ -570,7 +572,7 @@ multi-clean:
|
|||||||
if [ -z "$(MULTIDIRS)" ]; then \
|
if [ -z "$(MULTIDIRS)" ]; then \
|
||||||
true; \
|
true; \
|
||||||
else \
|
else \
|
||||||
lib=`pwd | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
|
lib=`${PWD} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
|
||||||
for dir in Makefile $(MULTIDIRS); do \
|
for dir in Makefile $(MULTIDIRS); do \
|
||||||
if [ -f ../$${dir}/$${lib}/Makefile ]; then \
|
if [ -f ../$${dir}/$${lib}/Makefile ]; then \
|
||||||
if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) $(DO)); \
|
if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) $(DO)); \
|
||||||
@ -677,10 +679,10 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
|
|||||||
|
|
||||||
if [ "${ml_verbose}" = --verbose ]; then
|
if [ "${ml_verbose}" = --verbose ]; then
|
||||||
echo "Running configure in multilib subdirs ${multidirs}"
|
echo "Running configure in multilib subdirs ${multidirs}"
|
||||||
echo "pwd: `pwd`"
|
echo "pwd: `${PWDCMD-pwd}`"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ml_origdir=`pwd`
|
ml_origdir=`${PWDCMD-pwd}`
|
||||||
ml_libdir=`echo $ml_origdir | sed -e 's,^.*/,,'`
|
ml_libdir=`echo $ml_origdir | sed -e 's,^.*/,,'`
|
||||||
# cd to top-level-build-dir/${with_target_subdir}
|
# cd to top-level-build-dir/${with_target_subdir}
|
||||||
cd ..
|
cd ..
|
||||||
@ -689,7 +691,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
|
|||||||
|
|
||||||
if [ "${ml_verbose}" = --verbose ]; then
|
if [ "${ml_verbose}" = --verbose ]; then
|
||||||
echo "Running configure in multilib subdir ${ml_dir}"
|
echo "Running configure in multilib subdir ${ml_dir}"
|
||||||
echo "pwd: `pwd`"
|
echo "pwd: `${PWDCMD-pwd}`"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d ${ml_dir} ]; then true; else
|
if [ -d ${ml_dir} ]; then true; else
|
||||||
@ -717,7 +719,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
|
|||||||
|
|
||||||
case ${srcdir} in
|
case ${srcdir} in
|
||||||
".")
|
".")
|
||||||
echo Building symlink tree in `pwd`/${ml_dir}/${ml_libdir}
|
echo Building symlink tree in `${PWDCMD-pwd}`/${ml_dir}/${ml_libdir}
|
||||||
if [ "${with_target_subdir}" != "." ]; then
|
if [ "${with_target_subdir}" != "." ]; then
|
||||||
ml_unsubdir="../"
|
ml_unsubdir="../"
|
||||||
else
|
else
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* acinclude.m4: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
|
||||||
2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
|
2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
|
||||||
|
|
||||||
* mh-apollo68: remove unused HDEFINES setting.
|
* mh-apollo68: remove unused HDEFINES setting.
|
||||||
|
@ -206,7 +206,7 @@ dnl Look for the header file
|
|||||||
AC_CACHE_VAL(ac_cv_c_bfdh,[
|
AC_CACHE_VAL(ac_cv_c_bfdh,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/bfd/bfd.h" ; then
|
if test -f "$i/bfd/bfd.h" ; then
|
||||||
ac_cv_c_bfdh=`(cd $i/bfd; pwd)`
|
ac_cv_c_bfdh=`(cd $i/bfd; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -224,7 +224,7 @@ AC_MSG_CHECKING(for the bfd library in the build tree)
|
|||||||
AC_CACHE_VAL(ac_cv_c_bfdlib,[
|
AC_CACHE_VAL(ac_cv_c_bfdlib,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/bfd/Makefile" ; then
|
if test -f "$i/bfd/Makefile" ; then
|
||||||
ac_cv_c_bfdlib=`(cd $i/bfd; pwd)`
|
ac_cv_c_bfdlib=`(cd $i/bfd; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -247,7 +247,7 @@ dirlist=".. ../../ ../../../ ../../../../ ../../../../../ ../../../../../../ ../
|
|||||||
AC_CACHE_VAL(ac_cv_c_liberty,[
|
AC_CACHE_VAL(ac_cv_c_liberty,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/libiberty/Makefile" ; then
|
if test -f "$i/libiberty/Makefile" ; then
|
||||||
ac_cv_c_liberty=`(cd $i/libiberty; pwd)`
|
ac_cv_c_liberty=`(cd $i/libiberty; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -268,7 +268,7 @@ dirlist=".. ../../ ../../../ ../../../../ ../../../../../ ../../../../../../ ../
|
|||||||
AC_CACHE_VAL(ac_cv_c_opc,[
|
AC_CACHE_VAL(ac_cv_c_opc,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/opcodes/Makefile" ; then
|
if test -f "$i/opcodes/Makefile" ; then
|
||||||
ac_cv_c_opc=`(cd $i/opcodes; pwd)`
|
ac_cv_c_opc=`(cd $i/opcodes; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -290,7 +290,7 @@ dirlist=".. ../../ ../../../ ../../../../ ../../../../../ ../../../../../../ ../
|
|||||||
AC_CACHE_VAL(ac_cv_c_dejagnu,[
|
AC_CACHE_VAL(ac_cv_c_dejagnu,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$srcdir/$i/ecc/ecc/infra/testlib/current/include/dejagnu.h" ; then
|
if test -f "$srcdir/$i/ecc/ecc/infra/testlib/current/include/dejagnu.h" ; then
|
||||||
ac_cv_c_dejagnu=`(cd $srcdir/$i/ecc/ecc/infra/testlib/current/include; pwd)`
|
ac_cv_c_dejagnu=`(cd $srcdir/$i/ecc/ecc/infra/testlib/current/include; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -303,7 +303,7 @@ fi
|
|||||||
AC_CACHE_VAL(ac_cv_c_dejagnulib,[
|
AC_CACHE_VAL(ac_cv_c_dejagnulib,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$srcdir/$i/infra/testlib/current/lib/hostutil.exp" ; then
|
if test -f "$srcdir/$i/infra/testlib/current/lib/hostutil.exp" ; then
|
||||||
ac_cv_c_dejagnulib=`(cd $srcdir/$i/infra/testlib/current/lib; pwd)`
|
ac_cv_c_dejagnulib=`(cd $srcdir/$i/infra/testlib/current/lib; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -316,7 +316,7 @@ AC_MSG_CHECKING(for runtest in the source tree)
|
|||||||
AC_CACHE_VAL(ac_cv_c_runtest,[
|
AC_CACHE_VAL(ac_cv_c_runtest,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$srcdir/$i/dejagnu/runtest" ; then
|
if test -f "$srcdir/$i/dejagnu/runtest" ; then
|
||||||
ac_cv_c_runtest=`(cd $srcdir/$i/dejagnu; pwd)`
|
ac_cv_c_runtest=`(cd $srcdir/$i/dejagnu; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -342,7 +342,7 @@ dnl Look for the header file
|
|||||||
AC_CACHE_VAL(ac_cv_c_intlh,[
|
AC_CACHE_VAL(ac_cv_c_intlh,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/intl/libintl.h" ; then
|
if test -f "$i/intl/libintl.h" ; then
|
||||||
ac_cv_c_intlh=`(cd $i/intl; pwd)`
|
ac_cv_c_intlh=`(cd $i/intl; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -360,7 +360,7 @@ AC_MSG_CHECKING(for the libintl library in the build tree)
|
|||||||
AC_CACHE_VAL(ac_cv_c_intllib,[
|
AC_CACHE_VAL(ac_cv_c_intllib,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/intl/Makefile" ; then
|
if test -f "$i/intl/Makefile" ; then
|
||||||
ac_cv_c_intllib=`(cd $i/intl; pwd)`
|
ac_cv_c_intllib=`(cd $i/intl; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -388,7 +388,7 @@ AC_MSG_CHECKING(for the simulator header file)
|
|||||||
AC_CACHE_VAL(ac_cv_c_simh,[
|
AC_CACHE_VAL(ac_cv_c_simh,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "${srcdir}/$i/include/remote-sim.h" ; then
|
if test -f "${srcdir}/$i/include/remote-sim.h" ; then
|
||||||
ac_cv_c_simh=`(cd ${srcdir}/$i/include; pwd)`
|
ac_cv_c_simh=`(cd ${srcdir}/$i/include; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -420,7 +420,7 @@ AC_MSG_CHECKING(for the simulator library)
|
|||||||
AC_CACHE_VAL(ac_cv_c_simlib,[
|
AC_CACHE_VAL(ac_cv_c_simlib,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/sim/$target_dir/Makefile" ; then
|
if test -f "$i/sim/$target_dir/Makefile" ; then
|
||||||
ac_cv_c_simlib=`(cd $i/sim/$target_dir; pwd)`
|
ac_cv_c_simlib=`(cd $i/sim/$target_dir; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -463,7 +463,7 @@ dirlist=".. ../../ ../../../ ../../../../ ../../../../../ ../../../../../../ ../
|
|||||||
AC_CACHE_VAL(ac_cv_c_libib,[
|
AC_CACHE_VAL(ac_cv_c_libib,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/libiberty/Makefile" ; then
|
if test -f "$i/libiberty/Makefile" ; then
|
||||||
ac_cv_c_libib=`(cd $i/libiberty/; pwd)`
|
ac_cv_c_libib=`(cd $i/libiberty/; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -483,7 +483,7 @@ dirlist=".. ../../ ../../../ ../../../../ ../../../../../ ../../../../../../ ../
|
|||||||
AC_CACHE_VAL(ac_cv_c_devoh,[
|
AC_CACHE_VAL(ac_cv_c_devoh,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "${srcdir}/$i/include/remote-sim.h" ; then
|
if test -f "${srcdir}/$i/include/remote-sim.h" ; then
|
||||||
ac_cv_c_devoh=`(cd ${srcdir}/$i/include; pwd)`
|
ac_cv_c_devoh=`(cd ${srcdir}/$i/include; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -506,7 +506,7 @@ IDELIB=
|
|||||||
AC_CACHE_VAL(ac_cv_c_ideh,[
|
AC_CACHE_VAL(ac_cv_c_ideh,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "${srcdir}/$i/libide/src/event.h" ; then
|
if test -f "${srcdir}/$i/libide/src/event.h" ; then
|
||||||
ac_cv_c_ideh=`(cd ${srcdir}/$i/libide/src; pwd)`;
|
ac_cv_c_ideh=`(cd ${srcdir}/$i/libide/src; ${PWDCMD-pwd})`;
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -521,7 +521,7 @@ AC_MSG_CHECKING(for LIBIDE TCL headers in the source tree)
|
|||||||
AC_CACHE_VAL(ac_cv_c_idetclh,[
|
AC_CACHE_VAL(ac_cv_c_idetclh,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "${srcdir}/$i/libidetcl/src/idetcl.h" ; then
|
if test -f "${srcdir}/$i/libidetcl/src/idetcl.h" ; then
|
||||||
ac_cv_c_idetclh=`(cd ${srcdir}/$i/libidetcl/src; pwd)`;
|
ac_cv_c_idetclh=`(cd ${srcdir}/$i/libidetcl/src; ${PWDCMD-pwd})`;
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -536,7 +536,7 @@ AC_MSG_CHECKING(for IDE headers in the build tree)
|
|||||||
AC_CACHE_VAL(ac_cv_c_ideh2,[
|
AC_CACHE_VAL(ac_cv_c_ideh2,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/libide/src/Makefile" ; then
|
if test -f "$i/libide/src/Makefile" ; then
|
||||||
ac_cv_c_ideh2=`(cd $i/libide/src; pwd)`;
|
ac_cv_c_ideh2=`(cd $i/libide/src; ${PWDCMD-pwd})`;
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -553,7 +553,7 @@ AC_CACHE_VAL(ac_cv_c_idelib,[
|
|||||||
if test x"${ac_cv_c_idelib}" = x ; then
|
if test x"${ac_cv_c_idelib}" = x ; then
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/libide/src/Makefile" ; then
|
if test -f "$i/libide/src/Makefile" ; then
|
||||||
ac_cv_c_idelib=`(cd $i/libide/src; pwd)`
|
ac_cv_c_idelib=`(cd $i/libide/src; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -571,7 +571,7 @@ AC_CACHE_VAL(ac_cv_c_idetcllib,[
|
|||||||
if test x"${ac_cv_c_idetcllib}" = x ; then
|
if test x"${ac_cv_c_idetcllib}" = x ; then
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/libidetcl/src/Makefile" ; then
|
if test -f "$i/libidetcl/src/Makefile" ; then
|
||||||
ac_cv_c_idetcllib=`(cd $i/libidetcl/src; pwd)`
|
ac_cv_c_idetcllib=`(cd $i/libidetcl/src; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -597,7 +597,7 @@ dirlist=".. ../../ ../../../ ../../../../ ../../../../../ ../../../../../../ ../
|
|||||||
AC_CACHE_VAL(ac_cv_c_iluh,[
|
AC_CACHE_VAL(ac_cv_c_iluh,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "${srcdir}/$i/ilu/runtime/kernel/method.h" ; then
|
if test -f "${srcdir}/$i/ilu/runtime/kernel/method.h" ; then
|
||||||
ac_cv_c_iluh=`(cd ${srcdir}/$i/ilu/runtime/kernel; pwd)`
|
ac_cv_c_iluh=`(cd ${srcdir}/$i/ilu/runtime/kernel; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -613,7 +613,7 @@ dirlist=".. ../../ ../../../ ../../../../ ../../../../../ ../../../../../../ ../
|
|||||||
AC_CACHE_VAL(ac_cv_c_iluh5,[
|
AC_CACHE_VAL(ac_cv_c_iluh5,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/ilu/runtime/kernel/iluconf.h" ; then
|
if test -f "$i/ilu/runtime/kernel/iluconf.h" ; then
|
||||||
ac_cv_c_iluh5=`(cd $i/ilu/runtime/kernel; pwd)`
|
ac_cv_c_iluh5=`(cd $i/ilu/runtime/kernel; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -628,7 +628,7 @@ AC_MSG_CHECKING(for ILU C++ headers in the source tree)
|
|||||||
AC_CACHE_VAL(ac_cv_c_iluh2,[
|
AC_CACHE_VAL(ac_cv_c_iluh2,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "${srcdir}/$i/ilu/stubbers/cpp/resource.h" ; then
|
if test -f "${srcdir}/$i/ilu/stubbers/cpp/resource.h" ; then
|
||||||
ac_cv_c_iluh2=`(cd ${srcdir}/$i/ilu/stubbers/cpp; pwd)`
|
ac_cv_c_iluh2=`(cd ${srcdir}/$i/ilu/stubbers/cpp; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -643,7 +643,7 @@ AC_MSG_CHECKING(for ILU C headers)
|
|||||||
AC_CACHE_VAL(ac_cv_c_iluh3,[
|
AC_CACHE_VAL(ac_cv_c_iluh3,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "${srcdir}/$i/ilu/stubbers/c/resource.h" ; then
|
if test -f "${srcdir}/$i/ilu/stubbers/c/resource.h" ; then
|
||||||
ac_cv_c_iluh3=`(cd ${srcdir}/$i/ilu/stubbers/c ; pwd)`
|
ac_cv_c_iluh3=`(cd ${srcdir}/$i/ilu/stubbers/c ; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -658,7 +658,7 @@ AC_MSG_CHECKING(for ILU C runtime headers)
|
|||||||
AC_CACHE_VAL(ac_cv_c_iluh4,[
|
AC_CACHE_VAL(ac_cv_c_iluh4,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "${srcdir}/$i/ilu/runtime/c/ilucstub.h" ; then
|
if test -f "${srcdir}/$i/ilu/runtime/c/ilucstub.h" ; then
|
||||||
ac_cv_c_iluh4=`(cd ${srcdir}/$i/ilu/runtime/c ; pwd)`
|
ac_cv_c_iluh4=`(cd ${srcdir}/$i/ilu/runtime/c ; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
])
|
])
|
||||||
@ -672,7 +672,7 @@ fi
|
|||||||
AC_CACHE_VAL(ac_cv_c_ilupath,[
|
AC_CACHE_VAL(ac_cv_c_ilupath,[
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/ilu/Makefile" ; then
|
if test -f "$i/ilu/Makefile" ; then
|
||||||
ac_cv_c_ilupath=`(cd $i/ilu; pwd)`
|
ac_cv_c_ilupath=`(cd $i/ilu; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -682,7 +682,7 @@ ILUTOP=${ac_cv_c_ilupath}
|
|||||||
AC_MSG_CHECKING(for the ILU library in the build tree)
|
AC_MSG_CHECKING(for the ILU library in the build tree)
|
||||||
AC_CACHE_VAL(ac_cv_c_ilulib,[
|
AC_CACHE_VAL(ac_cv_c_ilulib,[
|
||||||
if test -f "$ac_cv_c_ilupath/runtime/kernel/Makefile" ; then
|
if test -f "$ac_cv_c_ilupath/runtime/kernel/Makefile" ; then
|
||||||
ac_cv_c_ilulib=`(cd $ac_cv_c_ilupath/runtime/kernel; pwd)`
|
ac_cv_c_ilulib=`(cd $ac_cv_c_ilupath/runtime/kernel; ${PWDCMD-pwd})`
|
||||||
AC_MSG_RESULT(found ${ac_cv_c_ilulib}/libilu.a)
|
AC_MSG_RESULT(found ${ac_cv_c_ilulib}/libilu.a)
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
@ -691,7 +691,7 @@ fi])
|
|||||||
AC_MSG_CHECKING(for the ILU C++ bindings library in the build tree)
|
AC_MSG_CHECKING(for the ILU C++ bindings library in the build tree)
|
||||||
AC_CACHE_VAL(ac_cv_c_ilulib2,[
|
AC_CACHE_VAL(ac_cv_c_ilulib2,[
|
||||||
if test -f "$ac_cv_c_ilupath/runtime/cpp/Makefile" ; then
|
if test -f "$ac_cv_c_ilupath/runtime/cpp/Makefile" ; then
|
||||||
ac_cv_c_ilulib2=`(cd $ac_cv_c_ilupath/runtime/cpp; pwd)`
|
ac_cv_c_ilulib2=`(cd $ac_cv_c_ilupath/runtime/cpp; ${PWDCMD-pwd})`
|
||||||
AC_MSG_RESULT(found ${ac_cv_c_ilulib2}/libilu-c++.a)
|
AC_MSG_RESULT(found ${ac_cv_c_ilulib2}/libilu-c++.a)
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
@ -700,7 +700,7 @@ fi])
|
|||||||
AC_MSG_CHECKING(for the ILU C bindings library in the build tree)
|
AC_MSG_CHECKING(for the ILU C bindings library in the build tree)
|
||||||
AC_CACHE_VAL(ac_cv_c_ilulib3,[
|
AC_CACHE_VAL(ac_cv_c_ilulib3,[
|
||||||
if test -f "$ac_cv_c_ilupath/runtime/c/Makefile" ; then
|
if test -f "$ac_cv_c_ilupath/runtime/c/Makefile" ; then
|
||||||
ac_cv_c_ilulib3=`(cd $ac_cv_c_ilupath/runtime/c; pwd)`
|
ac_cv_c_ilulib3=`(cd $ac_cv_c_ilupath/runtime/c; ${PWDCMD-pwd})`
|
||||||
AC_MSG_RESULT(found ${ac_cv_c_ilulib3}/libilu-c.a)
|
AC_MSG_RESULT(found ${ac_cv_c_ilulib3}/libilu-c.a)
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
@ -709,7 +709,7 @@ fi])
|
|||||||
AC_MSG_CHECKING(for the ILU Tk bindings library in the build tree)
|
AC_MSG_CHECKING(for the ILU Tk bindings library in the build tree)
|
||||||
AC_CACHE_VAL(ac_cv_c_ilulib4,[
|
AC_CACHE_VAL(ac_cv_c_ilulib4,[
|
||||||
if test -f "$ac_cv_c_ilupath/runtime/mainloop/Makefile" ; then
|
if test -f "$ac_cv_c_ilupath/runtime/mainloop/Makefile" ; then
|
||||||
ac_cv_c_ilulib4=`(cd $ac_cv_c_ilupath/runtime/mainloop; pwd)`
|
ac_cv_c_ilulib4=`(cd $ac_cv_c_ilupath/runtime/mainloop; ${PWDCMD-pwd})`
|
||||||
AC_MSG_RESULT(found ${ac_cv_c_ilulib4}/libilu-tk.a)
|
AC_MSG_RESULT(found ${ac_cv_c_ilulib4}/libilu-tk.a)
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
@ -858,9 +858,9 @@ AC_CACHE_VAL(ac_cv_c_tclh,[
|
|||||||
dnl first check to see if --with-tclinclude was specified
|
dnl first check to see if --with-tclinclude was specified
|
||||||
if test x"${with_tclinclude}" != x ; then
|
if test x"${with_tclinclude}" != x ; then
|
||||||
if test -f ${with_tclinclude}/tcl.h ; then
|
if test -f ${with_tclinclude}/tcl.h ; then
|
||||||
ac_cv_c_tclh=`(cd ${with_tclinclude}; pwd)`
|
ac_cv_c_tclh=`(cd ${with_tclinclude}; ${PWDCMD-pwd})`
|
||||||
elif test -f ${with_tclinclude}/generic/tcl.h ; then
|
elif test -f ${with_tclinclude}/generic/tcl.h ; then
|
||||||
ac_cv_c_tclh=`(cd ${with_tclinclude}/generic; pwd)`
|
ac_cv_c_tclh=`(cd ${with_tclinclude}/generic; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_tclinclude} directory doesn't contain headers])
|
AC_MSG_ERROR([${with_tclinclude} directory doesn't contain headers])
|
||||||
fi
|
fi
|
||||||
@ -870,7 +870,7 @@ dnl next check if it came with Tcl configuration file
|
|||||||
if test x"${ac_cv_c_tclconfig}" != x ; then
|
if test x"${ac_cv_c_tclconfig}" != x ; then
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f $ac_cv_c_tclconfig/$i/generic/tcl.h ; then
|
if test -f $ac_cv_c_tclconfig/$i/generic/tcl.h ; then
|
||||||
ac_cv_c_tclh=`(cd $ac_cv_c_tclconfig/$i/generic; pwd)`
|
ac_cv_c_tclh=`(cd $ac_cv_c_tclconfig/$i/generic; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -891,7 +891,7 @@ if test x"${ac_cv_c_tclh}" = x ; then
|
|||||||
dnl might be multiple version of Tcl, and we want the most recent one.
|
dnl might be multiple version of Tcl, and we want the most recent one.
|
||||||
for i in `ls -dr $tclpath/tcl* 2>/dev/null ` ; do
|
for i in `ls -dr $tclpath/tcl* 2>/dev/null ` ; do
|
||||||
if test -f $i/generic/tcl.h ; then
|
if test -f $i/generic/tcl.h ; then
|
||||||
ac_cv_c_tclh=`(cd $i/generic; pwd)`
|
ac_cv_c_tclh=`(cd $i/generic; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -950,7 +950,7 @@ if test x"${no_tcl}" = x ; then
|
|||||||
dnl First check to see if --with-tclconfig was specified.
|
dnl First check to see if --with-tclconfig was specified.
|
||||||
if test x"${with_tclconfig}" != x ; then
|
if test x"${with_tclconfig}" != x ; then
|
||||||
if test -f "${with_tclconfig}/tclConfig.sh" ; then
|
if test -f "${with_tclconfig}/tclConfig.sh" ; then
|
||||||
ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)`
|
ac_cv_c_tclconfig=`(cd ${with_tclconfig}; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_tclconfig} directory doesn't contain tclConfig.sh])
|
AC_MSG_ERROR([${with_tclconfig} directory doesn't contain tclConfig.sh])
|
||||||
fi
|
fi
|
||||||
@ -963,11 +963,11 @@ if test x"${no_tcl}" = x ; then
|
|||||||
dnl cygwin's tkConfig.sh could be in either directory depending
|
dnl cygwin's tkConfig.sh could be in either directory depending
|
||||||
dnl on the cygwin port of tcl.
|
dnl on the cygwin port of tcl.
|
||||||
if test -f $srcdir/$i/unix/tclConfig.sh ; then
|
if test -f $srcdir/$i/unix/tclConfig.sh ; then
|
||||||
ac_cv_c_tclconfig=`(cd $srcdir/$i/unix; pwd)`
|
ac_cv_c_tclconfig=`(cd $srcdir/$i/unix; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
if test -f $srcdir/$i/win/tclConfig.sh ; then
|
if test -f $srcdir/$i/win/tclConfig.sh ; then
|
||||||
ac_cv_c_tclconfig=`(cd $srcdir/$i/win; pwd)`
|
ac_cv_c_tclconfig=`(cd $srcdir/$i/win; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -989,11 +989,11 @@ if test x"${no_tcl}" = x ; then
|
|||||||
dnl cygwin's tclConfig.sh could be in either directory depending
|
dnl cygwin's tclConfig.sh could be in either directory depending
|
||||||
dnl on the cygwin port of tcl.
|
dnl on the cygwin port of tcl.
|
||||||
if test -f $i/unix/tclConfig.sh ; then
|
if test -f $i/unix/tclConfig.sh ; then
|
||||||
ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
|
ac_cv_c_tclconfig=`(cd $i/unix; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
if test -f $i/win/tclConfig.sh ; then
|
if test -f $i/win/tclConfig.sh ; then
|
||||||
ac_cv_c_tclconfig=`(cd $i/win; pwd)`
|
ac_cv_c_tclconfig=`(cd $i/win; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1097,9 +1097,9 @@ AC_CACHE_VAL(ac_cv_c_tkh,[
|
|||||||
dnl first check to see if --with-tkinclude was specified
|
dnl first check to see if --with-tkinclude was specified
|
||||||
if test x"${with_tkinclude}" != x ; then
|
if test x"${with_tkinclude}" != x ; then
|
||||||
if test -f ${with_tkinclude}/tk.h ; then
|
if test -f ${with_tkinclude}/tk.h ; then
|
||||||
ac_cv_c_tkh=`(cd ${with_tkinclude}; pwd)`
|
ac_cv_c_tkh=`(cd ${with_tkinclude}; ${PWDCMD-pwd})`
|
||||||
elif test -f ${with_tkinclude}/generic/tk.h ; then
|
elif test -f ${with_tkinclude}/generic/tk.h ; then
|
||||||
ac_cv_c_tkh=`(cd ${with_tkinclude}/generic; pwd)`
|
ac_cv_c_tkh=`(cd ${with_tkinclude}/generic; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_tkinclude} directory doesn't contain headers])
|
AC_MSG_ERROR([${with_tkinclude} directory doesn't contain headers])
|
||||||
fi
|
fi
|
||||||
@ -1109,7 +1109,7 @@ dnl next check if it came with Tk configuration file
|
|||||||
if test x"${ac_cv_c_tkconfig}" != x ; then
|
if test x"${ac_cv_c_tkconfig}" != x ; then
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f $ac_cv_c_tkconfig/$i/generic/tk.h ; then
|
if test -f $ac_cv_c_tkconfig/$i/generic/tk.h ; then
|
||||||
ac_cv_c_tkh=`(cd $ac_cv_c_tkconfig/$i/generic; pwd)`
|
ac_cv_c_tkh=`(cd $ac_cv_c_tkconfig/$i/generic; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1130,7 +1130,7 @@ if test x"${ac_cv_c_tkh}" = x ; then
|
|||||||
dnl might be multiple version of Tk, and we want the most recent one.
|
dnl might be multiple version of Tk, and we want the most recent one.
|
||||||
for i in `ls -dr $tkpath/tk* 2>/dev/null ` ; do
|
for i in `ls -dr $tkpath/tk* 2>/dev/null ` ; do
|
||||||
if test -f $i/generic/tk.h ; then
|
if test -f $i/generic/tk.h ; then
|
||||||
ac_cv_c_tkh=`(cd $i/generic; pwd)`
|
ac_cv_c_tkh=`(cd $i/generic; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1183,7 +1183,7 @@ if test x"${no_tk}" = x ; then
|
|||||||
dnl First check to see if --with-tkconfig was specified.
|
dnl First check to see if --with-tkconfig was specified.
|
||||||
if test x"${with_tkconfig}" != x ; then
|
if test x"${with_tkconfig}" != x ; then
|
||||||
if test -f "${with_tkconfig}/tkConfig.sh" ; then
|
if test -f "${with_tkconfig}/tkConfig.sh" ; then
|
||||||
ac_cv_c_tkconfig=`(cd ${with_tkconfig}; pwd)`
|
ac_cv_c_tkconfig=`(cd ${with_tkconfig}; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_tkconfig} directory doesn't contain tkConfig.sh])
|
AC_MSG_ERROR([${with_tkconfig} directory doesn't contain tkConfig.sh])
|
||||||
fi
|
fi
|
||||||
@ -1196,11 +1196,11 @@ if test x"${no_tk}" = x ; then
|
|||||||
dnl cygwin's tkConfig.sh could be in either directory depending
|
dnl cygwin's tkConfig.sh could be in either directory depending
|
||||||
dnl on the cygwin port of tk.
|
dnl on the cygwin port of tk.
|
||||||
if test -f $srcdir/$i/unix/tkConfig.sh ; then
|
if test -f $srcdir/$i/unix/tkConfig.sh ; then
|
||||||
ac_cv_c_tkconfig=`(cd $srcdir/$i/unix; pwd)`
|
ac_cv_c_tkconfig=`(cd $srcdir/$i/unix; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
if test -f $srcdir/$i/win/tkConfig.sh ; then
|
if test -f $srcdir/$i/win/tkConfig.sh ; then
|
||||||
ac_cv_c_tkconfig=`(cd $srcdir/$i/unix; pwd)`
|
ac_cv_c_tkconfig=`(cd $srcdir/$i/unix; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1222,11 +1222,11 @@ if test x"${no_tk}" = x ; then
|
|||||||
dnl cygwin's tkConfig.sh could be in either directory depending
|
dnl cygwin's tkConfig.sh could be in either directory depending
|
||||||
dnl on the cygwin port of tk.
|
dnl on the cygwin port of tk.
|
||||||
if test -f $i/unix/tkConfig.sh ; then
|
if test -f $i/unix/tkConfig.sh ; then
|
||||||
ac_cv_c_tkconfig=`(cd $i/unix; pwd)`
|
ac_cv_c_tkconfig=`(cd $i/unix; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
if test -f $i/win/tkConfig.sh ; then
|
if test -f $i/win/tkConfig.sh ; then
|
||||||
ac_cv_c_tkconfig=`(cd $i/win; pwd)`
|
ac_cv_c_tkconfig=`(cd $i/win; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1302,9 +1302,9 @@ AC_CACHE_VAL(ac_cv_c_itclh,[
|
|||||||
dnl first check to see if --with-itclinclude was specified
|
dnl first check to see if --with-itclinclude was specified
|
||||||
if test x"${with_itclinclude}" != x ; then
|
if test x"${with_itclinclude}" != x ; then
|
||||||
if test -f ${with_itclinclude}/itcl.h ; then
|
if test -f ${with_itclinclude}/itcl.h ; then
|
||||||
ac_cv_c_itclh=`(cd ${with_itclinclude}; pwd)`
|
ac_cv_c_itclh=`(cd ${with_itclinclude}; ${PWDCMD-pwd})`
|
||||||
elif test -f ${with_itclinclude}/src/itcl.h ; then
|
elif test -f ${with_itclinclude}/src/itcl.h ; then
|
||||||
ac_cv_c_itclh=`(cd ${with_itclinclude}/src; pwd)`
|
ac_cv_c_itclh=`(cd ${with_itclinclude}/src; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_itclinclude} directory doesn't contain headers])
|
AC_MSG_ERROR([${with_itclinclude} directory doesn't contain headers])
|
||||||
fi
|
fi
|
||||||
@ -1314,7 +1314,7 @@ dnl next check if it came with Itcl configuration file
|
|||||||
if test x"${ac_cv_c_itclconfig}" != x ; then
|
if test x"${ac_cv_c_itclconfig}" != x ; then
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f $ac_cv_c_itclconfig/$i/src/itcl.h ; then
|
if test -f $ac_cv_c_itclconfig/$i/src/itcl.h ; then
|
||||||
ac_cv_c_itclh=`(cd $ac_cv_c_itclconfig/$i/src; pwd)`
|
ac_cv_c_itclh=`(cd $ac_cv_c_itclconfig/$i/src; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1335,7 +1335,7 @@ if test x"${ac_cv_c_itclh}" = x ; then
|
|||||||
dnl might be multiple version of Itcl, and we want the most recent one.
|
dnl might be multiple version of Itcl, and we want the most recent one.
|
||||||
for i in `ls -dr $itclpath/itcl* 2>/dev/null ` ; do
|
for i in `ls -dr $itclpath/itcl* 2>/dev/null ` ; do
|
||||||
if test -f $i/src/itcl.h ; then
|
if test -f $i/src/itcl.h ; then
|
||||||
ac_cv_c_itclh=`(cd $i/src; pwd)`
|
ac_cv_c_itclh=`(cd $i/src; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1380,10 +1380,10 @@ if test x"${no_itcl}" = x ; then
|
|||||||
dnl First check to see if --with-itcllib was specified.
|
dnl First check to see if --with-itcllib was specified.
|
||||||
if test x"${with_itcllib}" != x ; then
|
if test x"${with_itcllib}" != x ; then
|
||||||
if test -f "${with_itcllib}/libitcl$TCL_SHARED_LIB_SUFFIX" ; then
|
if test -f "${with_itcllib}/libitcl$TCL_SHARED_LIB_SUFFIX" ; then
|
||||||
ac_cv_c_itcllib=`(cd ${with_itcllib}; pwd)`/libitcl$TCL_SHARED_LIB_SUFFIX
|
ac_cv_c_itcllib=`(cd ${with_itcllib}; ${PWDCMD-pwd})`/libitcl$TCL_SHARED_LIB_SUFFIX
|
||||||
else
|
else
|
||||||
if test -f "${with_itcllib}/libitcl$TCL_UNSHARED_LIB_SUFFIX"; then
|
if test -f "${with_itcllib}/libitcl$TCL_UNSHARED_LIB_SUFFIX"; then
|
||||||
ac_cv_c_itcllib=`(cd ${with_itcllib}; pwd)`/libitcl$TCL_UNSHARED_LIB_SUFFIX
|
ac_cv_c_itcllib=`(cd ${with_itcllib}; ${PWDCMD-pwd})`/libitcl$TCL_UNSHARED_LIB_SUFFIX
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -1399,9 +1399,9 @@ if test x"${no_itcl}" = x ; then
|
|||||||
done
|
done
|
||||||
dnl Itcl 7.5 and greater puts library in subdir. Look there first.
|
dnl Itcl 7.5 and greater puts library in subdir. Look there first.
|
||||||
if test -f "$itclpath/src/libitcl.$TCL_SHLIB_SUFFIX" ; then
|
if test -f "$itclpath/src/libitcl.$TCL_SHLIB_SUFFIX" ; then
|
||||||
ac_cv_c_itcllib=`(cd $itclpath/src; pwd)`
|
ac_cv_c_itcllib=`(cd $itclpath/src; ${PWDCMD-pwd})`
|
||||||
elif test -f "$itclpath/src/libitcl.a"; then
|
elif test -f "$itclpath/src/libitcl.a"; then
|
||||||
ac_cv_c_itcllib=`(cd $itclpath/src; pwd)`
|
ac_cv_c_itcllib=`(cd $itclpath/src; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
dnl check in a few other private locations
|
dnl check in a few other private locations
|
||||||
@ -1415,10 +1415,10 @@ if test x"${no_itcl}" = x ; then
|
|||||||
for i in `ls -dr ${itclpath}/itcl* 2>/dev/null` ; do
|
for i in `ls -dr ${itclpath}/itcl* 2>/dev/null` ; do
|
||||||
dnl Itcl 7.5 and greater puts library in subdir. Look there first.
|
dnl Itcl 7.5 and greater puts library in subdir. Look there first.
|
||||||
if test -f "$i/src/libitcl$TCL_SHLIB_SUFFIX" ; then
|
if test -f "$i/src/libitcl$TCL_SHLIB_SUFFIX" ; then
|
||||||
ac_cv_c_itcllib=`(cd $i/src; pwd)`
|
ac_cv_c_itcllib=`(cd $i/src; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
elif test -f "$i/src/libitcl.a"; then
|
elif test -f "$i/src/libitcl.a"; then
|
||||||
ac_cv_c_itcllib=`(cd $i/src; pwd)`
|
ac_cv_c_itcllib=`(cd $i/src; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1430,9 +1430,9 @@ if test x"${no_itcl}" = x ; then
|
|||||||
ccpath=`which ${CC} | sed -e 's:/bin/.*::'`/lib
|
ccpath=`which ${CC} | sed -e 's:/bin/.*::'`/lib
|
||||||
dnl Itcl 7.5 and greater puts library in subdir. Look there first.
|
dnl Itcl 7.5 and greater puts library in subdir. Look there first.
|
||||||
if test -f "${ccpath}/libitcl$TCL_SHLIB_SUFFIX" ; then
|
if test -f "${ccpath}/libitcl$TCL_SHLIB_SUFFIX" ; then
|
||||||
ac_cv_c_itcllib=`(cd ${ccpath}; pwd)`
|
ac_cv_c_itcllib=`(cd ${ccpath}; ${PWDCMD-pwd})`
|
||||||
elif test -f "${ccpath}/libitcl.a"; then
|
elif test -f "${ccpath}/libitcl.a"; then
|
||||||
ac_cv_c_itcllib=`(cd ${ccpath}; pwd)`
|
ac_cv_c_itcllib=`(cd ${ccpath}; ${PWDCMD-pwd})`
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
@ -1463,9 +1463,9 @@ AC_CACHE_VAL(ac_cv_c_itclsh,[
|
|||||||
dnl first check to see if --with-itclinclude was specified
|
dnl first check to see if --with-itclinclude was specified
|
||||||
if test x"${with_itclinclude}" != x ; then
|
if test x"${with_itclinclude}" != x ; then
|
||||||
if test -f ${with_itclinclude}/itcl_sh ; then
|
if test -f ${with_itclinclude}/itcl_sh ; then
|
||||||
ac_cv_c_itclsh=`(cd ${with_itclinclude}; pwd)`
|
ac_cv_c_itclsh=`(cd ${with_itclinclude}; ${PWDCMD-pwd})`
|
||||||
elif test -f ${with_itclinclude}/src/itcl_sh ; then
|
elif test -f ${with_itclinclude}/src/itcl_sh ; then
|
||||||
ac_cv_c_itclsh=`(cd ${with_itclinclude}/src; pwd)`
|
ac_cv_c_itclsh=`(cd ${with_itclinclude}/src; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_itclinclude} directory doesn't contain itcl_sh])
|
AC_MSG_ERROR([${with_itclinclude} directory doesn't contain itcl_sh])
|
||||||
fi
|
fi
|
||||||
@ -1486,7 +1486,7 @@ if test x"${ac_cv_c_itclsh}" = x ; then
|
|||||||
dnl might be multiple version of Itcl, and we want the most recent one.
|
dnl might be multiple version of Itcl, and we want the most recent one.
|
||||||
for i in `ls -dr $itclpath/itcl* 2>/dev/null ` ; do
|
for i in `ls -dr $itclpath/itcl* 2>/dev/null ` ; do
|
||||||
if test -f $i/src/itcl_sh ; then
|
if test -f $i/src/itcl_sh ; then
|
||||||
ac_cv_c_itclsh=`(cd $i/src; pwd)`/itcl_sh
|
ac_cv_c_itclsh=`(cd $i/src; ${PWDCMD-pwd})`/itcl_sh
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1525,9 +1525,9 @@ AC_CACHE_VAL(ac_cv_c_itclmkidx,[
|
|||||||
dnl first check to see if --with-itclinclude was specified
|
dnl first check to see if --with-itclinclude was specified
|
||||||
if test x"${with_itclinclude}" != x ; then
|
if test x"${with_itclinclude}" != x ; then
|
||||||
if test -f ${with_itclinclude}/itcl_sh ; then
|
if test -f ${with_itclinclude}/itcl_sh ; then
|
||||||
ac_cv_c_itclmkidx=`(cd ${with_itclinclude}; pwd)`
|
ac_cv_c_itclmkidx=`(cd ${with_itclinclude}; ${PWDCMD-pwd})`
|
||||||
elif test -f ${with_itclinclude}/src/itcl_sh ; then
|
elif test -f ${with_itclinclude}/src/itcl_sh ; then
|
||||||
ac_cv_c_itclmkidx=`(cd ${with_itclinclude}/src; pwd)`
|
ac_cv_c_itclmkidx=`(cd ${with_itclinclude}/src; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_itclinclude} directory doesn't contain itcl_sh])
|
AC_MSG_ERROR([${with_itclinclude} directory doesn't contain itcl_sh])
|
||||||
fi
|
fi
|
||||||
@ -1548,7 +1548,7 @@ if test x"${ac_cv_c_itclmkidx}" = x ; then
|
|||||||
dnl might be multiple version of Itcl, and we want the most recent one.
|
dnl might be multiple version of Itcl, and we want the most recent one.
|
||||||
for i in `ls -dr $itclpath/itcl* 2>/dev/null ` ; do
|
for i in `ls -dr $itclpath/itcl* 2>/dev/null ` ; do
|
||||||
if test -f $i/library/itcl_mkindex.tcl ; then
|
if test -f $i/library/itcl_mkindex.tcl ; then
|
||||||
ac_cv_c_itclmkidx=`(cd $i/library; pwd)`/itcl_mkindex.tcl
|
ac_cv_c_itclmkidx=`(cd $i/library; ${PWDCMD-pwd})`/itcl_mkindex.tcl
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1559,7 +1559,7 @@ if test x"${ac_cv_c_itclmkidx}" = x ; then
|
|||||||
dnl Itcl 7.5 and greater puts library in subdir. Look there first.
|
dnl Itcl 7.5 and greater puts library in subdir. Look there first.
|
||||||
for i in `ls -dr $ccpath/itcl* 2>/dev/null ` ; do
|
for i in `ls -dr $ccpath/itcl* 2>/dev/null ` ; do
|
||||||
if test -f $i/itcl_mkindex.tcl ; then
|
if test -f $i/itcl_mkindex.tcl ; then
|
||||||
ac_cv_c_itclmkidx=`(cd $i; pwd)`/itcl_mkindex.tcl
|
ac_cv_c_itclmkidx=`(cd $i; ${PWDCMD-pwd})`/itcl_mkindex.tcl
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1595,9 +1595,9 @@ AC_CACHE_VAL(ac_cv_c_tixh,[
|
|||||||
dnl first check to see if --with-tixinclude was specified
|
dnl first check to see if --with-tixinclude was specified
|
||||||
if test x"${with_tixinclude}" != x ; then
|
if test x"${with_tixinclude}" != x ; then
|
||||||
if test -f ${with_tixinclude}/tix.h ; then
|
if test -f ${with_tixinclude}/tix.h ; then
|
||||||
ac_cv_c_tixh=`(cd ${with_tixinclude}; pwd)`
|
ac_cv_c_tixh=`(cd ${with_tixinclude}; ${PWDCMD-pwd})`
|
||||||
elif test -f ${with_tixinclude}/generic/tix.h ; then
|
elif test -f ${with_tixinclude}/generic/tix.h ; then
|
||||||
ac_cv_c_tixh=`(cd ${with_tixinclude}/generic; pwd)`
|
ac_cv_c_tixh=`(cd ${with_tixinclude}/generic; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_tixinclude} directory doesn't contain headers])
|
AC_MSG_ERROR([${with_tixinclude} directory doesn't contain headers])
|
||||||
fi
|
fi
|
||||||
@ -1607,7 +1607,7 @@ dnl next check if it came with Tix configuration file
|
|||||||
if test x"${ac_cv_c_tixconfig}" != x ; then
|
if test x"${ac_cv_c_tixconfig}" != x ; then
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f $ac_cv_c_tixconfig/$i/generic/tix.h ; then
|
if test -f $ac_cv_c_tixconfig/$i/generic/tix.h ; then
|
||||||
ac_cv_c_tixh=`(cd $ac_cv_c_tixconfig/$i/generic; pwd)`
|
ac_cv_c_tixh=`(cd $ac_cv_c_tixconfig/$i/generic; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1628,7 +1628,7 @@ if test x"${ac_cv_c_tixh}" = x ; then
|
|||||||
dnl might be multiple version of Tix, and we want the most recent one.
|
dnl might be multiple version of Tix, and we want the most recent one.
|
||||||
for i in `ls -dr $tixpath/tix* 2>/dev/null ` ; do
|
for i in `ls -dr $tixpath/tix* 2>/dev/null ` ; do
|
||||||
if test -f $i/generic/tix.h ; then
|
if test -f $i/generic/tix.h ; then
|
||||||
ac_cv_c_tixh=`(cd $i/generic; pwd)`
|
ac_cv_c_tixh=`(cd $i/generic; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1681,7 +1681,7 @@ if test x"${no_tix}" = x ; then
|
|||||||
# First check to see if --with-tixconfig was specified.
|
# First check to see if --with-tixconfig was specified.
|
||||||
if test x"${with_tixconfig}" != x ; then
|
if test x"${with_tixconfig}" != x ; then
|
||||||
if test -f "${with_tixconfig}/tixConfig.sh" ; then
|
if test -f "${with_tixconfig}/tixConfig.sh" ; then
|
||||||
ac_cv_c_tixconfig=`(cd ${with_tixconfig}; pwd)`
|
ac_cv_c_tixconfig=`(cd ${with_tixconfig}; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_tixconfig} directory doesn't contain tixConfig.sh])
|
AC_MSG_ERROR([${with_tixconfig} directory doesn't contain tixConfig.sh])
|
||||||
fi
|
fi
|
||||||
@ -1697,7 +1697,7 @@ if test x"${no_tix}" = x ; then
|
|||||||
../../../tix \
|
../../../tix \
|
||||||
`ls -dr ../../../tix[[4]]* 2>/dev/null` ; do
|
`ls -dr ../../../tix[[4]]* 2>/dev/null` ; do
|
||||||
if test -f "$i/tixConfig.sh" ; then
|
if test -f "$i/tixConfig.sh" ; then
|
||||||
ac_cv_c_tixconfig=`(cd $i; pwd)`
|
ac_cv_c_tixconfig=`(cd $i; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1706,7 +1706,7 @@ if test x"${no_tix}" = x ; then
|
|||||||
if test x"${ac_cv_c_tixconfig}" = x ; then
|
if test x"${ac_cv_c_tixconfig}" = x ; then
|
||||||
for i in `ls -d ${prefix}/lib /usr/local/lib 2>/dev/null` ; do
|
for i in `ls -d ${prefix}/lib /usr/local/lib 2>/dev/null` ; do
|
||||||
if test -f "$i/tixConfig.sh" ; then
|
if test -f "$i/tixConfig.sh" ; then
|
||||||
ac_cv_c_tkconfig=`(cd $i; pwd)`
|
ac_cv_c_tkconfig=`(cd $i; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1717,7 +1717,7 @@ if test x"${no_tix}" = x ; then
|
|||||||
${srcdir}/../tix \
|
${srcdir}/../tix \
|
||||||
`ls -dr ${srcdir}/../tix[[4-9]]* 2>/dev/null` ; do
|
`ls -dr ${srcdir}/../tix[[4-9]]* 2>/dev/null` ; do
|
||||||
if test -f "$i/tixConfig.sh" ; then
|
if test -f "$i/tixConfig.sh" ; then
|
||||||
ac_cv_c_tixconfig=`(cd $i; pwd)`
|
ac_cv_c_tixconfig=`(cd $i; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1764,7 +1764,7 @@ if test x"${no_itcl}" = x ; then
|
|||||||
# First check to see if --with-itclconfig was specified.
|
# First check to see if --with-itclconfig was specified.
|
||||||
if test x"${with_itclconfig}" != x ; then
|
if test x"${with_itclconfig}" != x ; then
|
||||||
if test -f "${with_itclconfig}/itclConfig.sh" ; then
|
if test -f "${with_itclconfig}/itclConfig.sh" ; then
|
||||||
ac_cv_c_itclconfig=`(cd ${with_itclconfig}; pwd)`
|
ac_cv_c_itclconfig=`(cd ${with_itclconfig}; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_itclconfig} directory doesn't contain itclConfig.sh])
|
AC_MSG_ERROR([${with_itclconfig} directory doesn't contain itclConfig.sh])
|
||||||
fi
|
fi
|
||||||
@ -1780,7 +1780,7 @@ if test x"${no_itcl}" = x ; then
|
|||||||
../../../itcl/itcl \
|
../../../itcl/itcl \
|
||||||
`ls -dr ../../../itcl/itcl[[3]]* 2>/dev/null` ; do
|
`ls -dr ../../../itcl/itcl[[3]]* 2>/dev/null` ; do
|
||||||
if test -f "$i/itclConfig.sh" ; then
|
if test -f "$i/itclConfig.sh" ; then
|
||||||
ac_cv_c_itclconfig=`(cd $i; pwd)`
|
ac_cv_c_itclconfig=`(cd $i; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1789,7 +1789,7 @@ if test x"${no_itcl}" = x ; then
|
|||||||
if test x"${ac_cv_c_itclconfig}" = x ; then
|
if test x"${ac_cv_c_itclconfig}" = x ; then
|
||||||
for i in `ls -d ${prefix}/lib /usr/local/lib 2>/dev/null` ; do
|
for i in `ls -d ${prefix}/lib /usr/local/lib 2>/dev/null` ; do
|
||||||
if test -f "$i/itclConfig.sh" ; then
|
if test -f "$i/itclConfig.sh" ; then
|
||||||
ac_cv_c_itclconfig=`(cd $i; pwd)`
|
ac_cv_c_itclconfig=`(cd $i; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1800,7 +1800,7 @@ if test x"${no_itcl}" = x ; then
|
|||||||
${srcdir}/../itcl/itcl \
|
${srcdir}/../itcl/itcl \
|
||||||
`ls -dr ${srcdir}/../itcl/itcl[[3]]* 2>/dev/null` ; do
|
`ls -dr ${srcdir}/../itcl/itcl[[3]]* 2>/dev/null` ; do
|
||||||
if test -f "$i/itcl/itclConfig.sh" ; then
|
if test -f "$i/itcl/itclConfig.sh" ; then
|
||||||
ac_cv_c_itclconfig=`(cd $i; pwd)`
|
ac_cv_c_itclconfig=`(cd $i; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1851,7 +1851,7 @@ if test x"${no_itk}" = x ; then
|
|||||||
# First check to see if --with-itkconfig was specified.
|
# First check to see if --with-itkconfig was specified.
|
||||||
if test x"${with_itkconfig}" != x ; then
|
if test x"${with_itkconfig}" != x ; then
|
||||||
if test -f "${with_itkconfig}/itkConfig.sh" ; then
|
if test -f "${with_itkconfig}/itkConfig.sh" ; then
|
||||||
ac_cv_c_itkconfig=`(cd ${with_itkconfig}; pwd)`
|
ac_cv_c_itkconfig=`(cd ${with_itkconfig}; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_itkconfig} directory doesn't contain itkConfig.sh])
|
AC_MSG_ERROR([${with_itkconfig} directory doesn't contain itkConfig.sh])
|
||||||
fi
|
fi
|
||||||
@ -1867,7 +1867,7 @@ if test x"${no_itk}" = x ; then
|
|||||||
../../../itcl/itk \
|
../../../itcl/itk \
|
||||||
`ls -dr ../../../itcl/itk[[3]]* 2>/dev/null` ; do
|
`ls -dr ../../../itcl/itk[[3]]* 2>/dev/null` ; do
|
||||||
if test -f "$i/itkConfig.sh" ; then
|
if test -f "$i/itkConfig.sh" ; then
|
||||||
ac_cv_c_itkconfig=`(cd $i; pwd)`
|
ac_cv_c_itkconfig=`(cd $i; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1876,7 +1876,7 @@ if test x"${no_itk}" = x ; then
|
|||||||
if test x"${ac_cv_c_itkconfig}" = x ; then
|
if test x"${ac_cv_c_itkconfig}" = x ; then
|
||||||
for i in `ls -d ${prefix}/lib /usr/local/lib 2>/dev/null` ; do
|
for i in `ls -d ${prefix}/lib /usr/local/lib 2>/dev/null` ; do
|
||||||
if test -f "$i/itcl/itkConfig.sh" ; then
|
if test -f "$i/itcl/itkConfig.sh" ; then
|
||||||
ac_cv_c_itkconfig=`(cd $i; pwd)`
|
ac_cv_c_itkconfig=`(cd $i; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1887,7 +1887,7 @@ if test x"${no_itk}" = x ; then
|
|||||||
${srcdir}/../itcl/itk \
|
${srcdir}/../itcl/itk \
|
||||||
`ls -dr ${srcdir}/../itcl/itk[[3]]* 2>/dev/null` ; do
|
`ls -dr ${srcdir}/../itcl/itk[[3]]* 2>/dev/null` ; do
|
||||||
if test -f "$i/itkConfig.sh" ; then
|
if test -f "$i/itkConfig.sh" ; then
|
||||||
ac_cv_c_itkconfig=`(cd $i; pwd)`
|
ac_cv_c_itkconfig=`(cd $i; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1934,9 +1934,9 @@ AC_CACHE_VAL(ac_cv_c_libguih,[
|
|||||||
dnl first check to see if --with-libguiinclude was specified
|
dnl first check to see if --with-libguiinclude was specified
|
||||||
if test x"${with_libguiinclude}" != x ; then
|
if test x"${with_libguiinclude}" != x ; then
|
||||||
if test -f ${with_libguiinclude}/guitcl.h ; then
|
if test -f ${with_libguiinclude}/guitcl.h ; then
|
||||||
ac_cv_c_libguih=`(cd ${with_libguiinclude}; pwd)`
|
ac_cv_c_libguih=`(cd ${with_libguiinclude}; ${PWDCMD-pwd})`
|
||||||
elif test -f ${with_libguiinclude}/src/guitcl.h ; then
|
elif test -f ${with_libguiinclude}/src/guitcl.h ; then
|
||||||
ac_cv_c_libguih=`(cd ${with_libguiinclude}/src; pwd)`
|
ac_cv_c_libguih=`(cd ${with_libguiinclude}/src; ${PWDCMD-pwd})`
|
||||||
else
|
else
|
||||||
AC_MSG_ERROR([${with_libguiinclude} directory doesn't contain headers])
|
AC_MSG_ERROR([${with_libguiinclude} directory doesn't contain headers])
|
||||||
fi
|
fi
|
||||||
@ -1946,7 +1946,7 @@ dnl next check if it came with Libgui configuration file
|
|||||||
if test x"${ac_cv_c_libguiconfig}" != x ; then
|
if test x"${ac_cv_c_libguiconfig}" != x ; then
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f $ac_cv_c_libguiconfig/$i/src/guitcl.h ; then
|
if test -f $ac_cv_c_libguiconfig/$i/src/guitcl.h ; then
|
||||||
ac_cv_c_libguih=`(cd $ac_cv_c_libguiconfig/$i/src; pwd)`
|
ac_cv_c_libguih=`(cd $ac_cv_c_libguiconfig/$i/src; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -1967,7 +1967,7 @@ if test x"${ac_cv_c_libguih}" = x ; then
|
|||||||
dnl might be multiple version of Libgui, and we want the most recent one.
|
dnl might be multiple version of Libgui, and we want the most recent one.
|
||||||
for i in `ls -dr $libguipath/libgui* 2>/dev/null ` ; do
|
for i in `ls -dr $libguipath/libgui* 2>/dev/null ` ; do
|
||||||
if test -f $i/src/guitcl.h ; then
|
if test -f $i/src/guitcl.h ; then
|
||||||
ac_cv_c_libguih=`(cd $i/src; pwd)`
|
ac_cv_c_libguih=`(cd $i/src; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@ -2004,7 +2004,7 @@ AC_CACHE_VAL(ac_cv_c_libguilib,[
|
|||||||
if test x"${ac_cv_c_libguilib}" = x ; then
|
if test x"${ac_cv_c_libguilib}" = x ; then
|
||||||
for i in $dirlist; do
|
for i in $dirlist; do
|
||||||
if test -f "$i/libgui/src/Makefile" ; then
|
if test -f "$i/libgui/src/Makefile" ; then
|
||||||
ac_cv_c_libguilib=`(cd $i/libgui/src; pwd)`
|
ac_cv_c_libguilib=`(cd $i/libgui/src; ${PWDCMD-pwd})`
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
40
configure
vendored
40
configure
vendored
@ -3,8 +3,8 @@
|
|||||||
### WARNING: this file contains embedded tabs. Do not run untabify on this file.
|
### WARNING: this file contains embedded tabs. Do not run untabify on this file.
|
||||||
|
|
||||||
# Configuration script
|
# Configuration script
|
||||||
# Copyright (C) 1988, 90, 91, 92, 93, 94, 95, 96, 97, 98, 1999, 2000, 2001
|
# Copyright (C) 1988, 90, 91, 92, 93, 94, 95, 96, 97, 98, 1999, 2000, 2001,
|
||||||
# Free Software Foundation, Inc.
|
# 2002 Free Software Foundation, Inc.
|
||||||
|
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -89,7 +89,7 @@ subdirs=
|
|||||||
target_alias=NOTARGET
|
target_alias=NOTARGET
|
||||||
target_makefile_frag=
|
target_makefile_frag=
|
||||||
undefs=NOUNDEFS
|
undefs=NOUNDEFS
|
||||||
version="$Revision: 1.40 $"
|
version="$Revision: 1.41 $"
|
||||||
x11=default
|
x11=default
|
||||||
bindir='${exec_prefix}/bin'
|
bindir='${exec_prefix}/bin'
|
||||||
sbindir='${exec_prefix}/sbin'
|
sbindir='${exec_prefix}/sbin'
|
||||||
@ -152,13 +152,13 @@ NO_EDIT="This file was generated automatically by configure. Do not edit."
|
|||||||
|
|
||||||
progname=$0
|
progname=$0
|
||||||
# if PWD already has a value, it is probably wrong.
|
# if PWD already has a value, it is probably wrong.
|
||||||
if [ -n "$PWD" ]; then PWD=`pwd`; fi
|
if [ -n "$PWD" ]; then PWD=`${PWDCMD-pwd}`; fi
|
||||||
|
|
||||||
case "${progname}" in
|
case "${progname}" in
|
||||||
/* | [A-Za-z]:[\\/]* ) ;;
|
/* | [A-Za-z]:[\\/]* ) ;;
|
||||||
*/*) ;;
|
*/*) ;;
|
||||||
*)
|
*)
|
||||||
PATH=$PATH:${PWD=`pwd`} ; export PATH
|
PATH=$PATH:${PWD=`${PWDCMD-pwd}`} ; export PATH
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -526,7 +526,7 @@ fi
|
|||||||
configsub=`echo ${progname} | sed 's/configure$/config.sub/'`
|
configsub=`echo ${progname} | sed 's/configure$/config.sub/'`
|
||||||
moveifchange=`echo ${progname} | sed 's/configure$/move-if-change/'`
|
moveifchange=`echo ${progname} | sed 's/configure$/move-if-change/'`
|
||||||
## the sed command below emulates the dirname command
|
## the sed command below emulates the dirname command
|
||||||
topsrcdir=`cd \`echo ${progname} | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'\`; pwd`
|
topsrcdir=`cd \`echo ${progname} | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'\`; ${PWDCMD-pwd}`
|
||||||
|
|
||||||
|
|
||||||
# this is a hack. sun4 must always be a valid host alias or this will fail.
|
# this is a hack. sun4 must always be a valid host alias or this will fail.
|
||||||
@ -566,8 +566,8 @@ case "${srcdir}" in
|
|||||||
echo "Invalid source directory ${srcdir}" >&2
|
echo "Invalid source directory ${srcdir}" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
pwd=`pwd`
|
pwd=`${PWDCMD-pwd}`
|
||||||
srcpwd=`cd ${srcdir} ; pwd`
|
srcpwd=`cd ${srcdir} ; ${PWDCMD-pwd}`
|
||||||
if [ "${pwd}" = "${srcpwd}" ] ; then
|
if [ "${pwd}" = "${srcpwd}" ] ; then
|
||||||
srcdir=.
|
srcdir=.
|
||||||
fi
|
fi
|
||||||
@ -579,7 +579,7 @@ case "${srcdir}" in
|
|||||||
".") ;;
|
".") ;;
|
||||||
*)
|
*)
|
||||||
if [ -f ${srcdir}/config.status ] ; then
|
if [ -f ${srcdir}/config.status ] ; then
|
||||||
echo '***' Cannot configure here in \"${PWD=`pwd`}\" when \"${srcdir}\" is currently configured. 1>&2
|
echo '***' Cannot configure here in \"${PWD=`${PWDCMD-pwd}`}\" when \"${srcdir}\" is currently configured. 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
esac
|
esac
|
||||||
@ -708,7 +708,7 @@ fi
|
|||||||
# some sanity checks on configure.in
|
# some sanity checks on configure.in
|
||||||
case "${srctrigger}" in
|
case "${srctrigger}" in
|
||||||
"")
|
"")
|
||||||
echo '***' srctrigger not set in ${PWD=`pwd`}/configure.in. 1>&2
|
echo '***' srctrigger not set in ${PWD=`${PWDCMD-pwd}`}/configure.in. 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
*) ;;
|
*) ;;
|
||||||
@ -778,8 +778,8 @@ esac
|
|||||||
|
|
||||||
if [ ! -r ${srcdir}/${srctrigger} ] ; then
|
if [ ! -r ${srcdir}/${srctrigger} ] ; then
|
||||||
case "${srcdirdefaulted}" in
|
case "${srcdirdefaulted}" in
|
||||||
"") echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`pwd`}/${srcdir}" 1>&2 ;;
|
"") echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`${PWDCMD-pwd}`}/${srcdir}" 1>&2 ;;
|
||||||
*) echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`pwd`}/. or ${PWD=`pwd`}/.." 1>&2 ;;
|
*) echo '***' "${progname}: Can't find ${srcname} sources in ${PWD=`${PWDCMD-pwd}`}/. or ${PWD=`${PWDCMD-pwd}`}/.." 1>&2 ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
echo '***' \(At least ${srctrigger} is missing.\) 1>&2
|
echo '***' \(At least ${srctrigger} is missing.\) 1>&2
|
||||||
@ -1108,7 +1108,7 @@ for subdir in . ${subdirs} ; do
|
|||||||
if mkdir ${subdir} ; then
|
if mkdir ${subdir} ; then
|
||||||
true
|
true
|
||||||
else
|
else
|
||||||
echo '***' "${progname}: could not make ${PWD=`pwd`}/${subdir}" 1>&2
|
echo '***' "${progname}: could not make ${PWD=`${PWDCMD-pwd}`}/${subdir}" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -1207,7 +1207,7 @@ EOF
|
|||||||
sed -e "/^####/ r ${package_makefile_rules_frag}" ${srcdir}/${subdir}/${Makefile_in} > ${Makefile}.tem
|
sed -e "/^####/ r ${package_makefile_rules_frag}" ${srcdir}/${subdir}/${Makefile_in} > ${Makefile}.tem
|
||||||
else
|
else
|
||||||
echo '***' Expected package makefile rules fragment \"${package_makefile_rules_frag}\" 1>&2
|
echo '***' Expected package makefile rules fragment \"${package_makefile_rules_frag}\" 1>&2
|
||||||
echo '***' is missing in ${PWD=`pwd`}. 1>&2
|
echo '***' is missing in ${PWD=`${PWDCMD-pwd}`}. 1>&2
|
||||||
cp ${srcdir}/${subdir}/${Makefile_in} ${subdir}/Makefile.tem
|
cp ${srcdir}/${subdir}/${Makefile_in} ${subdir}/Makefile.tem
|
||||||
fi
|
fi
|
||||||
esac
|
esac
|
||||||
@ -1243,7 +1243,7 @@ EOF
|
|||||||
sed -e "/^####/ r ${host_makefile_frag}" ${Makefile} > ${subdir}/Makefile.tem
|
sed -e "/^####/ r ${host_makefile_frag}" ${Makefile} > ${subdir}/Makefile.tem
|
||||||
else
|
else
|
||||||
echo '***' Expected host makefile fragment \"${host_makefile_frag}\" 1>&2
|
echo '***' Expected host makefile fragment \"${host_makefile_frag}\" 1>&2
|
||||||
echo '***' is missing in ${PWD=`pwd`}. 1>&2
|
echo '***' is missing in ${PWD=`${PWDCMD-pwd}`}. 1>&2
|
||||||
mv ${Makefile} ${subdir}/Makefile.tem
|
mv ${Makefile} ${subdir}/Makefile.tem
|
||||||
fi
|
fi
|
||||||
esac
|
esac
|
||||||
@ -1279,7 +1279,7 @@ EOF
|
|||||||
sed -e "/^####/ r ${package_makefile_frag}" ${Makefile} > ${subdir}/Makefile.tem
|
sed -e "/^####/ r ${package_makefile_frag}" ${Makefile} > ${subdir}/Makefile.tem
|
||||||
else
|
else
|
||||||
echo '***' Expected package makefile fragment \"${package_makefile_rules_frag}\" 1>&2
|
echo '***' Expected package makefile fragment \"${package_makefile_rules_frag}\" 1>&2
|
||||||
echo '***' is missing in ${PWD=`pwd`}. 1>&2
|
echo '***' is missing in ${PWD=`${PWDCMD-pwd}`}. 1>&2
|
||||||
mv ${Makefile} ${subdir}/Makefile.tem
|
mv ${Makefile} ${subdir}/Makefile.tem
|
||||||
fi
|
fi
|
||||||
esac
|
esac
|
||||||
@ -1465,7 +1465,7 @@ EOF
|
|||||||
|
|
||||||
newusing=`echo "${using}" | sed 's/and/using/'`
|
newusing=`echo "${using}" | sed 's/and/using/'`
|
||||||
using=${newusing}
|
using=${newusing}
|
||||||
echo "Created \"${Makefile}\" in" ${PWD=`pwd`} ${using}
|
echo "Created \"${Makefile}\" in" ${PWD=`${PWDCMD-pwd}`} ${using}
|
||||||
|
|
||||||
. ${tmpfile}.pos
|
. ${tmpfile}.pos
|
||||||
|
|
||||||
@ -1531,14 +1531,14 @@ if [ -z "${norecursion}" ] && [ -n "${configdirs}" ] ; then
|
|||||||
if mkdir ./${bld_dir} ; then
|
if mkdir ./${bld_dir} ; then
|
||||||
true
|
true
|
||||||
else
|
else
|
||||||
echo '***' "${progname}: could not make ${PWD=`pwd`}/${bld_dir}" 1>&2
|
echo '***' "${progname}: could not make ${PWD=`${PWDCMD-pwd}`}/${bld_dir}" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
POPDIR=${PWD=`pwd`}
|
POPDIR=${PWD=`${PWDCMD-pwd}`}
|
||||||
cd ${bld_dir}
|
cd ${bld_dir}
|
||||||
|
|
||||||
### figure out what to do with srcdir
|
### figure out what to do with srcdir
|
||||||
@ -1586,7 +1586,7 @@ if [ -z "${norecursion}" ] && [ -n "${configdirs}" ] ; then
|
|||||||
${srcdiroption} ${diroptions} ${program_prefixoption} ${program_suffixoption} ${program_transform_nameoption} ${site_option} ${withoptions} ${withoutoptions} ${enableoptions} ${disableoptions} ${floating_pointoption} ${cache_file_option} ${removing} ${other_options} ${redirect} ; then
|
${srcdiroption} ${diroptions} ${program_prefixoption} ${program_suffixoption} ${program_transform_nameoption} ${site_option} ${withoptions} ${withoutoptions} ${enableoptions} ${disableoptions} ${floating_pointoption} ${cache_file_option} ${removing} ${other_options} ${redirect} ; then
|
||||||
true
|
true
|
||||||
else
|
else
|
||||||
echo Configure in `pwd` failed, exiting. 1>&2
|
echo Configure in `${PWDCMD-pwd}` failed, exiting. 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -446,7 +446,7 @@ target_subdir=${target_alias}
|
|||||||
if test ! -d ${target_subdir} ; then
|
if test ! -d ${target_subdir} ; then
|
||||||
if mkdir ${target_subdir} ; then true
|
if mkdir ${target_subdir} ; then true
|
||||||
else
|
else
|
||||||
echo "'*** could not make ${PWD=`pwd`}/${target_subdir}" 1>&2
|
echo "'*** could not make ${PWD=`${PWDCMD-pwd}`}/${target_subdir}" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -457,7 +457,7 @@ if test x"${build_alias}" != x"${host}" ; then
|
|||||||
if test ! -d ${build_subdir} ; then
|
if test ! -d ${build_subdir} ; then
|
||||||
if mkdir ${build_subdir} ; then true
|
if mkdir ${build_subdir} ; then true
|
||||||
else
|
else
|
||||||
echo "'*** could not make ${PWD=`pwd`}/${build_subdir}" 1>&2
|
echo "'*** could not make ${PWD=`${PWDCMD-pwd}`}/${build_subdir}" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* test_installed: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
* test_summary: Likewise.
|
||||||
|
|
||||||
2002-04-18 Geoffrey Keating <geoffk@redhat.com>
|
2002-04-18 Geoffrey Keating <geoffk@redhat.com>
|
||||||
|
|
||||||
* gcc_update (touch_files): Don't have empty for loop.
|
* gcc_update (touch_files): Don't have empty for loop.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
# (C) 1998, 2000 Free Software Foundation
|
# (C) 1998, 2000, 2002 Free Software Foundation
|
||||||
# Originally by Alexandre Oliva <oliva@dcc.unicamp.br>
|
# Originally by Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||||
|
|
||||||
# This script is Free Software, and it can be copied, distributed and
|
# This script is Free Software, and it can be copied, distributed and
|
||||||
@ -96,11 +96,11 @@ if test x"${testsuite+set}" != x"set" && test x"${srcdir+set}" != x"set"; then
|
|||||||
while [ -h $file ]; do
|
while [ -h $file ]; do
|
||||||
file=`ls -l $file | sed s/'.* -> '//`
|
file=`ls -l $file | sed s/'.* -> '//`
|
||||||
done
|
done
|
||||||
srcdir=`CDPATH=. && cd \`echo "$file" | sed 's,/*[^/]*$,,;s,^$,.,'\`/.. >/dev/null && pwd`
|
srcdir=`CDPATH=. && cd \`echo "$file" | sed 's,/*[^/]*$,,;s,^$,.,'\`/.. >/dev/null && ${PWDCMD-pwd}`
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cat >site.exp <<EOF
|
cat >site.exp <<EOF
|
||||||
set tmpdir "${tmpdir-`pwd`}"
|
set tmpdir "${tmpdir-`${PWDCMD-pwd}`}"
|
||||||
set srcdir "${testsuite-${srcdir}/gcc/testsuite}"
|
set srcdir "${testsuite-${srcdir}/gcc/testsuite}"
|
||||||
set GCC_UNDER_TEST "${GCC_UNDER_TEST-${prefix}${prefix+/bin/}gcc}"
|
set GCC_UNDER_TEST "${GCC_UNDER_TEST-${prefix}${prefix+/bin/}gcc}"
|
||||||
set GXX_UNDER_TEST "${GXX_UNDER_TEST-${prefix}${prefix+/bin/}g++}"
|
set GXX_UNDER_TEST "${GXX_UNDER_TEST-${prefix}${prefix+/bin/}g++}"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
# (C) 1998, 1999, 2000 Free Software Foundation
|
# (C) 1998, 1999, 2000, 2002 Free Software Foundation
|
||||||
# Originally by Alexandre Oliva <oliva@dcc.unicamp.br>
|
# Originally by Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||||
|
|
||||||
# This script is Free Software, and it can be copied, distributed and
|
# This script is Free Software, and it can be copied, distributed and
|
||||||
@ -135,7 +135,7 @@ END { if (lang != "") {
|
|||||||
' | sed "s/\([\`\$\\\\]\)/\\\\\\1/g" &&
|
' | sed "s/\([\`\$\\\\]\)/\\\\\\1/g" &&
|
||||||
if $move; then
|
if $move; then
|
||||||
for file in $files `ls -1 $files | sed s/sum$/log/`; do
|
for file in $files `ls -1 $files | sed s/sum$/log/`; do
|
||||||
[ -f $file ] && echo "mv `pwd`/$file `pwd`/$file.sent &&"
|
[ -f $file ] && echo "mv `${PWDCMD-pwd}`/$file `${PWDCMD-pwd}`/$file.sent &&"
|
||||||
done
|
done
|
||||||
fi &&
|
fi &&
|
||||||
echo true
|
echo true
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* Makefile.in: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
* configure.in: Likewise.
|
||||||
|
* fixinc/check.tpl: Likewise.
|
||||||
|
* fixinc/fixinc.dgux: Likewise.
|
||||||
|
* fixinc/fixinc.svr4: Likewise.
|
||||||
|
* fixinc/fixinc.winnt: Likewise.
|
||||||
|
* fixinc/fixincl.sh: Likewise.
|
||||||
|
* fixproto: Likewise.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2002-05-16 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
|
2002-05-16 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
|
||||||
|
|
||||||
Basic block renumbering removal:
|
Basic block renumbering removal:
|
||||||
|
@ -112,6 +112,11 @@ AR_FLAGS = rc
|
|||||||
DLLTOOL = dlltool
|
DLLTOOL = dlltool
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
# pwd command to use. Allow user to override default by setting PWDCMD in
|
||||||
|
# the environment to account for automounters. The make variable must not
|
||||||
|
# be called PWDCMD, otherwise the value set here is passed to make
|
||||||
|
# subprocesses and overrides the setting from the user's environment.
|
||||||
|
PWD = $${PWDCMD-pwd}
|
||||||
# on sysV, define this as cp.
|
# on sysV, define this as cp.
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
# Some systems may be missing symbolic links, regular links, or both.
|
# Some systems may be missing symbolic links, regular links, or both.
|
||||||
@ -2163,7 +2168,7 @@ fixinc.sh: $(FIXINCSRCDIR)/mkfixinc.sh $(FIXINCSRCDIR)/fixincl.c \
|
|||||||
$(FIXINCSRCDIR)/procopen.c $(FIXINCSRCDIR)/gnu-regex.c \
|
$(FIXINCSRCDIR)/procopen.c $(FIXINCSRCDIR)/gnu-regex.c \
|
||||||
$(FIXINCSRCDIR)/server.c $(FIXINCSRCDIR)/gnu-regex.h \
|
$(FIXINCSRCDIR)/server.c $(FIXINCSRCDIR)/gnu-regex.h \
|
||||||
$(FIXINCSRCDIR)/server.h $(FIXINCSRCDIR)/inclhack.def specs.ready
|
$(FIXINCSRCDIR)/server.h $(FIXINCSRCDIR)/inclhack.def specs.ready
|
||||||
(MAKE="$(MAKE)"; srcdir=`cd $(srcdir)/fixinc && pwd` ; \
|
(MAKE="$(MAKE)"; srcdir=`cd $(srcdir)/fixinc && ${PWD}` ; \
|
||||||
CC="$(HOST_CC)"; CFLAGS="$(HOST_CFLAGS)"; LDFLAGS="$(HOST_LDFLAGS)"; \
|
CC="$(HOST_CC)"; CFLAGS="$(HOST_CFLAGS)"; LDFLAGS="$(HOST_LDFLAGS)"; \
|
||||||
WARN_CFLAGS="$(WARN_CFLAGS)"; \
|
WARN_CFLAGS="$(WARN_CFLAGS)"; \
|
||||||
export MAKE srcdir CC CFLAGS LDFLAGS WARN_CFLAGS; cd ./fixinc && \
|
export MAKE srcdir CC CFLAGS LDFLAGS WARN_CFLAGS; cd ./fixinc && \
|
||||||
@ -2173,10 +2178,10 @@ fixinc.sh: $(FIXINCSRCDIR)/mkfixinc.sh $(FIXINCSRCDIR)/fixincl.c \
|
|||||||
stmp-fixinc: fixinc.sh gsyslimits.h
|
stmp-fixinc: fixinc.sh gsyslimits.h
|
||||||
rm -rf include; mkdir include
|
rm -rf include; mkdir include
|
||||||
-chmod a+rx include
|
-chmod a+rx include
|
||||||
(TARGET_MACHINE='$(target)'; srcdir=`cd $(srcdir); pwd`; \
|
(TARGET_MACHINE='$(target)'; srcdir=`cd $(srcdir); ${PWD}`; \
|
||||||
SHELL='$(SHELL)' ;\
|
SHELL='$(SHELL)' ;\
|
||||||
export TARGET_MACHINE srcdir SHELL ; \
|
export TARGET_MACHINE srcdir SHELL ; \
|
||||||
$(SHELL) ./fixinc.sh `pwd`/include $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); \
|
$(SHELL) ./fixinc.sh `${PWD}`/include $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); \
|
||||||
rm -f include/syslimits.h; \
|
rm -f include/syslimits.h; \
|
||||||
if [ -f include/limits.h ]; then \
|
if [ -f include/limits.h ]; then \
|
||||||
mv include/limits.h include/syslimits.h; \
|
mv include/limits.h include/syslimits.h; \
|
||||||
@ -2787,7 +2792,7 @@ install-headers: $(INSTALL_HEADERS_DIR)
|
|||||||
# Don't need to use LN_S here since we really do need ln -s and no substitutes.
|
# Don't need to use LN_S here since we really do need ln -s and no substitutes.
|
||||||
-files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
|
-files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
|
||||||
if [ $$? -eq 0 ]; then \
|
if [ $$? -eq 0 ]; then \
|
||||||
dir=`cd include; pwd`; \
|
dir=`cd include; ${PWD}`; \
|
||||||
for i in $$files; do \
|
for i in $$files; do \
|
||||||
dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
|
dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
|
||||||
if expr "$$dest" : "$$dir.*" > /dev/null; then \
|
if expr "$$dest" : "$$dir.*" > /dev/null; then \
|
||||||
@ -2809,7 +2814,7 @@ install-headers-tar: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
|
|||||||
# Unless a full pathname is provided, some shells would print the new CWD,
|
# Unless a full pathname is provided, some shells would print the new CWD,
|
||||||
# found in CDPATH, corrupting the output. We could just redirect the
|
# found in CDPATH, corrupting the output. We could just redirect the
|
||||||
# output of `cd', but some shells lose on redirection within `()'s
|
# output of `cd', but some shells lose on redirection within `()'s
|
||||||
(cd `pwd`/include ; \
|
(cd `${PWD}`/include ; \
|
||||||
tar -cf - .; exit 0) | (cd $(libsubdir)/include; tar xpf - )
|
tar -cf - .; exit 0) | (cd $(libsubdir)/include; tar xpf - )
|
||||||
# /bin/sh on some systems returns the status of the first tar,
|
# /bin/sh on some systems returns the status of the first tar,
|
||||||
# and that can lose with GNU tar which always writes a full block.
|
# and that can lose with GNU tar which always writes a full block.
|
||||||
@ -2818,7 +2823,7 @@ install-headers-tar: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
|
|||||||
# Install the include directory using cpio.
|
# Install the include directory using cpio.
|
||||||
install-headers-cpio: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
|
install-headers-cpio: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
|
||||||
# See discussion about the use of `pwd` above
|
# See discussion about the use of `pwd` above
|
||||||
cd `pwd`/include ; \
|
cd `${PWD}`/include ; \
|
||||||
find . -print | cpio -pdum $(libsubdir)/include
|
find . -print | cpio -pdum $(libsubdir)/include
|
||||||
|
|
||||||
# Install the include directory using cp.
|
# Install the include directory using cp.
|
||||||
@ -2863,8 +2868,8 @@ site.exp: ./config.status Makefile
|
|||||||
@echo "## these variables are automatically generated by make ##" > ./tmp0
|
@echo "## these variables are automatically generated by make ##" > ./tmp0
|
||||||
@echo "# Do not edit here. If you wish to override these values" >> ./tmp0
|
@echo "# Do not edit here. If you wish to override these values" >> ./tmp0
|
||||||
@echo "# add them to the last section" >> ./tmp0
|
@echo "# add them to the last section" >> ./tmp0
|
||||||
@echo "set rootme \"`pwd`\"" >> ./tmp0
|
@echo "set rootme \"`${PWD}`\"" >> ./tmp0
|
||||||
@echo "set srcdir \"`cd ${srcdir}; pwd`\"" >> ./tmp0
|
@echo "set srcdir \"`cd ${srcdir}; ${PWD}`\"" >> ./tmp0
|
||||||
@echo "set host_triplet $(host_canonical)" >> ./tmp0
|
@echo "set host_triplet $(host_canonical)" >> ./tmp0
|
||||||
@echo "set build_triplet $(build_canonical)" >> ./tmp0
|
@echo "set build_triplet $(build_canonical)" >> ./tmp0
|
||||||
@echo "set target_triplet $(target)" >> ./tmp0
|
@echo "set target_triplet $(target)" >> ./tmp0
|
||||||
@ -2932,52 +2937,52 @@ $(TESTSUITEDIR)/site.exp: site.exp
|
|||||||
sed '/set tmpdir/ s|testsuite|$(TESTSUITEDIR)|' < site.exp > $@
|
sed '/set tmpdir/ s|testsuite|$(TESTSUITEDIR)|' < site.exp > $@
|
||||||
|
|
||||||
check-g++: $(TESTSUITEDIR)/site.exp
|
check-g++: $(TESTSUITEDIR)/site.exp
|
||||||
-(rootme=`pwd`; export rootme; \
|
-(rootme=`${PWD}`; export rootme; \
|
||||||
srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
|
srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
|
||||||
cd $(TESTSUITEDIR); \
|
cd $(TESTSUITEDIR); \
|
||||||
EXPECT=${EXPECT} ; export EXPECT ; \
|
EXPECT=${EXPECT} ; export EXPECT ; \
|
||||||
if [ -f $${rootme}/../expect/expect ] ; then \
|
if [ -f $${rootme}/../expect/expect ] ; then \
|
||||||
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
|
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
|
||||||
export TCL_LIBRARY ; fi ; \
|
export TCL_LIBRARY ; fi ; \
|
||||||
$(RUNTEST) --tool g++ $(RUNTESTFLAGS))
|
$(RUNTEST) --tool g++ $(RUNTESTFLAGS))
|
||||||
|
|
||||||
check-gcc: $(TESTSUITEDIR)/site.exp
|
check-gcc: $(TESTSUITEDIR)/site.exp
|
||||||
-(rootme=`pwd`; export rootme; \
|
-(rootme=`${PWD}`; export rootme; \
|
||||||
srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
|
srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
|
||||||
cd $(TESTSUITEDIR); \
|
cd $(TESTSUITEDIR); \
|
||||||
EXPECT=${EXPECT} ; export EXPECT ; \
|
EXPECT=${EXPECT} ; export EXPECT ; \
|
||||||
if [ -f $${rootme}/../expect/expect ] ; then \
|
if [ -f $${rootme}/../expect/expect ] ; then \
|
||||||
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
|
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
|
||||||
export TCL_LIBRARY ; fi ; \
|
export TCL_LIBRARY ; fi ; \
|
||||||
$(RUNTEST) --tool gcc $(RUNTESTFLAGS))
|
$(RUNTEST) --tool gcc $(RUNTESTFLAGS))
|
||||||
|
|
||||||
check-g77: $(TESTSUITEDIR)/site.exp
|
check-g77: $(TESTSUITEDIR)/site.exp
|
||||||
-(rootme=`pwd`; export rootme; \
|
-(rootme=`${PWD}`; export rootme; \
|
||||||
srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
|
srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
|
||||||
cd $(TESTSUITEDIR); \
|
cd $(TESTSUITEDIR); \
|
||||||
EXPECT=${EXPECT} ; export EXPECT ; \
|
EXPECT=${EXPECT} ; export EXPECT ; \
|
||||||
if [ -f $${rootme}/../expect/expect ] ; then \
|
if [ -f $${rootme}/../expect/expect ] ; then \
|
||||||
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
|
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
|
||||||
export TCL_LIBRARY ; fi ; \
|
export TCL_LIBRARY ; fi ; \
|
||||||
$(RUNTEST) --tool g77 $(RUNTESTFLAGS))
|
$(RUNTEST) --tool g77 $(RUNTESTFLAGS))
|
||||||
|
|
||||||
check-objc: $(TESTSUITEDIR)/site.exp
|
check-objc: $(TESTSUITEDIR)/site.exp
|
||||||
-(rootme=`pwd`; export rootme; \
|
-(rootme=`${PWD}`; export rootme; \
|
||||||
srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
|
srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
|
||||||
cd $(TESTSUITEDIR); \
|
cd $(TESTSUITEDIR); \
|
||||||
EXPECT=${EXPECT} ; export EXPECT ; \
|
EXPECT=${EXPECT} ; export EXPECT ; \
|
||||||
if [ -f $${rootme}/../expect/expect ] ; then \
|
if [ -f $${rootme}/../expect/expect ] ; then \
|
||||||
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
|
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
|
||||||
export TCL_LIBRARY ; fi ; \
|
export TCL_LIBRARY ; fi ; \
|
||||||
$(RUNTEST) --tool objc $(RUNTESTFLAGS))
|
$(RUNTEST) --tool objc $(RUNTESTFLAGS))
|
||||||
|
|
||||||
check-consistency: testsuite/site.exp
|
check-consistency: testsuite/site.exp
|
||||||
-rootme=`pwd`; export rootme; \
|
-rootme=`${PWD}`; export rootme; \
|
||||||
srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
|
srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
|
||||||
cd testsuite; \
|
cd testsuite; \
|
||||||
EXPECT=${EXPECT} ; export EXPECT ; \
|
EXPECT=${EXPECT} ; export EXPECT ; \
|
||||||
if [ -f $${rootme}/../expect/expect ] ; then \
|
if [ -f $${rootme}/../expect/expect ] ; then \
|
||||||
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
|
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
|
||||||
export TCL_LIBRARY ; fi ; \
|
export TCL_LIBRARY ; fi ; \
|
||||||
$(RUNTEST) --tool consistency $(RUNTESTFLAGS)
|
$(RUNTEST) --tool consistency $(RUNTESTFLAGS)
|
||||||
|
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* Makefile.adalib: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
* Makefile.in: Likewise.
|
||||||
|
|
||||||
2002-05-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
2002-05-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
* Make-lang.in (gnat1$(exeext), gnatbind$(exeext), gnattools):
|
* Make-lang.in (gnat1$(exeext), gnatbind$(exeext), gnattools):
|
||||||
|
@ -42,10 +42,11 @@
|
|||||||
# updating the value of the environment variable ADA_OBJECTS_PATH
|
# updating the value of the environment variable ADA_OBJECTS_PATH
|
||||||
|
|
||||||
SHELL=sh
|
SHELL=sh
|
||||||
|
PWD=$${PWDCMD-pwd}
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
AR = ar
|
AR = ar
|
||||||
GNAT_ROOT = $(shell cd $(ROOT);pwd)/
|
GNAT_ROOT = $(shell cd $(ROOT);${PWD})/
|
||||||
target = $(shell $(CC) -dumpmachine)
|
target = $(shell $(CC) -dumpmachine)
|
||||||
version = $(shell $(CC) -dumpversion)
|
version = $(shell $(CC) -dumpversion)
|
||||||
ADA_INCLUDE_PATH = $(GNAT_ROOT)lib/gcc-lib/$(target)/$(version)/adainclude/
|
ADA_INCLUDE_PATH = $(GNAT_ROOT)lib/gcc-lib/$(target)/$(version)/adainclude/
|
||||||
|
@ -115,6 +115,7 @@ RANLIB = ranlib
|
|||||||
# Test to use to see whether ranlib exists on the system.
|
# Test to use to see whether ranlib exists on the system.
|
||||||
RANLIB_TEST = [ -f /usr/bin/ranlib -o -f /bin/ranlib ]
|
RANLIB_TEST = [ -f /usr/bin/ranlib -o -f /bin/ranlib ]
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
PWD = $${PWDCMD-pwd}
|
||||||
# How to copy preserving the date
|
# How to copy preserving the date
|
||||||
INSTALL_DATA_DATE = cp -p
|
INSTALL_DATA_DATE = cp -p
|
||||||
MAKEINFO = makeinfo
|
MAKEINFO = makeinfo
|
||||||
@ -192,10 +193,10 @@ TREE_H = $(srcdir)/../tree.h $(srcdir)/../real.h $(srcdir)/../tree.def \
|
|||||||
$(MACHMODE_H) $(srcdir)/../tree-check.h $(srdir)/../version.h \
|
$(MACHMODE_H) $(srcdir)/../tree-check.h $(srdir)/../version.h \
|
||||||
$(srcdir)/../builtins.def
|
$(srcdir)/../builtins.def
|
||||||
|
|
||||||
fsrcdir := $(shell cd $(srcdir);pwd)
|
fsrcdir := $(shell cd $(srcdir);${PWD})
|
||||||
fsrcpfx := $(shell cd $(srcdir);pwd)/
|
fsrcpfx := $(shell cd $(srcdir);${PWD})/
|
||||||
fcurdir := $(shell pwd)
|
fcurdir := $(shell ${PWD})
|
||||||
fcurpfx := $(shell pwd)/
|
fcurpfx := $(shell ${PWD})/
|
||||||
|
|
||||||
# Top build directory, relative to here.
|
# Top build directory, relative to here.
|
||||||
top_builddir = ..
|
top_builddir = ..
|
||||||
|
8
gcc/configure
vendored
8
gcc/configure
vendored
@ -6659,9 +6659,9 @@ fi
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
# Get an absolute path to the GCC top-level source directory
|
# Get an absolute path to the GCC top-level source directory
|
||||||
holddir=`pwd`
|
holddir=`${PWDCMD-pwd}`
|
||||||
cd $srcdir
|
cd $srcdir
|
||||||
topdir=`pwd`
|
topdir=`${PWDCMD-pwd}`
|
||||||
cd $holddir
|
cd $holddir
|
||||||
|
|
||||||
# Conditionalize the makefile for this host machine.
|
# Conditionalize the makefile for this host machine.
|
||||||
@ -8139,7 +8139,7 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
# Nothing to do for FLOAT_H, float_format already handled.
|
# Nothing to do for FLOAT_H, float_format already handled.
|
||||||
objdir=`pwd`
|
objdir=`${PWDCMD-pwd}`
|
||||||
|
|
||||||
|
|
||||||
# Process the language and host/target makefile fragments.
|
# Process the language and host/target makefile fragments.
|
||||||
@ -8786,7 +8786,7 @@ esac
|
|||||||
if test "$symbolic_link" = "ln -s"; then
|
if test "$symbolic_link" = "ln -s"; then
|
||||||
for d in .. ${subdirs} fixinc ; do
|
for d in .. ${subdirs} fixinc ; do
|
||||||
if test $d != ..; then
|
if test $d != ..; then
|
||||||
STARTDIR=`pwd`
|
STARTDIR=`${PWDCMD-pwd}`
|
||||||
cd $d
|
cd $d
|
||||||
for t in stage1 stage2 stage3 stage4 include
|
for t in stage1 stage2 stage3 stage4 include
|
||||||
do
|
do
|
||||||
|
@ -1008,9 +1008,9 @@ fi
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
# Get an absolute path to the GCC top-level source directory
|
# Get an absolute path to the GCC top-level source directory
|
||||||
holddir=`pwd`
|
holddir=`${PWDCMD-pwd}`
|
||||||
cd $srcdir
|
cd $srcdir
|
||||||
topdir=`pwd`
|
topdir=`${PWDCMD-pwd}`
|
||||||
cd $holddir
|
cd $holddir
|
||||||
|
|
||||||
# Conditionalize the makefile for this host machine.
|
# Conditionalize the makefile for this host machine.
|
||||||
@ -2383,7 +2383,7 @@ fi)
|
|||||||
AC_SUBST(slibdir)
|
AC_SUBST(slibdir)
|
||||||
|
|
||||||
# Nothing to do for FLOAT_H, float_format already handled.
|
# Nothing to do for FLOAT_H, float_format already handled.
|
||||||
objdir=`pwd`
|
objdir=`${PWDCMD-pwd}`
|
||||||
AC_SUBST(objdir)
|
AC_SUBST(objdir)
|
||||||
|
|
||||||
# Process the language and host/target makefile fragments.
|
# Process the language and host/target makefile fragments.
|
||||||
@ -2504,7 +2504,7 @@ esac
|
|||||||
if test "$symbolic_link" = "ln -s"; then
|
if test "$symbolic_link" = "ln -s"; then
|
||||||
for d in .. ${subdirs} fixinc ; do
|
for d in .. ${subdirs} fixinc ; do
|
||||||
if test $d != ..; then
|
if test $d != ..; then
|
||||||
STARTDIR=`pwd`
|
STARTDIR=`${PWDCMD-pwd}`
|
||||||
cd $d
|
cd $d
|
||||||
for t in stage1 stage2 stage3 stage4 include
|
for t in stage1 stage2 stage3 stage4 include
|
||||||
do
|
do
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* Make-lang.in: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
|
||||||
2002-05-09 Hassan Aurag <aurag@cae.com>
|
2002-05-09 Hassan Aurag <aurag@cae.com>
|
||||||
|
|
||||||
* expr.c (ffeexpr_reduced_ugly2log_): Allow logicals-as-integers
|
* expr.c (ffeexpr_reduced_ugly2log_): Allow logicals-as-integers
|
||||||
|
@ -167,7 +167,7 @@ f/g77.dvi: $(srcdir)/f/g77.texi $(srcdir)/f/bugs.texi \
|
|||||||
$(srcdir)/f/root.texi $(srcdir)/doc/include/fdl.texi \
|
$(srcdir)/f/root.texi $(srcdir)/doc/include/fdl.texi \
|
||||||
$(srcdir)/doc/include/gpl.texi \
|
$(srcdir)/doc/include/gpl.texi \
|
||||||
$(srcdir)/doc/include/funding.texi
|
$(srcdir)/doc/include/funding.texi
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
cd f && $(TEXI2DVI) -I $$s/doc/include $$s/f/g77.texi
|
cd f && $(TEXI2DVI) -I $$s/doc/include $$s/f/g77.texi
|
||||||
|
|
||||||
$(srcdir)/f/g77.1: $(srcdir)/f/invoke.texi
|
$(srcdir)/f/g77.1: $(srcdir)/f/invoke.texi
|
||||||
|
@ -7,18 +7,18 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
TESTDIR=tests
|
TESTDIR=tests
|
||||||
TESTBASE=`cd $1;pwd`
|
TESTBASE=`cd $1;${PWDCMD-pwd}`
|
||||||
|
|
||||||
[ -d ${TESTDIR} ] || mkdir ${TESTDIR}
|
[ -d ${TESTDIR} ] || mkdir ${TESTDIR}
|
||||||
cd ${TESTDIR}
|
cd ${TESTDIR}
|
||||||
TESTDIR=`pwd`
|
TESTDIR=`${PWDCMD-pwd}`
|
||||||
|
|
||||||
TARGET_MACHINE='*'
|
TARGET_MACHINE='*'
|
||||||
DESTDIR=`pwd`/res
|
DESTDIR=`${PWDCMD-pwd}`/res
|
||||||
SRCDIR=`pwd`/inc
|
SRCDIR=`${PWDCMD-pwd}`/inc
|
||||||
FIND_BASE='.'
|
FIND_BASE='.'
|
||||||
VERBOSE=1
|
VERBOSE=1
|
||||||
INPUT=`pwd`
|
INPUT=`${PWDCMD-pwd}`
|
||||||
ORIGDIR=${INPUT}
|
ORIGDIR=${INPUT}
|
||||||
|
|
||||||
export TARGET_MACHINE DESTDIR SRCDIR FIND_BASE VERBOSE INPUT ORIGDIR
|
export TARGET_MACHINE DESTDIR SRCDIR FIND_BASE VERBOSE INPUT ORIGDIR
|
||||||
|
@ -95,7 +95,7 @@ if $LINKS; then
|
|||||||
for file in $files; do
|
for file in $files; do
|
||||||
dest=`ls -ld $file | sed -n 's/.*-> //p'`
|
dest=`ls -ld $file | sed -n 's/.*-> //p'`
|
||||||
if [ "$dest" ]; then
|
if [ "$dest" ]; then
|
||||||
cwd=`pwd`
|
cwd=`${PWDCMD-pwd}`
|
||||||
# In case $dest is relative, get to $file's dir first.
|
# In case $dest is relative, get to $file's dir first.
|
||||||
cd ${INPUT}
|
cd ${INPUT}
|
||||||
cd `echo ./$file | sed -n 's&[^/]*$&&p'`
|
cd `echo ./$file | sed -n 's&[^/]*$&&p'`
|
||||||
@ -105,7 +105,7 @@ if $LINKS; then
|
|||||||
if [ $? = 0 ]; then
|
if [ $? = 0 ]; then
|
||||||
cd $dest
|
cd $dest
|
||||||
# X gets the dir that the link actually leads to.
|
# X gets the dir that the link actually leads to.
|
||||||
x=`pwd`
|
x=`${PWDCMD-pwd}`
|
||||||
# If link leads back into ${INPUT},
|
# If link leads back into ${INPUT},
|
||||||
# make a similar link here.
|
# make a similar link here.
|
||||||
if expr $x : "${INPUT}/.*" > /dev/null; then
|
if expr $x : "${INPUT}/.*" > /dev/null; then
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Install modified versions of certain ANSI-incompatible
|
# Install modified versions of certain ANSI-incompatible
|
||||||
# native System V Release 4 system include files.
|
# native System V Release 4 system include files.
|
||||||
# Copyright (C) 1994, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
|
# Copyright (C) 1994, 1996, 1997, 1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
# Contributed by Ron Guilmette (rfg@monkeys.com).
|
# Contributed by Ron Guilmette (rfg@monkeys.com).
|
||||||
#
|
#
|
||||||
# This file is part of GNU CC.
|
# This file is part of GNU CC.
|
||||||
@ -103,18 +103,18 @@ if $LINKS; then
|
|||||||
for file in $files; do
|
for file in $files; do
|
||||||
dest=`ls -ld $file | sed -n 's/.*-> //p'`
|
dest=`ls -ld $file | sed -n 's/.*-> //p'`
|
||||||
if [ "$dest" ]; then
|
if [ "$dest" ]; then
|
||||||
cwd=`pwd`
|
cwd=`${PWDCMD-pwd}`
|
||||||
# In case $dest is relative, get to $file's dir first.
|
# In case $dest is relative, get to $file's dir first.
|
||||||
cd ${INPUT}
|
cd ${INPUT}
|
||||||
cd `echo ./$file | sed -n 's&[^/]*$&&p'`
|
cd `echo ./$file | sed -n 's&[^/]*$&&p'`
|
||||||
rwd=`pwd`
|
rwd=`${PWDCMD-pwd}`
|
||||||
# Check that the target directory exists.
|
# Check that the target directory exists.
|
||||||
# Redirections changed to avoid bug in sh on Ultrix.
|
# Redirections changed to avoid bug in sh on Ultrix.
|
||||||
(cd $dest) > /dev/null 2>&1
|
(cd $dest) > /dev/null 2>&1
|
||||||
if [ $? = 0 ]; then
|
if [ $? = 0 ]; then
|
||||||
cd $dest
|
cd $dest
|
||||||
# X gets the dir that the link actually leads to.
|
# X gets the dir that the link actually leads to.
|
||||||
x=`pwd`
|
x=`${PWDCMD-pwd}`
|
||||||
# If link leads back into ${INPUT},
|
# If link leads back into ${INPUT},
|
||||||
# make a similar link here.
|
# make a similar link here.
|
||||||
if expr "$dest" : '[^/][^/]*' >/dev/null && [ ! -h $dest ]; then
|
if expr "$dest" : '[^/][^/]*' >/dev/null && [ ! -h $dest ]; then
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
#
|
#
|
||||||
# See README-fixinc for more information.
|
# See README-fixinc for more information.
|
||||||
|
|
||||||
ORIG_DIR=`pwd`
|
ORIG_DIR=`${PWDCMD-pwd}`
|
||||||
|
|
||||||
# Directory containing the original header files.
|
# Directory containing the original header files.
|
||||||
cd $2; SEDFILE=`${PWDCMD-pwd}`/fixinc-nt.sed
|
cd $2; SEDFILE=`${PWDCMD-pwd}`/fixinc-nt.sed
|
||||||
@ -65,7 +65,7 @@ if [ ! -d $LIB ]; then
|
|||||||
mkdir $LIB || exit 1
|
mkdir $LIB || exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ORIG_DIR=`pwd`
|
ORIG_DIR=`${PWDCMD-pwd}`
|
||||||
|
|
||||||
# Make LIB absolute if it is relative.
|
# Make LIB absolute if it is relative.
|
||||||
# Don't do this if not necessary, since may screw up automounters.
|
# Don't do this if not necessary, since may screw up automounters.
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#
|
#
|
||||||
# See README-fixinc for more information.
|
# See README-fixinc for more information.
|
||||||
#
|
#
|
||||||
# fixincludes copyright (c) 1998, 1999, 2000
|
# fixincludes copyright (c) 1998, 1999, 2000, 2002
|
||||||
# The Free Software Foundation, Inc.
|
# The Free Software Foundation, Inc.
|
||||||
#
|
#
|
||||||
# fixincludes is free software.
|
# fixincludes is free software.
|
||||||
@ -84,7 +84,7 @@ export target_canonical
|
|||||||
#
|
#
|
||||||
# Define PWDCMD as a command to use to get the working dir
|
# Define PWDCMD as a command to use to get the working dir
|
||||||
# in the form that we want.
|
# in the form that we want.
|
||||||
PWDCMD=pwd
|
PWDCMD=${PWDCMD-pwd}
|
||||||
|
|
||||||
case "`$PWDCMD`" in
|
case "`$PWDCMD`" in
|
||||||
//*)
|
//*)
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# fixproto TARGET-DIR SOURCE-DIR-ALL SOURCE-DIR-STD
|
# fixproto TARGET-DIR SOURCE-DIR-ALL SOURCE-DIR-STD
|
||||||
#
|
#
|
||||||
# COPYRIGHT
|
# COPYRIGHT
|
||||||
# Copyright (C) 1993, 1994, 1997, 1998 Free Software Foundation, Inc.
|
# Copyright (C) 1993, 1994, 1997, 1998, 2002 Free Software Foundation, Inc.
|
||||||
# This file is part of GCC.
|
# This file is part of GCC.
|
||||||
#
|
#
|
||||||
# GCC is free software; you can redistribute it and/or modify
|
# GCC is free software; you can redistribute it and/or modify
|
||||||
@ -56,7 +56,7 @@
|
|||||||
|
|
||||||
dirname=`echo "$0" | sed 's,^[^/]*$,.,;s,//*[^/]*$,,'`
|
dirname=`echo "$0" | sed 's,^[^/]*$,.,;s,//*[^/]*$,,'`
|
||||||
progname=`echo "$0" | sed 's,.*/,,'`
|
progname=`echo "$0" | sed 's,.*/,,'`
|
||||||
original_dir=`pwd`
|
original_dir=`${PWDCMD-pwd}`
|
||||||
FIX_HEADER=${FIX_HEADER-$original_dir/fix-header}
|
FIX_HEADER=${FIX_HEADER-$original_dir/fix-header}
|
||||||
DEFINES="-D__STDC__=0 -D__cplusplus ${FIXPROTO_DEFINES}"
|
DEFINES="-D__STDC__=0 -D__cplusplus ${FIXPROTO_DEFINES}"
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* Make-lang.in: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
|
||||||
2002-05-13 Mark Mitchell <mark@codesourcery.com>
|
2002-05-13 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
* jcf-write.c (write_classfile): Unlink the temporary file if it
|
* jcf-write.c (write_classfile): Unlink the temporary file if it
|
||||||
|
@ -329,7 +329,7 @@ $(srcdir)/java/gcj.info: $(srcdir)/java/gcj.texi \
|
|||||||
|
|
||||||
java/gcj.dvi: $(srcdir)/java/gcj.texi $(srcdir)/doc/include/fdl.texi \
|
java/gcj.dvi: $(srcdir)/java/gcj.texi $(srcdir)/doc/include/fdl.texi \
|
||||||
$(srcdir)/doc/include/gpl.texi
|
$(srcdir)/doc/include/gpl.texi
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); ${PWD}`; export s; \
|
||||||
cd java && $(TEXI2DVI) -I $$s/doc/include $$s/java/gcj.texi
|
cd java && $(TEXI2DVI) -I $$s/doc/include $$s/java/gcj.texi
|
||||||
|
|
||||||
$(srcdir)/java/gcj.1: $(srcdir)/java/gcj.texi
|
$(srcdir)/java/gcj.1: $(srcdir)/java/gcj.texi
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* exgettext: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
|
||||||
2002-05-10 Philipp Thomas <pthomas@suse.de>
|
2002-05-10 Philipp Thomas <pthomas@suse.de>
|
||||||
|
|
||||||
* tr.po, es.po, fr.po: Update to version for 20020415
|
* tr.po, es.po, fr.po: Update to version for 20020415
|
||||||
|
@ -51,7 +51,7 @@ T=exg$$.d
|
|||||||
mkdir $T
|
mkdir $T
|
||||||
trap "rm -r $T" 0
|
trap "rm -r $T" 0
|
||||||
|
|
||||||
pwd=`pwd`
|
pwd=`${PWDCMD-pwd}`
|
||||||
kopt=$pwd/$T/keyword-options
|
kopt=$pwd/$T/keyword-options
|
||||||
emsg=$pwd/$T/emsgids.c
|
emsg=$pwd/$T/emsgids.c
|
||||||
posr=$pwd/$T/po-sources
|
posr=$pwd/$T/po-sources
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* Make-lang.in: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
|
||||||
2002-05-11 Tim Josling <tej@melbpc.org.au>
|
2002-05-11 Tim Josling <tej@melbpc.org.au>
|
||||||
|
|
||||||
* treetree.c: (cpp_define) Add.
|
* treetree.c: (cpp_define) Add.
|
||||||
|
@ -255,23 +255,23 @@ treelang.check: $(TESTSUITEDIR)/site.exp
|
|||||||
# patch files for new empty files as required for cvs.
|
# patch files for new empty files as required for cvs.
|
||||||
# STAMP does not cut it here as I need an empty file.
|
# STAMP does not cut it here as I need an empty file.
|
||||||
touch $(srcdir)/testsuite/treelang/{a01gcco01runpgmerr,a01gcc.out01,a01gcc.out01err}
|
touch $(srcdir)/testsuite/treelang/{a01gcco01runpgmerr,a01gcc.out01,a01gcc.out01err}
|
||||||
-rootme=`pwd`; export rootme; \
|
-rootme=`${PWD}`; export rootme; \
|
||||||
srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
|
srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
|
||||||
cd testsuite; \
|
cd testsuite; \
|
||||||
EXPECT=${EXPECT} ; export EXPECT ; \
|
EXPECT=${EXPECT} ; export EXPECT ; \
|
||||||
TRANSFORM=$(program_transform_name); export TRANSFORM; \
|
TRANSFORM=$(program_transform_name); export TRANSFORM; \
|
||||||
if [ -f $${rootme}/../expect/expect ] ; then \
|
if [ -f $${rootme}/../expect/expect ] ; then \
|
||||||
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
|
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
|
||||||
export TCL_LIBRARY ; fi ; \
|
export TCL_LIBRARY ; fi ; \
|
||||||
PATH=`cd ..;pwd`:$$PATH; export PATH; \
|
PATH=`cd ..;${PWD}`:$$PATH; export PATH; \
|
||||||
gcc_extras="-B`cd ..;pwd` -B`cd ..;pwd`/treelang"; export gcc_extras; \
|
gcc_extras="-B`cd ..;${PWD}` -B`cd ..;${PWD}`/treelang"; export gcc_extras; \
|
||||||
$(RUNTEST) --tool treelang $(RUNTESTFLAGS)
|
$(RUNTEST) --tool treelang $(RUNTESTFLAGS)
|
||||||
rm $(srcdir)/testsuite/treelang/{a01gcco01runpgmerr,a01gcc.out01,a01gcc.out01err}
|
rm $(srcdir)/testsuite/treelang/{a01gcco01runpgmerr,a01gcc.out01,a01gcc.out01err}
|
||||||
# GCC_EXTRAS="$(GCC_EXTRAS)"; export GCC_EXTRAS; \
|
# GCC_EXTRAS="$(GCC_EXTRAS)"; export GCC_EXTRAS; \
|
||||||
|
|
||||||
# copy the output files from the current test to source ie say the new results are OK
|
# copy the output files from the current test to source ie say the new results are OK
|
||||||
treelang.check.fix: force
|
treelang.check.fix: force
|
||||||
srcdir=`cd ${srcdir}; pwd` ; export srcdir ;
|
srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ;
|
||||||
-cp testsuite/treelang/*.out* t
|
-cp testsuite/treelang/*.out* t
|
||||||
-cp testsuite/treelang/*runpgm* t
|
-cp testsuite/treelang/*runpgm* t
|
||||||
-rm -f t/*nofilename
|
-rm -f t/*nofilename
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* Makefile.in: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
* aclocal.m4: Likewise.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2002-05-08 Alexandre Oliva <aoliva@redhat.com>
|
2002-05-08 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
* configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
|
* configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#02111-1307, USA.
|
#02111-1307, USA.
|
||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
PWD = $${PWDCMD-pwd}
|
||||||
MAKEOVERRIDES=
|
MAKEOVERRIDES=
|
||||||
.NOEXPORTS:
|
.NOEXPORTS:
|
||||||
|
|
||||||
@ -255,8 +256,8 @@ rebuilt: configure
|
|||||||
installcheck installdirs all-unilib
|
installcheck installdirs all-unilib
|
||||||
|
|
||||||
subdir_do:
|
subdir_do:
|
||||||
@rootpre=`pwd`/; export rootpre; \
|
@rootpre=`${PWD}`/; export rootpre; \
|
||||||
srcrootpre=`cd $(srcdir); pwd`/; export srcrootpre; \
|
srcrootpre=`cd $(srcdir); ${PWD}`/; export srcrootpre; \
|
||||||
for i in .. $(DODIRS); do \
|
for i in .. $(DODIRS); do \
|
||||||
if [ x$$i != x.. ]; then \
|
if [ x$$i != x.. ]; then \
|
||||||
if [ -f ./$$i/Makefile ]; then \
|
if [ -f ./$$i/Makefile ]; then \
|
||||||
|
4
libf2c/aclocal.m4
vendored
4
libf2c/aclocal.m4
vendored
@ -1,4 +1,4 @@
|
|||||||
dnl Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
|
dnl Copyright (C) 1994, 1995-8, 1999, 2001, 2002 Free Software Foundation, Inc.
|
||||||
dnl This file is free software; the Free Software Foundation
|
dnl This file is free software; the Free Software Foundation
|
||||||
dnl gives unlimited permission to copy and/or distribute it,
|
dnl gives unlimited permission to copy and/or distribute it,
|
||||||
dnl with or without modifications, as long as this notice is preserved.
|
dnl with or without modifications, as long as this notice is preserved.
|
||||||
@ -48,7 +48,7 @@ AC_SUBST(toplevel_srcdir)
|
|||||||
# These need to be absolute paths, yet at the same time need to
|
# These need to be absolute paths, yet at the same time need to
|
||||||
# canonicalize only relative paths, because then amd will not unmount
|
# canonicalize only relative paths, because then amd will not unmount
|
||||||
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
||||||
glibcpp_builddir=`pwd`
|
glibcpp_builddir=`${PWDCMD-pwd}`
|
||||||
case $srcdir in
|
case $srcdir in
|
||||||
[\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
|
[\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
|
||||||
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
||||||
|
2
libf2c/configure
vendored
2
libf2c/configure
vendored
@ -796,7 +796,7 @@ toplevel_srcdir=\${top_srcdir}/$toprel
|
|||||||
# These need to be absolute paths, yet at the same time need to
|
# These need to be absolute paths, yet at the same time need to
|
||||||
# canonicalize only relative paths, because then amd will not unmount
|
# canonicalize only relative paths, because then amd will not unmount
|
||||||
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
||||||
glibcpp_builddir=`pwd`
|
glibcpp_builddir=`${PWDCMD-pwd}`
|
||||||
case $srcdir in
|
case $srcdir in
|
||||||
\\/$* | ?:\\/*) glibcpp_srcdir=${srcdir} ;;
|
\\/$* | ?:\\/*) glibcpp_srcdir=${srcdir} ;;
|
||||||
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* acinclude.m4: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
* configure.in: Likewise.
|
||||||
|
* aclocal.m4: Regenerate.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2002-05-13 Tom Tromey <tromey@redhat.com>
|
2002-05-13 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* java/lang/natRuntime.cc: Don't include sys/time.h and time.h.
|
* java/lang/natRuntime.cc: Don't include sys/time.h and time.h.
|
||||||
|
@ -68,7 +68,7 @@ if :; then :; else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# This works around an automake problem.
|
# This works around an automake problem.
|
||||||
mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"
|
mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
|
||||||
AC_SUBST(mkinstalldirs)
|
AC_SUBST(mkinstalldirs)
|
||||||
|
|
||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
|
2
libjava/aclocal.m4
vendored
2
libjava/aclocal.m4
vendored
@ -80,7 +80,7 @@ if :; then :; else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# This works around an automake problem.
|
# This works around an automake problem.
|
||||||
mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"
|
mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
|
||||||
AC_SUBST(mkinstalldirs)
|
AC_SUBST(mkinstalldirs)
|
||||||
|
|
||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
|
20
libjava/configure
vendored
20
libjava/configure
vendored
@ -922,7 +922,7 @@ ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# This works around an automake problem.
|
# This works around an automake problem.
|
||||||
mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"
|
mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1706,7 +1706,7 @@ EOF
|
|||||||
# Sigh. Libtool's macro doesn't do the right thing.
|
# Sigh. Libtool's macro doesn't do the right thing.
|
||||||
INCLTDL="-I\$(top_srcdir)/libltdl $INCLTDL"
|
INCLTDL="-I\$(top_srcdir)/libltdl $INCLTDL"
|
||||||
# FIXME: this is a hack.
|
# FIXME: this is a hack.
|
||||||
sub_auxdir="`cd $ac_aux_dir && pwd`"
|
sub_auxdir="`cd $ac_aux_dir && ${PWDCMD-pwd}`"
|
||||||
ac_configure_args="$ac_configure_args --with-auxdir=$sub_auxdir"
|
ac_configure_args="$ac_configure_args --with-auxdir=$sub_auxdir"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -3093,7 +3093,7 @@ case "${host}" in
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
||||||
LIBGCJTESTSPEC="-L`pwd`/.libs -rpath `pwd`/.libs"
|
LIBGCJTESTSPEC="-L`${PWDCMD-pwd}`/.libs -rpath `${PWDCMD-pwd}`/.libs"
|
||||||
|
|
||||||
|
|
||||||
# Check whether --with-system-zlib or --without-system-zlib was given.
|
# Check whether --with-system-zlib or --without-system-zlib was given.
|
||||||
@ -3133,7 +3133,7 @@ case "$GC" in
|
|||||||
GCLIBS=../boehm-gc/libgcjgc_convenience.la
|
GCLIBS=../boehm-gc/libgcjgc_convenience.la
|
||||||
GCINCS='-I$(top_srcdir)/../boehm-gc/include'
|
GCINCS='-I$(top_srcdir)/../boehm-gc/include'
|
||||||
JC1GCSPEC='-fuse-boehm-gc'
|
JC1GCSPEC='-fuse-boehm-gc'
|
||||||
GCTESTSPEC="-L`pwd`/../boehm-gc/.libs -rpath `pwd`/../boehm-gc/.libs"
|
GCTESTSPEC="-L`${PWDCMD-pwd}`/../boehm-gc/.libs -rpath `${PWDCMD-pwd}`/../boehm-gc/.libs"
|
||||||
|
|
||||||
GCINCS="$GCINCS `cat ../boehm-gc/boehm-cflags`"
|
GCINCS="$GCINCS `cat ../boehm-gc/boehm-cflags`"
|
||||||
GCOBJS=boehm.lo
|
GCOBJS=boehm.lo
|
||||||
@ -5412,12 +5412,12 @@ fi
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
if test -x "${builddotdot}/../../gcc/gcj"; then
|
if test -x "${builddotdot}/../../gcc/gcj"; then
|
||||||
dir="`cd ${builddotdot}/../../gcc && pwd`"
|
dir="`cd ${builddotdot}/../../gcc && ${PWDCMD-pwd}`"
|
||||||
GCJ="$dir/gcj -B`pwd`/ -B$dir/"
|
GCJ="$dir/gcj -B`${PWDCMD-pwd}`/ -B$dir/"
|
||||||
else
|
else
|
||||||
CANADIAN=yes
|
CANADIAN=yes
|
||||||
NULL_TARGET=yes
|
NULL_TARGET=yes
|
||||||
GCJ="gcj -B`pwd`/"
|
GCJ="gcj -B`${PWDCMD-pwd}`/"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -5427,7 +5427,7 @@ test -f libgcj.spec || touch libgcj.spec
|
|||||||
# We must search the source tree for java.lang, since we still don't
|
# We must search the source tree for java.lang, since we still don't
|
||||||
# have libgcj.jar nor java/lang/*.class
|
# have libgcj.jar nor java/lang/*.class
|
||||||
GCJ_SAVE_CPPFLAGS=$CPPFLAGS
|
GCJ_SAVE_CPPFLAGS=$CPPFLAGS
|
||||||
CPPFLAGS="$CPPFLAGS -I`pwd` -I`cd $srcdir && pwd`"
|
CPPFLAGS="$CPPFLAGS -I`${PWDCMD-pwd}` -I`cd $srcdir && ${PWDCMD-pwd}`"
|
||||||
|
|
||||||
# Since some classes depend on this one, we need its source available
|
# Since some classes depend on this one, we need its source available
|
||||||
# before we can do any GCJ compilation test :-(
|
# before we can do any GCJ compilation test :-(
|
||||||
@ -7414,7 +7414,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
here=`pwd`
|
here=`${PWDCMD-pwd}`
|
||||||
|
|
||||||
|
|
||||||
# We get this from the environment.
|
# We get this from the environment.
|
||||||
@ -7953,7 +7953,7 @@ esac
|
|||||||
|
|
||||||
# Make subdirectories and `.d' files. Look in both srcdir and
|
# Make subdirectories and `.d' files. Look in both srcdir and
|
||||||
# builddir for the .java files.
|
# builddir for the .java files.
|
||||||
h=`pwd`
|
h=`${PWDCMD-pwd}`
|
||||||
: > deps.mk
|
: > deps.mk
|
||||||
( (cd $srcdir && find . \( -name '*.java' -o -name '*.cc' \) -print) ;
|
( (cd $srcdir && find . \( -name '*.java' -o -name '*.cc' \) -print) ;
|
||||||
find . \( -name '*.java' -o -name '*.cc' \) -print) | \
|
find . \( -name '*.java' -o -name '*.cc' \) -print) | \
|
||||||
|
@ -29,7 +29,7 @@ if test -z "${with_cross_host}"; then
|
|||||||
# Sigh. Libtool's macro doesn't do the right thing.
|
# Sigh. Libtool's macro doesn't do the right thing.
|
||||||
INCLTDL="-I\$(top_srcdir)/libltdl $INCLTDL"
|
INCLTDL="-I\$(top_srcdir)/libltdl $INCLTDL"
|
||||||
# FIXME: this is a hack.
|
# FIXME: this is a hack.
|
||||||
sub_auxdir="`cd $ac_aux_dir && pwd`"
|
sub_auxdir="`cd $ac_aux_dir && ${PWDCMD-pwd}`"
|
||||||
ac_configure_args="$ac_configure_args --with-auxdir=$sub_auxdir"
|
ac_configure_args="$ac_configure_args --with-auxdir=$sub_auxdir"
|
||||||
fi
|
fi
|
||||||
AC_SUBST(INCLTDL)
|
AC_SUBST(INCLTDL)
|
||||||
@ -273,7 +273,7 @@ case "${host}" in
|
|||||||
esac
|
esac
|
||||||
AC_SUBST(SYSTEMSPEC)
|
AC_SUBST(SYSTEMSPEC)
|
||||||
|
|
||||||
LIBGCJTESTSPEC="-L`pwd`/.libs -rpath `pwd`/.libs"
|
LIBGCJTESTSPEC="-L`${PWDCMD-pwd}`/.libs -rpath `${PWDCMD-pwd}`/.libs"
|
||||||
AC_SUBST(LIBGCJTESTSPEC)
|
AC_SUBST(LIBGCJTESTSPEC)
|
||||||
|
|
||||||
AC_ARG_WITH(system-zlib,
|
AC_ARG_WITH(system-zlib,
|
||||||
@ -307,7 +307,7 @@ case "$GC" in
|
|||||||
GCLIBS=../boehm-gc/libgcjgc_convenience.la
|
GCLIBS=../boehm-gc/libgcjgc_convenience.la
|
||||||
GCINCS='-I$(top_srcdir)/../boehm-gc/include'
|
GCINCS='-I$(top_srcdir)/../boehm-gc/include'
|
||||||
JC1GCSPEC='-fuse-boehm-gc'
|
JC1GCSPEC='-fuse-boehm-gc'
|
||||||
GCTESTSPEC="-L`pwd`/../boehm-gc/.libs -rpath `pwd`/../boehm-gc/.libs"
|
GCTESTSPEC="-L`${PWDCMD-pwd}`/../boehm-gc/.libs -rpath `${PWDCMD-pwd}`/../boehm-gc/.libs"
|
||||||
|
|
||||||
dnl We also want to pick up some cpp flags required when including
|
dnl We also want to pick up some cpp flags required when including
|
||||||
dnl boehm-config.h. Yuck.
|
dnl boehm-config.h. Yuck.
|
||||||
@ -710,12 +710,12 @@ changequote(<<,>>)
|
|||||||
changequote([,])
|
changequote([,])
|
||||||
fi
|
fi
|
||||||
if test -x "${builddotdot}/../../gcc/gcj"; then
|
if test -x "${builddotdot}/../../gcc/gcj"; then
|
||||||
dir="`cd ${builddotdot}/../../gcc && pwd`"
|
dir="`cd ${builddotdot}/../../gcc && ${PWDCMD-pwd}`"
|
||||||
GCJ="$dir/gcj -B`pwd`/ -B$dir/"
|
GCJ="$dir/gcj -B`${PWDCMD-pwd}`/ -B$dir/"
|
||||||
else
|
else
|
||||||
CANADIAN=yes
|
CANADIAN=yes
|
||||||
NULL_TARGET=yes
|
NULL_TARGET=yes
|
||||||
GCJ="gcj -B`pwd`/"
|
GCJ="gcj -B`${PWDCMD-pwd}`/"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -725,7 +725,7 @@ test -f libgcj.spec || touch libgcj.spec
|
|||||||
# We must search the source tree for java.lang, since we still don't
|
# We must search the source tree for java.lang, since we still don't
|
||||||
# have libgcj.jar nor java/lang/*.class
|
# have libgcj.jar nor java/lang/*.class
|
||||||
GCJ_SAVE_CPPFLAGS=$CPPFLAGS
|
GCJ_SAVE_CPPFLAGS=$CPPFLAGS
|
||||||
CPPFLAGS="$CPPFLAGS -I`pwd` -I`cd $srcdir && pwd`"
|
CPPFLAGS="$CPPFLAGS -I`${PWDCMD-pwd}` -I`cd $srcdir && ${PWDCMD-pwd}`"
|
||||||
|
|
||||||
# Since some classes depend on this one, we need its source available
|
# Since some classes depend on this one, we need its source available
|
||||||
# before we can do any GCJ compilation test :-(
|
# before we can do any GCJ compilation test :-(
|
||||||
@ -960,7 +960,7 @@ AM_CONDITIONAL(XLIB_AWT, test "$use_xlib_awt" = yes)
|
|||||||
AM_CONDITIONAL(GTK_AWT, test "$use_gtk_awt" = yes)
|
AM_CONDITIONAL(GTK_AWT, test "$use_gtk_awt" = yes)
|
||||||
|
|
||||||
|
|
||||||
here=`pwd`
|
here=`${PWDCMD-pwd}`
|
||||||
AC_SUBST(here)
|
AC_SUBST(here)
|
||||||
|
|
||||||
# We get this from the environment.
|
# We get this from the environment.
|
||||||
@ -977,7 +977,7 @@ esac
|
|||||||
|
|
||||||
# Make subdirectories and `.d' files. Look in both srcdir and
|
# Make subdirectories and `.d' files. Look in both srcdir and
|
||||||
# builddir for the .java files.
|
# builddir for the .java files.
|
||||||
h=`pwd`
|
h=`${PWDCMD-pwd}`
|
||||||
: > deps.mk
|
: > deps.mk
|
||||||
( (cd $srcdir && find . \( -name '*.java' -o -name '*.cc' \) -print) ;
|
( (cd $srcdir && find . \( -name '*.java' -o -name '*.cc' \) -print) ;
|
||||||
find . \( -name '*.java' -o -name '*.cc' \) -print) | \
|
find . \( -name '*.java' -o -name '*.cc' \) -print) | \
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* aclocal.m4: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2002-05-08 Alexandre Oliva <aoliva@redhat.com>
|
2002-05-08 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
* configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
|
* configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
|
||||||
|
2
libobjc/aclocal.m4
vendored
2
libobjc/aclocal.m4
vendored
@ -48,7 +48,7 @@ AC_SUBST(toplevel_srcdir)
|
|||||||
# These need to be absolute paths, yet at the same time need to
|
# These need to be absolute paths, yet at the same time need to
|
||||||
# canonicalize only relative paths, because then amd will not unmount
|
# canonicalize only relative paths, because then amd will not unmount
|
||||||
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
||||||
glibcpp_builddir=`pwd`
|
glibcpp_builddir=`${PWDCMD-pwd}`
|
||||||
case $srcdir in
|
case $srcdir in
|
||||||
[\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
|
[\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
|
||||||
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
||||||
|
2
libobjc/configure
vendored
2
libobjc/configure
vendored
@ -800,7 +800,7 @@ toplevel_srcdir=\${top_srcdir}/$toprel
|
|||||||
# These need to be absolute paths, yet at the same time need to
|
# These need to be absolute paths, yet at the same time need to
|
||||||
# canonicalize only relative paths, because then amd will not unmount
|
# canonicalize only relative paths, because then amd will not unmount
|
||||||
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
||||||
glibcpp_builddir=`pwd`
|
glibcpp_builddir=`${PWDCMD-pwd}`
|
||||||
case $srcdir in
|
case $srcdir in
|
||||||
\\/$* | ?:\\/*) glibcpp_srcdir=${srcdir} ;;
|
\\/$* | ?:\\/*) glibcpp_srcdir=${srcdir} ;;
|
||||||
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* Makefile.am: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
* acinclude.m4: Likewise.
|
||||||
|
* docs/html/Makefile: Likewise.
|
||||||
|
* aclocal.m4: Regenerate.
|
||||||
|
* configure: Regenerate.
|
||||||
|
* Makefile.in: Regenerate.
|
||||||
|
|
||||||
2002-05-15 Loren J. Rittle <ljrittle@acm.org>
|
2002-05-15 Loren J. Rittle <ljrittle@acm.org>
|
||||||
|
|
||||||
libstdc++/6641
|
libstdc++/6641
|
||||||
|
@ -29,6 +29,8 @@ SUBDIRS = include libio libmath libsupc++ src po testsuite
|
|||||||
|
|
||||||
mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
|
||||||
|
|
||||||
|
PWD = $${PWDCMD-pwd}
|
||||||
|
|
||||||
# These two special 'check-script' rules use the bash script 'mkcheck'
|
# These two special 'check-script' rules use the bash script 'mkcheck'
|
||||||
# to do testing. This script is not as portable as the dejagnu test
|
# to do testing. This script is not as portable as the dejagnu test
|
||||||
# harness, and is thus off by default. It does produce interesting
|
# harness, and is thus off by default. It does produce interesting
|
||||||
@ -46,20 +48,20 @@ check-script-install: $(top_builddir)/mkcheck
|
|||||||
|
|
||||||
# These rules are messy, but are hella worth it.
|
# These rules are messy, but are hella worth it.
|
||||||
doxygen:
|
doxygen:
|
||||||
-(srcdir=`cd ${top_srcdir}; pwd`; \
|
-(srcdir=`cd ${top_srcdir}; ${PWD}`; \
|
||||||
builddir=`pwd`; \
|
builddir=`${PWD}`; \
|
||||||
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
||||||
--mode=user $${srcdir} $${builddir})
|
--mode=user $${srcdir} $${builddir})
|
||||||
|
|
||||||
doxygen-maint:
|
doxygen-maint:
|
||||||
-(srcdir=`cd ${top_srcdir}; pwd`; \
|
-(srcdir=`cd ${top_srcdir}; ${PWD}`; \
|
||||||
builddir=`pwd`; \
|
builddir=`${PWD}`; \
|
||||||
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
||||||
--mode=maint $${srcdir} $${builddir})
|
--mode=maint $${srcdir} $${builddir})
|
||||||
|
|
||||||
doxygen-man:
|
doxygen-man:
|
||||||
-(srcdir=`cd ${top_srcdir}; pwd`; \
|
-(srcdir=`cd ${top_srcdir}; ${PWD}`; \
|
||||||
builddir=`pwd`; \
|
builddir=`${PWD}`; \
|
||||||
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
||||||
--mode=man $${srcdir} $${builddir})
|
--mode=man $${srcdir} $${builddir})
|
||||||
|
|
||||||
|
@ -160,6 +160,8 @@ SUBDIRS = include libio libmath libsupc++ src po testsuite
|
|||||||
|
|
||||||
mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
|
||||||
|
|
||||||
|
PWD = $${PWDCMD-pwd}
|
||||||
|
|
||||||
# Multilib support.
|
# Multilib support.
|
||||||
MAKEOVERRIDES =
|
MAKEOVERRIDES =
|
||||||
|
|
||||||
@ -501,20 +503,20 @@ check-script-install: $(top_builddir)/mkcheck
|
|||||||
|
|
||||||
# These rules are messy, but are hella worth it.
|
# These rules are messy, but are hella worth it.
|
||||||
doxygen:
|
doxygen:
|
||||||
-(srcdir=`cd ${top_srcdir}; pwd`; \
|
-(srcdir=`cd ${top_srcdir}; ${PWD}`; \
|
||||||
builddir=`pwd`; \
|
builddir=`${PWD}`; \
|
||||||
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
||||||
--mode=user $${srcdir} $${builddir})
|
--mode=user $${srcdir} $${builddir})
|
||||||
|
|
||||||
doxygen-maint:
|
doxygen-maint:
|
||||||
-(srcdir=`cd ${top_srcdir}; pwd`; \
|
-(srcdir=`cd ${top_srcdir}; ${PWD}`; \
|
||||||
builddir=`pwd`; \
|
builddir=`${PWD}`; \
|
||||||
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
||||||
--mode=maint $${srcdir} $${builddir})
|
--mode=maint $${srcdir} $${builddir})
|
||||||
|
|
||||||
doxygen-man:
|
doxygen-man:
|
||||||
-(srcdir=`cd ${top_srcdir}; pwd`; \
|
-(srcdir=`cd ${top_srcdir}; ${PWD}`; \
|
||||||
builddir=`pwd`; \
|
builddir=`${PWD}`; \
|
||||||
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
/bin/sh ${srcdir}/docs/doxygen/run_doxygen \
|
||||||
--mode=man $${srcdir} $${builddir})
|
--mode=man $${srcdir} $${builddir})
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ AC_DEFUN(GLIBCPP_CONFIGURE, [
|
|||||||
# These need to be absolute paths, yet at the same time need to
|
# These need to be absolute paths, yet at the same time need to
|
||||||
# canonicalize only relative paths, because then amd will not unmount
|
# canonicalize only relative paths, because then amd will not unmount
|
||||||
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
||||||
glibcpp_builddir=`pwd`
|
glibcpp_builddir=`${PWDCMD-pwd}`
|
||||||
case $srcdir in
|
case $srcdir in
|
||||||
[\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
|
[\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
|
||||||
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
||||||
|
2
libstdc++-v3/aclocal.m4
vendored
2
libstdc++-v3/aclocal.m4
vendored
@ -50,7 +50,7 @@ AC_DEFUN(GLIBCPP_CONFIGURE, [
|
|||||||
# These need to be absolute paths, yet at the same time need to
|
# These need to be absolute paths, yet at the same time need to
|
||||||
# canonicalize only relative paths, because then amd will not unmount
|
# canonicalize only relative paths, because then amd will not unmount
|
||||||
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
||||||
glibcpp_builddir=`pwd`
|
glibcpp_builddir=`${PWDCMD-pwd}`
|
||||||
case $srcdir in
|
case $srcdir in
|
||||||
[\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
|
[\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
|
||||||
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
||||||
|
2
libstdc++-v3/configure
vendored
2
libstdc++-v3/configure
vendored
@ -1085,7 +1085,7 @@ ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
|
|||||||
# These need to be absolute paths, yet at the same time need to
|
# These need to be absolute paths, yet at the same time need to
|
||||||
# canonicalize only relative paths, because then amd will not unmount
|
# canonicalize only relative paths, because then amd will not unmount
|
||||||
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
|
||||||
glibcpp_builddir=`pwd`
|
glibcpp_builddir=`${PWDCMD-pwd}`
|
||||||
case $srcdir in
|
case $srcdir in
|
||||||
\\/$* | ?:\\/*) glibcpp_srcdir=${srcdir} ;;
|
\\/$* | ?:\\/*) glibcpp_srcdir=${srcdir} ;;
|
||||||
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
*) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
PWD=$${PWDCMD-pwd}
|
||||||
|
|
||||||
MAKEINFO=makeinfo
|
MAKEINFO=makeinfo
|
||||||
INC=../../../gcc/doc/include
|
INC=../../../gcc/doc/include
|
||||||
@ -6,7 +7,7 @@ all: faq/index.txt 17_intro/porting.html 17_intro/porting-howto.html
|
|||||||
|
|
||||||
|
|
||||||
faq/index.txt: faq/index.html
|
faq/index.txt: faq/index.html
|
||||||
lynx -dump $< | sed "s%file://localhost`pwd`%..%" > $@
|
lynx -dump $< | sed "s%file://localhost`${PWD}`%..%" > $@
|
||||||
|
|
||||||
17_intro/porting.html: 17_intro/porting.texi
|
17_intro/porting.html: 17_intro/porting.texi
|
||||||
${MAKEINFO} -I ${INC} --html --no-split $< -o $@
|
${MAKEINFO} -I ${INC} --html --no-split $< -o $@
|
||||||
|
@ -1,15 +1,3 @@
|
|||||||
2002-05-08 Alexandre Oliva <aoliva@redhat.com>
|
|
||||||
|
|
||||||
* configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
|
|
||||||
script entry, and set LD to it when configuring multilibs.
|
|
||||||
* configure: Rebuilt.
|
|
||||||
|
|
||||||
2001-06-09 Alexandre Oliva <aoliva@redhat.com>, Stephen L Moshier <moshier@mediaone.net>
|
|
||||||
|
|
||||||
* configure.in (AC_EXEEXT): Work around in case it expands to
|
|
||||||
nothing, as in autoconf 2.50.
|
|
||||||
* configure: Rebuilt.
|
|
||||||
|
|
||||||
|
|
||||||
ChangeLog file for zlib
|
ChangeLog file for zlib
|
||||||
|
|
||||||
@ -237,7 +225,7 @@ Changes in 1.0.6 (19 Jan 1998)
|
|||||||
- use _fdopen instead of fdopen for MSC >= 6.0 (Thomas Fanslau)
|
- use _fdopen instead of fdopen for MSC >= 6.0 (Thomas Fanslau)
|
||||||
- added makelcc.bat for lcc-win32 (Tom St Denis)
|
- added makelcc.bat for lcc-win32 (Tom St Denis)
|
||||||
- in Makefile.dj2, use copy and del instead of install and rm (Frank Donahoe)
|
- in Makefile.dj2, use copy and del instead of install and rm (Frank Donahoe)
|
||||||
- Avoid expanded $Id: ChangeLog,v 1.4 2002/03/11 22:11:16 tromey Exp $. Use "rcs -kb" or "cvs admin -kb" to avoid Id expansion.
|
- Avoid expanded $Id: ChangeLog,v 1.5 2002/05/08 04:38:00 aoliva Exp $. Use "rcs -kb" or "cvs admin -kb" to avoid Id expansion.
|
||||||
- check for unistd.h in configure (for off_t)
|
- check for unistd.h in configure (for off_t)
|
||||||
- remove useless check parameter in inflate_blocks_free
|
- remove useless check parameter in inflate_blocks_free
|
||||||
- avoid useless assignment of s->check to itself in inflate_blocks_new
|
- avoid useless assignment of s->check to itself in inflate_blocks_new
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* configure.in: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
* ChangeLog: Move entries to ChangeLog.gcj.
|
||||||
|
|
||||||
|
2002-05-08 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
|
* configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
|
||||||
|
script entry, and set LD to it when configuring multilibs.
|
||||||
|
* configure: Rebuilt.
|
||||||
|
|
||||||
2002-03-17 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
|
2002-03-17 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
|
||||||
|
|
||||||
* Makefile.am: Make target library a convenience library.
|
* Makefile.am: Make target library a convenience library.
|
||||||
@ -13,6 +26,12 @@
|
|||||||
* configure, Makefile.in: Rebuilt.
|
* configure, Makefile.in: Rebuilt.
|
||||||
* configure.in: Set mkinstalldirs, for in-tree build.
|
* configure.in: Set mkinstalldirs, for in-tree build.
|
||||||
|
|
||||||
|
2001-06-09 Alexandre Oliva <aoliva@redhat.com>, Stephen L Moshier <moshier@mediaone.net>
|
||||||
|
|
||||||
|
* configure.in (AC_EXEEXT): Work around in case it expands to
|
||||||
|
nothing, as in autoconf 2.50.
|
||||||
|
* configure: Rebuilt.
|
||||||
|
|
||||||
2001-05-13 Alexandre Oliva <aoliva@redhat.com>
|
2001-05-13 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
* acinclude.m4: Use ../libtool.m4.
|
* acinclude.m4: Use ../libtool.m4.
|
||||||
|
2
zlib/configure
vendored
2
zlib/configure
vendored
@ -709,7 +709,7 @@ test "$host_alias" != "$target_alias" &&
|
|||||||
|
|
||||||
|
|
||||||
# This works around an automake problem.
|
# This works around an automake problem.
|
||||||
mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"
|
mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
|
||||||
|
|
||||||
|
|
||||||
# Find a good install program. We prefer a C program (faster),
|
# Find a good install program. We prefer a C program (faster),
|
||||||
|
@ -32,7 +32,7 @@ fi
|
|||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
|
|
||||||
# This works around an automake problem.
|
# This works around an automake problem.
|
||||||
mkinstalldirs="`cd $ac_aux_dir && pwd`/mkinstalldirs"
|
mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
|
||||||
AC_SUBST(mkinstalldirs)
|
AC_SUBST(mkinstalldirs)
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE(zlib, 1.1.3)
|
AM_INIT_AUTOMAKE(zlib, 1.1.3)
|
||||||
|
Loading…
Reference in New Issue
Block a user