diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-09-13 22:27:20 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-09-13 22:27:20 +0000 |
commit | 28d3e4a3f8aa6dbded562b67cedb3ad15474565d (patch) | |
tree | a26a572362a0f9e2becdbc262ca5f63ac41641ae /gas/acconfig.h | |
parent | 0b3499f6721808b2f676a8caf8744002447c00b2 (diff) | |
download | gdb-28d3e4a3f8aa6dbded562b67cedb3ad15474565d.zip gdb-28d3e4a3f8aa6dbded562b67cedb3ad15474565d.tar.gz gdb-28d3e4a3f8aa6dbded562b67cedb3ad15474565d.tar.bz2 |
* Makefile.in (*_FOR_TARGET, INSTALL_XFORM, install, uninstall): Rewrite
handling of program_transform_name.
* configure.in: Test for "unlink" and "delete", define USE_DELETE_FOR_UNLINK if
only the latter is found. Not expected to be triggered on UNIX/POSIX systems.
* acconfig.h (USE_DELETE_FOR_UNLINK): Undef here, provide comments.
Update for autoconf 1.118:
* gdbinit.in: New file, created from old .gdbinit.
* .gdbinit: Deleted.
* aclocal.m4 (GAS_GDBINIT): Deleted.
* configure.in: Don't use it. Instead, generate .gdbinit from gdbinit.in.
Don't substitute cpu_type, obj_format, emulation, atof. Switched order of
AC_LINK_FILES arguments. Use AC_PREREQ to ensure that older versions of
autoconf aren't used.
* Makefile.in: Added @configure_input@ line.
(configure): Deleted rule.
[regenerated conf.in, configure]
Diffstat (limited to 'gas/acconfig.h')
-rw-r--r-- | gas/acconfig.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gas/acconfig.h b/gas/acconfig.h index abae0b8..ea143b8 100644 --- a/gas/acconfig.h +++ b/gas/acconfig.h @@ -41,3 +41,8 @@ /* Needed only for sparc configuration */ #undef sparcv9 + +/* VMS does not provide an "unlink" function, but "delete" is provided. + Autoconf will never set this (at least until we have an "autovms"), + but this provides a halfway reasonable machine-independent hook. */ +#undef USE_DELETE_FOR_UNLINK |