Thomas Schmitt wrote:
> Hi,
hello, :)
> songbird's autotools wrote:
^
*snicker*
>> configure: WARNING: sys/ioctl.h: see the Autoconf documentation
>> configure: WARNING: sys/ioctl.h: section "Present But Cannot Be
>
> According to
>
> https://www.gnu.org/s
Hi,
songbird's autotools wrote:
> configure: WARNING: sys/ioctl.h: see the Autoconf documentation
> configure: WARNING: sys/ioctl.h: section "Present But Cannot Be
According to
https://www.gnu.org/software/autoconf/manual/autoconf-2.64/html_node/Present-But-Cannot-Be-Compiled.html
you will
On Thu, Feb 07, 2019 at 06:06:01AM -0500, songbird wrote:
> i used to be able to compile my program
> using Debian testing/unstable by setting the -m32
> in CFLAGS and regenerating my environment.
>
> now i'm picking up a warning from the auto stuff
> like:
>
> =
> checking sys/ioctl.h
L'octidi 28 messidor, an CCXXIV, Jonathan Dowland a écrit :
> Interesting nuance, thanks!
>
> I wonder if this is why SDL recommends people just use "" for their
> own headers.
The best explanation I can come up with is that their examples where
originally designed as test programs within the sou
On Fri, Jul 15, 2016 at 02:59:12PM +0200, Andre Majorel wrote:
> The rule of thumb of using "" for application headers and <> for
> system headers is valid. But a more accurate way to summarise
> the difference would be that #include <> only looks at the
> system directories.
Interesting nuance, t
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Fri, Jul 15, 2016 at 02:59:12PM +0200, Andre Majorel wrote:
> On 2016-07-15 11:54 +0200, to...@tuxteam.de wrote:
>
> > As your includes are written above, the C compiler would look
> > for a file md5.h in the current compilation directory: most
> >
On 2016-07-15 11:54 +0200, to...@tuxteam.de wrote:
> As your includes are written above, the C compiler would look
> for a file md5.h in the current compilation directory: most
> probably there isn't one, since whatever package you installed
> will put it in a standard system location, typically u
Hi,
Pol Hallen wrote:
> now I've many errors
> alice.c:50:18: error: unknown type name ‘md5_context’
> alice.c:61:37: error: unknown type name ‘uint8’
This might indicate that openssl/md5.h is not the md5.h which is needed
for your source code. If so, then was rather a red herring.
(One can be r
On Fri, Jul 15, 2016 at 12:23:01PM +0200, Jens Sauer wrote:
> I think you are missing dependencies from the ssl library. Have a look into
> the docs [1].
Doesn't look like openssl to me. Openssl just happens to also have a md5.h
header in it.
signature.asc
Description: Digital signature
I think you are missing dependencies from the ssl library. Have a look into
the docs [1].
Your questions implies that you are not very experienced in C coding.
Maybe you should ask yourself the question if starting with a complex and
potential security risky api like openssl is the right thing for
On Fri, Jul 15, 2016 at 12:07:09PM +0200, Pol Hallen wrote:
> alice.c:50:18: error: unknown type name ‘md5_context’
> void md5_starts( md5_context *ctx )
These aren't typedefs used by openssl. It looks like your code
is designed to be used with a completely different md5.h.
FWIW, last time I wa
Hi,
i second tomás' assessment and proposal.
Reco wrote:
> #include with encased in 'less' and 'more' characters instructs
> preprocessor to search header files system-wide. A search path can be
> modified with -L flag.
It is not a system-wide search, but rather a search iterating over a list
o
L'octidi 28 messidor, an CCXXIV, Pol Hallen a écrit :
> #include
> #include
> #include
> #include "md5.h"
The fact that md5.h is included with double quotes instead of angle brackets
means that it is a header local to the project, not a system header. Your .c
file should come with the md5.h fil
sorry, my mistake about the package (I use debian testing)
find /usr/include -name md5.h
find /usr/include/ -name md5.h
/usr/include/openssl/md5.h
/usr/include/crypto++/md5.h
#include
now I've many errors
thanks for help!
alice.c:50:18: error: unknown type name ‘md5_context’
void m
#include
I've same problem :-/
--
Pol
Hi.
On Fri, Jul 15, 2016 at 11:34:38AM +0200, Pol Hallen wrote:
> Hi, all
>
> I've this error:
>
> fatal error: md5.h: No such file or directory
> compilation terminated.
>
> when I compiled a source C
>
> gcc source.c
>
> [...]
> #include
> #include
> #include
> #include "md5.h"
>
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Fri, Jul 15, 2016 at 11:34:38AM +0200, Pol Hallen wrote:
> Hi, all
>
> I've this error:
>
> fatal error: md5.h: No such file or directory
> compilation terminated.
>
> when I compiled a source C
>
> gcc source.c
>
> [...]
> #include
> #include
On 05/07/2016 06:39 AM, CN wrote:
> The following compilable C++ program catches signals as expected if it
> runs directly from shell /tmp/a.out.
>
> However, this program fails to catch any signal and silently terminates
> if it is fired by Debian's start-stop-daemon.
No, it does catch the signa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Fri, Apr 01, 2016 at 09:07:55PM +0300, Aleksandar Valchev wrote:
> Hi *,
>
> is there any library for using apt-get via C++ ?
>
> I'm aware of "system" and boost python interface, but just in case to ask...
>
> Thanks a lot.
If you do
ldd $(w
Le 10.12.2014 13:23, Nick Mpallas a écrit :
Hi guys,
I am building a platform and I need to compile apache mesos from
sources. The issue is that the guys the require support for specific
c++11 features that in the 4.7 compiler currently supported by debian
aren't there. Will the g++ compiler wi
Le 11.12.2014 13:20, Bonno Bloksma a écrit :
Hi,
On 12/10/2014 01:23 PM, Nick Mpallas wrote:
I am building a platform and I need to compile apache mesos from
sources. The issue is that the guys the require support for
specific
c++11 features that in the 4.7 compiler currently supported by
Hi,
> On 12/10/2014 01:23 PM, Nick Mpallas wrote:
>> I am building a platform and I need to compile apache mesos from
>> sources. The issue is that the guys the require support for specific
>> c++11 features that in the 4.7 compiler currently supported by debian
>> aren't there. Will the g++ co
On 12/10/2014 01:23 PM, Nick Mpallas wrote:
> I am building a platform and I need to compile apache mesos from sources. The
> issue is that the guys the require support for specific c++11 features that in
> the 4.7 compiler currently supported by debian aren't there. Will the g++
> compiler will be
On Wed, Dec 10, 2014 at 01:23:31PM +0100, Nick Mpallas wrote:
>Hi guys,
>I am building a platform and I need to compile apache mesos from sources.
>The issue is that the guys the require support for specific c++11 features
>that in the 4.7 compiler currently supported by debian aren
Le 2014-12-10 13:23, Nick Mpallas a écrit :
> Hi guys,
> I am building a platform and I need to compile apache mesos from sources. The
> issue is that the guys the require support for specific c++11 features that
> in the 4.7 compiler currently supported by debian aren't there. Will the g++
On 2012-11-13 18:22:17 -0600, John Hasler wrote:
> Samuel Morgan writes:
> > Where do I get a C Compiler built for DEBIAN Squeeze so I can build
> > other packages?
>
> As others have said, install the "build-essentials" package. It
[...]
build-essential (without an s).
--
Vincent Lefèvre - W
Samuel Morgan writes:
> Where do I get a C Compiler built for DEBIAN Squeeze so I can build
> other packages?
As others have said, install the "build-essentials" package. It
contains the GNU C compiler and other things you need to packages.
First, though, tell us what it is that you want to build
> On Tue, Nov 13, 2012 at 8:23 PM, Samuel Morgan wrote:
>> Hi-
[cut]
>>
>> Can you help? What is build-essential?
>>
>> Thanks,
>>
>> Tom
>
On Tue, Nov 13, 2012 at 8:44 PM, Dr Beco wrote:
[cut]
> #sudo apt-get install build-essential
>
> (without #).
>
> Good luck!
> Beco
Sorry guys, for the
Hi Samuel,
Try open a terminal window and type:
#sudo apt-get install build-essential
(without #).
Good luck!
Beco
On Tue, Nov 13, 2012 at 8:23 PM, Samuel Morgan wrote:
> Hi-
>
> I as sent to you to answer this question:
>
> "
>> Where do I get a C Compiler built for DEBIAN Squeeze so I c
On Thu, Jun 30, 2011 at 03:17:44PM -0500, Harry Putnam wrote:
> I'm trying to compile emacs-24 on a newly installed squeeze system.
>
> I get the error C compiler cannot create executables
>
> Googling on that, gets several different answers.
>
> apt-get install build-essentials (didn't didn
Harry Putnam writes:
> Still though, I hit a little snap at the end of compile I haven't
> figured out yet:
>
> [...] snipped all but last of `./configure'
>
> creating src/epaths.h
> cd /usr/local/src/bzr/emacs/trunk && autoheader
> /bin/sh: autoheader: not found
> make: *** [/usr/local/
Tom Furie writes:
> On Fri, Jul 01, 2011 at 06:55:22AM -0500, Harry Putnam wrote:
>
>> I got past that now... apparently finally got whatever it was
>> installed. But now ./configure complains about X libraries:
>>
>>error: You seem to be running X, but no X development libraries
>>were
Harry Putnam writes:
> lee writes:
>>> I got past that now... apparently finally got whatever it was
>>> installed. But now ./configure complains about X libraries:
>>>
>>>error: You seem to be running X, but no X development libraries
>>>were found. You should install the relevant dev
On Fri, Jul 01, 2011 at 06:55:22AM -0500, Harry Putnam wrote:
> I got past that now... apparently finally got whatever it was
> installed. But now ./configure complains about X libraries:
>
>error: You seem to be running X, but no X development libraries
>were found. You should install
Axel Freyn writes:
>> >> Do you know which packages might be needed?
>> >
>> > Not yet; give me some more time and I'll try to compile emacs24 and let
>> > you know what I find out ...
>>
>> OK, thanks for the effort.
>
> The easiest solution might be to run
>
> aptitude build-dep emacs23
>
> th
Hi Harry,
> >> I got past that now... apparently finally got whatever it was
> >> installed. But now ./configure complains about X libraries:
> >>
> >>error: You seem to be running X, but no X development libraries
> >>were found. You should install the relevant development files for
> >>
lee writes:
> Harry Putnam writes:
>
>> lee writes:
>>
>>> Harry Putnam writes:
>>>
I'm trying to compile emacs-24 on a newly installed squeeze system.
>>>
>>> Where did you get version 24?
>>
>>>From the bzr server on savannah.org where emacs devel is done.
>
> savannah.gnu.org?
Gack ..
Harry Putnam writes:
> lee writes:
>
>> Harry Putnam writes:
>>
>>> I'm trying to compile emacs-24 on a newly installed squeeze system.
>>
>> Where did you get version 24?
>
>>From the bzr server on savannah.org where emacs devel is done.
savannah.gnu.org?
>>> I get the error C compiler cann
On Thu, Jun 30, 2011 at 4:17 PM, Harry Putnam wrote:
> I'm trying to compile emacs-24 on a newly installed squeeze system.
>
> I get the error C compiler cannot create executables
>
> Googling on that, gets several different answers.
>
> apt-get install build-essentials (didn't didn't help)
>
>
lee writes:
> Harry Putnam writes:
>
>> I'm trying to compile emacs-24 on a newly installed squeeze system.
>
> Where did you get version 24?
>From the bzr server on savannah.org where emacs devel is done.
>> I get the error C compiler cannot create executables
>> [...]
>> Can anyone tell me
Harry Putnam writes:
> I'm trying to compile emacs-24 on a newly installed squeeze system.
>
> I get the error C compiler cannot create executables
Since emacs-24 uses autoconf, you can look at the file "config.log" to
see more details about what went wrong running configure... look for the
actu
Harry Putnam writes:
> I'm trying to compile emacs-24 on a newly installed squeeze system.
Where did you get version 24?
> I get the error C compiler cannot create executables
> [...]
> Can anyone tell me what I need for the compiler to work building emacs?
Can the compiler create executables
And don't forget to call usleep() or something similar for a short period of
time if you're not doing anything in the loop except waiting for Ctrl-C. How
short depends on how responsive you want it to be. Otherwise you'll end up
with a loop that's constantly looping going round and round and eating
In , T o n g wrote:
>I need to check for ^C in an endless loop that doesn't do any stdio.
>How can I do that?
>
>Back in DOS days, I used to use kbhit() from CONIO.H, which checks for
>currently available keystrokes. Is there similar things under Linux gcc?
Ctrl+C will generally result in your pro
On Fri, Dec 3, 2010 at 2:46 PM, Jamie White wrote:
> Hey
> Does anyone know where there are some C development communities?
The most useful one by far is the comp.lang.c newsgroup. Please read
the faq at http://c-faq.com/ before you post.
You can also try the excellent #c channel in irc.freenode
On 2010-09-28 03:25 +0200, T o n g wrote:
> Now,when pressing ^C to abolish changes to bash command, the actual ^C
> will show up where the cursor is. IIRC, previously it wasn't like this --
> editing aborted with actual command intact, without being messed up with
> ^C.
This looked like a bug
On Fri, 16 Apr 2010 14:13:36 -0400 (EDT), Boyd Stephen Smith Jr. wrote:
> Stephen Powell wrote:
>> I'm going to be filing a bug report against parted for (a) miscalculating
>> the starting block of the implicit partition on an ldl (Linux Disk Layout)
>> formatted disk on the s390 architecture when
In <1876691691.55741.1271378240260.javamail.r...@md01.wow.synacor.com>,
Stephen Powell wrote:
>I'm going to be filing a bug report against parted for (a) miscalculating
> the starting block of the implicit partition on an ldl (Linux Disk Layout)
> formatted disk on the s390 architecture when the b
On Thu, 15 Apr 2010 21:09:43 -0400 (EDT), Stephen Powell wrote:
> On Thu, 15 Apr 2010 20:43:21 -0400 (EDT), Ron Johnson wrote:
>> On 2010-04-15 19:37, Stephen Powell wrote:
>>>
>>> I'm going to be filing a bug report against parted for (a) miscalculating
>>> the starting block of the implicit part
On Thu, 15 Apr 2010 20:43:21 -0400 (EDT), Ron Johnson wrote:
> On 2010-04-15 19:37, Stephen Powell wrote:
>>
>> I'm going to be filing a bug report against parted for (a) miscalculating
>> the starting block of the implicit partition on an ldl (Linux Disk Layout)
>> formatted disk on the s390 arch
On 2010-04-15 19:37, Stephen Powell wrote:
[snip]
I'm going to be filing a bug report against parted for (a) miscalculating the
starting
block of the implicit partition on an ldl (Linux Disk Layout) formatted disk on
the
s390 architecture when the block size is other than 4096, and (b) no supp
On Thu, 15 Apr 2010 17:39:42 -0400 (EDT), Boyd Stephen Smith Jr. wrote:
> Stephen Powell wrote:
>> In short, I need to
>> (a) declare "cms_label" as a based structure,
>
> (above; trimmmed)
>>
>> (b)
>> declare a pointer variable called "cms_ptr" and associate it with the
>> "cms_label" structure,
On Thursday 15 April 2010 13:56:00 Stephen Powell wrote:
> On Wed, 14 Apr 2010 23:10:55 -0400 (EDT), Boyd Stephen Smith Jr. wrote:
> > On Tuesday 13 April 2010 17:16:03 Stephen Powell wrote:
> >> What I need to do is to have two structures overlay each other; so that
> >> they occupy the same stor
On Wed, 14 Apr 2010 23:10:55 -0400 (EDT), Boyd Stephen Smith Jr. wrote:
> On Tuesday 13 April 2010 17:16:03 Stephen Powell wrote:
>> What I need to do is to have two structures overlay each other; so that
>> they occupy the same storage. To be specific, here is a structure which
>> describes the
On Tuesday 13 April 2010 17:16:03 Stephen Powell wrote:
> What I need to do is to have two structures overlay each other; so that
> they occupy the same storage. To be specific, here is a structure which
> describes the volume label for an OS-formatted disk:
>
> struct __attribute__ ((packed))
On 20100414_123342, Ron Johnson wrote:
> On 2010-04-14 09:31, Paul E Condon wrote:
> [snip]
> >
> >non-obvious --- to the point that there was an open contest with
> >prizes awarded for the most obfuscated example of C code. The prizes
> >went to the code for which the judges were most surprised on
Ron Johnson wrote:
[snip]
http://www1.us.ioccc.org/main.html I guess they got bored looking at
normal production C code...
Sometimes, I find the code there even more impressive:
http://underhanded.xcott.com/
It's even more restricted, and not so pointless. Hiding in plain sight,
beaut
Ron Johnson writes:
> Unions have been in C for at least 20 years; probably since the Early
> Days.
Unions are in the first edition of K&R.
--
John Hasler
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian
On 2010-04-14 09:31, Paul E Condon wrote:
[snip]
non-obvious --- to the point that there was an open contest with
prizes awarded for the most obfuscated example of C code. The prizes
went to the code for which the judges were most surprised on seeing
it run after they read the code and tried to
Stephen Powell wrote:
I realize that this is not a C forum, per se, but this is a Debian-specific
C question. I am trying to add support to the parted utility for CMS-formatted
disks on the s390 architecture. The source code is written in C, of course.
But I am not a C programmer. I can spell
On 20100413_193540, Robert Baron wrote:
> What a great little learning project.
>
> My suggestion is to work out a simpler version of what you are trying to do:
>
> typedef struct {
> unsigned short rec_type;
> long data;
> } type1;
>
> typedef struct {
> unsigned short rec_type;
>
What a great little learning project.
My suggestion is to work out a simpler version of what you are trying to do:
typedef struct {
unsigned short rec_type;
long data;
} type1;
typedef struct {
unsigned short rec_type;
char data[4];
} type2;
.
some_type *chunk_of_mem;
long
> Tue, 13 Apr 2010 17:29:51 -0500 wrote:
>
> On 2010-04-13 17:16, Stephen Powell wrote:
> > I realize that this is not a C forum, per se, but this is a Debian-specific
> > C question. I am trying to add support to the parted utility for
> > CMS-formatted
> [snip]
> >
> > I know how to do this
On 2010-04-13 17:16, Stephen Powell wrote:
I realize that this is not a C forum, per se, but this is a Debian-specific
C question. I am trying to add support to the parted utility for CMS-formatted
[snip]
I know how to do this in PL/I, but despite having spent the last two hours
paging throug
On Thu, Oct 08 2009, Gabor Urban wrote:
> Hi,
>
> the main point of C++ and Linux, that you may have a large number of
> tools to use. SOme prefer IDE tools, like KDevelop for example, but
> some prefer standard language sensitive editor which support code
> writing, compiling, debugging. I would
If you're interested in portability, read about ISO C++.
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
If you're interested in portability, read about ISO C++.
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Hi,
the main point of C++ and Linux, that you may have a large number of
tools to use. SOme prefer IDE tools, like KDevelop for example, but
some prefer standard language sensitive editor which support code
writing, compiling, debugging. I would suggest to use Emacs or Vim
(simple editors, but pow
pch0317 wrote:
Hello
I must write article about C++ programing features under linux.
Do you have any example article about this issue.
Thanks
I just started reading books about c++ and notice one thing; writers who
use Visual C++ on Microsoft give very bad examples even for Hello World.
I th
On Wed, 07 Oct 2009 18:37:03 +0200
pch0317 wrote:
> Hello
> I must write article about C++ programing features under linux.
> Do you have any example article about this issue.
A skeleton:
C++ under linux works great.
Dirk.
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
wi
On Wed, Oct 07, 2009 at 06:37:03PM +0200, pch0317 wrote:
> I must write article about C++ programing features under linux.
> Do you have any example article about this issue.
C++ programming on GNU/Linux is about the same as any other
platform, at least from a language point of view. You'll need
On Tue, Aug 11, 2009 at 02:47:51PM -0500, "Boyd Stephen Smith Jr."
was heard to say:
> Since GLib, Qt Core, LibBoost, and "C++1x" all provide C++
> bindings/abstractions of the threads, I would not write your own. I can't
> recommend for or against Boost, but one of those 4 should fit your pro
In , Emanoil Kotsev wrote:
>Boyd Stephen Smith Jr. wrote:
>> In <2009082355.2e38a...@vivalunalitshi.luna.local>, Micha Feigin
>> wrote:
>>>c is a subset of c++ so you can use the c api inside c++.
>>
>> Not entirely true.
>>
>> There is a common subset of C and C++ and it includes the majority
Boyd Stephen Smith Jr. wrote:
> In <2009082355.2e38a...@vivalunalitshi.luna.local>, Micha Feigin
> wrote:
>>c is a subset of c++ so you can use the c api inside c++.
>
> Not entirely true. ISO 9899:1999 (C Programming Language) has a number of
> types that are not in ISO 14882:2003 (C++ Prog
Micha Feigin wrote:
> On Mon, 10 Aug 2009 15:09:40 -0500
> "Boyd Stephen Smith Jr." wrote:
>
> One way to do it by the way if you want them encapsulated inside a class
> is to use static member functions (they are actually just standard
> function with a limited scope). Then you don't need to d
In <2009082355.2e38a...@vivalunalitshi.luna.local>, Micha Feigin wrote:
>c is a subset of c++ so you can use the c api inside c++.
Not entirely true. ISO 9899:1999 (C Programming Language) has a number of
types that are not in ISO 14882:2003 (C++ Programming Language), at least.
Also, the
On Tue, 11 Aug 2009 01:55:00 +0200
Emanoil Kotsev wrote:
> ga wrote:
>
> >
> > Check out these ones:
> >
> http://www.gtkmm.org/docs/glibmm-2.4/docs/reference/html/thread_2thread_8cc-example.html#_a11
> >
> http://www.gtkmm.org/docs/glibmm-2.4/docs/reference/html/thread_2dispatcher_8cc-example.
On Mon, 10 Aug 2009 15:09:40 -0500
"Boyd Stephen Smith Jr." wrote:
> In , Emanoil Kotsev wrote:
> >I'm willing to build an app that starts 3 threads, especially (soap
> > client, server from libcsoap and terminal), so I couldn't manage to do
> > the job in C++, because they it lacks native thread
On Mon, 10 Aug 2009 19:09:05 +0200
Emanoil Kotsev wrote:
> Hi, perhaps it's OT but still the debian list is the best one (my subjective
> opinion), so I dear to ask here.
>
> I'm willing to build an app that starts 3 threads, especially (soap client,
> server from libcsoap and terminal), so I co
ga wrote:
>
> Check out these ones:
>
http://www.gtkmm.org/docs/glibmm-2.4/docs/reference/html/thread_2thread_8cc-example.html#_a11
>
http://www.gtkmm.org/docs/glibmm-2.4/docs/reference/html/thread_2dispatcher_8cc-example.html#_a0
>
> Doc:
>
http://www.gtkmm.org/docs/glibmm-2.4/docs/reference/ht
Eric Meijer wrote:
> Emanoil Kotsev wrote:
>> Thanks Eric
>>
>> I was also thinking to use the boost package. I don't like it's heavy and
>> my app would depend on it too.
>>
>>
> As mentioned by Roger Leigh, you only really "pay" for what you are using.
> Why are you worried by the dependence
Emanoil Kotsev wrote:
Thanks Eric
I was also thinking to use the boost package. I don't like it's heavy and my
app would depend on it too.
As mentioned by Roger Leigh, you only really "pay" for what you are using.
Why are you worried by the dependence on boost?
What I like about it is that
On Mon, Aug 10, 2009 at 07:09:05PM +0200, Emanoil Kotsev wrote:
> I also couldn't find a user-list for libcsoap, but the question is a general
> one - HOW THE H**L ARE YOU WRITING threaded apps in C++. It shouldn't be
> that hard - or is it?
Just use pthreads directly.
Boost threads is also an op
Hi Emanoil,
On Mon, Aug 10, 2009 at 07:09:05PM +0200, Emanoil Kotsev wrote:
> Hi, perhaps it's OT but still the debian list is the best one (my subjective
> opinion), so I dear to ask here.
>
> I'm willing to build an app that starts 3 threads, especially (soap client,
> server from libcsoap and
In , Emanoil Kotsev wrote:
>I'm willing to build an app that starts 3 threads, especially (soap
> client, server from libcsoap and terminal), so I couldn't manage to do
> the job in C++, because they it lacks native threading support. PThread
> lib is C.
I've always been able to use the pthread li
Eric Meijer wrote:
>>
> Boost threads is what I use (debian package libboost-thread-dev). It
> builds on pthreads, and is part of the high quality boost library for
> C++, which is a kind of testbed for libraries to be added to the C++
> standard library. You may want to browse boost for mo
Hugo Vanwoerkom wrote:
> I use QT and their examples: they are the greatest!
> http://packages.debian.org/sid/qt4-doc-html
>
> Hugo
Hi,
I'm not looking for a graphics implementation of threads but a way to run
threads from pure C++ code. What should I do with QT? I make my app
depending on somet
Emanoil Kotsev wrote:
Hi, perhaps it's OT but still the debian list is the best one (my subjective
opinion), so I dear to ask here.
I'm willing to build an app that starts 3 threads, especially (soap client,
server from libcsoap and terminal), so I couldn't manage to do the job in
C++, because t
Emanoil Kotsev wrote:
Hi, perhaps it's OT but still the debian list is the best one (my subjective
opinion), so I dear to ask here.
I'm willing to build an app that starts 3 threads, especially (soap client,
server from libcsoap and terminal), so I couldn't manage to do the job in
C++, because t
On Thu, Jan 22, 2009 at 19:49:10 +0100, Bernard (bdebr...@teaser.fr) wrote:
> Hi to Everyone,
>
> With Debian (and Ubuntu as well), implementation of new software by
> means of ready-to-install packages, is a most convenient feature.
> However, time comes when a package is not available, and
On Thu, 22 Jan 2009, Bernard wrote:
> However, it failed to work here. In the appropriate directory, I first typed
> './configure'. Things seemed to start all-right, but after a short while it
> said : "C compiler cannot create executables"
>
> What do I miss so that I get such a reply ?
>
> I als
Kamaraju S Kusumanchi wrote:
[EMAIL PROTECTED] wrote:
Would someone recommend to me a good Debian/Linux C++ mailing
list? I couldn't find one on Debian.org or Cplusplus. Another that I
found gave me a bounce message. Is the Boost mailing list my best
option? Thanks in advance.
TW
Why not
On 06/07/2008 08:39 AM, Kamaraju S Kusumanchi wrote:
[EMAIL PROTECTED] wrote:
Would someone recommend to me a good Debian/Linux C++ mailing
list? I couldn't find one on Debian.org or Cplusplus. Another that I
found gave me a bounce message. Is the Boost mailing list my best
option? Thanks i
[EMAIL PROTECTED] wrote:
> Would someone recommend to me a good Debian/Linux C++ mailing
> list? I couldn't find one on Debian.org or Cplusplus. Another that I
> found gave me a bounce message. Is the Boost mailing list my best
> option? Thanks in advance.
>
> TW
Why not just post on this li
On 06/06/2008, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Would someone recommend to me a good Debian/Linux C++ mailing
> list?
How about lang.comp.c++.moderated in Usenet?
- Jordi G. H.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMA
Mark Allums <[EMAIL PROTECTED]>:
> Mark Allums wrote:
> > Rich Healey wrote:
> > > Mark Allums wrote:
> > >> 1. You might want to learn PERL or Python or Ruby, and do it there.
> > > FWIW, this is very easy to do in Python.
> > > PSFWIW: Satan uses Ruby.
> >
> > I thought that Beelzebub
Mark Allums wrote:
> Rich Healey wrote:
> > Mark Allums wrote:
> >> 1. You might want to learn PERL or Python or Ruby, and do it there.
> > FWIW, this is very easy to do in Python.
> > PSFWIW: Satan uses Ruby.
>
> :)
>
> I thought that Beelzebub used IronPython.
>
I mean, given the connection
Rich Healey wrote:
> Mark Allums wrote:
>> 1. You might want to learn PERL or Python or Ruby, and do it there.
> FWIW, this is very easy to do in Python.
> PSFWIW: Satan uses Ruby.
:)
I thought that Beelzebub used IronPython.
--
Mark Allums
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Mark Allums wrote:
> H.S. wrote:
>> Hello,
>>
>> In a C++ program I am reading a data file for later processing and
>> computations. While reading that data file, I want to keep track of
>> data items (doubles) read.
>>
>> The data file is just a text
Mark Allums wrote:
Not directly helpful, but some suggestions:
1. You might want to learn PERL or Python or Ruby, and do it there.
hmm .. not sure how this will pan out in the long run, but for now, I am
trying to keep it all within one program.
2. If it has to be C++, learn enough PERL t
1 - 100 of 597 matches
Mail list logo