summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpbd <pbd@0c269be4-1314-0410-8aa9-9f06e86f4224>2001-11-14 00:02:15 +0000
committerpbd <pbd@0c269be4-1314-0410-8aa9-9f06e86f4224>2001-11-14 00:02:15 +0000
commita748c067e6703cf28e1f08808bc2868f6db50e6a (patch)
treebb5d9aeb495926ad744e27610130c210acc5168f
parentfd67c97854d404eaeb249b4764bf17a381edd365 (diff)
downloadjack1-a748c067e6703cf28e1f08808bc2868f6db50e6a.tar.gz
put driver.c into libjack, changed to LGPL for driver.c, fixed makefile
git-svn-id: svn+ssh://jackaudio.org/trunk/jack@16 0c269be4-1314-0410-8aa9-9f06e86f4224
-rw-r--r--Makefile.am4
-rw-r--r--driver.c20
2 files changed, 22 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 6887411..9159142 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -14,7 +14,7 @@ EXTRA_CFLAGS = -DADDON_DIR=\"$(ADDON_DIR)\" @GLIB_CFLAGS@
CFLAGS += $(EXTRA_CFLAGS)
-jackd_SOURCES = jackd.c engine.c driver.c
+jackd_SOURCES = jackd.c engine.c
jackd_LDFLAGS = -L. -ljack -lltdl -lpthread
jack_simple_client_SOURCES = simple_client.c
@@ -28,7 +28,7 @@ jack_fltk_client_LDFLAGS = -L. -L/usr/X11R6/lib -lfltk -lX11 -lXext -ljack -lltd
lib_LTLIBRARIES = libjack.la jack_alsa.la
-libjack_la_SOURCES = client.c pool.c
+libjack_la_SOURCES = client.c pool.c driver.c
jack_alsa_la_LDFLAGS = -module
jack_alsa_la_SOURCES = alsa_driver.c hammerfall.c generic_hw.c memops.c
diff --git a/driver.c b/driver.c
index 8860543..7733bd9 100644
--- a/driver.c
+++ b/driver.c
@@ -1,3 +1,23 @@
+/*
+ Copyright (C) 2001 Paul Davis
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This program 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 Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+ $Id$
+*/
+
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>