Re: [PD-dev] Pdextended 0.43.1 and vista

2011-07-02 Thread Hans-Christoph Steiner


Ah, right, supporting LTLIBRARIES would be a bigger reorg.  Any luck  
with the LD=$(CXX) option?


.hc

On Jul 2, 2011, at 7:01 AM, Patrice Colet wrote:



I've found the odd part of that page is that they use LTLIBRARIES  
variable while pd/src/Makefile.am doesn't.



On Fri, 01 Jul 2011 19:36 +0200, "IOhannes m zmölnig"

On 07/01/2011 06:24 PM, Hans-Christoph Steiner wrote:



the trick to use g++ for linking, is to use a dummy .cpp file,

so

autotools will automatically choose g++.

something like:

nodist_EXTRA_pd_SOURCES=
if PORTAUDIO
nodist_EXTRA_pd_SOURCES += dummy.cpp
endif



It would be worth trying:

LD=$CXX





http://www.gnu.org/software/automake/manual/html_node/Libtool-Convenience-Libraries.html#Libtool-Convenience-Libraries

That solution at the bottom of that page looks easy but a bit odd.  I
suppose its the 'official' way.  Patco, do you think you can try to
get
that working?

.hc

___
Pd-dev mailing list
Pd-dev@iem.at
http://lists.puredata.info/listinfo/pd-dev


--
Patrice Colet






Mistrust authority - promote decentralization.  - the hacker ethic



___
Pd-dev mailing list
Pd-dev@iem.at
http://lists.puredata.info/listinfo/pd-dev


[PD-dev] [ pure-data-Patches-1963983 ] use FILENAME_MAX for all filenames, since its < MAXPDSTRING

2011-07-02 Thread SourceForge.net

Patches item #1963983, was opened at 2008-05-14 13:36
Message generated for change (Settings changed) made by eighthave
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1963983&group_id=55736

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: bugfix
>Status: Closed
>Resolution: Out of Date
Priority: 6
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
>Assigned to: Nobody/Anonymous (nobody)
Summary: use FILENAME_MAX for all filenames, since its < MAXPDSTRING

Initial Comment:
On Windows, FILENAME_MAX is much smaller than MAXPDSTRING, so I replaced 
MAXPDSTRING with FILENAME_MAX everywhere I could find that is related to 
filenames.  FILENAME_MAX is a POSIX standard macro for defining the max length 
of a complete filename.

The current situation could result in crashes on Windows.

--

>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-07-02 11:25

Message:
this is out of date

--

Comment By: Miller Puckette (millerpuckette)
Date: 2010-07-28 20:47

Message:
I'm not sure but I don't think Windows should have trouble trying to open
files with too-long names -- if it's anything near correct it should simply
refuse.  And it's better to have as few POSIX dependencies as possible (Pd
bios, anyone? :)

--

Comment By: Hans-Christoph Steiner (eighthave)
Date: 2008-05-14 13:47

Message:
Logged In: YES 
user_id=27104
Originator: YES

ok, this time really removed all bits of
add_tilde_support_toopen-0.41.4.patch
File Added: use_FILENAME_MAX_for_file_operations-0.41.4.patch

--

Comment By: Hans-Christoph Steiner (eighthave)
Date: 2008-05-14 13:39

Message:
Logged In: YES 
user_id=27104
Originator: YES

oops, removed add_tilde_support_toopen-0.41.4.patch from this one
File Added: use_FILENAME_MAX_for_file_operations-0.41.4.patch

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=1963983&group_id=55736

___
Pd-dev mailing list
Pd-dev@iem.at
http://lists.puredata.info/listinfo/pd-dev


[PD-dev] [ pure-data-Patches-3348635 ] 6Ab8vo eredbuekutjm,

2011-07-02 Thread SourceForge.net

Patches item #3348635, was opened at 2011-07-01 00:42
Message generated for change (Comment added) made by eighthave
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3348635&group_id=55736

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
>Category: None
>Group: None
>Status: Deleted
>Resolution: Invalid
>Priority: 1
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: 6Ab8vo  http://eredbuekutjm.com/";>eredbuekutjm,

Initial Comment:
6Ab8vo  http://eredbuekutjm.com/";>eredbuekutjm, 
[url=http://prwkdtygxldi.com/]prwkdtygxldi[/url], 
[link=http://kgrhbjcqwcke.com/]kgrhbjcqwcke[/link], http://mjlkhqmjgvcx.com/

--

>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-07-02 11:13

Message:
spam

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3348635&group_id=55736

___
Pd-dev mailing list
Pd-dev@iem.at
http://lists.puredata.info/listinfo/pd-dev


Re: [PD-dev] Pdextended 0.43.1 and vista

2011-07-02 Thread Patrice Colet

I've found the odd part of that page is that they use LTLIBRARIES variable 
while pd/src/Makefile.am doesn't.

> On Fri, 01 Jul 2011 19:36 +0200, "IOhannes m zmölnig"
> > On 07/01/2011 06:24 PM, Hans-Christoph Steiner wrote:
> > > 
> > >> the trick to use g++ for linking, is to use a dummy .cpp file,
> so
> > >> autotools will automatically choose g++.
> > >>
> > >> something like:
> > >> 
> > >> nodist_EXTRA_pd_SOURCES=
> > >> if PORTAUDIO
> > >> nodist_EXTRA_pd_SOURCES += dummy.cpp
> > >> endif
> > >> 
> > > 
> > > It would be worth trying:
> > > 
> > > LD=$CXX
> > > 
> > 
> >
> http://www.gnu.org/software/automake/manual/html_node/Libtool-Convenience-Libraries.html#Libtool-Convenience-Libraries
> 
> That solution at the bottom of that page looks easy but a bit odd.  I
> suppose its the 'official' way.  Patco, do you think you can try to
> get
> that working?
> 
> .hc
> 
> ___
> Pd-dev mailing list
> Pd-dev@iem.at
> http://lists.puredata.info/listinfo/pd-dev

-- 
Patrice Colet 

___
Pd-dev mailing list
Pd-dev@iem.at
http://lists.puredata.info/listinfo/pd-dev