Author: benny
Date: 2006-06-13 15:31:03 +0000 (Tue, 13 Jun 2006)
New Revision: 22090

Modified:
   terminal/trunk/ChangeLog
   terminal/trunk/configure.in.in
   terminal/trunk/terminal/terminal-tab-header.c
Log:
2006-06-13      Benedikt Meurer <[EMAIL PROTECTED]>

        * configure.in.in: Use --as-needed if supported by the linker.
        * terminal/terminal-tab-header.c(terminal_tab_header_init): Use
          GtkLabel instead of ExoEllipsizedLabel.




Modified: terminal/trunk/ChangeLog
===================================================================
--- terminal/trunk/ChangeLog    2006-06-13 15:22:51 UTC (rev 22089)
+++ terminal/trunk/ChangeLog    2006-06-13 15:31:03 UTC (rev 22090)
@@ -1,3 +1,9 @@
+2006-06-13     Benedikt Meurer <[EMAIL PROTECTED]>
+
+       * configure.in.in: Use --as-needed if supported by the linker.
+       * terminal/terminal-tab-header.c(terminal_tab_header_init): Use
+         GtkLabel instead of ExoEllipsizedLabel.
+
 2006-05-29     Benedikt Meurer <[EMAIL PROTECTED]>
 
        * terminal/main.c(main): VTE is still too buggy to make warnings

Modified: terminal/trunk/configure.in.in
===================================================================
--- terminal/trunk/configure.in.in      2006-06-13 15:22:51 UTC (rev 22089)
+++ terminal/trunk/configure.in.in      2006-06-13 15:31:03 UTC (rev 22090)
@@ -170,6 +170,16 @@
 dnl **************************************
 dnl *** Check for linker optimizations ***
 dnl **************************************
+AC_MSG_CHECKING([whether $LD accepts --as-needed])
+case `$LD --as-needed -v 2>&1 </dev/null` in
+*GNU* | *'with BFD'*)
+  LDFLAGS="$LDFLAGS -Wl,--as-needed"
+  AC_MSG_RESULT([yes])
+  ;;
+*)
+  AC_MSG_RESULT([no])
+  ;;
+esac
 AC_MSG_CHECKING([whether $LD accepts -O1])
 case `$LD -O1 -v 2>&1 </dev/null` in
 *GNU* | *'with BFD'*)

Modified: terminal/trunk/terminal/terminal-tab-header.c
===================================================================
--- terminal/trunk/terminal/terminal-tab-header.c       2006-06-13 15:22:51 UTC 
(rev 22089)
+++ terminal/trunk/terminal/terminal-tab-header.c       2006-06-13 15:31:03 UTC 
(rev 22090)
@@ -199,7 +199,7 @@
   gtk_box_pack_start (GTK_BOX (header), header->ebox, TRUE, TRUE, 0);
   gtk_widget_show (header->ebox);
 
-  header->label = g_object_new (EXO_TYPE_ELLIPSIZED_LABEL,
+  header->label = g_object_new (GTK_TYPE_LABEL,
                                 "selectable", FALSE,
                                 "xalign", 0.0,
                                 NULL);

_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to