Commit 0d2ddb6c authored by Seblu's avatar Seblu
Browse files

Adding GPL License

parent 4b3113a5
Loading
Loading
Loading
Loading

sls/trunk/COPYING

0 → 100644
+674 −0

File added.

Preview size limit exceeded, changes collapsed.

+2 −0
Original line number Diff line number Diff line
@@ -14,6 +14,8 @@ sls_SOURCES= src/sls.hh \

CLEANFILES= *~ '\#*'

EXTRA_DIST= LICENSE COPYING

.PHONY: tar re

tar: distcheck

sls/trunk/README

0 → 100644
+0 −0

Empty file added.

+0 −2
Original line number Diff line number Diff line
@@ -34,8 +34,6 @@ AC_ARG_WITH([efence],
  [with_efence=no]
)

echo $with_efence

# Default CXX Flags
CXXFLAGS='-Wall -W -ansi -pedantic -D_XOPEN_SOURCE=600 -pipe'

+19 −0
Original line number Diff line number Diff line
/*
  This file is part of SLS.
  Copyright (C) 2008 Sebastien LUTTRINGER (<contact@seblu.net> )

  SLS is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  SLS is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with SLS; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  US
*/

#include "sls.hh"
#include "database.hh"
#include "error.hh"
Loading