Commit 15fe1a7e by Bruce Korb Committed by Bruce Korb

fix exit and atexit calls for vax-*-bsd systems

From-SVN: r38713
parent b0888988
2001-01-05 Bruce Korb <bkorb@gnu.org>
* fixinc/mkfixinc.sh(vax-*-bsd): convert exit and atexit calls to
their x* equivalent versions for atexit-less systems
* fixinc/fixincl.c(main): do not return from main() on atexit-less
systems (or any other system any more).
2001-01-05 Richard Earnshaw <rearnsha@arm.com>
* arm.md (ldmsi_postinc): Avoid use of match_dup between input and
......
......@@ -184,7 +184,7 @@ Altering %5d of them\n";
# ifdef SEPARATE_FIX_PROC
unlink( pz_temp_file );
# endif
return EXIT_SUCCESS;
exit (EXIT_SUCCESS);
}
......
......@@ -23,6 +23,11 @@ case $build in
CFLAGS="${CFLAGS} -DSEPARATE_FIX_PROC"
;;
vax-dec-bsd* )
CFLAGS="${CFLAGS} -Dexit=xexit -Datexit=xatexit"
MAKE="${MAKE} TARGETS=oneprocess"
;;
* )
MAKE="${MAKE} TARGETS=oneprocess"
;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment