Chris Marshall | 1 Jul 23:45

Trouble with 'make' command Pango 1.24.4 PLEASE HELP

The platform is ScientificLinux.

I am trying to build GTK+, and so I need to first build Pango with Cairo support.  I have installed Cairo
version 1.8.8, and the ./configure of Pango works fine.  At the end I get
configuration:
       backends: Cairo FreeType X

When I run 'make', I get a slew of errors that all begin with fribidi.c, and most of which are
fribidi.c:<line number>: error: dereferencing pointer to incomplete type

Finally, my error output is as follows:

make[4]: ***[fribidi.lo] Error 1
make[4]: Leaving directory '/mydirectory/pango-1.24.4/pango/mini-fribidi'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory '/mydirectory/pango-1.24.4/pango'
make[2]: ***[all] Error 2
make[2]: Leaving directory '/mydirectory/pango-1.24.4/pango'
make[1]: ***[all-recursive] Error 1
make[1]: Leaving directory '/mydirectory/pango-1.24.4'
make: *** [all] Error 2

Any experience with this type of error?  Is there a problem with my Glib or some other support package?  Any
ideas are greatly appreciated, as I can not seem to figure this one out.

Thanks,
Chris
Barros, Chris | 2 Jul 18:19
Favicon

Gnome Places menu

Hi-

I’m trying to edit the Places menu and either remove places altogether or at the very least remove, Places ==> Desktop menu globally for all users on the system. Where can I make this change? I know that I can edit my own by right clicking and deleting, however, I need for all users to not have this menu.

Running Redhat 5.1
_______________________________________________
gnome-list mailing list
gnome-list <at> gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-list
Bill Moseley | 1 Jul 17:30

Run script on login and/or wake

I'm looking for a way to know when a user is available -- similar to how a chat application might know if a user is available by keyboard or mouse activity.

That is, I'd like to run a script when a user first logs in (which might be automatic login as, for example, Ubuntu allows), and when the computer wakes from sleep or "unlocked".
Not sure if this is a Gnome issue or maybe lower level -- like via dpms.

Any easy hooks for doing something like this?

--
Bill Moseley
moseley <at> hank.org

_______________________________________________
gnome-list mailing list
gnome-list <at> gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-list
michael | 1 Jul 11:01
Favicon

gnome without unuseful app

Hello!

I am FreeBSD 7.2 user. Can I install x11/gnome2 port without epiphany, evolution (I prefer Firefox and
mutt). Is it possible?

--
Nechkin Michael
+79025194801
BugByteMan | 27 Jun 22:50
Favicon

What is the procedure for reporting bugs against 'broken' git commits?

Hi,
 
I have not been able to find the procedure for reporting bugs against 'broken' git commits.  I was told that 'bugzilla' is not to be used for this purpose.
 
The following glib commit breaks native building on windows/mingw:
 
 
The change to gio/glocalfileinfo.c removed an #ifdef S_ISLNK which breaks windows (symbolic links not supported)
 
I would like to prevent this from making it into an official glib release but I have not found the appropriate way to report bugs on pre-release code.
 
Thanks,
BugByteMan

_______________________________________________
gnome-list mailing list
gnome-list <at> gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-list
ginzzer | 25 Jun 07:15

fail to rebuild anjuta and others package

I am running CentOS5 with gnome 1.6 installed. Yesterday, I installed
jhbuild to upgrade some packages including anjuta. 

I set ~/.jhbuildrc as
--------------------------------------------------------------------------------------------
moduleset = 'gnome-2.26'
modules = [ 'meta-gnome-desktop' ]
checkoutroot = os.path.join(os.environ['HOME'], 'checkout', 'gnome2')
prefix = os.path.join(os.environ['HOME'], 'prefix')
---------------------------------------------------------------------------------------------

and then "jhbuild buildone anjuta", it shows

....
checking for xgettext... /usr/local/bin/xgettext
checking for intltool >= 0.35.0...  found
./configure: line 24017: test: : integer expression expected
configure: error: Your intltool is too old.  You need intltool 0.35.0 or later.
*** Error during phase configure of anjuta: ########## Error running ./autogen.sh --prefix
/root/prefix --libdir '/root/prefix/lib64'  --disable-static --disable-gtk-doc  *** [1/1]

  [1] Rerun phase configure
  [2] Ignore error and continue to build
  [3] Give up on module
  [4] Start shell
  [5] Reload configuration
  [6] Go to phase force_checkout
  [7] Go to phase clean
  [8] Go to phase distclean
choice:

Here is weird, I am sure my intltool is 0.4.x (I removed anything
related to 0.35 before my upgrade it to 0.4.x). And intltoolize
--version returns 0.40.6. But it keeps reporting that my intltool is too
old, I don't know what's going on.

Anyway, at that screen, I terminate it and jump back to the folder of
anjuta, I try to configure and make it manually, during ./configure,
again, it shows

checking for intltool >= 0.35.0...  found
./configure: line 24017: test: : integer expression expected
configure: error: Your intltool is too old.  You need intltool 0.35.0 or later.

so I edit configure and remove the following lines

if test -n "0.35.0"; then
    echo "$as_me:$LINENO: checking for intltool >= 0.35.0" >&5
echo $ECHO_N "checking for intltool >= 0.35.0... $ECHO_C" >&6

    INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
    INTLTOOL_APPLIED_VERSION=`awk -F\" '/\\$VERSION / { print $ 2; }' ${ac_aux_dir}/intltool-update.in`
    INTLTOOL_APPLIED_VERSION_AS_INT=`awk -F\" '/\\$VERSION / { split($ 2, VERSION, "."); print
VERSION[1] * 1000 + VERSION[2] * 100 + VERSION[3];}' ${ac_aux_dir}/intltool-update.in`

    echo "$as_me:$LINENO: result: $INTLTOOL_APPLIED_VERSION found" >&5
