From owner-svn-ports-all@freebsd.org Fri Nov 13 09:02:18 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 899FFA2BFE8; Fri, 13 Nov 2015 09:02:18 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 639EA1F82; Fri, 13 Nov 2015 09:02:18 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAD92HIT003632; Fri, 13 Nov 2015 09:02:17 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAD92GdR003621; Fri, 13 Nov 2015 09:02:16 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201511130902.tAD92GdR003621@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 13 Nov 2015 09:02:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401490 - head/devel/xxgdb/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Nov 2015 09:02:18 -0000 Author: marino Date: Fri Nov 13 09:02:16 2015 New Revision: 401490 URL: https://svnweb.freebsd.org/changeset/ports/401490 Log: devel/xxgdb: Expand patches to support malloc.h-less DF While here, regenerate all the patches. Modified: head/devel/xxgdb/files/patch-Imakefile head/devel/xxgdb/files/patch-calldbx.c head/devel/xxgdb/files/patch-command.c head/devel/xxgdb/files/patch-dialog.c head/devel/xxgdb/files/patch-filemenu.c head/devel/xxgdb/files/patch-global.h head/devel/xxgdb/files/patch-regex.c head/devel/xxgdb/files/patch-signals.c head/devel/xxgdb/files/patch-source.c head/devel/xxgdb/files/patch-xdbx.c head/devel/xxgdb/files/patch-xxgdb.man Modified: head/devel/xxgdb/files/patch-Imakefile ============================================================================== --- head/devel/xxgdb/files/patch-Imakefile Fri Nov 13 09:01:25 2015 (r401489) +++ head/devel/xxgdb/files/patch-Imakefile Fri Nov 13 09:02:16 2015 (r401490) @@ -1,6 +1,6 @@ ---- Imakefile.orig 1995-06-19 15:20:55.000000000 -0700 -+++ Imakefile 2014-03-25 21:44:23.829815727 -0700 -@@ -8,6 +8,7 @@ +--- Imakefile.orig 1995-06-19 22:20:55 UTC ++++ Imakefile +@@ -8,6 +8,7 @@ DEFGDB = #endif #CC = gcc @@ -8,7 +8,7 @@ #if mc68000 /* for SUN 3 */ CCOPTIONS=-m68881 -@@ -79,11 +80,15 @@ +@@ -79,11 +80,15 @@ DEFINES = -DOLDSUNOS $(DEFGDB) -DNEXTOS_ # Add to open all windows at startup #DEFINES+=-DOPEN_ALL_WINDOWS Modified: head/devel/xxgdb/files/patch-calldbx.c ============================================================================== --- head/devel/xxgdb/files/patch-calldbx.c Fri Nov 13 09:01:25 2015 (r401489) +++ head/devel/xxgdb/files/patch-calldbx.c Fri Nov 13 09:02:16 2015 (r401490) @@ -1,5 +1,5 @@ ---- calldbx.c.orig 1995-06-19 15:11:00.000000000 -0700 -+++ calldbx.c 2014-03-26 12:20:00.741924675 -0700 +--- calldbx.c.orig 1995-06-19 22:11:00 UTC ++++ calldbx.c @@ -74,8 +74,16 @@ #include #include @@ -19,7 +19,7 @@ #else #include #endif -@@ -116,6 +124,7 @@ +@@ -116,6 +124,7 @@ extern char *dbxprompt; char iowintty[] = "/dev/ttyp0"; int iowinpid = 0; #endif /* CREATE_IO_WINDOW */ @@ -27,7 +27,7 @@ /* * Xdbx talks to dbx through a pseudo terminal which is a pair of master * and slave devices: /dev/pty?? and /dev/tty??, where ?? goes from p0 to -@@ -137,13 +146,17 @@ +@@ -137,13 +146,17 @@ static int open_master() #ifndef sco for (c='p'; c<'t'; c++) { @@ -46,7 +46,7 @@ if ((master = open(pty, O_RDWR)) >= 0) return (master); } -@@ -194,6 +207,7 @@ +@@ -194,6 +207,7 @@ static int open_slave(master) return slave; #endif /* SVR4 */ } @@ -54,7 +54,7 @@ #ifdef CREATE_IO_WINDOW /* use a separate io window to talk to gdb, so program output is not confused with gdb output. */ -@@ -246,8 +260,8 @@ +@@ -246,8 +260,8 @@ char *argv[]; /* * (JBL)10MAY91 : use sgttyb if generic BSD */ @@ -65,7 +65,7 @@ #else struct sgttyb Termio; #endif -@@ -261,8 +275,10 @@ +@@ -261,8 +275,10 @@ char *argv[]; #ifdef GDB /* for GDB, we use XXGDB_DEBUGGER instead */ debugger = (char *) getenv("XXGDB_DEBUGGER"); /* first looks up env var */ @@ -76,7 +76,7 @@ #endif /* CRL mod 4 3/15/91 GWC if no env var then try app res for db_name */ -@@ -275,7 +291,8 @@ +@@ -275,7 +291,8 @@ char *argv[]; debugger = XtNewString(DEBUGGER); /* CRL mod 4 3/15/91 GWC - allow the user to specify a db_prompt */ @@ -86,7 +86,7 @@ strcmp(app_resources.db_prompt, "") != 0) dbxprompt = XtNewString(app_resources.db_prompt); -@@ -288,7 +305,15 @@ +@@ -288,7 +305,15 @@ char *argv[]; if (debug) fprintf(stderr,"debugger=\"%s\"\nprompt=\"%s\"\n",debugger,dbxprompt); @@ -102,7 +102,7 @@ dbxpid = fork(); if (dbxpid == -1) { -@@ -305,6 +330,7 @@ +@@ -305,6 +330,7 @@ char *argv[]; * set line buffered mode * register dbx input with X */ @@ -110,7 +110,7 @@ close(0); close(1); -@@ -345,7 +371,9 @@ +@@ -345,7 +371,9 @@ char *argv[]; } #endif @@ -120,7 +120,7 @@ close(master); /* -@@ -355,11 +383,11 @@ +@@ -355,11 +383,11 @@ char *argv[]; /* * (JBL)10MAY91 : use sgttyb if OLDSUN or generic BSD */ Modified: head/devel/xxgdb/files/patch-command.c ============================================================================== --- head/devel/xxgdb/files/patch-command.c Fri Nov 13 09:01:25 2015 (r401489) +++ head/devel/xxgdb/files/patch-command.c Fri Nov 13 09:02:16 2015 (r401490) @@ -1,6 +1,6 @@ ---- command.c.orig Fri Sep 6 22:46:19 2002 -+++ command.c Fri Sep 6 22:49:30 2002 -@@ -383,7 +383,7 @@ +--- command.c.orig 1994-11-23 00:27:05 UTC ++++ command.c +@@ -383,7 +383,7 @@ void Quit(w, client_data, call_data) XtPointer client_data; XtPointer call_data; { @@ -9,7 +9,7 @@ int status; #else union wait status; -@@ -392,7 +392,7 @@ +@@ -392,7 +392,7 @@ void Quit(w, client_data, call_data) write_dbx("quit\n"); XtDestroyApplicationContext(app_context); kill(dbxpid, SIGKILL); Modified: head/devel/xxgdb/files/patch-dialog.c ============================================================================== --- head/devel/xxgdb/files/patch-dialog.c Fri Nov 13 09:01:25 2015 (r401489) +++ head/devel/xxgdb/files/patch-dialog.c Fri Nov 13 09:02:16 2015 (r401490) @@ -1,7 +1,6 @@ -diff -urNad dialog.c dialog.c ---- dialog.c 1995-06-20 00:15:13.000000000 +0200 -+++ dialog.c 2008-05-16 17:31:45.000000000 +0200 -@@ -130,8 +130,8 @@ +--- dialog.c.orig 1995-06-19 22:15:13 UTC ++++ dialog.c +@@ -130,8 +130,8 @@ void DeleteWord(w, event, params, num_pa Cardinal i; textblock.firstPos = 0; @@ -12,7 +11,7 @@ diff -urNad dialog.c dialog.c pos = XawTextGetInsertionPoint(w); if (pos <= StartPos) -@@ -142,6 +142,30 @@ +@@ -142,6 +142,30 @@ void DeleteWord(w, event, params, num_pa XawTextSetInsertionPoint(w, i); } @@ -43,7 +42,7 @@ diff -urNad dialog.c dialog.c /* Deletes the entire current input line. * simulates the action of the KILL character (ctrl-U). -@@ -159,8 +183,8 @@ +@@ -159,8 +183,8 @@ void DeleteLine(w, event, params, num_pa char *s; textblock.firstPos = 0; @@ -54,7 +53,7 @@ diff -urNad dialog.c dialog.c pos = XawTextGetInsertionPoint(w); if (w == dialogWindow) { -@@ -307,6 +331,7 @@ +@@ -307,6 +331,7 @@ Widget parent; {"SigQuit", (XtActionProc) SigQuit}, {"InsertSpace", (XtActionProc) InsertSpace}, {"Dispatch", (XtActionProc) Dispatch}, @@ -62,7 +61,7 @@ diff -urNad dialog.c dialog.c {NULL, NULL} }; -@@ -316,10 +341,10 @@ +@@ -316,10 +341,10 @@ Widget parent; Ctrl|: SigQuit()\n\ CtrlW: DeleteWord()\n\ CtrlU: DeleteLine()\n\ Modified: head/devel/xxgdb/files/patch-filemenu.c ============================================================================== --- head/devel/xxgdb/files/patch-filemenu.c Fri Nov 13 09:01:25 2015 (r401489) +++ head/devel/xxgdb/files/patch-filemenu.c Fri Nov 13 09:02:16 2015 (r401490) @@ -1,5 +1,5 @@ ---- filemenu.c.orig Tue Aug 30 04:38:28 1994 -+++ filemenu.c Fri Nov 17 22:05:05 2000 +--- filemenu.c.orig 1994-08-29 19:38:28 UTC ++++ filemenu.c @@ -95,7 +95,7 @@ #endif #endif /* _POSIX_SOURCE */ @@ -9,7 +9,7 @@ #include #else #include -@@ -185,7 +185,7 @@ +@@ -185,7 +185,7 @@ char *dir; * text files * executable files */ @@ -18,7 +18,7 @@ static int InList(entry) Directory *entry; { -@@ -228,7 +228,7 @@ +@@ -228,7 +228,7 @@ Directory *entry; static void ScanDir(dir) char *dir; { @@ -27,7 +27,7 @@ extern alphasort(); Directory **namelist; #else -@@ -238,7 +238,7 @@ +@@ -238,7 +238,7 @@ char *dir; #endif register int i,j; @@ -36,7 +36,7 @@ if(!(WorkingDir = opendir(dir))) { UpdateMessageWindow("scandir: cannot open %s", dir); -@@ -262,7 +262,7 @@ +@@ -262,7 +262,7 @@ char *dir; filelist = (char **) XtMalloc((nfiles+1) * sizeof(char *)); i = 0; for (j=0; jd_name, ".")) strcpy(store, "./"); -@@ -305,7 +305,7 @@ +@@ -305,7 +305,7 @@ char *dir; } filelist[i++] = NULL; Modified: head/devel/xxgdb/files/patch-global.h ============================================================================== --- head/devel/xxgdb/files/patch-global.h Fri Nov 13 09:01:25 2015 (r401489) +++ head/devel/xxgdb/files/patch-global.h Fri Nov 13 09:02:16 2015 (r401490) @@ -1,5 +1,5 @@ ---- global.h.orig Fri Apr 7 01:23:42 1995 -+++ global.h Fri Nov 17 21:27:09 2000 +--- global.h.orig 1995-04-06 16:23:42 UTC ++++ global.h @@ -70,7 +70,7 @@ #define alloca __builtin_alloca #endif Modified: head/devel/xxgdb/files/patch-regex.c ============================================================================== --- head/devel/xxgdb/files/patch-regex.c Fri Nov 13 09:01:25 2015 (r401489) +++ head/devel/xxgdb/files/patch-regex.c Fri Nov 13 09:02:16 2015 (r401490) @@ -1,15 +1,15 @@ ---- regex.c.orig Wed Apr 19 12:58:00 1995 -+++ regex.c Thu Jul 6 22:30:45 2006 -@@ -114,7 +114,7 @@ +--- regex.c.orig 1995-04-19 16:58:00 UTC ++++ regex.c +@@ -114,7 +114,7 @@ what you give them. Help stamp out sof * Date : July 27, 1990 */ -#ifndef NeXT -+#if !defined(NeXT) && !defined(__FreeBSD__) ++#if !defined(NeXT) && !defined(__FreeBSD__) && !defined(__DragonFly__) #include #endif #include -@@ -123,7 +123,7 @@ +@@ -123,7 +123,7 @@ what you give them. Help stamp out sof #include #ifdef sparc Modified: head/devel/xxgdb/files/patch-signals.c ============================================================================== --- head/devel/xxgdb/files/patch-signals.c Fri Nov 13 09:01:25 2015 (r401489) +++ head/devel/xxgdb/files/patch-signals.c Fri Nov 13 09:02:16 2015 (r401490) @@ -1,6 +1,6 @@ ---- signals.c.orig Fri Sep 6 22:52:25 2002 -+++ signals.c Fri Sep 6 22:52:56 2002 -@@ -93,7 +93,7 @@ +--- signals.c.orig 1995-04-06 16:25:04 UTC ++++ signals.c +@@ -93,7 +93,7 @@ kill_handler(sig) static void quit_handler(int sig) { int pid; @@ -9,7 +9,7 @@ int status; #else union wait status; -@@ -102,7 +102,7 @@ +@@ -102,7 +102,7 @@ static void quit_handler(int sig) /* wait for the child to report its status; if the child has died, * exit gracefully. */ Modified: head/devel/xxgdb/files/patch-source.c ============================================================================== --- head/devel/xxgdb/files/patch-source.c Fri Nov 13 09:01:25 2015 (r401489) +++ head/devel/xxgdb/files/patch-source.c Fri Nov 13 09:02:16 2015 (r401490) @@ -1,11 +1,11 @@ ---- source.c.orig Sat Apr 22 01:16:02 1995 -+++ source.c Fri Nov 17 21:38:58 2000 +--- source.c.orig 1995-04-21 16:16:02 UTC ++++ source.c @@ -74,7 +74,7 @@ * LoadFile(): Search for a file and open it for display. */ -#ifndef NeXT -+#if !defined(NeXT) && !defined(__FreeBSD__) ++#if !defined(NeXT) && !defined(__FreeBSD__) && !defined(__DragonFly__) #include #endif #include Modified: head/devel/xxgdb/files/patch-xdbx.c ============================================================================== --- head/devel/xxgdb/files/patch-xdbx.c Fri Nov 13 09:01:25 2015 (r401489) +++ head/devel/xxgdb/files/patch-xdbx.c Fri Nov 13 09:02:16 2015 (r401490) @@ -1,5 +1,5 @@ ---- xdbx.c.orig 1995-04-20 19:37:31.000000000 -0700 -+++ xdbx.c 2014-03-25 20:54:19.951463142 -0700 +--- xdbx.c.orig 1995-04-21 02:37:31 UTC ++++ xdbx.c @@ -74,11 +74,9 @@ #define XGDBVERSION "1.12" #endif Modified: head/devel/xxgdb/files/patch-xxgdb.man ============================================================================== --- head/devel/xxgdb/files/patch-xxgdb.man Fri Nov 13 09:01:25 2015 (r401489) +++ head/devel/xxgdb/files/patch-xxgdb.man Fri Nov 13 09:02:16 2015 (r401490) @@ -1,6 +1,6 @@ ---- xxgdb.man.orig 1994-12-02 17:40:19.000000000 -0800 -+++ xxgdb.man 2014-03-26 12:27:51.559896216 -0700 -@@ -29,7 +29,8 @@ +--- xxgdb.man.orig 1994-12-03 01:40:19 UTC ++++ xxgdb.man +@@ -29,7 +29,8 @@ state of the program when the core dump .LP The name of the debugger invoked by \fIxxgdb\fP is, by default, gdb, but it can be overridden with the environment variable XXGDB_DEBUGGER or with