Commit 6785b077 by Kaveh R. Ghazi Committed by Kaveh Ghazi

* dbxout.c: If USG is defined use gstab.h, even if HAVE_STAB_H is set.

From-SVN: r24181
parent 0e59fc3b
Tue Dec 8 09:28:36 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* dbxout.c: If USG is defined use gstab.h, even if HAVE_STAB_H is set.
1998-12-08 Ulrich Drepper <drepper@cygnus.com> 1998-12-08 Ulrich Drepper <drepper@cygnus.com>
* configure.in: Test for availability of putc_unlocked, fputc_unlocked, * configure.in: Test for availability of putc_unlocked, fputc_unlocked,
......
...@@ -163,10 +163,10 @@ static int source_label_number = 1; ...@@ -163,10 +163,10 @@ static int source_label_number = 1;
#define FORCE_TEXT #define FORCE_TEXT
#endif #endif
/* If there is a system stabs.h, use it. Otherwise, use our own. */ /* If there is a system stab.h, use it. Otherwise, use our own. */
#ifndef HAVE_STAB_H #if defined (USG) || !defined (HAVE_STAB_H)
#include "gstab.h" #include "gstab.h" /* If doing DBX on sysV, use our own stab.h. */
#else #else
#include <stab.h> #include <stab.h>
......
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