diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /putty | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'putty')
-rw-r--r-- | putty/putty/lib.pro | 43 | ||||
-rw-r--r-- | putty/putty/plink.pro | 10 | ||||
-rw-r--r-- | putty/putty/pscp.pro | 10 | ||||
-rw-r--r-- | putty/putty/psftp.pro | 10 |
4 files changed, 73 insertions, 0 deletions
diff --git a/putty/putty/lib.pro b/putty/putty/lib.pro index e69de29bb2..7006228b6a 100644 --- a/putty/putty/lib.pro +++ b/putty/putty/lib.pro @@ -0,0 +1,43 @@ +###################################################################### +# Automatically generated by qmake (1.06c) Wed Jun 16 23:28:56 2004 +###################################################################### + +TEMPLATE = lib +CONFIG = warn_on release console +TARGET = putty +INCLUDEPATH += . unix charset + +SOURCES += cmdline.c int64.c ldisc.c logging.c misc.c portfwd.c proxy.c raw.c \ + rlogin.c settings.c ssh.c sshaes.c sshblowf.c \ + sshbn.c sshcrc.c sshcrcda.c sshdes.c sshdh.c sshdss.c \ + sshmd5.c sshpubk.c sshrand.c sshrsa.c sshsh512.c sshsha.c \ + sshzlib.c telnet.c tree234.c version.c wildcard.c x11fwd.c + +#Charset +SOURCES += \ + charset/localenc.c \ + charset/mimeenc.c \ + charset/sbcsdat.c \ + charset/toucs.c \ + charset/xenc.c \ + charset/fromucs.c \ + charset/macenc.c \ + charset/sbcs.c \ + charset/slookup.c \ + charset/utf8.c + +# Unix +HEADERS += unix/unix.h +SOURCES += unix/signal.c \ + unix/uxagentc.c \ + unix/uxcons.c \ + unix/uxmisc.c \ + unix/uxnet.c \ + unix/uxnoise.c \ + unix/uxproxy.c \ + unix/uxplink.c \ + unix/uxsel.c \ + unix/uxstore.c \ + unix/uxucs.c \ + unix/ux_x11.c \ + unix/xkeysym.c diff --git a/putty/putty/plink.pro b/putty/putty/plink.pro index e69de29bb2..3cbf15a71d 100644 --- a/putty/putty/plink.pro +++ b/putty/putty/plink.pro @@ -0,0 +1,10 @@ +TEMPLATE = app +TARGET = plink +CONFIG = warn_on release console +DEPENDPATH += unix charset +INCLUDEPATH += . unix charset + +SOURCES += be_all.c uxplink.c + +LIBS += -L. -lputty + diff --git a/putty/putty/pscp.pro b/putty/putty/pscp.pro index e69de29bb2..6e30d3ebc0 100644 --- a/putty/putty/pscp.pro +++ b/putty/putty/pscp.pro @@ -0,0 +1,10 @@ +TEMPLATE = app +TARGET = pscp +CONFIG = warn_on release console +DEPENDPATH += unix charset +INCLUDEPATH += . unix charset + +SOURCES += be_none.c scp.c sftp.c unix/uxsftp.c + +LIBS += -L. -lputty + diff --git a/putty/putty/psftp.pro b/putty/putty/psftp.pro index e69de29bb2..4c491bafdc 100644 --- a/putty/putty/psftp.pro +++ b/putty/putty/psftp.pro @@ -0,0 +1,10 @@ +TEMPLATE = app +TARGET = psftp +CONFIG = warn_on release console +DEPENDPATH += unix charset +INCLUDEPATH += . unix charset + +SOURCES += be_none.c psftp.c sftp.o unix/uxsftp.c + +LIBS += -L. -lputty + |