X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fdebugger.c;h=f3f678461f932f14074ee7f5d093b34d8250adfe;hb=5cdb1f83c37674ee6d588bb0104729d564012ecb;hp=7f15f19a4d08ec59f6f5e6adde082f2975f399bd;hpb=f5c108becd49d78f4898cab11352291f5689d24e;p=pspp-builds.git diff --git a/src/ui/debugger.c b/src/ui/debugger.c index 7f15f19a..f3f67846 100644 --- a/src/ui/debugger.c +++ b/src/ui/debugger.c @@ -1,26 +1,24 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2006 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include #include "debugger.h" -#if HAVE_SYS_TYPES_H && HAVE_SYS_WAIT_H +#if HAVE_FORK && HAVE_EXECLP #include #include #include @@ -63,7 +61,7 @@ connect_debugger (void) exit (EXIT_FAILURE); } -#else /* !(HAVE_SYS_TYPES_H && HAVE_SYS_WAIT_H) */ +#else /* !(HAVE_FORK && HAVE_EXECLP) */ /* Don't know how to connect to gdb. Just return. */ @@ -71,4 +69,4 @@ void connect_debugger (void) { } -#endif /* !(HAVE_SYS_TYPES_H && HAVE_SYS_WAIT_H) */ +#endif /* !(HAVE_FORK && HAVE_EXECLP) */