echo "${ECHO_T}$INTLTOOL_APPLIED_VERSION found" >&6
    test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
	{ { echo "$as_me:$LINENO: error: Your intltool is too old.  You need intltool 0.35.0 or later." >&5
echo "$as_me: error: Your intltool is too old.  You need intltool 0.35.0 or later." >&2;}
   { (exit 1); exit 1; }; }
fi

and ./configure again, now everything is fine, the final few lines of
configure gives

-------------------------------------------------------------------
Conditionally built plugins:
-------------------------------------------------------------------
Building subversion plugin: ............................NO
        Requires apr (>= 0.9.4); http://subversion.org
        Requires apr-util (>= 0.9.4); http://subversion.org
        Requires neon (>= 0.28.2); http://subversion.org
        Requires subversion (>= 1.5); http://subversion.org
Building glade plugin: .................................YES
Building devhelp plugin: ...............................NO
        Requires devhelp >= 0.22
Building class inheritance plugin: .....................NO
        Requires graphviz (>= 2.6.0); http://graphviz.org
Building performance profiler with function call chart: NO
        Requires graphviz (>= 2.6.0); http://graphviz.org
Building Valgrind debugger plugin: .....................NO
                Requires binutils-dev
Building GtkSourceView based editor: ...................NO
Building Scintilla based editor: .......................YES
-------------------------------------------------------------------

But when I do "make", it is showing something wrong

../../libtool: line 462: CDPATH: command not found
../../libtool: line 1265: func_opt_split: command not found
libtool: Version mismatch error.  This is libtool 2.2, but the
libtool: definition of this LT_INIT comes from an older release.
libtool: You should recreate aclocal.m4 with macros from libtool 2.2
libtool: and run autoconf again.
make[5]: *** [ianjuta-buildable.lo] Error 1
make[5]: Leaving directory `/root/checkout/gnome2/anjuta/libanjuta/interfaces'
make[4]: *** [all] Error 2
make[4]: Leaving directory `/root/checkout/gnome2/anjuta/libanjuta/interfaces'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/root/checkout/gnome2/anjuta/libanjuta'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/root/checkout/gnome2/anjuta/libanjuta'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/checkout/gnome2/anjuta'
make: *** [all] Error 2

Why it compliains the stuff about LT_INIT and aclocal.m4? I don't know
what to do, I try to do run aclocal again, it shows

/usr/share/aclocal/progsreiserfs.m4:13: warning: underquoted definition of AC_CHECK_LIBREISERFS
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal

and I also try to run intltoolize and it said "You should update your 'aclocal.m4' by running aclocal."

And then run autoconf, after that, I try to "make" again, but I still
get the same error.

Anyone gives me some hints to solve the problem?

Thanks in advance.
Chris | 21 Jun 03:21

Reading man pages

I know I can read them from a terminal however, previously when I was
running KDE I could read them from Konqueror using man:<name>, is there
a way to do this in Gnome with Nautilus or some such app?

Chris

--

-- 
KeyID 0xE372A7DA98E6705C

_______________________________________________
gnome-list mailing list
gnome-list <at> gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-list
Deluxe Chaos | 16 Jun 22:35

Mistake found in gbrany

There is a translationerror in the german version!
In the jpg i´ve send to you, there  it says "ziffern"(numerics)
This means in german: 0,1,2,3,4,5,6,7,8,9 BUT NOT 10,11,12,..
This aren´t "ziffern"(numerics) this are "Zahlen"(numeray)!

:-) so the answer should be 0 (or if it is a conuncdrum 1, becouse there are 1 numeric more neede to come to 100
from 10;-)) but never ever 19!!

Or i´m completly crazy?*doubtful*

greetings from austria
--

-- 
Danke.
Mit freundlichen Grüßen
Euer,...

GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT!
Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01
_______________________________________________
gnome-list mailing list
gnome-list <at> gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-list
j t | 17 Jun 22:11

Unicode input using ctrl+shift in vte/gnome-terminal

Hi all.

In gnome-terminal 2.14.2 (which uses vte 0.12.2), I can input unicode
characters by holding down the control key and the shift key
simultaneously and tapping out the hex code for the unicode codepoint
that I want. (For reference, these are the versions that ship with
Debian Etch)

For example, <ctrl>+<shift>+20ac gives me a euro symbol, or
<ctrl>+<shift>+30db gives me the Katakana letter ho.

I've put a screencast of this feature here in case anyone wants proof
that it works:
http://www.sourceworks.co.uk/iso14755.ogv

Now I'm trying to use the same feature on Debian Lenny, which ships
with gnome-terminal 2.22.3 (which uses vte 0.16.14), but I cannot make
this feature work anymore.

Has this feature been removed, or is it just a bug with my setup?

Many thanks, Jaime :-)
gokul das | 17 Jun 06:41

totem player enhancement


_______________________________________________
gnome-list mailing list
gnome-list <at> gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-list
holmes86 | 16 Jun 14:50
Favicon

which package of gnome control hotkey?

hi,everyone.
      My laptop hotkey can't use in Gnome.My system is FC10.So I want to know that which package of gnome control hotkey,then modify it.thanks very much.


--
知其然,不知其所以然! 


网易企业邮,商务邮箱专家
_______________________________________________
gnome-list mailing list
gnome-list <at> gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-list

Gmane