~ubuntu-branches/ubuntu/precise/wpasupplicant/precise-proposed

« back to all changes in this revision

Viewing changes to src/drivers/drivers.mak

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-12-20 21:10:04 UTC
  • Revision ID: package-import@ubuntu.com-20111220211004-te4fdtq56ekebdoh
Tags: 0.7.3-5ubuntu1
Release 0.7.3-6 from Debian's pkg-wpa SVN to Ubuntu Precise as
0.7.3-5ubuntu1. Leaving 0.7.3-6 as UNRELEASED for now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
NEED_AP_MLME=y
32
32
NEED_NETLINK=y
33
33
NEED_LINUX_IOCTL=y
34
 
DRV_LIBS += -lnl
 
34
ifdef CONFIG_LIBNL32
 
35
  DRV_LIBS += -lnl-3
 
36
  DRV_LIBS += -lnl-genl-3
 
37
  DRV_CFLAGS += -DCONFIG_LIBNL20
 
38
  DRV_CFLAGS += -I/usr/include/libnl3/
 
39
else
 
40
  DRV_LIBS += -lnl
35
41
 
36
 
ifdef CONFIG_LIBNL20
37
 
DRV_LIBS += -lnl-genl
38
 
DRV_CFLAGS += -DCONFIG_LIBNL20
 
42
  ifdef CONFIG_LIBNL20
 
43
    DRV_LIBS += -lnl-genl
 
44
    DRV_CFLAGS += -DCONFIG_LIBNL20
 
45
  endif
39
46
endif
40
47
endif
41
48