head	1.4;
access;
symbols
	RELEASE_8_3_0:1.4
	RELEASE_9_0_0:1.4
	RELEASE_7_4_0:1.4
	RELEASE_8_2_0:1.4
	RELEASE_6_EOL:1.4
	RELEASE_8_1_0:1.4
	RELEASE_7_3_0:1.4
	RELEASE_8_0_0:1.4
	RELEASE_7_2_0:1.4
	RELEASE_7_1_0:1.4
	RELEASE_6_4_0:1.4
	RELEASE_5_EOL:1.4
	RELEASE_7_0_0:1.4
	RELEASE_6_3_0:1.4
	PRE_XORG_7:1.4
	RELEASE_4_EOL:1.4
	RELEASE_6_2_0:1.4
	RELEASE_6_1_0:1.4
	RELEASE_5_5_0:1.4
	RELEASE_6_0_0:1.4
	RELEASE_5_4_0:1.4
	RELEASE_4_11_0:1.4
	RELEASE_5_3_0:1.4
	RELEASE_4_10_0:1.4
	RELEASE_5_2_1:1.4
	RELEASE_5_2_0:1.4
	RELEASE_4_9_0:1.4
	RELEASE_5_1_0:1.4
	RELEASE_4_8_0:1.4
	RELEASE_5_0_0:1.4
	RELEASE_4_7_0:1.4
	RELEASE_4_6_2:1.4
	RELEASE_4_6_1:1.4
	RELEASE_4_6_0:1.4
	RELEASE_5_0_DP1:1.4
	RELEASE_4_5_0:1.4
	RELEASE_4_4_0:1.4
	RELEASE_4_3_0:1.4
	RELEASE_4_2_0:1.4
	RELEASE_4_1_1:1.4
	RELEASE_4_1_0:1.4
	RELEASE_3_5_0:1.4
	RELEASE_4_0_0:1.4
	RELEASE_3_4_0:1.3
	RELEASE_3_3_0:1.3
	RELEASE_3_2_0:1.1.1.1
	v0_1_0:1.1.1.1
	SHIPLEY:1.1.1;
locks; strict;
comment	@# @;


1.4
date	2000.02.06.22.20.58;	author kris;	state Exp;
branches;
next	1.3;

1.3
date	99.06.02.07.24.33;	author dirk;	state Exp;
branches;
next	1.2;

1.2
date	99.05.24.02.21.57;	author steve;	state Exp;
branches;
next	1.1;

1.1
date	99.05.09.17.50.07;	author steve;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	99.05.09.17.50.07;	author steve;	state Exp;
branches;
next	;


desc
@@


1.4
log
@USE_OPENSSL

Assisted by:    Jim Bloom <bloom@@acm.org>
@
text
@--- Makefile.in.orig	Tue Apr  6 01:05:04 1999
+++ Makefile.in	Sat Jan 29 16:23:51 2000
@@@@ -9,8 +9,8 @@@@
 
 CC=@@CC@@
 INSTALL=@@INSTALL@@
-CFLAGS=@@CFLAGS@@ -Wall -DVERSION=\"$(VERSION)\" -I/usr/local/ssl/include -I/usr/include/ssl
-LIBS=@@LIBS@@ -L/usr/local/ssl/lib -lssl -lcrypto
+CFLAGS=@@CFLAGS@@ -Wall -DVERSION=\"$(VERSION)\" -I$(OPENSSLINC) -I$(OPENSSLINC)/openssl -I$(LOCALBASE)/include
+LIBS=@@LIBS@@ -L$(OPENSSLLIB) -lssl -lcrypto $(EXTRA_SSL_LIBS) -lutil
 
 all: slush slushd
 
@@@@ -38,7 +38,7 @@@@
 install: $(SBINDIR)/slushd $(MANDIR)/slush.8
 
 cert:
-	ssleay req -new -x509 -nodes \
+	openssl req -new -x509 -nodes \
 		-out slushd.pem -days 365 -keyout slushd.pem
 
 clean:
@


1.3
log
@include ${PREFIX}/include/openssl due to openssl upgrade.
@
text
@d1 22
a22 38
*** Makefile.in.orig	Tue Apr  6 03:05:04 1999
--- Makefile.in	Sun May 16 21:37:14 1999
***************
*** 9,16 ****
  
  CC=@@CC@@
  INSTALL=@@INSTALL@@
! CFLAGS=@@CFLAGS@@ -Wall -DVERSION=\"$(VERSION)\" -I/usr/local/ssl/include -I/usr/include/ssl
! LIBS=@@LIBS@@ -L/usr/local/ssl/lib -lssl -lcrypto
  
  all: slush slushd
  
--- 9,16 ----
  
  CC=@@CC@@
  INSTALL=@@INSTALL@@
! CFLAGS=@@CFLAGS@@ -Wall -DVERSION=\"$(VERSION)\" -I/usr/local/include -I/usr/local/include/openssl
! LIBS=@@LIBS@@ -L/usr/local/lib -lssl -lcrypto $(EXTRA_SSL_LIBS) -lutil
  
  all: slush slushd
  
***************
*** 38,44 ****
  install: $(SBINDIR)/slushd $(MANDIR)/slush.8
  
  cert:
! 	ssleay req -new -x509 -nodes \
  		-out slushd.pem -days 365 -keyout slushd.pem
  
  clean:
--- 38,44 ----
  install: $(SBINDIR)/slushd $(MANDIR)/slush.8
  
  cert:
! 	openssl req -new -x509 -nodes \
  		-out slushd.pem -days 365 -keyout slushd.pem
  
  clean:
@


1.2
log
@Update to version 0.1.1.

PR:		11663
Submitted by:	maintainer
@
text
@d17 1
a17 1
! CFLAGS=@@CFLAGS@@ -Wall -DVERSION=\"$(VERSION)\" -I/usr/local/include
@


1.1
log
@Initial revision
@
text
@d2 1
a2 1
--- Makefile.in	Sun May  9 00:05:44 1999
d4 1
a4 1
*** 9,27 ****
d13 1
a13 12
  slushd: slushd.o common.o
! 	$(CC) $(LDFLAGS) -s -o $@@ slushd.o common.o $(LIBS)
  
  slushd.o: slushd.c common.o
  	$(CC) -c $(CFLAGS) slushd.c
  
  slush: slush.o common.o
! 	$(CC) $(LDFLAGS) -s -o $@@ slush.o common.o $(LIBS)
  
  slush.o: slush.c common.o
  	$(CC) -c $(CFLAGS) slush.c
--- 9,27 ----
a21 11
  slushd: slushd.o common.o
! 	$(CC) -static $(LDFLAGS) -o $@@ slushd.o common.o $(LIBS)
  
  slushd.o: slushd.c common.o
  	$(CC) -c $(CFLAGS) slushd.c
  
  slush: slush.o common.o
! 	$(CC) -static $(LDFLAGS) -o $@@ slush.o common.o $(LIBS)
  
  slush.o: slush.c common.o
  	$(CC) -c $(CFLAGS) slush.c
@


1.1.1.1
log
@Initial import of slush version 0.1.0.
A telnet-like application which uses a secure SSL channel.

PR:		11557
Submitted by:	Peter Shipley <shipley@@dis.org>
@
text
@@
