I've been building externals on windows but now i need to build on
linux to use debugging tools.
Ive been trying to build my .c files and can't seem to get them to work.
Can anyone give me some instructions/ a good walk through?
I've also tried to create a make file but I don't really understand
them and couldn't get it to work.
Thanks
Andy
Patches item #3289212, was opened at 2011-04-18 23:39
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3289212&group_…
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: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Kan-Ru Chen (kanru)
Assigned to: Nobody/Anonymous (nobody)
Summary: Move text drawing routine to tcl
Initial Comment:
It's best let tcl to figure out how to draw text and the border box. This should fix non-latin text drawing like Chinese.
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-04-19 00:35
Message:
This patch is definitely the right approach going forward (instead of
generating Tcl commands on the C-side, calling Tcl procs from C). Part of
the problem though is that the mouse tracking is still handled on the
C-side, and this patch makes the boxes smaller than the original size.
Therefore if you clikc just above or below the box, Pd still uses the old
measurements (now in pd-gui.tcl) as the basis for determining what was
clicked on, and you'll get the menu for that object that was just below
where the mouse clicked rather than the menu for the canvas that was just
clicked.
I think this patch could be useful now if it used the box measurements in
pd-gui.tcl, and then fit the font into them. As for the bug with the
Chinese text not fitting in the boxes, my guess is that its related to the
UTF-8 code, something like each chinese character is made up of multiple
bytes, and some piece of code is still measuring one character equals one
byte.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3289212&group_…
Try loading 'libdir' as the first lib.
.hc
On Apr 11, 2011, at 6:32 PM, João Pais wrote:
> hmm, vanilla and vanilla/list are already in the startup libs of pd.
> and after that when trying import them, they say "[import]: can't
> load library in 'vanilla'" (vanilla/list seems to work).
>
> also, when editing the startup parameters in pd, the writing is
> really small, hardly readable.
>
>>
>> I forgot to add, I am interested in feedback on this particular
>> feature. Right now its in there to try out. I'm not yet convinced
>> it should be permanent, but it does offer some advantages,
>> especially on mobile phones and smaller computers.
>>
>> .hc
>>
>> On Apr 11, 2011, at 12:59 PM, João Pais wrote:
>>
>>> of course, I saw that being discussed some days ago. ok.
>>>
>>> On Mon, 11 Apr 2011 17:32:19 +0200, Hans-Christoph Steiner <hans(a)at.or.at
>>> > wrote:
>>>
>>>>
>>>> Most vanilla objects are split out into their own 'vanilla' lib
>>>> right now. So if you don't add "vanilla/list" and "vanilla" to
>>>> the libraries loaded by default, they won't be loaded. You can
>>>> do [import vanilla/list vanilla] to quickly try a patch without
>>>> changing your prefs.
>>>>
>>>> .hc
>>>>
>>>> On Apr 11, 2011, at 9:03 AM, João Pais wrote:
>>>>
>>>>> Hi,
>>>>>
>>>>> I thought about downloading a build of pd-ext 0.43 that works,
>>>>> to try it out. But the version I tried yesterday is apparently
>>>>> not ok, for example even cnv objects don't exist. Does anyone
>>>>> noticed a previous windows build that is more stable? (even if
>>>>> it doesn't have all the extra objects)
>>>>>
>>>>> João
>>>>>
>>>>> --Friedenstr. 58
>>>>> 10249 Berlin (Deutschland)
>>>>> Tel +49 30 42020091 | Mob +49 162 6843570
>>>>> Studio +49 30 69509190
>>>>> jmmmpais(a)googlemail.com | skype: jmmmpjmmmp
>>>>>
>>>>> _______________________________________________
>>>>> Pd-dev mailing list
>>>>> Pd-dev(a)iem.at
>>>>> http://lists.puredata.info/listinfo/pd-dev
>>>>
>>>>
>>>>
>>>> ----------------------------------------------------------------------------
>>>>
>>>> I have the audacity to believe that peoples everywhere can have
>>>> three meals a day for their bodies, education and culture for
>>>> their minds, and dignity, equality and freedom for their
>>>> spirits. - Martin Luther King, Jr.
>>>>
>>>>
>>>
>>>
>>> --Friedenstr. 58
>>> 10249 Berlin (Deutschland)
>>> Tel +49 30 42020091 | Mob +49 162 6843570
>>> Studio +49 30 69509190
>>> jmmmpais(a)googlemail.com | skype: jmmmpjmmmp
>>
>>
>>
>> ----------------------------------------------------------------------------
>>
>> Computer science is no more related to the computer than astronomy
>> is related to the telescope. -Edsger Dykstra
>>
>>
>
>
> --
> Friedenstr. 58
> 10249 Berlin (Deutschland)
> Tel +49 30 42020091 | Mob +49 162 6843570
> Studio +49 30 69509190
> jmmmpais(a)googlemail.com | skype: jmmmpjmmmp
----------------------------------------------------------------------------
"Free software means you control what your computer does. Non-free
software means someone else controls that, and to some extent controls
you." - Richard M. Stallman
Patches item #3288939, was opened at 2011-04-18 17:55
Message generated for change (Comment added) made by elgusanorojo
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3288939&group_…
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: None
Status: Pending
Resolution: Accepted
Priority: 7
Private: No
Submitted By: IOhannes m zmölnig (zmoelnig)
Assigned to: Miller Puckette (millerpuckette)
Summary: fix GUI hangs due to recentfile patch
Initial Comment:
patch #3234958 (git rev 31b22b6918b033) hangs Pd, if the list of recent files is empty (e.g. because you just installed the patch).
this is due to a "while(--i)" loop with "i" initialized to 0
ouch!
attached patch fixes this by changing the loop to "while(--i > 0)"
it also fixes a typo in the doc
----------------------------------------------------------------------
Comment By: gusano (elgusanorojo)
Date: 2011-04-19 00:10
Message:
ouch indeed =)
thanx for spotting
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2011-04-18 17:58
Message:
Of course, the best way is (while i--) :)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3288939&group_…
Patches item #3286130, was opened at 2011-04-13 19:15
Message generated for change (Comment added) made by patrco
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3286130&group_…
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: externals
Group: bugfix
Status: Pending
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: cooled~ w32 build
Initial Comment:
not sure this only fix win32 build, could anyone try on linux, also without the #ifdef NT line 148?
----------------------------------------------------------------------
Comment By: Patrice Colet (patrco)
Date: 2011-04-18 18:59
Message:
it doesn't crash on windows
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-04-18 17:18
Message:
since cooled~ only seems to crash on Mac OS X and Windows, I'm going to
hold off committing patches to it until its fixed. Or were you able to run
it under Windows?
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3286130&group_…
Patches item #3286130, was opened at 2011-04-13 15:15
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3286130&group_…
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: externals
Group: bugfix
>Status: Pending
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: cooled~ w32 build
Initial Comment:
not sure this only fix win32 build, could anyone try on linux, also without the #ifdef NT line 148?
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-04-18 13:18
Message:
since cooled~ only seems to crash on Mac OS X and Windows, I'm going to
hold off committing patches to it until its fixed. Or were you able to run
it under Windows?
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3286130&group_…
Patches item #3139922, was opened at 2010-12-18 14:37
Message generated for change (Settings changed) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3139922&group_…
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: Accepted
Priority: 8
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: fix plugin loading other files
Initial Comment:
GUI plugins often want to load other files, like images,etc. so make it easy to do without weird workarounds.
----------------------------------------------------------------------
Comment By: SourceForge Robot (sf-robot)
Date: 2011-01-23 00:20
Message:
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 23:26
Message:
applied for 0.43
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3139922&group_…
Patches item #3138093, was opened at 2010-12-15 13:21
Message generated for change (Settings changed) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3138093&group_…
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: Accepted
Priority: 7
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: moving objects with arrow keys doesn't update scrollbars
Initial Comment:
If you move objects off the edge of the patch using the keyboard arrow keys, the scrollbars don't update. This patch fixes that. This patch has been included in Pd-extended since 0.40.3 as arrow_keys_update_scrollbars-0.40.3.patch.
----------------------------------------------------------------------
Comment By: SourceForge Robot (sf-robot)
Date: 2011-01-23 00:20
Message:
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 23:25
Message:
applied for 0.43
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3138093&group_…
Patches item #3137000, was opened at 2010-12-13 23:48
Message generated for change (Settings changed) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3137000&group_…
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: Accepted
Priority: 5
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: [bugfix] Tcl barfs if you hit Enter while adding a lib
Initial Comment:
In the Startup preferences, if you add a new lib, then type the name, then hit Enter, you get a Tcl dump. This simple patch fixes that.
----------------------------------------------------------------------
Comment By: SourceForge Robot (sf-robot)
Date: 2011-01-23 00:20
Message:
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 23:24
Message:
applied for 0.43
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3137000&group_…
Patches item #3136984, was opened at 2010-12-13 23:08
Message generated for change (Settings changed) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3136984&group_…
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: Accepted
Priority: 6
Private: No
Submitted By: Hans-Christoph Steiner (eighthave)
Assigned to: Miller Puckette (millerpuckette)
Summary: [bugfix] "pd -font-weight normal" causes mayhem
Initial Comment:
If you launch pd like "pd -font-weight normal" then try to open a patch, you get a Tcl dump saying that 'norm' is not a correct font property. This is caused because the size of sys_fontweight gets set by the sys_fontweight[] = "bold";. This page just adds some padding.
----------------------------------------------------------------------
Comment By: SourceForge Robot (sf-robot)
Date: 2011-01-23 00:20
Message:
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).
----------------------------------------------------------------------
Comment By: Miller Puckette (millerpuckette)
Date: 2011-01-08 23:23
Message:
applied for 0.43
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3136984&group_…