Move hcid to src directory and rename it to bluetoothd

This commit is contained in:
Marcel Holtmann 2008-07-29 20:35:12 +02:00
parent 6ff0013177
commit e0581b5e29
66 changed files with 20 additions and 20 deletions

View File

@ -1,6 +1,6 @@
SUBDIRS = include lib doc \
sbc gdbus common hcid plugins \
sbc gdbus common src plugins \
network serial input audio \
tools rfcomm dund pand hidd \
cups test scripts

View File

@ -55,7 +55,7 @@ endif
AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid -I$(top_srcdir)/sdpd
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/src
EXTRA_DIST = audio.conf audio-api.txt test-audio asound.conf

View File

@ -49,8 +49,8 @@
#include <gdbus.h>
#include "glib-helper.h"
#include "../hcid/adapter.h"
#include "../hcid/device.h"
#include "../src/adapter.h"
#include "../src/device.h"
#include "dbus-service.h"
#include "logging.h"

View File

@ -39,10 +39,11 @@ AC_OUTPUT([
Makefile
include/Makefile
lib/Makefile
doc/Makefile
sbc/Makefile
gdbus/Makefile
common/Makefile
src/Makefile
doc/Makefile
sbc/Makefile
plugins/Makefile
network/Makefile
serial/Makefile
@ -50,7 +51,6 @@ AC_OUTPUT([
audio/Makefile
tools/Makefile
rfcomm/Makefile
hcid/Makefile
dund/Makefile
pand/Makefile
hidd/Makefile

View File

@ -17,7 +17,7 @@ AM_LDFLAGS = -module -avoid-version -no-undefined \
AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/src
EXTRA_DIST = input.conf input-api.txt test-input

View File

@ -44,8 +44,8 @@
#include "logging.h"
#include "textfile.h"
#include "../hcid/adapter.h"
#include "../hcid/device.h"
#include "../src/adapter.h"
#include "../src/device.h"
#include "device.h"
#include "server.h"

View File

@ -17,7 +17,7 @@ AM_LDFLAGS = -module -avoid-version -no-undefined \
AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid -I$(top_srcdir)/sdpd
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/src
EXTRA_DIST = network.conf network-api.txt test-network

View File

@ -42,7 +42,7 @@
#include <glib.h>
#include <gdbus.h>
#include "../hcid/dbus-common.h"
#include "../src/dbus-common.h"
#include "logging.h"
#include "textfile.h"

View File

@ -46,7 +46,7 @@
#include <glib.h>
#include <gdbus.h>
#include "../hcid/dbus-common.h"
#include "../src/dbus-common.h"
#include "logging.h"
#include "error.h"

View File

@ -26,7 +26,7 @@ AM_LDFLAGS = -module -avoid-version -no-undefined \
AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@ @NETLINK_CFLAGS@
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/src
MAINTAINERCLEANFILES = Makefile.in

View File

@ -17,7 +17,7 @@ AM_LDFLAGS = -module -avoid-version -no-undefined \
AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid -I$(top_srcdir)/sdpd
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/src
EXTRA_DIST = serial-api.txt test-serial

View File

@ -51,7 +51,7 @@
#include <glib.h>
#include <gdbus.h>
#include "../hcid/dbus-common.h"
#include "../src/dbus-common.h"
#include "adapter.h"
#include "device.h"

View File

@ -44,7 +44,7 @@
#include <glib.h>
#include <gdbus.h>
#include "../hcid/dbus-common.h"
#include "../src/dbus-common.h"
#include "logging.h"
#include "glib-helper.h"

View File

@ -13,9 +13,9 @@ statedir = $(localstatedir)/lib/bluetooth
state_DATA =
endif
sbin_PROGRAMS = hcid
sbin_PROGRAMS = bluetoothd
hcid_SOURCES = main.c hcid.h sdpd.h \
bluetoothd_SOURCES = main.c hcid.h sdpd.h \
sdpd-server.c sdpd-request.c sdpd-service.c \
sdpd-database.c security.c storage.c \
parser.h parser.y lexer.l kword.c kword.h \
@ -26,7 +26,7 @@ hcid_SOURCES = main.c hcid.h sdpd.h \
dbus-hci.h dbus-hci.c \
telephony.h telephony.c agent.h agent.c
hcid_LDADD = $(top_builddir)/common/libhelper.a \
bluetoothd_LDADD = $(top_builddir)/common/libhelper.a \
@GDBUS_LIBS@ @GMODULE_LIBS@ @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@
if MAINTAINER_MODE