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

Author Topic: SFML terms of modifiction question.  (Read 1587 times)

0 Members and 1 Guest are viewing this topic.

The Floating Brain

  • Newbie
  • *
  • Posts: 14
    • View Profile
    • http://www.gcggames.webs.com
SFML terms of modifiction question.
« on: July 16, 2011, 07:28:09 am »
When it says in the SFML source:
Quote

// 2. Altered source versions must be plainly marked as such,
//    and must not be misrepresented as being the original software.

What I am suppose to do to make the code or application "marked as such"?[/quote]

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32498
    • View Profile
    • SFML's website
    • Email
SFML terms of modifiction question.
« Reply #1 on: July 16, 2011, 10:00:00 am »
Whatever you want, as long as it's clear enough.

You can add a comment in source code where you add stuff:
Code: [Select]
... SFML code ...

// begin xxx modification -- by The Floating Brain
... your code ...
// end xxx modification -- by The Floating Brain

... SFML code ...


And maybe a readme.txt which says that this source code is not the original one etc...
Laurent Gomila - SFML developer

The Floating Brain

  • Newbie
  • *
  • Posts: 14
    • View Profile
    • http://www.gcggames.webs.com
SFML terms of modifiction question.
« Reply #2 on: July 17, 2011, 10:05:38 pm »
Quote from: "Laurent"
Whatever you want, as long as it's clear enough.

You can add a comment in source code where you add stuff:
Code: [Select]
... SFML code ...

// begin xxx modification -- by The Floating Brain
... your code ...
// end xxx modification -- by The Floating Brain

... SFML code ...


And maybe a readme.txt which says that this source code is not the original one etc...

Thank you :-D

 

anything