~larsu/gnome-terminal/update-restore-transparency-patch

« back to all changes in this revision

Viewing changes to debian/patches/dont-override-ubuntu-env-vars

  • Committer: Jeremy Bicha
  • Date: 2013-06-12 23:14:54 UTC
  • Revision ID: jbicha@ubuntu.com-20130612231454-b9f98jsnt4ntkwxg
* Resync with Debian unstable
* Dropped debian/patches/dont-override-ubuntu-env-vars
* debian/rules:
  - Build with --enable-distro-packaging to not override Ubuntu
    environment variables

* New upstream release.
* debian/control.in:
  + Update build dependencies.
* debian/patches/10_kfreebsd-f_dupfd_cloexec.patch:
  + New patch, don't use F_DUPFD_CLOEXEC if it's not defined (e.g.
    on kFreeBSD). Thanks Petr Salinger for the initial patch.
    Closes: #711529.
[ Emilio Pozuelo Monfort ]
* Remove obsolete build dependency on scrollkeeper.
[ Michael Biebl ]
* Upload to unstable.
* New upstream release.
* Bump Standards-Version to 3.9.4. No further changes.
* Add Build-Depends on autotools-dev as lintian was complaining about
  outdated config.{guess,sub}.
* Team upload
* Recommend dbus-x11: gnome-terminal's default usage requires a
  D-Bus session, and dbus-x11 is the recommended way to get one of those
  (Closes: #691177; related to #631968)
* If unable to connect to D-Bus, warn before we exit 1 (Closes: #691178)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Description: As the maintainer notes: don't disable ubuntu specific changes controlled by env vars
2
 
Forwarded: not-needed
3
 
Author: Iain Lane <iain.lane@canonical.com>
4
 
 
5
 
Index: b/src/server.c
6
 
===================================================================
7
 
--- a/src/server.c
8
 
+++ b/src/server.c
9
 
@@ -75,14 +75,6 @@
10
 
 
11
 
   terminal_i18n_init (TRUE);
12
 
 
13
 
-  /* Set some env vars to disable ubuntu crap. They'll certainly patch this
14
 
-   * out in their package, but anyone running from git will get the right
15
 
-   * behaviour.
16
 
-   */
17
 
-  g_setenv ("LIBOVERLAY_SCROLLBAR", "0", TRUE);
18
 
-  g_setenv ("UBUNTU_MENUPROXY", "0", TRUE);
19
 
-  g_setenv ("NO_UNITY_GTK_MODULE", "1", TRUE);
20
 
-
21
 
 #if !GLIB_CHECK_VERSION (2, 35, 3)
22
 
   g_type_init ();
23
 
 #endif