~ubuntu-branches/debian/sid/geany-plugins/sid

« back to all changes in this revision

Viewing changes to geanygdb/src/gdb-io-read.c

  • Committer: Bazaar Package Importer
  • Author(s): Evgeni Golov, Chow Loong Jin, Evgeni Golov
  • Date: 2010-09-04 23:05:00 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100904230500-4n99m507u6drouv5
Tags: 0.19-1
[ Chow Loong Jin ]
* New upstream release
  + Builds against geany 0.19 (Closes: #590346, #587141)
* debian/control, debian/rules:
  + Shift geany dependency to geany-plugins-common instead, since it's a
    common dependency for all plugins
* debian/control:
  + Add new packages for codenav, extrasel, gendoc, insertnum,
    prettyprinter and treebrowser plugins
  + Update build-deps:
    - Bump geany dependency to 0.19. (Closes: #573318)
    - Add libctpl-dev and python-docutils for geanygendoc
    - Add libxml2-dev for prettyprinter
  + No-change bump of Standards-Version from 3.8.3 to 3.9.0
  + Tighten dependency on geany-plugins-common (= instead of >=)
  + Add a Breaks on all geany-plugin-* packages prior to this version to
    ensure geany-plugins-common and geany-plugin-* versions match
* debian/geany-plugin-codenav.{docs,install},
  debian/geany-plugin-extrasel.{docs,install},
  geany-plugin-gendoc.{docs,install},
  geany-plugin-insertnum.{docs,install},
  geany-plugin-prettyprinter.install
  geany-plugin-treebrowser.{docs,install}:
  + Install plugin files into individual packages

[ Evgeni Golov ]
* debian/control:
  + Disable the new plugins for now.
    If you want to build them localy, just uncomment them.
  + Don't D-B on libctpl-dev (it's not in Debian yet).
  + Add myself to Uploaders.
  + Standards-Version: 3.9.1
* debian/copyright:
  + Update to include latest plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 *
3
2
 * gdb-io-read.c - Output reading functions for GDB wrapper library.
4
 
 *
5
 
 * See the file "gdb-io.h" for license information.
 
3
 * Copyright 2008 Jeff Pohlmeyer <yetanothergeek(at)gmail(dot)com>
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License along
 
16
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
17
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
6
18
 */
7
19
 
8
 
 
9
20
#include <stdlib.h>
10
21
#include <sys/time.h>
11
22
 
12
23
#include <string.h>
13
24
#include <unistd.h>
14
25
#include <stdarg.h>
15
 
#include <glib.h>
16
26
 
 
27
#include "geanyplugin.h"
17
28
#include "gdb-io-priv.h"
18
 
#include "support.h"
19
 
 
20
 
 
21
29
 
22
30
static GSList *source_files = NULL;
23
 
 
24
31
static gboolean starting = FALSE;
25
32
 
26
33
 
40
47
}
41
48
 
42
49
 
 
50
 
43
51
static void
44
52
free_source_list()
45
53
{
687
695
                                                {
688
696
                                                        starting = FALSE;
689
697
                                                }
690
 
                                                else
691
 
                                                {
692
 
                                                        gdbio_do_status(GdbRunning);
693
 
                                                }
 
698
                        gdbio_do_status(GdbRunning);
694
699
                                                gdbio_set_running(TRUE);
695
700
                                        }
696
701
                                }