summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2007-05-26 16:31:17 +0000
committerMarcel Holtmann <marcel@holtmann.org>2007-05-26 16:31:17 +0000
commit0097d93ac82733bae644a0be3c6ad0eab6cff4db (patch)
tree71d1de009f3f69c434817d689423c5773af3c8f6
parent2a211b1c03d153d3884b8528da6865ebd804415c (diff)
Add unix.c and unix.h skeletons
-rw-r--r--audio/Makefile.am3
-rw-r--r--audio/unix.c28
-rw-r--r--audio/unix.h22
3 files changed, 52 insertions, 1 deletions
diff --git a/audio/Makefile.am b/audio/Makefile.am
index c1bd4ba3..63448a86 100644
--- a/audio/Makefile.am
+++ b/audio/Makefile.am
@@ -10,7 +10,8 @@ servicedir = $(libdir)/bluetooth
service_PROGRAMS = bluetoothd-service-audio
-bluetoothd_service_audio_SOURCES = main.c manager.h manager.c headset.h headset.c ipc.h
+bluetoothd_service_audio_SOURCES = main.c \
+ manager.h manager.c headset.h headset.c ipc.h unix.h unix.c
bluetoothd_service_audio_LDADD = $(top_builddir)/common/libhelper.a \
@GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@
diff --git a/audio/unix.c b/audio/unix.c
new file mode 100644
index 00000000..e61680b2
--- /dev/null
+++ b/audio/unix.c
@@ -0,0 +1,28 @@
+/*
+ *
+ * BlueZ - Bluetooth protocol stack for Linux
+ *
+ * Copyright (C) 2004-2007 Marcel Holtmann <marcel@holtmann.org>
+ *
+ *
+ * This program 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.
+ *
+ * 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include "unix.h"
diff --git a/audio/unix.h b/audio/unix.h
new file mode 100644
index 00000000..e87dd676
--- /dev/null
+++ b/audio/unix.h
@@ -0,0 +1,22 @@
+/*
+ *
+ * BlueZ - Bluetooth protocol stack for Linux
+ *
+ * Copyright (C) 2004-2007 Marcel Holtmann <marcel@holtmann.org>
+ *
+ *
+ * This program 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.
+ *
+ * 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */