mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-07 19:30:37 +01:00
2006-08-24 Dan Williams <dcbw@redhat.com>
* configure.in src/Makefile.am src/supplicant-manager/Makefile.am src/supplicant-manager/nm-supplicant-manager.c src/supplicant-manager/nm-supplicant-manager.h - Add skeleton bits of the wpa_supplicant manager git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1990 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
affb61173b
commit
d99d3d98e0
6 changed files with 84 additions and 1 deletions
|
|
@ -1,3 +1,12 @@
|
|||
2006-08-24 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* configure.in
|
||||
src/Makefile.am
|
||||
src/supplicant-manager/Makefile.am
|
||||
src/supplicant-manager/nm-supplicant-manager.c
|
||||
src/supplicant-manager/nm-supplicant-manager.h
|
||||
- Add skeleton bits of the wpa_supplicant manager
|
||||
|
||||
2006-08-24 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
Patch from Ed Catmur:
|
||||
|
|
|
|||
|
|
@ -153,6 +153,10 @@ PKG_CHECK_MODULES(GMODULE, gmodule-2.0)
|
|||
AC_SUBST(GMODULE_CFLAGS)
|
||||
AC_SUBST(GMODULE_LIBS)
|
||||
|
||||
PKG_CHECK_MODULES(GOBJECT, gobject-2.0)
|
||||
AC_SUBST(GOBJECT_CFLAGS)
|
||||
AC_SUBST(GOBJECT_LIBS)
|
||||
|
||||
PKG_CHECK_MODULES(HAL, hal >= 0.5.0)
|
||||
AC_SUBST(HAL_CFLAGS)
|
||||
AC_SUBST(HAL_LIBS)
|
||||
|
|
@ -358,6 +362,7 @@ src/Makefile
|
|||
src/named-manager/Makefile
|
||||
src/vpn-manager/Makefile
|
||||
src/dhcp-manager/Makefile
|
||||
src/supplicant-manager/Makefile
|
||||
src/backends/Makefile
|
||||
libnm-util/libnm-util.pc
|
||||
libnm-util/Makefile
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
SUBDIRS=named-manager vpn-manager dhcp-manager backends
|
||||
SUBDIRS=named-manager vpn-manager dhcp-manager supplicant-manager backends
|
||||
|
||||
INCLUDES = -I${top_srcdir} \
|
||||
-I${top_srcdir}/include \
|
||||
|
|
|
|||
16
src/supplicant-manager/Makefile.am
Normal file
16
src/supplicant-manager/Makefile.am
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
INCLUDES = -I${top_srcdir}/utils -I${top_srcdir}/src -I${top_srcdir}/include
|
||||
|
||||
noinst_LTLIBRARIES = libsupplicant-manager.la
|
||||
|
||||
libsupplicant_manager_la_SOURCES = nm-supplicant-manager.h nm-supplicant-manager.c
|
||||
|
||||
libsupplicant_manager_la_CPPFLAGS = \
|
||||
$(DBUS_CFLAGS) \
|
||||
$(GTHREAD_CFLAGS) \
|
||||
-DNM_PKGDATADIR=\"$(pkgdatadir)\" \
|
||||
-DNM_LOCALSTATEDIR=\"$(localstatedir)\" \
|
||||
-DDBUS_API_SUBJECT_TO_CHANGE
|
||||
|
||||
libsupplicant_manager_la_LIBADD = \
|
||||
$(DBUS_LIBS) \
|
||||
$(GTHREAD_LIBS)
|
||||
26
src/supplicant-manager/nm-supplicant-manager.c
Normal file
26
src/supplicant-manager/nm-supplicant-manager.c
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* Copyright (C) 2006 Red Hat, Inc.
|
||||
*
|
||||
* Written by Dan Williams <dcbw@redhat.com>
|
||||
*
|
||||
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <dbus/dbus.h>
|
||||
#include "nm-supplicant-manager.h"
|
||||
#include "nm-device.h"
|
||||
|
||||
|
||||
27
src/supplicant-manager/nm-supplicant-manager.h
Normal file
27
src/supplicant-manager/nm-supplicant-manager.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* Copyright (C) 2006 Red Hat, Inc.
|
||||
*
|
||||
* Written by Dan Williams <dcbw@redhat.com>
|
||||
*
|
||||
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef NM_SUPPLICANT_MANAGER_H
|
||||
#define NM_SUPPLICANT_MANAGER_H
|
||||
|
||||
|
||||
|
||||
#endif /* NM_SUPPLICANT_MANAGER_H */
|
||||
Loading…
Add table
Reference in a new issue