CVS Update (January 4, 2003)

The latest CVS snapshot is now available:
http://www.libsdl.org/cvs.php

This is very close to what will be released as SDL 1.2.7
Please let me know if it has any regressions or if there are any patches
that I’ve missed.

Here are the changes since the last update:

  • Updated copyright information for 2004 (Happy New Year!)
  • Added the ability to hide the cursor in the DirectFB driver (thanks Pete!)
  • Added minor cleanup for Embedded Visual C++ 3.0 (thanks Andy!)
  • Fixed high CPU usage with ALSA audio driver (thanks Michel!)
  • Added function to create RWops from const memory: SDL_RWFromConstMem()
  • Fixed YUV surface creation when video surface is OpenGL, but target is not
  • Fixed compiling with ALSA 1.0 (thanks Stephane!)
  • Added YUV overlay support on BeOS (thanks Andrew!)

Thanks!
-Sam Lantinga, Software Engineer, Blizzard Entertainment

Sam,

This is very close to what will be released as SDL 1.2.7
Please let me know if it has any regressions or if there are any patches
that I’ve missed.

Here are the changes since the last update:

The current CVS includes two more patches
I’ve sent directly to Ryan:

  • Fixed segfault in DirectFB backend if SetVideoMode was never called
  • Improved DirectFB MGA CRTC2 code

Cheers,
Thomas

  • Fixed segfault in DirectFB backend if SetVideoMode was never called
  • Improved DirectFB MGA CRTC2 code

Thanks Thomas! :slight_smile:

See ya,
-Sam Lantinga, Software Engineer, Blizzard Entertainment

Does ‘make’ failing count as a ‘regression’?
Had no problems building 1.2.6.

JPOn Sunday 04 January 2004 09:26 am, Sam Lantinga wrote:

The latest CVS snapshot is now available:
http://www.libsdl.org/cvs.php

This is very close to what will be released as SDL 1.2.7
Please let me know if it has any regressions or if there are any patches
that I’ve missed.

Does ‘make’ failing count as a ‘regression’?
Had no problems building 1.2.6.

Do you have a specific error message?

Thanks,
–ryan.

Great news…

I still can’t build the dll in this new version with eMbedded Visual C (
WinCE platform )
error C2039: ‘GL_pfd’ : is not a member of ‘SDL_PrivateGLData’

The compiler try to compil all instructions even those for X11…

It does not ignore the openGl preprocessor line…

It runs like not compiled for my platform.

I Dunno why…In the setting there are preprocessor lines but they
seems not to work…

The file SDL_main.c for win32 platform contains all #define needded for
a good compilation but i can’t get all that compil right.

If someone suceed or have time to help me i would be very gratefull.

I’m a new coder under WinCE platform and i code quite a lot under GP32
platform. That surely explains my low level skills

Regards

Pekele

Ps : thank you for your work

Can’t locate object method “path” via package “Autom4te::Request” at
/usr/local/bin/autom4te line 81.
make: *** [configure] Error 1

I have no idea what the above error means. Can you shed some light on it?

Thanks,
JPOn Monday 05 January 2004 12:03 am, Ryan C. Gordon wrote:

Does ‘make’ failing count as a ‘regression’?
Had no problems building 1.2.6.

Do you have a specific error message?

What version of automake do you have?

See ya,
-Sam Lantinga, Software Engineer, Blizzard Entertainment> On Monday 05 January 2004 12:03 am, Ryan C. Gordon wrote:

Does ‘make’ failing count as a ‘regression’?
Had no problems building 1.2.6.

Do you have a specific error message?

Can’t locate object method “path” via package “Autom4te::Request” at
/usr/local/bin/autom4te line 81.
make: *** [configure] Error 1

I have no idea what the above error means. Can you shed some light on it?

automake --version returns 1.7.2.

Thanks,
JPOn Monday 05 January 2004 07:59 pm, Sam Lantinga wrote:

Can’t locate object method “path” via package “Autom4te::Request” at
/usr/local/bin/autom4te line 81.
make: *** [configure] Error 1

I have no idea what the above error means. Can you shed some light on it?

What version of automake do you have?

RE:[SDL] CVS Update (January 4, 2003)

What’s the SDL install taking lessons from physfs now?
What ever happened to the good old “MAKEFILE” that you can use with MAKE.EXE?
I’m using mingw and also cannot build now (same for physfs…)
if it ain’t broke don’t try to fix it!
-jay

RE:[SDL] CVS Update (January 4, 2003)

What’s the SDL install taking lessons from physfs now?
What ever happened to the good old “MAKEFILE” that you can use with MAKE.EXE?
I’m using mingw and also cannot build now (same for physfs…)
if it ain’t broke don’t try to fix it!

It was broke. It didn’t work with the latest version of msys (mingw)

What version of mingw are you using, and what errors are you getting?

See ya,
-Sam Lantinga, Software Engineer, Blizzard Entertainment

What’s the SDL install taking lessons from physfs now?

Hey, now.

I’m using mingw and also cannot build now (same for physfs…)
if it ain’t broke don’t try to fix it!

Try running this:

aclocal -I /usr/local/share/aclocal
autoheader
libtoolize -c --automake
automake --add-missing --copy --include-deps
autoconf
./configure
make

PhysicsFS doesn’t build a shared library on Cygwin or MingW by default,
because the packaged configure script was built with an autoconf version
that has Win32 bugs. The above commands will regenerate the configure
script using the win32-friendly autoconf that should be on your system
already.

This will probably fix SDL for you, too.

Also, read this if your error involves a “bad reloc address” message:
http://www.libsdl.org/pipermail/sdl/2004-January/058847.html

–ryan.

"Try running this:
aclocal -I /usr/local/share/aclocal
./configure "

OK should that come from some sort of script? Batchfile?
I’m using mingw 3.2.3 on Win98, which barfs at this saying “bad command or
filename”… I have a current cygwin for windows, but I created my own usr\bin
directory… (is this my mistake?)

So far I’ve been writing my own makefile since the auto-junk won’t run.
Despite this I’ve built physfs as both static’s and dll’s with varying
degrees of archive support. Ryan say the word if you want details of how I built
without autoconfig…
( By the way - it works amazingly with SDL_RWops! )

CVS-SDL I still have to wrestle with, but I admit I haven’t tried too hard.
(been busy with physfs…among other things…)
-Joe Rossi