Author Topic: The 14 April 2007 build is out.  (Read 23932 times)

Offline stg

  • Multiple posting newcomer
  • *
  • Posts: 11
Re: The 14 April 2007 build is out.
« Reply #15 on: April 17, 2007, 09:34:59 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

  • Guest
Re: The 14 April 2007 build is out.
« Reply #16 on: April 17, 2007, 08:03:01 pm »
what about 64bits (for ubuntu in this case)  :D

Offline Xaviou

  • Regular
  • ***
  • Posts: 402
    • X@v's wxStuff
Re: The 14 April 2007 build is out.
« Reply #17 on: April 17, 2007, 08:15:37 pm »
what about 64bits (for ubuntu in this case)  :D

You should read the 3rd post of this topic  :)
The french wxWidgets site : http://www.wxdev.fr
My wxWidgets's stuff : https://wxstuff.xaviou.fr/

Xerox

  • Guest
Re: The 14 April 2007 build is out.
« Reply #18 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"

Offline darthdespotism

  • Almost regular
  • **
  • Posts: 163
    • Coder's Nemesis
Re: The 14 April 2007 build is out.
« Reply #19 on: April 17, 2007, 09:26:43 pm »
did you built wxWidget on your own?

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

Offline cstudent

  • Almost regular
  • **
  • Posts: 159
    • Cstudent's Help Desk
Re: The 14 April 2007 build is out.
« Reply #20 on: April 17, 2007, 09:51:39 pm »
Are you trying to install the Feisty deb on Edgy?



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

  • Guest
Re: The 14 April 2007 build is out.
« Reply #21 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?

Offline cstudent

  • Almost regular
  • **
  • Posts: 159
    • Cstudent's Help Desk
Re: The 14 April 2007 build is out.
« Reply #22 on: April 18, 2007, 03:41:31 pm »
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.


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

  • Guest
Re: The 14 April 2007 build is out.
« Reply #23 on: April 18, 2007, 09:43:35 pm »
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

  • Guest
Re: The 14 April 2007 build is out.
« Reply #24 on: April 21, 2007, 04:02:43 pm »
Latest SVN checkout:


Possible Quick Fix, needs tested.
Code
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 ;)