From 774ff2757de2a32c57046cbdc8425c6c22759035 Mon Sep 17 00:00:00 2001 From: Timo Weingärtner Date: Fri, 28 Aug 2015 19:12:58 +0200 Subject: rename C++ header to .H --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fcecbaa..3b3002b 100644 --- a/Makefile +++ b/Makefile @@ -32,9 +32,9 @@ ssh-agent-filter.1: ssh-agent-filter ssh-agent-filter: ssh-agent-filter.o -ssh-agent-filter.o: ssh-agent-filter.C rfc4251.h ssh-agent.h version.h -rfc4251.o: rfc4251.C rfc4251.h -rfc4251_gmp.o: rfc4251_gmp.C rfc4251.h +ssh-agent-filter.o: ssh-agent-filter.C rfc4251.H ssh-agent.h version.h +rfc4251.o: rfc4251.C rfc4251.H +rfc4251_gmp.o: rfc4251_gmp.C rfc4251.H version.h: test ! -d .git || git describe | sed 's/^.*$$/#define SSH_AGENT_FILTER_VERSION "ssh-agent-filter \0"/' > $@ -- cgit v1.2.3 From 33485a9d38ad40ee971695384cfc869ced281a8c Mon Sep 17 00:00:00 2001 From: Timo Weingärtner Date: Sun, 6 Sep 2015 17:01:47 +0200 Subject: Makefile: link to pthread some versions of gcc reference a pthread function in the header --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3b3002b..2f26553 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ CXXFLAGS ?= -g -O2 -Wall -Wold-style-cast CPPFLAGS += -D_FILE_OFFSET_BITS=64 CXXFLAGS += -std=c++11 -LDLIBS = -lstdc++ -lboost_program_options -lboost_filesystem -lboost_system -lboost_iostreams -lnettle +LDLIBS = -lstdc++ -lboost_program_options -lboost_filesystem -lboost_system -lboost_iostreams -lnettle -lpthread all: ssh-agent-filter.1 afssh.1 ssh-askpass-noinput.1 -- cgit v1.2.3 From d4584ca24834ca07f34c27c99ddf48c4c9156947 Mon Sep 17 00:00:00 2001 From: Timo Weingärtner Date: Sun, 6 Sep 2015 16:40:23 +0200 Subject: update copyright --- Makefile | 2 +- rfc4251.C | 2 +- rfc4251.H | 2 +- rfc4251_gmp.C | 2 +- ssh-agent-filter.C | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2f26553..a0dd007 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2013 Timo Weingärtner +# Copyright (C) 2013,2015 Timo Weingärtner # # This file is part of ssh-agent-filter. # diff --git a/rfc4251.C b/rfc4251.C index bf3fe4a..5ea0a93 100644 --- a/rfc4251.C +++ b/rfc4251.C @@ -4,7 +4,7 @@ * These are the conversions between an rfc4251::string containing a name-list * and vector. * - * Copyright (C) 2013 Timo Weingärtner + * Copyright (C) 2013,2015 Timo Weingärtner * * This file is part of ssh-agent-filter. * diff --git a/rfc4251.H b/rfc4251.H index 7284f20..7d4c0d3 100644 --- a/rfc4251.H +++ b/rfc4251.H @@ -10,7 +10,7 @@ * those structs contain the objects in their RFC 4251 representation, * conversions are provided via constructors and cast operators * - * Copyright (C) 2013-2014 Timo Weingärtner + * Copyright (C) 2013-2015 Timo Weingärtner * * This file is part of ssh-agent-filter. * diff --git a/rfc4251_gmp.C b/rfc4251_gmp.C index fe1f770..b4c369b 100644 --- a/rfc4251_gmp.C +++ b/rfc4251_gmp.C @@ -3,7 +3,7 @@ * * these functions need linking against libgmp * - * Copyright (C) 2013 Timo Weingärtner + * Copyright (C) 2013,2015 Timo Weingärtner * * This file is part of ssh-agent-filter. * diff --git a/ssh-agent-filter.C b/ssh-agent-filter.C index 61f4587..4d9b2ba 100644 --- a/ssh-agent-filter.C +++ b/ssh-agent-filter.C @@ -1,7 +1,7 @@ /* * ssh-agent-filter.C -- filtering proxy for ssh-agent meant to be forwarded to untrusted servers * - * Copyright (C) 2013-2014 Timo Weingärtner + * Copyright (C) 2013-2015 Timo Weingärtner * * This file is part of ssh-agent-filter. * -- cgit v1.2.3