~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to cutestuff/socksd.pro

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2005-01-10 17:41:43 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050110174143-ltocv5zapl6blf5d
Tags: 0.9.3-1
* New upstream release
* Cleaned up debian/rules (some things are done by upstream Makefiles now)
* Fixed some lintian warnings:
  - removed executable bit from some .png files
  - moved psi.desktop to /usr/share/applications
* Updated menu files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CONFIG += thread
 
2
TARGET  = socksd
 
3
 
 
4
DEFINES += PROX_DEBUG
 
5
 
 
6
INCLUDEPATH += util network
 
7
 
 
8
HEADERS = \
 
9
        util/bytestream.h \
 
10
        util/bconsole.h \
 
11
        network/ndns.h \
 
12
        network/bsocket.h \
 
13
        network/servsock.h \
 
14
        network/socks.h \
 
15
        socksd.h
 
16
 
 
17
SOURCES = \
 
18
        util/bytestream.cpp \
 
19
        util/bconsole.cpp \
 
20
        network/ndns.cpp \
 
21
        network/bsocket.cpp \
 
22
        network/servsock.cpp \
 
23
        network/socks.cpp \
 
24
        socksd.cpp
 
25