~ubuntu-branches/ubuntu/utopic/anjuta/utopic-proposed

« back to all changes in this revision

Viewing changes to src/main.c

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson, Jackson Doak
  • Date: 2014-07-12 15:17:39 UTC
  • mfrom: (1.4.14)
  • Revision ID: package-import@ubuntu.com-20140712151739-p9xy0ntlgbpm2nxq
Tags: 2:3.12.0-1
* Team upload.

[ Jackson Doak ]
* New upstream release
* Drop 03_valac_0.22.patch, fixed upstream\
* debian/control:
  - Bump b-dep version on libgtk-3-dev (>= 3.6.0), libglib2.0-dev (>= 2.34.0)
  - Bump stardards-version to 3.9.5. No changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19
19
*/
20
20
 
21
 
#ifdef HAVE_CONFIG_H
22
 
#  include <config.h>
23
 
#endif
24
 
 
25
 
#ifdef ENABLE_NLS
26
 
#  include <locale.h>
27
 
#endif
28
 
 
29
 
#include <sys/stat.h>
30
 
#include <stdlib.h>
 
21
#include <config.h>
31
22
#include <gtk/gtk.h>
32
23
#include <libxml/parser.h>
33
24
#include <libanjuta/anjuta-debug.h>
40
31
        AnjutaApplication* anjuta;
41
32
        gint status;
42
33
 
43
 
#ifdef ENABLE_NLS
44
 
        setlocale (LC_ALL, "");
45
 
        bindtextdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);
46
 
        bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
47
 
        textdomain (GETTEXT_PACKAGE);
48
 
#endif
49
 
 
50
34
        g_set_application_name (_("Anjuta"));
51
35
 
52
36
        anjuta = anjuta_application_new ();