diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-03 01:11:03 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-03 01:11:03 +0000 |
commit | 0d639e3ac93d463964f82e263e31ee75fed393f4 (patch) | |
tree | 876c7fff5693520a285274c0cfcfb8580e9d84f3 /boehm-gc/configure | |
parent | f770745a86a9bf1aeee340370198c6a5ef93fee3 (diff) | |
download | gcc-0d639e3ac93d463964f82e263e31ee75fed393f4.tar.gz |
* configure: Rebuilt.
* configure.in: Don't create boehm-config.h.
* Makefile.in: Rebuilt.
* Makefile.am (libgcjgc_la_SOURCES): Reference gcconfig.h, not
config.h.
($(all_objs)): Depend on gcconfig.h.
* gc_priv.h: Reference GCCONFIG_H, not CONFIG_H.
* gcconfig.h: Define GCCONFIG_H, not CONFIG_H.
* config.h: Removed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30358 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/configure')
-rwxr-xr-x | boehm-gc/configure | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/boehm-gc/configure b/boehm-gc/configure index f378f3c4367..ef5960c100f 100755 --- a/boehm-gc/configure +++ b/boehm-gc/configure @@ -2251,8 +2251,6 @@ cat >> confdefs.h <<\EOF EOF - - if test -n "${with_cross_host}"; then cat >> confdefs.h <<\EOF #define NO_SIGSET 1 @@ -2579,51 +2577,6 @@ fi; done rm -f conftest.s* EOF - -cat >> $CONFIG_STATUS <<EOF -ac_sources="config.h" -ac_dests="boehm-config.h" -EOF - -cat >> $CONFIG_STATUS <<\EOF -srcdir=$ac_given_srcdir -while test -n "$ac_sources"; do - set $ac_dests; ac_dest=$1; shift; ac_dests=$* - set $ac_sources; ac_source=$1; shift; ac_sources=$* - - echo "linking $srcdir/$ac_source to $ac_dest" - - if test ! -r $srcdir/$ac_source; then - { echo "configure: error: $srcdir/$ac_source: File not found" 1>&2; exit 1; } - fi - rm -f $ac_dest - - # Make relative symlinks. - # Remove last slash and all that follows it. Not all systems have dirname. - ac_dest_dir=`echo $ac_dest|sed 's%/[^/][^/]*$%%'` - if test "$ac_dest_dir" != "$ac_dest" && test "$ac_dest_dir" != .; then - # The dest file is in a subdirectory. - test ! -d "$ac_dest_dir" && mkdir "$ac_dest_dir" - ac_dest_dir_suffix="/`echo $ac_dest_dir|sed 's%^\./%%'`" - # A "../" for each directory in $ac_dest_dir_suffix. - ac_dots=`echo $ac_dest_dir_suffix|sed 's%/[^/]*%../%g'` - else - ac_dest_dir_suffix= ac_dots= - fi - - case "$srcdir" in - [/$]*) ac_rel_source="$srcdir/$ac_source" ;; - *) ac_rel_source="$ac_dots$srcdir/$ac_source" ;; - esac - - # Make a symlink if possible; otherwise try a hard link. - if ln -s $ac_rel_source $ac_dest 2>/dev/null || - ln $srcdir/$ac_source $ac_dest; then : - else - { echo "configure: error: can not link $ac_dest to $srcdir/$ac_source" 1>&2; exit 1; } - fi -done -EOF cat >> $CONFIG_STATUS <<EOF srcdir=${srcdir} host=${host} |