Skip to content

Commit

Permalink
Fixed copyright and made compatible with pre-2.0 AdPlug versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
dynamite1981 committed Apr 23, 2006
1 parent 1a528ae commit a84a2b4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AdPlug/XMMS - AdPlug XMMS Plugin
Copyright (C) 2002, 2003, 2005 Simon Peter <dn.tlp@gmx.net>
Copyright (C) 2002 - 2006 Simon Peter <dn.tlp@gmx.net>

Website: http://adplug.sourceforge.net/

Expand Down
6 changes: 5 additions & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ AC_PROG_CXX

# Check library/program dependencies.
ACX_PTHREAD(,AC_MSG_ERROR([*** POSIX threads not installed ***]))
PKG_CHECK_MODULES([adplug], [adplug >= 1.6])
PKG_CHECK_MODULES([adplug], [adplug >= 2.0],,[
AC_MSG_WARN([You seem to be using a version of AdPlug prior to 2.0. \
I will try to do the old-style library search for which i cannot check \
versions. Please bear in mind that i am requiring at least version 1.4.])
AC_CHECK_LIB(adplug,main,,AC_MSG_ERROR([*** AdPlug not installed ***]))])
AM_PATH_XMMS(0.9.5.1,,AC_MSG_ERROR([*** XMMS >= 0.9.5.1 not installed ***]))

# Determine plugin installation directory
Expand Down
4 changes: 2 additions & 2 deletions src/adplug-xmms.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
AdPlug/XMMS - AdPlug XMMS Plugin
Copyright (C) 2002, 2003, 2005 Simon Peter <dn.tlp@gmx.net>
Copyright (C) 2002 - 2006 Simon Peter <dn.tlp@gmx.net>
AdPlug/XMMS is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
Expand Down Expand Up @@ -139,7 +139,7 @@ static void adplug_about(void)
std::ostringstream text;

text << ADPLUG_XMMS_VERSION "\n"
"Copyright (C) 2002, 2003 Simon Peter <dn.tlp@gmx.net>\n\n"
"Copyright (C) 2002 - 2006 Simon Peter <dn.tlp@gmx.net>\n\n"
"This plugin is released under the terms and conditions of the GNU LGPL.\n"
"See http://www.gnu.org/licenses/lgpl.html for details."
"\n\nThis plugin uses the AdPlug library, which is copyright (C) Simon Peter, et al.\n"
Expand Down

0 comments on commit a84a2b4

Please sign in to comment.