~ubuntu-branches/ubuntu/gutsy/wpasupplicant/gutsy

« back to all changes in this revision

Viewing changes to wpa_supplicant/wpa_gui-qt4/wpa_gui.pro

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler, Alexander Sack
  • Date: 2007-08-26 16:06:57 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070826160657-2m8pxoweuxe8f93t
Tags: 0.6.0+0.5.8-0ubuntu1
* New upstream release
* remove patch 11_erroneous_manpage_ref, applied upstream
* remove patch 25_wpas_dbus_unregister_iface_fix, applied upstream

[ Alexander Sack ]
* bumping upstream version to replace development version 0.6.0 with
  this package from stable release branch.
* attempt to fix wierd timeout and high latency issues by going
  back to stable upstream version (0.5.9) (LP: #140763,
  LP: #141233).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
TEMPLATE        = app
2
 
LANGUAGE        = C++
3
 
 
4
 
CONFIG  += qt warn_on release
5
 
 
6
 
DEFINES += CONFIG_CTRL_IFACE
7
 
 
8
 
win32 {
9
 
  LIBS += -lws2_32 -static
10
 
  DEFINES += CONFIG_NATIVE_WINDOWS CONFIG_CTRL_IFACE_NAMED_PIPE
11
 
  SOURCES += ../../src/utils/os_win32.c
12
 
} else:win32-g++ {
13
 
  # cross compilation to win32
14
 
  LIBS += -lws2_32 -static
15
 
  DEFINES += CONFIG_NATIVE_WINDOWS CONFIG_CTRL_IFACE_NAMED_PIPE
16
 
  SOURCES += ../../src/utils/os_win32.c
17
 
} else {
18
 
  DEFINES += CONFIG_CTRL_IFACE_UNIX
19
 
  SOURCES += ../../src/utils/os_unix.c
20
 
}
21
 
 
22
 
INCLUDEPATH     += . .. ../../src/utils ../../src/common
23
 
 
24
 
HEADERS += wpamsg.h \
25
 
        wpagui.h \
26
 
        eventhistory.h \
27
 
        scanresults.h \
28
 
        userdatarequest.h \
29
 
        networkconfig.h
30
 
 
31
 
SOURCES += main.cpp \
32
 
        wpagui.cpp \
33
 
        eventhistory.cpp \
34
 
        scanresults.cpp \
35
 
        userdatarequest.cpp \
36
 
        networkconfig.cpp \
37
 
        ../../src/common/wpa_ctrl.c
38
 
 
39
 
FORMS   = wpagui.ui \
40
 
        eventhistory.ui \
41
 
        scanresults.ui \
42
 
        userdatarequest.ui \
43
 
        networkconfig.ui
44
 
 
45
 
 
46
 
unix {
47
 
  UI_DIR = .ui
48
 
  MOC_DIR = .moc
49
 
  OBJECTS_DIR = .obj
50
 
}
51
 
 
52
 
# TODO: remove need for Qt3 support code
53
 
QT += qt3support