Author Topic: Small problem in DragScroll_Windows.cbp  (Read 2741 times)

Offline gd_on

  • Lives here!
  • ****
  • Posts: 848
Small problem in DragScroll_Windows.cbp
« on: May 01, 2026, 02:52:18 pm »
After the move to a subfolder src of the dragscroll plugin code (svn 13836), at line 61 DragScroll_Windows.cbp, a src\manifest.xml should be there (not only manifest.xml). Other cbps are OK.
« Last Edit: May 01, 2026, 02:54:11 pm by gd_on »
Windows 11 64 bits (25H2), svn C::B (last version or almost!), wxWidgets 3.3.2, Msys2 Compilers 16.1.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 6215
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: Small problem in DragScroll_Windows.cbp
« Reply #1 on: Yesterday at 08:36:25 am »
I think we don't need this "src" folder.

I just looked at the other plugins' folder, I don't see the "src" folder there.

Pecan may give some comments on this.

EDIT:
It looks like Pecan's maintained plugin has this feature, I mean there is a src folder in the plugin's root folder.
Can we make more consistence?
« Last Edit: Yesterday at 02:42:51 pm by ollydbg »
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Offline jggimi

  • Single posting newcomer
  • *
  • Posts: 5
Re: Small problem in DragScroll_Windows.cbp
« Reply #2 on: Yesterday at 03:46:29 pm »
On my OS (OpenBSD), 13838 won't build dragscroll from source: it doesn't know how to build manifest.xml.  Not sure why.

Code
Making all in appdata
Making all in dragscroll
make: don't know how to make manifest.xml (prerequisite of: dragscroll.zip)
Stop in src/plugins/contrib/dragscroll
*** Error 1 in src/plugins/contrib (Makefile:658 'all-recursive')
« Last Edit: Yesterday at 04:07:37 pm by jggimi »

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2941
Re: Small problem in DragScroll_Windows.cbp
« Reply #3 on: Yesterday at 05:55:05 pm »
Fixed svn rev 13839.

Offline gd_on

  • Lives here!
  • ****
  • Posts: 848
Re: Small problem in DragScroll_Windows.cbp
« Reply #4 on: Yesterday at 06:10:19 pm »
Thanks.
But, not sure that this fix the problem encountered by jggimi. He uses a makefile process I suppose, and the path to manifest.xml is not found, if I understand well.
Windows 11 64 bits (25H2), svn C::B (last version or almost!), wxWidgets 3.3.2, Msys2 Compilers 16.1.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5565
Re: Small problem in DragScroll_Windows.cbp
« Reply #5 on: Yesterday at 06:14:37 pm »
also on linux things seem to be broken:

make[4]: *** No rule to make target 'manifest.xml', needed by 'dragscroll.zip'.  Stop.

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2941
Re: Small problem in DragScroll_Windows.cbp
« Reply #6 on: Yesterday at 11:17:50 pm »
also on linux things seem to be broken:

make[4]: *** No rule to make target 'manifest.xml', needed by 'dragscroll.zip'.  Stop.

Fixed svn 13840

Offline jggimi

  • Single posting newcomer
  • *
  • Posts: 5
Re: Small problem in DragScroll_Windows.cbp
« Reply #7 on: Today at 06:01:04 am »
13840 resolved my problem.  Thanks!!