News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

The 14 April 2007 build is out.

Started by killerbot, April 14, 2007, 08:34:55 PM

Previous topic - Next topic

stg

Quote from: Biplab on April 17, 2007, 08:33:17 AM
Quote from: Gandi on April 15, 2007, 04:39:02 PM
Quote from: line on April 15, 2007, 10:42:38 AM
Using the 13 apr build on win32. If I select text and press crtl-x (for cut), it removes the whole line instead of the selected portion.
Cut from the edit menu still works.
me too
with ctrl+C

Can't reproduce this problem. I'm using WinXP+SP2 and latest C::B Nightly.

As I already posted ... I had the same problem, but I just reassigned the shortcuts and solved it with that

Xerox

what about 64bits (for ubuntu in this case)  :D

Xaviou

Quote from: Xerox on April 17, 2007, 08:03:01 PM
what about 64bits (for ubuntu in this case)  :D

You should read the 3rd post of this topic  :)
My wxWidgets's stuff : [url="https://wxstuff.xaviou.fr/"]https://wxstuff.xaviou.fr/[/url]

Xerox

sorry....  :lol:

I get this problem (maybe i am not in the right topic?)

"Unpacking replacement codeblocks ...
dpkg: dependency problems prevent configuration of codeblocks:
codeblocks depends on libwxbase2.6-0 (>= 2.6.3.2.1.5ubuntu0.1); however:
  Version of libwxbase2.6-0 on system is 2.6.3.2.1.5.
codeblocks depends on libwxgtk2.6-0 (>= 2.6.3.2.1.5ubuntu0.1); however:
  Version of libwxgtk2.6-0 on system is 2.6.3.2.1.5.
dpkg: error processing codeblocks (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
codeblocks"

darthdespotism

did you built wxWidget on your own?

It seems as CodeBlocks looks for the Dev-Files that can be obtained using the Ubuntu Repistory

cstudent

Are you trying to install the Feisty deb on Edgy?



Quote from: Xerox on April 17, 2007, 09:23:06 PM
sorry....  :lol:

I get this problem (maybe i am not in the right topic?)

"Unpacking replacement codeblocks ...
dpkg: dependency problems prevent configuration of codeblocks:
codeblocks depends on libwxbase2.6-0 (>= 2.6.3.2.1.5ubuntu0.1); however:
  Version of libwxbase2.6-0 on system is 2.6.3.2.1.5.
codeblocks depends on libwxgtk2.6-0 (>= 2.6.3.2.1.5ubuntu0.1); however:
  Version of libwxgtk2.6-0 on system is 2.6.3.2.1.5.
dpkg: error processing codeblocks (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
codeblocks"

Xerox

darthdespotism: no I didn't... I don't know how to do it.
however, it seems to be already installed, according to the problem message....

cstudent: I installed the 64bits-version, i didn't look after the ubuntu version. i'm running on edgy. (i think about updating to feisty tomorrow  :P)
would it change anything?

cstudent

I was looking at the library version numbers in your error message. According to what is listed at http://packages.ubuntu.com , it looked like it was looking for versions listed under Feisty. Take a look at http://packages.ubuntu.com and do a search for libwx for any distribution and you'll see what I'm talking about.

And yes the message indicates you have a codeblocks deb installed, but it did not succeed in installing that particular package.


Quote from: Xerox on April 18, 2007, 02:20:02 PM
darthdespotism: no I didn't... I don't know how to do it.
however, it seems to be already installed, according to the problem message....

cstudent: I installed the 64bits-version, i didn't look after the ubuntu version. i'm running on edgy. (i think about updating to feisty tomorrow  :P)
would it change anything?

Xerox

thanks, i'll see that tomorrow...

actually, it runs, but synaptic says that it has deteected a broken package (->codeblocks) and it wants to uninstall it when i want to install some other packages...

diilbert

Quote from: Gibbon on April 17, 2007, 12:44:40 AM
Quote from: stahta01 on April 15, 2007, 01:32:46 PM
Quote from: pauliusz on April 15, 2007, 12:49:27 PM
Quote from: Gibbon on April 15, 2007, 12:26:10 PM
Latest SVN checkout:


Possible Quick Fix, needs tested.

Index: src/sdk/editormanager.cpp
===================================================================
--- src/sdk/editormanager.cpp (revision 3858)
+++ src/sdk/editormanager.cpp (working copy)
@@ -64,6 +64,9 @@

#include "wx/wxFlatNotebook/wxFlatNotebook.h"

+#ifndef wxHAS_REGEX_ADVANCED
+    #define wxRE_ADVANCED 0
+#endif

namespace compatibility { typedef TernaryCondTypedef<wxMinimumVersion<2,5>::eval, wxTreeItemIdValue, long int>::eval tree_cookie_t; };





That worked.  Needed to compile without --enable-contrib.

Is there going to be a fix for this, since I would like to compile with --enable-contrib.

Thanks ;)