diff options
Diffstat (limited to 'gdb/gdbtk.c')
-rw-r--r-- | gdb/gdbtk.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/gdbtk.c b/gdb/gdbtk.c index 31903f2..75108ac 100644 --- a/gdb/gdbtk.c +++ b/gdb/gdbtk.c @@ -49,6 +49,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <sys/stropts.h> #endif +/* Some versions (1.3.79, 1.3.81) of Linux don't support SIOCSPGRP the way + gdbtk wants to us it... */ +#ifdef __linux__ +#undef SIOCSPGRP +#endif + /* Handle for TCL interpreter */ static Tcl_Interp *interp = NULL; |