]> andersk Git - gssapi-openssh.git/blobdiff - openssh/contrib/findssl.sh
Import of OpenSSH 4.0p1
[gssapi-openssh.git] / openssh / contrib / findssl.sh
index c01f35a5ccfe5cb96755869de7e11f97da9721d5..a4e8f4c83f6584f96eb0ddf62e7c5dccef985d60 100644 (file)
@@ -1,5 +1,7 @@
 #!/bin/sh
 #
+# $Id$
+#
 # findssl.sh
 #      Search for all instances of OpenSSL headers and libraries
 #      and print their versions.
 #      Written by Darren Tucker (dtucker at zip dot com dot au)
 #      This file is placed in the public domain.
 #
-# $Id$
+#      Release history:
 #      2002-07-27: Initial release.
 #      2002-08-04: Added public domain notice.
 #      2003-06-24: Incorporated readme, set library paths. First cvs version.
+#      2004-12-13: Add traps to cleanup temp files, from Amarendra Godbole.
 #
 # "OpenSSL headers do not match your library" are usually caused by
 # OpenSSH's configure picking up an older version of OpenSSL headers
 CC=gcc
 STATIC=-static
 
+#
+# Cleanup on interrupt
+#
+trap 'rm -f conftest.c' INT HUP TERM
+
 #
 # Set up conftest C source
 #
This page took 0.127143 seconds and 4 git commands to generate.