head 1.2; access; symbols; locks; strict; comment @# @; 1.2 date 2008.03.04.06.33.39; author rse; state Exp; branches; next 1.1; commitid tJ6xo40FZGK12MTs; 1.1 date 2008.01.20.16.23.33; author rse; state Exp; branches; next ; commitid 09AcWkvp3gk6IaOs; desc @@ 1.2 log @upgrading package: proxytunnel 1.8.0 -> 1.9.0 @ text @Index: Makefile --- Makefile.orig 2008-02-27 00:31:08 +0100 +++ Makefile 2008-03-04 07:29:45 +0100 @@@@ -3,7 +3,7 @@@@ # Please uncomment the appropriate settings CC ?= cc -CFLAGS ?= -Wall -O2 -ggdb +CFLAGS ?= -Wall -O2 OPTFLAGS = -DREV=$(shell ./getrev.sh) @@@@ -37,15 +37,6 @@@@ # END system dependant block -SSL_LIBS := $(shell pkg-config --libs libssl 2>/dev/null) -ifeq ($(SSL_LIBS),) -SSL_LIBS := $(shell pkg-config --libs openssl 2>/dev/null) -endif -ifeq ($(SSL_LIBS),) -SSL_LIBS := -lssl -lcrypto -endif -LDFLAGS += $(SSL_LIBS) - PREFIX =/usr/local BINDIR = $(PREFIX)/bin DATADIR = $(PREFIX)/share @@@@ -69,6 +60,9 @@@@ ntlm.o \ ptstream.o +.c.o: + $(CC) $(CFLAGS) $(CPPFLAGS) -o $@@ -c $< + proxytunnel: $(OBJ) $(CC) -o $(PROGNAME) $(CFLAGS) $(OPTFLAGS) $(OBJ) $(LDFLAGS) @ 1.1 log @new package: proxytunnel 1.8.0 (Secure Sheel Tunneling via HTTPS) @ text @d2 2 a3 2 --- Makefile.orig 2007-12-30 15:15:40 +0100 +++ Makefile 2008-01-20 17:15:01 +0100 d10 4 a13 4 CFLAGS += -DHAVE_GETOPT_LONG # Comment on non-gnu systems CFLAGS += -DUSE_SSL # Comment if you don't have/want ssl # Most systems @@@@ -29,15 +29,6 @@@@ d29 1 a29 1 @@@@ -60,6 +51,9 @@@@ d37 1 a37 1 $(CC) -o $(PROGNAME) $(CFLAGS) $(OBJ) $(LDFLAGS) @