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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - cleanrock

Pages: [1]
1
Feature requests / .so links problem
« on: September 12, 2009, 03:55:26 pm »
the .svn dirs in include/SFML should at least be fixed in my opinion

2
Feature requests / .so links problem
« on: September 12, 2009, 11:08:47 am »
sfml2 works for me but i think this should be fixed in regular sfml also

btw, i think the makefiles could be improved, e.g. make install copies .svn dirs to include/SFML, perhaps a switch to cmake would be good

3
Feature requests / .so links problem
« on: September 12, 2009, 10:38:34 am »
so the regular trunk is deprecated ? if not, please fix that too

4
Feature requests / .so links problem
« on: September 12, 2009, 08:01:16 am »
The create link command for the shared objects result in invalid links in archlinux package building system.
The problem is that the links target is an absolute path which dont work with archlinux package building system (and probably a few other package building systems).
I suggest you change the create link command to :
Code: [Select]
INSTALL = && $(LN) $(LNFLAGS) $(LIB).$(VERSION) $(DESTLIBDIR)/$(LIB)

At the moment it is:
Code: [Select]
INSTALL = && $(LN) $(LNFLAGS) $(DESTLIBDIR)/$(LIB).$(VERSION) $(DESTLIBDIR)/$(LIB)

I.e. remove the first DESTLIBDIR.

Pages: [1]
anything