Re: Fwd: Re: Barcode scanner

View: New views
11 Messages — Rating Filter:   Alert me  

Parent Message unknown Re: Fwd: Re: Barcode scanner

by Nicolas Robin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,
Thanks for forwarding me the messages !

I tried to apply this patch. But when I modify LDADD_LIBBARCODE, I have
some strange issues :
http://paste.tuxfamily.org/c78abf715f.html

If I apply the patch on the src/barcode folder without editing the
src/Makefile.am, there is no compilation problem.

Do you have any idea ?

Thanks for your great work,
Nicolas


Robby Stephenson wrote:

> ----------  Forwarded Message  ----------
>
> Subject: Re: Barcode scanner
> Date: Saturday 25 July 2009
> From: Sebastian Held <sebastian.held@...>
> To: tellico-users@...
>
> The new driver inside the kernel has dropped support for format conversion.
> Now the applications responsible for conversion. Interestingly the call to
> set
> a RGB24 palette succeeds, but does set an other format...
>
> I reworked the code to use libv4l (
> http://hansdegoede.livejournal.com/3636.html )
>
> Copy the attached files into $tellico_source/src/barcode (old one will be
> overwritten). The libv4l is gpl2, thus distribution is possible. The
> Makefile
> is patched (patch included) to generate static libs.
>
> Change $tellico_source/src/Makefile.am (line 23):
> from:
> LDADD_LIBBARCODE = ./barcode/libbarcode.a
> to:
> LDADD_LIBBARCODE = ./barcode/libbarcode.a ./barcode/libv4l/lib/libv4l1.a
> ./barcode/libv4l/lib/libv4l2.a ./barcode/libv4l/lib/libv4l2convert.a
> (on one line!)
>
> This version works again on my gentoo system with kernel 2.6.30.
>
> Someone should really code a nice gui for barcode recognition.
>
> Sebastian
>
> On Friday 24 July 2009 16:56:18 Robby Stephenson wrote:
>> On Friday 24 July 2009, Sebastian Held wrote:
>>> I wrote the code some time ago, but currently do not use it.
>>> I need to checkout the new version and try again myself.
>>>
>>> You may test your camera using the command from the xawtv package:
>>> v4l-info
>>> v4l-conf
>>>
>>> I'll get get to you, if I have my version working again.
>>>
>>> kind regards,
>>> Sebastian
>> Thanks, Sebastian.
>>
>> Robby
>>
>> _______________________________________________
>> tellico-users mailing list
>> tellico-users@...
>> http://forge.novell.com/mailman/listinfo/tellico-users
>
>
>
> -------------------------------------------------------

_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users

Re: Fwd: Re: Barcode scanner

by Sebastian Held :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Please issue a
LC_ALL=C
before posting log messages.

The archive a sent to the list is already patched. The patch is only for the
original libv4l version.
If you copied the files from the archive, you need to issue a
make
in the src/barcode/libv4l folder. This will build the required static
libraries.
Now go on with the normal build process for tellico.

Sorry for not being clear enough.

Sebastian

On Saturday 25 July 2009 21:06:21 Nicolas Robin wrote:

> Hi,
> Thanks for forwarding me the messages !
>
> I tried to apply this patch. But when I modify LDADD_LIBBARCODE, I have
> some strange issues :
> http://paste.tuxfamily.org/c78abf715f.html
>
> If I apply the patch on the src/barcode folder without editing the
> src/Makefile.am, there is no compilation problem.
>
> Do you have any idea ?
>
> Thanks for your great work,
> Nicolas
>
> Robby Stephenson wrote:
> > ----------  Forwarded Message  ----------
> >
> > Subject: Re: Barcode scanner
> > Date: Saturday 25 July 2009
> > From: Sebastian Held <sebastian.held@...>
> > To: tellico-users@...
> >
> > The new driver inside the kernel has dropped support for format
> > conversion. Now the applications responsible for conversion.
> > Interestingly the call to set
> > a RGB24 palette succeeds, but does set an other format...
> >
> > I reworked the code to use libv4l (
> > http://hansdegoede.livejournal.com/3636.html )
> >
> > Copy the attached files into $tellico_source/src/barcode (old one will be
> > overwritten). The libv4l is gpl2, thus distribution is possible. The
> > Makefile
> > is patched (patch included) to generate static libs.
> >
> > Change $tellico_source/src/Makefile.am (line 23):
> > from:
> > LDADD_LIBBARCODE = ./barcode/libbarcode.a
> > to:
> > LDADD_LIBBARCODE = ./barcode/libbarcode.a ./barcode/libv4l/lib/libv4l1.a
> > ./barcode/libv4l/lib/libv4l2.a ./barcode/libv4l/lib/libv4l2convert.a
> > (on one line!)
> >
> > This version works again on my gentoo system with kernel 2.6.30.
> >
> > Someone should really code a nice gui for barcode recognition.
> >
> > Sebastian
> >
> > On Friday 24 July 2009 16:56:18 Robby Stephenson wrote:
> >> On Friday 24 July 2009, Sebastian Held wrote:
> >>> I wrote the code some time ago, but currently do not use it.
> >>> I need to checkout the new version and try again myself.
> >>>
> >>> You may test your camera using the command from the xawtv package:
> >>> v4l-info
> >>> v4l-conf
> >>>
> >>> I'll get get to you, if I have my version working again.
> >>>
> >>> kind regards,
> >>> Sebastian
> >>
> >> Thanks, Sebastian.
> >>
> >> Robby
> >>
> >> _______________________________________________
> >> tellico-users mailing list
> >> tellico-users@...
> >> http://forge.novell.com/mailman/listinfo/tellico-users
> >
> > -------------------------------------------------------
>
> _______________________________________________
> tellico-users mailing list
> tellico-users@...
> http://forge.novell.com/mailman/listinfo/tellico-users


_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users

Re: Fwd: Re: Barcode scanner

by Nicolas Robin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

So, step by step :

1. extract tellico tarball
2. cp -r barcode/* tellico/src/barcode/
3. cd tellico/src/barcode/libv4l/ && make
4. cd tellico/
5. ./configure --enable-webcam
6. make

Here is the result : http://paste.tuxfamily.org/37ff176a93_nl.html

Thanks for your time,
Nicolas

Sebastian Held wrote:

> Please issue a
> LC_ALL=C
> before posting log messages.
>
> The archive a sent to the list is already patched. The patch is only for the
> original libv4l version.
> If you copied the files from the archive, you need to issue a
> make
> in the src/barcode/libv4l folder. This will build the required static
> libraries.
> Now go on with the normal build process for tellico.
>
> Sorry for not being clear enough.
>
> Sebastian
>
> On Saturday 25 July 2009 21:06:21 Nicolas Robin wrote:
>> Hi,
>> Thanks for forwarding me the messages !
>>
>> I tried to apply this patch. But when I modify LDADD_LIBBARCODE, I have
>> some strange issues :
>> http://paste.tuxfamily.org/c78abf715f.html
>>
>> If I apply the patch on the src/barcode folder without editing the
>> src/Makefile.am, there is no compilation problem.
>>
>> Do you have any idea ?
>>
>> Thanks for your great work,
>> Nicolas
>>
>> Robby Stephenson wrote:
>>> ----------  Forwarded Message  ----------
>>>
>>> Subject: Re: Barcode scanner
>>> Date: Saturday 25 July 2009
>>> From: Sebastian Held <sebastian.held@...>
>>> To: tellico-users@...
>>>
>>> The new driver inside the kernel has dropped support for format
>>> conversion. Now the applications responsible for conversion.
>>> Interestingly the call to set
>>> a RGB24 palette succeeds, but does set an other format...
>>>
>>> I reworked the code to use libv4l (
>>> http://hansdegoede.livejournal.com/3636.html )
>>>
>>> Copy the attached files into $tellico_source/src/barcode (old one will be
>>> overwritten). The libv4l is gpl2, thus distribution is possible. The
>>> Makefile
>>> is patched (patch included) to generate static libs.
>>>
>>> Change $tellico_source/src/Makefile.am (line 23):
>>> from:
>>> LDADD_LIBBARCODE = ./barcode/libbarcode.a
>>> to:
>>> LDADD_LIBBARCODE = ./barcode/libbarcode.a ./barcode/libv4l/lib/libv4l1.a
>>> ./barcode/libv4l/lib/libv4l2.a ./barcode/libv4l/lib/libv4l2convert.a
>>> (on one line!)
>>>
>>> This version works again on my gentoo system with kernel 2.6.30.
>>>
>>> Someone should really code a nice gui for barcode recognition.
>>>
>>> Sebastian
>>>
>>> On Friday 24 July 2009 16:56:18 Robby Stephenson wrote:
>>>> On Friday 24 July 2009, Sebastian Held wrote:
>>>>> I wrote the code some time ago, but currently do not use it.
>>>>> I need to checkout the new version and try again myself.
>>>>>
>>>>> You may test your camera using the command from the xawtv package:
>>>>> v4l-info
>>>>> v4l-conf
>>>>>
>>>>> I'll get get to you, if I have my version working again.
>>>>>
>>>>> kind regards,
>>>>> Sebastian
>>>> Thanks, Sebastian.
>>>>
>>>> Robby
>>>>
>>>> _______________________________________________
>>>> tellico-users mailing list
>>>> tellico-users@...
>>>> http://forge.novell.com/mailman/listinfo/tellico-users
>>> -------------------------------------------------------
>> _______________________________________________
>> tellico-users mailing list
>> tellico-users@...
>> http://forge.novell.com/mailman/listinfo/tellico-users
>
>
>

_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users

Re: Fwd: Re: Barcode scanner

by Sebastian Held :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

again, please use
LC_ALL=C make
to get english error messages.

The problem is:
 configure.in:43: version mismatch.  This is Automake 1.10.2,
 configure.in:43: but the definition used by this AM_INIT_AUTOMAKE
 configure.in:43: comes from Automake 1.10.1.  You should recreate
 configure.in:43: aclocal.m4 with aclocal and run automake again.
 
Please run
autoreconf
in the tellico root dir (where configure is).
This will regenerate all the automake files.

Robby may have an explanation for this.

Sebastian

On Saturday 25 July 2009 22:47:38 Nicolas Robin wrote:

> So, step by step :
>
> 1. extract tellico tarball
> 2. cp -r barcode/* tellico/src/barcode/
> 3. cd tellico/src/barcode/libv4l/ && make
> 4. cd tellico/
> 5. ./configure --enable-webcam
> 6. make
>
> Here is the result : http://paste.tuxfamily.org/37ff176a93_nl.html
>
> Thanks for your time,
> Nicolas
>
> Sebastian Held wrote:
> > Please issue a
> > LC_ALL=C
> > before posting log messages.
> >
> > The archive a sent to the list is already patched. The patch is only for
> > the original libv4l version.
> > If you copied the files from the archive, you need to issue a
> > make
> > in the src/barcode/libv4l folder. This will build the required static
> > libraries.
> > Now go on with the normal build process for tellico.
> >
> > Sorry for not being clear enough.
> >
> > Sebastian
> >
> > On Saturday 25 July 2009 21:06:21 Nicolas Robin wrote:
> >> Hi,
> >> Thanks for forwarding me the messages !
> >>
> >> I tried to apply this patch. But when I modify LDADD_LIBBARCODE, I have
> >> some strange issues :
> >> http://paste.tuxfamily.org/c78abf715f.html
> >>
> >> If I apply the patch on the src/barcode folder without editing the
> >> src/Makefile.am, there is no compilation problem.
> >>
> >> Do you have any idea ?
> >>
> >> Thanks for your great work,
> >> Nicolas
> >>
> >> Robby Stephenson wrote:
> >>> ----------  Forwarded Message  ----------
> >>>
> >>> Subject: Re: Barcode scanner
> >>> Date: Saturday 25 July 2009
> >>> From: Sebastian Held <sebastian.held@...>
> >>> To: tellico-users@...
> >>>
> >>> The new driver inside the kernel has dropped support for format
> >>> conversion. Now the applications responsible for conversion.
> >>> Interestingly the call to set
> >>> a RGB24 palette succeeds, but does set an other format...
> >>>
> >>> I reworked the code to use libv4l (
> >>> http://hansdegoede.livejournal.com/3636.html )
> >>>
> >>> Copy the attached files into $tellico_source/src/barcode (old one will
> >>> be overwritten). The libv4l is gpl2, thus distribution is possible. The
> >>> Makefile
> >>> is patched (patch included) to generate static libs.
> >>>
> >>> Change $tellico_source/src/Makefile.am (line 23):
> >>> from:
> >>> LDADD_LIBBARCODE = ./barcode/libbarcode.a
> >>> to:
> >>> LDADD_LIBBARCODE = ./barcode/libbarcode.a
> >>> ./barcode/libv4l/lib/libv4l1.a ./barcode/libv4l/lib/libv4l2.a
> >>> ./barcode/libv4l/lib/libv4l2convert.a (on one line!)
> >>>
> >>> This version works again on my gentoo system with kernel 2.6.30.
> >>>
> >>> Someone should really code a nice gui for barcode recognition.
> >>>
> >>> Sebastian
> >>>
> >>> On Friday 24 July 2009 16:56:18 Robby Stephenson wrote:
> >>>> On Friday 24 July 2009, Sebastian Held wrote:
> >>>>> I wrote the code some time ago, but currently do not use it.
> >>>>> I need to checkout the new version and try again myself.
> >>>>>
> >>>>> You may test your camera using the command from the xawtv package:
> >>>>> v4l-info
> >>>>> v4l-conf
> >>>>>
> >>>>> I'll get get to you, if I have my version working again.
> >>>>>
> >>>>> kind regards,
> >>>>> Sebastian
> >>>>
> >>>> Thanks, Sebastian.
> >>>>
> >>>> Robby
> >>>>
> >>>> _______________________________________________
> >>>> tellico-users mailing list
> >>>> tellico-users@...
> >>>> http://forge.novell.com/mailman/listinfo/tellico-users
> >>>
> >>> -------------------------------------------------------
> >>
> >> _______________________________________________
> >> tellico-users mailing list
> >> tellico-users@...
> >> http://forge.novell.com/mailman/listinfo/tellico-users

_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users

Re: Fwd: Re: Barcode scanner

by Nicolas Robin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Here is the autoreconf output :
http://paste.tuxfamily.org/565763c954_nl.html

And here is the make output (new error) :
http://paste.tuxfamily.org/283a16ed8b.html

Thanks for helping,
Nicolas

Sebastian Held wrote:

> again, please use
> LC_ALL=C make
> to get english error messages.
>
> The problem is:
>  configure.in:43: version mismatch.  This is Automake 1.10.2,
>  configure.in:43: but the definition used by this AM_INIT_AUTOMAKE
>  configure.in:43: comes from Automake 1.10.1.  You should recreate
>  configure.in:43: aclocal.m4 with aclocal and run automake again.
>  
> Please run
> autoreconf
> in the tellico root dir (where configure is).
> This will regenerate all the automake files.
>
> Robby may have an explanation for this.
>
> Sebastian
>
> On Saturday 25 July 2009 22:47:38 Nicolas Robin wrote:
>> So, step by step :
>>
>> 1. extract tellico tarball
>> 2. cp -r barcode/* tellico/src/barcode/
>> 3. cd tellico/src/barcode/libv4l/ && make
>> 4. cd tellico/
>> 5. ./configure --enable-webcam
>> 6. make
>>
>> Here is the result : http://paste.tuxfamily.org/37ff176a93_nl.html
>>
>> Thanks for your time,
>> Nicolas
>>
>> Sebastian Held wrote:
>>> Please issue a
>>> LC_ALL=C
>>> before posting log messages.
>>>
>>> The archive a sent to the list is already patched. The patch is only for
>>> the original libv4l version.
>>> If you copied the files from the archive, you need to issue a
>>> make
>>> in the src/barcode/libv4l folder. This will build the required static
>>> libraries.
>>> Now go on with the normal build process for tellico.
>>>
>>> Sorry for not being clear enough.
>>>
>>> Sebastian
>>>
>>> On Saturday 25 July 2009 21:06:21 Nicolas Robin wrote:
>>>> Hi,
>>>> Thanks for forwarding me the messages !
>>>>
>>>> I tried to apply this patch. But when I modify LDADD_LIBBARCODE, I have
>>>> some strange issues :
>>>> http://paste.tuxfamily.org/c78abf715f.html
>>>>
>>>> If I apply the patch on the src/barcode folder without editing the
>>>> src/Makefile.am, there is no compilation problem.
>>>>
>>>> Do you have any idea ?
>>>>
>>>> Thanks for your great work,
>>>> Nicolas
>>>>
>>>> Robby Stephenson wrote:
>>>>> ----------  Forwarded Message  ----------
>>>>>
>>>>> Subject: Re: Barcode scanner
>>>>> Date: Saturday 25 July 2009
>>>>> From: Sebastian Held <sebastian.held@...>
>>>>> To: tellico-users@...
>>>>>
>>>>> The new driver inside the kernel has dropped support for format
>>>>> conversion. Now the applications responsible for conversion.
>>>>> Interestingly the call to set
>>>>> a RGB24 palette succeeds, but does set an other format...
>>>>>
>>>>> I reworked the code to use libv4l (
>>>>> http://hansdegoede.livejournal.com/3636.html )
>>>>>
>>>>> Copy the attached files into $tellico_source/src/barcode (old one will
>>>>> be overwritten). The libv4l is gpl2, thus distribution is possible. The
>>>>> Makefile
>>>>> is patched (patch included) to generate static libs.
>>>>>
>>>>> Change $tellico_source/src/Makefile.am (line 23):
>>>>> from:
>>>>> LDADD_LIBBARCODE = ./barcode/libbarcode.a
>>>>> to:
>>>>> LDADD_LIBBARCODE = ./barcode/libbarcode.a
>>>>> ./barcode/libv4l/lib/libv4l1.a ./barcode/libv4l/lib/libv4l2.a
>>>>> ./barcode/libv4l/lib/libv4l2convert.a (on one line!)
>>>>>
>>>>> This version works again on my gentoo system with kernel 2.6.30.
>>>>>
>>>>> Someone should really code a nice gui for barcode recognition.
>>>>>
>>>>> Sebastian
>>>>>
>>>>> On Friday 24 July 2009 16:56:18 Robby Stephenson wrote:
>>>>>> On Friday 24 July 2009, Sebastian Held wrote:
>>>>>>> I wrote the code some time ago, but currently do not use it.
>>>>>>> I need to checkout the new version and try again myself.
>>>>>>>
>>>>>>> You may test your camera using the command from the xawtv package:
>>>>>>> v4l-info
>>>>>>> v4l-conf
>>>>>>>
>>>>>>> I'll get get to you, if I have my version working again.
>>>>>>>
>>>>>>> kind regards,
>>>>>>> Sebastian
>>>>>> Thanks, Sebastian.
>>>>>>
>>>>>> Robby
>>>>>>
>>>>>> _______________________________________________
>>>>>> tellico-users mailing list
>>>>>> tellico-users@...
>>>>>> http://forge.novell.com/mailman/listinfo/tellico-users
>>>>> -------------------------------------------------------
>>>> _______________________________________________
>>>> tellico-users mailing list
>>>> tellico-users@...
>>>> http://forge.novell.com/mailman/listinfo/tellico-users
>
>

_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users

Re: Fwd: Re: Barcode scanner

by robbystephenson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

At the risk of trying too many things, try running

/autogen.sh --enable-webcam

from the top-level tellico directory after applying Sebastian's patch.

Robby

On Saturday 25 July 2009, Nicolas Robin wrote:

> Here is the autoreconf output :
> http://paste.tuxfamily.org/565763c954_nl.html
>
> And here is the make output (new error) :
> http://paste.tuxfamily.org/283a16ed8b.html
>
> Thanks for helping,
> Nicolas
>
> Sebastian Held wrote:
> > again, please use
> > LC_ALL=C make
> > to get english error messages.
> >
> > The problem is:
> >  configure.in:43: version mismatch.  This is Automake 1.10.2,
> >  configure.in:43: but the definition used by this AM_INIT_AUTOMAKE
> >  configure.in:43: comes from Automake 1.10.1.  You should recreate
> >  configure.in:43: aclocal.m4 with aclocal and run automake again.
> >
> > Please run
> > autoreconf
> > in the tellico root dir (where configure is).
> > This will regenerate all the automake files.
> >
> > Robby may have an explanation for this.
> >
> > Sebastian
> >
> > On Saturday 25 July 2009 22:47:38 Nicolas Robin wrote:
> >> So, step by step :
> >>
> >> 1. extract tellico tarball
> >> 2. cp -r barcode/* tellico/src/barcode/
> >> 3. cd tellico/src/barcode/libv4l/ && make
> >> 4. cd tellico/
> >> 5. ./configure --enable-webcam
> >> 6. make
> >>
> >> Here is the result : http://paste.tuxfamily.org/37ff176a93_nl.html
> >>
> >> Thanks for your time,
> >> Nicolas
> >>
> >> Sebastian Held wrote:
> >>> Please issue a
> >>> LC_ALL=C
> >>> before posting log messages.
> >>>
> >>> The archive a sent to the list is already patched. The patch is only
> >>> for the original libv4l version.
> >>> If you copied the files from the archive, you need to issue a
> >>> make
> >>> in the src/barcode/libv4l folder. This will build the required static
> >>> libraries.
> >>> Now go on with the normal build process for tellico.
> >>>
> >>> Sorry for not being clear enough.
> >>>
> >>> Sebastian



_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users

Parent Message unknown Re: Fwd: Re: Barcode scanner

by Nicolas Robin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I don't have any autogen.sh file.

Nicolas

Robby Stephenson wrote:

> At the risk of trying too many things, try running
>
> ./autogen.sh --enable-webcam
>
> from the top-level tellico directory after applying Sebastian's patch.
>
> Robby
>
> On Saturday 25 July 2009, Nicolas Robin wrote:
>> Here is the autoreconf output :
>> http://paste.tuxfamily.org/565763c954_nl.html
>>
>> And here is the make output (new error) :
>> http://paste.tuxfamily.org/283a16ed8b.html
>>
>> Thanks for helping,
>> Nicolas
>>
>> Sebastian Held wrote:
>>> again, please use
>>> LC_ALL=C make
>>> to get english error messages.
>>>
>>> The problem is:
>>>  configure.in:43: version mismatch.  This is Automake 1.10.2,
>>>  configure.in:43: but the definition used by this AM_INIT_AUTOMAKE
>>>  configure.in:43: comes from Automake 1.10.1.  You should recreate
>>>  configure.in:43: aclocal.m4 with aclocal and run automake again.
>>>
>>> Please run
>>> autoreconf
>>> in the tellico root dir (where configure is).
>>> This will regenerate all the automake files.
>>>
>>> Robby may have an explanation for this.
>>>
>>> Sebastian
>>>
>>> On Saturday 25 July 2009 22:47:38 Nicolas Robin wrote:
>>>> So, step by step :
>>>>
>>>> 1. extract tellico tarball
>>>> 2. cp -r barcode/* tellico/src/barcode/
>>>> 3. cd tellico/src/barcode/libv4l/ && make
>>>> 4. cd tellico/
>>>> 5. ./configure --enable-webcam
>>>> 6. make
>>>>
>>>> Here is the result : http://paste.tuxfamily.org/37ff176a93_nl.html
>>>>
>>>> Thanks for your time,
>>>> Nicolas
>>>>
>>>> Sebastian Held wrote:
>>>>> Please issue a
>>>>> LC_ALL=C
>>>>> before posting log messages.
>>>>>
>>>>> The archive a sent to the list is already patched. The patch is only
>>>>> for the original libv4l version.
>>>>> If you copied the files from the archive, you need to issue a
>>>>> make
>>>>> in the src/barcode/libv4l folder. This will build the required static
>>>>> libraries.
>>>>> Now go on with the normal build process for tellico.
>>>>>
>>>>> Sorry for not being clear enough.
>>>>>
>>>>> Sebastian
>
>
>
>
> -------------------------------------------------------
>

_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users

Re: Fwd: Re: Barcode scanner

by robbystephenson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Oh, sorry. I forgot that was just in the svn tree. Let me see about trying
something else.

On Sunday 26 July 2009, you wrote:

> I don't have any autogen.sh file.
>
> Nicolas
>
> Robby Stephenson wrote:
> > At the risk of trying too many things, try running
> >
> > ./autogen.sh --enable-webcam
> >
> > from the top-level tellico directory after applying Sebastian's patch.
> >
> > Robby
> >
> > On Saturday 25 July 2009, Nicolas Robin wrote:
> >> Here is the autoreconf output :
> >> http://paste.tuxfamily.org/565763c954_nl.html
> >>
> >> And here is the make output (new error) :
> >> http://paste.tuxfamily.org/283a16ed8b.html
> >>
> >> Thanks for helping,
> >> Nicolas
> >>
> >> Sebastian Held wrote:
> >>> again, please use
> >>> LC_ALL=C make
> >>> to get english error messages.
> >>>
> >>> The problem is:
> >>>  configure.in:43: version mismatch.  This is Automake 1.10.2,
> >>>  configure.in:43: but the definition used by this AM_INIT_AUTOMAKE
> >>>  configure.in:43: comes from Automake 1.10.1.  You should recreate
> >>>  configure.in:43: aclocal.m4 with aclocal and run automake again.
> >>>
> >>> Please run
> >>> autoreconf
> >>> in the tellico root dir (where configure is).
> >>> This will regenerate all the automake files.
> >>>
> >>> Robby may have an explanation for this.
> >>>
> >>> Sebastian
> >>>
> >>> On Saturday 25 July 2009 22:47:38 Nicolas Robin wrote:
> >>>> So, step by step :
> >>>>
> >>>> 1. extract tellico tarball
> >>>> 2. cp -r barcode/* tellico/src/barcode/
> >>>> 3. cd tellico/src/barcode/libv4l/ && make
> >>>> 4. cd tellico/
> >>>> 5. ./configure --enable-webcam
> >>>> 6. make
> >>>>
> >>>> Here is the result : http://paste.tuxfamily.org/37ff176a93_nl.html
> >>>>
> >>>> Thanks for your time,
> >>>> Nicolas
> >>>>
> >>>> Sebastian Held wrote:
> >>>>> Please issue a
> >>>>> LC_ALL=C
> >>>>> before posting log messages.
> >>>>>
> >>>>> The archive a sent to the list is already patched. The patch is
> >>>>> only for the original libv4l version.
> >>>>> If you copied the files from the archive, you need to issue a
> >>>>> make
> >>>>> in the src/barcode/libv4l folder. This will build the required
> >>>>> static libraries.
> >>>>> Now go on with the normal build process for tellico.
> >>>>>
> >>>>> Sorry for not being clear enough.
> >>>>>
> >>>>> Sebastian
> >
> > -------------------------------------------------------


_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users

Re: Fwd: Re: Barcode scanner

by Sebastian Held :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Yeah, and it seems to do s.th. very tricky...
I think it will run perl admin/am_edit after autoreconf. But that's not all ;)
I currently have no svn tree here, but a look into this file should make clear
what have to be run after autoreconf.

Sebastian

On Sunday 26 July 2009 17:14:19 Robby Stephenson wrote:

> Oh, sorry. I forgot that was just in the svn tree. Let me see about trying
> something else.
>
> On Sunday 26 July 2009, you wrote:
> > I don't have any autogen.sh file.
> >
> > Nicolas
> >
> > Robby Stephenson wrote:
> > > At the risk of trying too many things, try running
> > >
> > > ./autogen.sh --enable-webcam
> > >
> > > from the top-level tellico directory after applying Sebastian's patch.
> > >
> > > Robby
> > >
> > > On Saturday 25 July 2009, Nicolas Robin wrote:
> > >> Here is the autoreconf output :
> > >> http://paste.tuxfamily.org/565763c954_nl.html
> > >>
> > >> And here is the make output (new error) :
> > >> http://paste.tuxfamily.org/283a16ed8b.html
> > >>
> > >> Thanks for helping,
> > >> Nicolas
> > >>
> > >> Sebastian Held wrote:
> > >>> again, please use
> > >>> LC_ALL=C make
> > >>> to get english error messages.
> > >>>
> > >>> The problem is:
> > >>>  configure.in:43: version mismatch.  This is Automake 1.10.2,
> > >>>  configure.in:43: but the definition used by this AM_INIT_AUTOMAKE
> > >>>  configure.in:43: comes from Automake 1.10.1.  You should recreate
> > >>>  configure.in:43: aclocal.m4 with aclocal and run automake again.
> > >>>
> > >>> Please run
> > >>> autoreconf
> > >>> in the tellico root dir (where configure is).
> > >>> This will regenerate all the automake files.
> > >>>
> > >>> Robby may have an explanation for this.
> > >>>
> > >>> Sebastian
> > >>>
> > >>> On Saturday 25 July 2009 22:47:38 Nicolas Robin wrote:
> > >>>> So, step by step :
> > >>>>
> > >>>> 1. extract tellico tarball
> > >>>> 2. cp -r barcode/* tellico/src/barcode/
> > >>>> 3. cd tellico/src/barcode/libv4l/ && make
> > >>>> 4. cd tellico/
> > >>>> 5. ./configure --enable-webcam
> > >>>> 6. make
> > >>>>
> > >>>> Here is the result : http://paste.tuxfamily.org/37ff176a93_nl.html
> > >>>>
> > >>>> Thanks for your time,
> > >>>> Nicolas
> > >>>>
> > >>>> Sebastian Held wrote:
> > >>>>> Please issue a
> > >>>>> LC_ALL=C
> > >>>>> before posting log messages.
> > >>>>>
> > >>>>> The archive a sent to the list is already patched. The patch is
> > >>>>> only for the original libv4l version.
> > >>>>> If you copied the files from the archive, you need to issue a
> > >>>>> make
> > >>>>> in the src/barcode/libv4l folder. This will build the required
> > >>>>> static libraries.
> > >>>>> Now go on with the normal build process for tellico.
> > >>>>>
> > >>>>> Sorry for not being clear enough.
> > >>>>>
> > >>>>> Sebastian
> > >
> > > -------------------------------------------------------
>
> _______________________________________________
> tellico-users mailing list
> tellico-users@...
> http://forge.novell.com/mailman/listinfo/tellico-users


_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users

Re: Fwd: Re: Barcode scanner

by Nicolas Robin :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I did not found any autogen.sh file in
http://websvn.kde.org/trunk/extragear/office/tellico/

I must be in the wrong place.

Nicolas

Sebastian Held wrote:

> Yeah, and it seems to do s.th. very tricky...
> I think it will run perl admin/am_edit after autoreconf. But that's not all ;)
> I currently have no svn tree here, but a look into this file should make clear
> what have to be run after autoreconf.
>
> Sebastian
>
> On Sunday 26 July 2009 17:14:19 Robby Stephenson wrote:
>> Oh, sorry. I forgot that was just in the svn tree. Let me see about trying
>> something else.
>>
>> On Sunday 26 July 2009, you wrote:
>>> I don't have any autogen.sh file.
>>>
>>> Nicolas
>>>
>>> Robby Stephenson wrote:
>>>> At the risk of trying too many things, try running
>>>>
>>>> ./autogen.sh --enable-webcam
>>>>
>>>> from the top-level tellico directory after applying Sebastian's patch.
>>>>
>>>> Robby
>>>>
>>>> On Saturday 25 July 2009, Nicolas Robin wrote:
>>>>> Here is the autoreconf output :
>>>>> http://paste.tuxfamily.org/565763c954_nl.html
>>>>>
>>>>> And here is the make output (new error) :
>>>>> http://paste.tuxfamily.org/283a16ed8b.html
>>>>>
>>>>> Thanks for helping,
>>>>> Nicolas
>>>>>
>>>>> Sebastian Held wrote:
>>>>>> again, please use
>>>>>> LC_ALL=C make
>>>>>> to get english error messages.
>>>>>>
>>>>>> The problem is:
>>>>>>  configure.in:43: version mismatch.  This is Automake 1.10.2,
>>>>>>  configure.in:43: but the definition used by this AM_INIT_AUTOMAKE
>>>>>>  configure.in:43: comes from Automake 1.10.1.  You should recreate
>>>>>>  configure.in:43: aclocal.m4 with aclocal and run automake again.
>>>>>>
>>>>>> Please run
>>>>>> autoreconf
>>>>>> in the tellico root dir (where configure is).
>>>>>> This will regenerate all the automake files.
>>>>>>
>>>>>> Robby may have an explanation for this.
>>>>>>
>>>>>> Sebastian
>>>>>>
>>>>>> On Saturday 25 July 2009 22:47:38 Nicolas Robin wrote:
>>>>>>> So, step by step :
>>>>>>>
>>>>>>> 1. extract tellico tarball
>>>>>>> 2. cp -r barcode/* tellico/src/barcode/
>>>>>>> 3. cd tellico/src/barcode/libv4l/ && make
>>>>>>> 4. cd tellico/
>>>>>>> 5. ./configure --enable-webcam
>>>>>>> 6. make
>>>>>>>
>>>>>>> Here is the result : http://paste.tuxfamily.org/37ff176a93_nl.html
>>>>>>>
>>>>>>> Thanks for your time,
>>>>>>> Nicolas
>>>>>>>
>>>>>>> Sebastian Held wrote:
>>>>>>>> Please issue a
>>>>>>>> LC_ALL=C
>>>>>>>> before posting log messages.
>>>>>>>>
>>>>>>>> The archive a sent to the list is already patched. The patch is
>>>>>>>> only for the original libv4l version.
>>>>>>>> If you copied the files from the archive, you need to issue a
>>>>>>>> make
>>>>>>>> in the src/barcode/libv4l folder. This will build the required
>>>>>>>> static libraries.
>>>>>>>> Now go on with the normal build process for tellico.
>>>>>>>>
>>>>>>>> Sorry for not being clear enough.
>>>>>>>>
>>>>>>>> Sebastian
>>>> -------------------------------------------------------
>> _______________________________________________
>> tellico-users mailing list
>> tellico-users@...
>> http://forge.novell.com/mailman/listinfo/tellico-users
>
>
>

_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users

Re: Fwd: Re: Barcode scanner

by robbystephenson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

It's part of the old 1.3.x tree.

https://forgesvn1.novell.com:443/viewsvn/tellico/branches/tellico-1.3.x/autogen.sh?view=log

On Sunday 26 July 2009, Nicolas Robin wrote:

> I did not found any autogen.sh file in
> http://websvn.kde.org/trunk/extragear/office/tellico/
>
> I must be in the wrong place.
>
> Nicolas
>
> Sebastian Held wrote:
> > Yeah, and it seems to do s.th. very tricky...
> > I think it will run perl admin/am_edit after autoreconf. But that's not
> > all ;) I currently have no svn tree here, but a look into this file
> > should make clear what have to be run after autoreconf.
> >
> > Sebastian
> >
> > On Sunday 26 July 2009 17:14:19 Robby Stephenson wrote:
> >> Oh, sorry. I forgot that was just in the svn tree. Let me see about
> >> trying something else.
> >>
> >> On Sunday 26 July 2009, you wrote:
> >>> I don't have any autogen.sh file.
> >>>
> >>> Nicolas
> >>>
> >>> Robby Stephenson wrote:
> >>>> At the risk of trying too many things, try running
> >>>>
> >>>> ./autogen.sh --enable-webcam
> >>>>
> >>>> from the top-level tellico directory after applying Sebastian's
> >>>> patch.
> >>>>
> >>>> Robby
> >>>>
> >>>> On Saturday 25 July 2009, Nicolas Robin wrote:
> >>>>> Here is the autoreconf output :
> >>>>> http://paste.tuxfamily.org/565763c954_nl.html
> >>>>>
> >>>>> And here is the make output (new error) :
> >>>>> http://paste.tuxfamily.org/283a16ed8b.html
> >>>>>
> >>>>> Thanks for helping,
> >>>>> Nicolas
> >>>>>
> >>>>> Sebastian Held wrote:
> >>>>>> again, please use
> >>>>>> LC_ALL=C make
> >>>>>> to get english error messages.
> >>>>>>
> >>>>>> The problem is:
> >>>>>>  configure.in:43: version mismatch.  This is Automake 1.10.2,
> >>>>>>  configure.in:43: but the definition used by this AM_INIT_AUTOMAKE
> >>>>>>  configure.in:43: comes from Automake 1.10.1.  You should recreate
> >>>>>>  configure.in:43: aclocal.m4 with aclocal and run automake again.
> >>>>>>
> >>>>>> Please run
> >>>>>> autoreconf
> >>>>>> in the tellico root dir (where configure is).
> >>>>>> This will regenerate all the automake files.
> >>>>>>
> >>>>>> Robby may have an explanation for this.
> >>>>>>
> >>>>>> Sebastian
> >>>>>>
> >>>>>> On Saturday 25 July 2009 22:47:38 Nicolas Robin wrote:
> >>>>>>> So, step by step :
> >>>>>>>
> >>>>>>> 1. extract tellico tarball
> >>>>>>> 2. cp -r barcode/* tellico/src/barcode/
> >>>>>>> 3. cd tellico/src/barcode/libv4l/ && make
> >>>>>>> 4. cd tellico/
> >>>>>>> 5. ./configure --enable-webcam
> >>>>>>> 6. make
> >>>>>>>
> >>>>>>> Here is the result :
> >>>>>>> http://paste.tuxfamily.org/37ff176a93_nl.html
> >>>>>>>
> >>>>>>> Thanks for your time,
> >>>>>>> Nicolas
> >>>>>>>
> >>>>>>> Sebastian Held wrote:
> >>>>>>>> Please issue a
> >>>>>>>> LC_ALL=C
> >>>>>>>> before posting log messages.
> >>>>>>>>
> >>>>>>>> The archive a sent to the list is already patched. The patch is
> >>>>>>>> only for the original libv4l version.
> >>>>>>>> If you copied the files from the archive, you need to issue a
> >>>>>>>> make
> >>>>>>>> in the src/barcode/libv4l folder. This will build the required
> >>>>>>>> static libraries.
> >>>>>>>> Now go on with the normal build process for tellico.
> >>>>>>>>
> >>>>>>>> Sorry for not being clear enough.
> >>>>>>>>
> >>>>>>>> Sebastian
> >>>>
> >>>> -------------------------------------------------------
> >>
> >> _______________________________________________
> >> tellico-users mailing list
> >> tellico-users@...
> >> http://forge.novell.com/mailman/listinfo/tellico-users
>
> _______________________________________________
> tellico-users mailing list
> tellico-users@...
> http://forge.novell.com/mailman/listinfo/tellico-users



_______________________________________________
tellico-users mailing list
tellico-users@...
http://forge.novell.com/mailman/listinfo/tellico-users