Re: compiling gyachi 1.1.0

2009-05-23 Thread Masami Ichikawa
on 05/23/09 19:31, Umarzuki Mochlis wrote:
> configure.ac:25: error: possibly undefined macro: AM_PATH_GTK_2_0
>   If this token and others are legitimate, please use m4_pattern_allow.
>   See the Autoconf documentation.
> configure.ac:26: error: possibly undefined macro: AM_PATH_GLIB_2_0
> autoconf failed, stopping.
> 
> Can somebody guide me on compiling and making a deb file out of gyachi 1.1.0
> source?
> 
I think it seems as if you haven't installed libglib2.0-dev and libgtk2.0-dev 
packages. 
Let's install these packages then run autogen.sh again.

Cheers,
-- 
Masami


-- 
To UNSUBSCRIBE, email to debian-amd64-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: Where is the kernel?

2009-01-05 Thread Masami Ichikawa

on 01/06/09 06:58, Hans-J. Ullrich wrote:

apt-get -d install linux-image -t experimental

but it showed only all versions of 2.6.26

How can I download (but NOT install) the latest kernel from experimental?

According to Debian Wiki[1], you can get latest package from other repository.

[1]:http://wiki.debian.org/DebianKernel

--
/*
 * Masami Ichikawa
 * mailto: hangar...@mub.biglobe.ne.jp
 *   : masami...@gmail.com
 */


--
To UNSUBSCRIBE, email to debian-amd64-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: debugging xchat with gdb

2008-01-01 Thread Masami Ichikawa

Hi.

on 01/02/08 15:47, Nuno Magalhães wrote:

6.
gdb xchat
(no debugging symbols found)
Using host libthread_db library "/lib/libthread_db.so.1".
(gdb)

How come gdb won't launch xchat? What's it waiting for?

GDB is waiting your command. so, you need to type "r".

Cheers,
--
/*
 * Masami Ichikawa
 * mailto: [EMAIL PROTECTED]
 *   : [EMAIL PROTECTED]
 */


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Python warnings

2007-11-27 Thread Masami Ichikawa

Hi.

on 11/26/07 19:55, Hans-J. Ullrich wrote:
Hi all, 
I get still warnings when upgrading the systems:


Warning: still using python2.3

although I got version 2.5 installed. 
I suppose, there is somewhere a dangling link or something else, which block 
the use of a newer version. Everything is running fine. How do I get rid of 
this warning (and use of the latest python version ) ?



If you have python2.3 and 2.5, I think your /usr/bin/python might be linked to 
python2.3.
Did you check it?

also, does your script(s) start following that line?
#!/usr/bin/env python

It's quite common sentence.
so, if /usr/bin/python link to python2.3, you should change symbolic link
with ln or something else.
#can be /usr/sbin/update-alternatives?

Cheers,
--
/*
 * Masami Ichikawa
 * mailto: [EMAIL PROTECTED]
 *   : [EMAIL PROTECTED]
 */


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: 2.6.23 build fails from Debian sources

2007-10-18 Thread Masami Ichikawa
on 10/18/07 15:04, Jack Malmostoso wrote:
> On Thu, 18 Oct 2007 04:10:07 +0200, Sridhar M.A. wrote:
>
>> I tried compiling 2.6.23.1 and faced no problems. It compiled fine.
>
>>From kernel.org, I assume.
> It must be a problem with Debian sources then.
>
> Thanks for the feedback!
>
I could build from debian
source(2.6.23-1~experimental.1~snapshot.9665) with
patch-2.6.23-hrt3.patch.bz2.
I got .config file from
linux-image-2.6.23-1-amd64_2.6.23-1~experimental.1~snapshot.9665_amd64.deb.

so, debian's kernel source may be fine I think.

my build environment is sid and I've installed these packages.
gcc-4.2  4.2.2-3
binutils 2.18-1

Cheers,
-- 
/*
 * Masami Ichikawa
 * mailto: [EMAIL PROTECTED]
 *   : [EMAIL PROTECTED]
 */


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: 2.6.23 build fails from Debian sources

2007-10-17 Thread Masami Ichikawa

Hi.

on 10/17/07 14:08, Jack Malmostoso wrote:


but I wanted to add the tickless option to my AMD64 kernel so I 
downloaded the hrt-1 patch from:


http://www.kernel.org/pub/linux/kernel/people/tglx/hrtimers/2.6.23/
patch-2.6.23-hrt1.patch.bz2


I couldn't find patch-2.6.23-hrt1.patch.bz2 on that page.
but I could see patch-2.6.23-hrt2.patch.bz2 and patch-2.6.23-hrt3.patch.bz2.
it seems newer than what you downloaded. if so, let's try it:-)

Cheers,
--
/*
 * Masami Ichikawa
 * mailto: [EMAIL PROTECTED]
 *   : [EMAIL PROTECTED]
 */


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: wftodm segfaults on AMD64

2006-07-28 Thread masami
Hi.

on 07/29/06 08:11, Danai SAE-HAN (韓達耐) wrote:

> If any if you could help me why test.c crashes on my computer and not
> on any other (i386) computer, I would be very grateful, since I'm no
> programmer.
> 
simply, you should include time.h instead of sys/time.h.
also I recommend use -Wall option when you build programs.

if you use this option, you can notice what wrong.
[EMAIL PROTECTED]:~]% gcc -Wall test.c
test.c:6: warning: return type of ‘main’ is not ‘int’
test.c: In function ‘main’:
test.c:8: warning: implicit declaration of function ‘ctime’
test.c:8: warning: format ‘%s’ expects type ‘char *’, but argument 2 has
type ‘int’

Cheers.
-- 
/*
 * Masami Ichikawa
 * mailto: [EMAIL PROTECTED]
 *   : [EMAIL PROTECTED]
 */


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]