Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: 2 small patches + build problem in sfml2 branch  (Read 4160 times)

0 Members and 1 Guest are viewing this topic.

christoph

  • Full Member
  • ***
  • Posts: 102
    • View Profile
    • http://www.christoph-egger.org
2 small patches + build problem in sfml2 branch
« on: September 07, 2009, 11:20:51 am »
Hi laurent!

This time I made the patches against sfml2 trunk so I don't bring in patches by accident that are actually already applied ;)

These patches address SFML and CSFML -- python uses a completely different system and I haven't had a look at the other languages ;)

First of all, SFML2 does not build for me, not sure if you already know it. The error message is at http://random.christoph-egger.org/.sfml2-ftbfs

http://random.christoph-egger.org/.sfml-2/relativ-ln.patch changes the symlinks from libsfml-*.so to libsfml-*.so.* to relative ones. That's the only problem I have currently to use you're DESTDIR implementation unchanged, would be great if it can go in!

http://random.christoph-egger.org/.sfml-2/usr-local.patch might be a bit more controversial. The LSB (LinuxStandardBase) subsystem FHS (Filesystem layout) clearly defines that /usr/{bin,include,share,lib} is only to be used by the package management solutions. Your makefiles installing into /usr/{lib,include} are illegal according to the LSB and can cause real troubles with package managers which all assume they are the only ones to write to prefix /usr.

Changing that to /usr/local would make SFML LSB compliant and package managers won't overwrite a hand-installed libsfml with a system one. As /usr/local comes before /usr on all but more-than-5-years-old RHEL users will get handinstalled Versions of SFML by default when linking their application and a systme installed one is available as well.

Thanks

Christoph

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
2 small patches + build problem in sfml2 branch
« Reply #1 on: September 07, 2009, 11:27:51 am »
Hi Christoph

Quote
First of all, SFML2 does not build for me, not sure if you already know it

No, but I recently uncommented this part of the Linux code without checking, so I'm not surprized :D

Quote
http://random.christoph-egger.org/.sfml-2/relativ-ln.patch changes the symlinks from libsfml-*.so to libsfml-*.so.* to relative ones. That's the only problem I have currently to use you're DESTDIR implementation unchanged, would be great if it can go in!

Ok, I didn't know about this detail. Thanks for fixing it.

Quote
http://random.christoph-egger.org/.sfml-2/usr-local.patch might be a bit more controversial. The LSB (LinuxStandardBase) subsystem FHS (Filesystem layout) clearly defines that /usr/{bin,include,share,lib} is only to be used by the package management solutions. Your makefiles installing into /usr/{lib,include} are illegal according to the LSB and can cause real troubles with package managers which all assume they are the only ones to write to prefix /usr.

I agree, actually I don't know why I didn't change it before.

Thanks a lot for your help, I'll apply your patches and fix the compile error as soon as possible :)
Laurent Gomila - SFML developer

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
2 small patches + build problem in sfml2 branch
« Reply #2 on: September 07, 2009, 12:50:33 pm »
Done.
Laurent Gomila - SFML developer