head	1.2;
access;
symbols
	RELENG_8_4:1.2.0.2
	RELENG_9_1_0_RELEASE:1.1.1.1
	RELENG_9_1:1.1.1.1.0.16
	RELENG_9_1_BP:1.1.1.1
	RELENG_8_3_0_RELEASE:1.1.1.1
	RELENG_8_3:1.1.1.1.0.14
	RELENG_8_3_BP:1.1.1.1
	RELENG_9_0_0_RELEASE:1.1.1.1
	RELENG_9_0:1.1.1.1.0.12
	RELENG_9_0_BP:1.1.1.1
	RELENG_9:1.1.1.1.0.10
	RELENG_9_BP:1.1.1.1
	RELENG_8_2_0_RELEASE:1.1.1.1
	RELENG_8_2:1.1.1.1.0.8
	RELENG_8_2_BP:1.1.1.1
	RELENG_8_1_0_RELEASE:1.1.1.1
	RELENG_8_1:1.1.1.1.0.6
	RELENG_8_1_BP:1.1.1.1
	RELENG_8_0_0_RELEASE:1.1.1.1
	RELENG_8_0:1.1.1.1.0.4
	RELENG_8_0_BP:1.1.1.1
	RELENG_8:1.1.1.1.0.2
	RELENG_8_BP:1.1.1.1
	v_1_1_0:1.1.1.1
	KTH:1.1.1;
locks; strict;
comment	@# @;


1.2
date	2012.03.22.08.48.42;	author stas;	state dead;
branches
	1.2.2.1;
next	1.1;

1.1
date	2008.05.07.13.39.13;	author dfr;	state Exp;
branches
	1.1.1.1;
next	;

1.2.2.1
date	2012.03.22.08.48.42;	author svnexp;	state dead;
branches;
next	1.2.2.2;

1.2.2.2
date	2013.03.28.13.02.24;	author svnexp;	state Exp;
branches;
next	;

1.1.1.1
date	2008.05.07.13.39.13;	author dfr;	state Exp;
branches;
next	;


desc
@@


1.2
log
@SVN rev 233294 on 2012-03-22 08:48:42Z by stas

- Update FreeBSD Heimdal distribution to version 1.5.1.  This also brings
  several new kerberos related libraries and applications to FreeBSD:
  o kgetcred(1) allows one to manually get a ticket for a particular service.
  o kf(1) securily forwards ticket to another host through an authenticated
    and encrypted stream.
  o kcc(1) is an umbrella program around klist(1), kswitch(1), kgetcred(1)
    and other user kerberos operations. klist and kswitch are just symlinks
    to kcc(1) now.
  o kswitch(1) allows you to easily switch between kerberos credentials if
    you're running KCM.
  o hxtool(1) is a certificate management tool to use with PKINIT.
  o string2key(1) maps a password into key.
  o kdigest(8) is a userland tool to access the KDC's digest interface.
  o kimpersonate(8) creates a "fake" ticket for a service.

  We also now install manpages for some lirbaries that were not installed
  before, libheimntlm and libhx509.

- The new HEIMDAL version no longer supports Kerberos 4.  All users are
  recommended to switch to Kerberos 5.

- Weak ciphers are now disabled by default.  To enable DES support (used
  by telnet(8)), use "allow_weak_crypto" option in krb5.conf.

- libtelnet, pam_ksu and pam_krb5 are now compiled with error on warnings
  disabled due to the function they use (krb5_get_err_text(3)) being
  deprecated.  I plan to work on this next.

- Heimdal's KDC now require sqlite to operate.  We use the bundled version
  and install it as libheimsqlite.  If some other FreeBSD components will
  require it in the future we can rename it to libbsdsqlite and use for these
  components as well.

- This is not a latest Heimdal version, the new one was released while I was
  working on the update.  I will update it to 1.5.2 soon, as it fixes some
  important bugs and security issues.
@
text
@Index: heimdal-0.7.2/appl/ftp/ftp/cmds.c
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftp/cmds.c	2005-04-18 17:45:12.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftp/cmds.c	2006-03-09 12:50:02.997025112 +1100
@@@@ -536,9 +536,17 @@@@
 
 	memset(&gl, 0, sizeof(gl));
 	flags = GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE;
+#ifdef HAVE_GLOB
 	if (glob(argv[i], flags, NULL, &gl) || gl.gl_pathc == 0) {
+#else
+	if (roken_glob(argv[i], flags, NULL, &gl) || gl.gl_pathc == 0) {
+#endif 
 	    warnx("%s: not found", argv[i]);
+#ifdef HAVE_GLOB
 	    globfree(&gl);
+#else
+	    roken_globfree(&gl);
+#endif
 	    continue;
 	}
 	for (cpp = gl.gl_pathv; cpp && *cpp != NULL; cpp++) {
@@@@ -559,7 +567,11 @@@@
 		}
 	    }
 	}
+#ifdef HAVE_GLOB
 	globfree(&gl);
+#else
+	roken_globfree(&gl);
+#endif
     }
     signal(SIGINT, oldintr);
     mflag = 0;
@@@@ -1568,14 +1580,27 @@@@
 
 	flags = GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE;
 	memset(&gl, 0, sizeof(gl));
+#ifdef HAVE_GLOB
 	if (glob(*cpp, flags, NULL, &gl) ||
+#else 
+	if (roken_glob(*cpp, flags, NULL, &gl) ||
+#endif
 	    gl.gl_pathc == 0) {
 		warnx("%s: not found", *cpp);
+#ifdef HAVE_GLOB
 		globfree(&gl);
+#else
+		roken_globfree(&gl);
+#endif
 		return (0);
 	}
 	*cpp = strdup(gl.gl_pathv[0]);	/* XXX - wasted memory */
+#ifdef HAVE_GLOB
 	globfree(&gl);
+#else
+	roken_globfree(&gl);
+#endif
+
 	return (1);
 }
 
Index: heimdal-0.7.2/appl/ftp/ftp/ftp_locl.h
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftp/ftp_locl.h	2002-09-11 06:03:46.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftp/ftp_locl.h	2006-03-09 12:50:02.998024960 +1100
@@@@ -101,7 +101,11 @@@@
 
 #include <errno.h>
 #include <ctype.h>
+#ifdef HAVE_GLOB
 #include <glob.h>
+#else
+#include <roken-glob.h>
+#endif 
 #ifdef HAVE_NETDB_H
 #include <netdb.h>
 #endif
Index: heimdal-0.7.2/appl/ftp/ftpd/ftpcmd.y
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftpd/ftpcmd.y	2004-08-20 23:31:19.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftpd/ftpcmd.y	2006-03-09 12:50:03.000024656 +1100
@@@@ -826,14 +826,22 @@@@
 				 GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE;
 
 				memset(&gl, 0, sizeof(gl));
+#ifdef HAVE_GLOB
 				if (glob($1, flags, NULL, &gl) ||
+#else
+				if (roken_glob($1, flags, NULL, &gl) ||
+#endif
 				    gl.gl_pathc == 0) {
 					reply(550, "not found");
 					$$ = NULL;
 				} else {
 					$$ = strdup(gl.gl_pathv[0]);
 				}
+#ifdef HAVE_GLOB
 				globfree(&gl);
+#else
+				roken_globfree(&gl);
+#endif
 				free($1);
 			} else
 				$$ = $1;
Index: heimdal-0.7.2/appl/ftp/ftpd/ftpd.c
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftpd/ftpd.c	2005-06-02 20:41:28.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftpd/ftpd.c	2006-03-09 12:50:03.003024200 +1100
@@@@ -2234,7 +2234,11 @@@@
 
 	memset(&gl, 0, sizeof(gl));
 	freeglob = 1;
+#ifdef HAVE_GLOB
 	if (glob(whichf, flags, 0, &gl)) {
+#else
+	if (roken_glob(whichf, flags, 0, &gl)) {
+#endif
 	    reply(550, "not found");
 	    goto out;
 	} else if (gl.gl_pathc == 0) {
@@@@ -2341,7 +2345,11 @@@@
     pdata = -1;
     if (freeglob) {
 	freeglob = 0;
+#ifdef HAVE_GLOB
 	globfree(&gl);
+#else
+	roken_globfree(&gl);
+#endif
     }
 }
 
Index: heimdal-0.7.2/appl/ftp/ftpd/ftpd_locl.h
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftpd/ftpd_locl.h	2005-04-25 05:58:14.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftpd/ftpd_locl.h	2006-03-09 12:50:03.004024048 +1100
@@@@ -106,7 +106,11 @@@@
 #ifdef HAVE_FCNTL_H
 #include <fcntl.h>
 #endif
+#ifdef HAVE_GLOB
 #include <glob.h>
+#else
+#include <roken-glob.h>
+#endif 
 #include <limits.h>
 #ifdef HAVE_PWD_H
 #include <pwd.h>
Index: heimdal-0.7.2/appl/ftp/ftpd/popen.c
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftpd/popen.c	2002-04-02 21:57:39.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftpd/popen.c	2006-03-09 12:50:03.013022680 +1100
@@@@ -55,7 +55,11 @@@@
 #include <sys/wait.h>
 
 #include <errno.h>
+#ifdef HAVE_GLOB
 #include <glob.h>
+#else
+#include <roken-glob.h>
+#endif
 #include <signal.h>
 #include <stdio.h>
 #include <stdlib.h>
@@@@ -149,7 +153,11 @@@@
 
 		memset(&gl, 0, sizeof(gl));
 		if (no_glob || 
+#ifdef HAVE_GLOB
 		    glob(argv[argc], flags, NULL, &gl) || 
+#else
+		    roken_glob(argv[argc], flags, NULL, &gl) ||
+#endif
 		    gl.gl_pathc == 0)
 			gargv[gargc++] = strdup(argv[argc]);
 		else
@@@@ -157,7 +165,11 @@@@
 			     *pop && gargc < MAXGLOBS - 1;
 			     pop++)
 				gargv[gargc++] = strdup(*pop);
+#ifdef HAVE_GLOB
 		globfree(&gl);
+#else
+		roken_globfree(&gl);
+#endif
 	}
 	gargv[gargc] = NULL;
 
Index: heimdal-0.7.2/lib/roken/glob.c
===================================================================
--- heimdal-0.7.2.orig/lib/roken/glob.c	2005-04-12 21:28:50.000000000 +1000
+++ heimdal-0.7.2/lib/roken/glob.c	2006-03-09 12:50:03.015022376 +1100
@@@@ -87,7 +87,7 @@@@
 #include <limits.h>
 #endif
 
-#include "glob.h"
+#include "roken-glob.h"
 #include "roken.h"
 
 #ifndef ARG_MAX
@@@@ -167,7 +167,7 @@@@
 #endif
 
 int ROKEN_LIB_FUNCTION
-glob(const char *pattern, 
+roken_glob(const char *pattern, 
      int flags, 
      int (*errfunc)(const char *, int), 
      glob_t *pglob)
@@@@ -742,7 +742,7 @@@@
 
 /* Free allocated data belonging to a glob_t structure. */
 void ROKEN_LIB_FUNCTION
-globfree(glob_t *pglob)
+roken_globfree(glob_t *pglob)
 {
 	int i;
 	char **pp;
Index: heimdal-0.7.2/lib/roken/glob.hin
===================================================================
--- heimdal-0.7.2.orig/lib/roken/glob.hin	2005-04-13 23:17:56.000000000 +1000
+++ heimdal-0.7.2/lib/roken/glob.hin	2006-03-09 12:50:03.016022224 +1100
@@@@ -32,8 +32,8 @@@@
  *	@@(#)glob.h	8.1 (Berkeley) 6/2/93
  */
 
-#ifndef _GLOB_H_
-#define	_GLOB_H_
+#ifndef _ROKEN_GLOB_H_
+#define	_ROKEN_GLOB_H_
 
 #ifndef ROKEN_LIB_FUNCTION
 #ifdef _WIN32
@@@@ -88,9 +88,9 @@@@
 #define	GLOB_ABEND	(-2)	/* Unignored error. */
 
 int ROKEN_LIB_FUNCTION
-glob (const char *, int, int (*)(const char *, int), glob_t *);
+roken_glob (const char *, int, int (*)(const char *, int), glob_t *);
 
 void ROKEN_LIB_FUNCTION
-globfree (glob_t *);
+roken_globfree (glob_t *);
 
-#endif /* !_GLOB_H_ */
+#endif /* !_ROKEN_GLOB_H_ */
Index: heimdal-0.7.2/lib/roken/Makefile.am
===================================================================
--- heimdal-0.7.2.orig/lib/roken/Makefile.am	2005-05-24 21:39:01.000000000 +1000
+++ heimdal-0.7.2/lib/roken/Makefile.am	2006-03-09 12:50:03.016022224 +1100
@@@@ -129,7 +129,7 @@@@
 if have_glob_h
 glob_h =
 else
-glob_h = glob.h
+glob_h = roken-glob.h
 endif
 
 if have_ifaddrs_h
@@@@ -170,6 +170,8 @@@@
 SUFFIXES += .hin
 .hin.h:
 	cp $< $@@
+roken-glob.h:
+	cp glob.hin roken-glob.h
 
 roken.h: make-roken$(EXEEXT)
 	@@./make-roken$(EXEEXT) > tmp.h ;\
@


1.2.2.1
log
@file 022_ftp-roken-glob was added on branch RELENG_8_4 on 2013-03-28 13:02:24 +0000
@
text
@d1 270
@


1.2.2.2
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/248810
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@a0 270
Index: heimdal-0.7.2/appl/ftp/ftp/cmds.c
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftp/cmds.c	2005-04-18 17:45:12.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftp/cmds.c	2006-03-09 12:50:02.997025112 +1100
@@@@ -536,9 +536,17 @@@@
 
 	memset(&gl, 0, sizeof(gl));
 	flags = GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE;
+#ifdef HAVE_GLOB
 	if (glob(argv[i], flags, NULL, &gl) || gl.gl_pathc == 0) {
+#else
+	if (roken_glob(argv[i], flags, NULL, &gl) || gl.gl_pathc == 0) {
+#endif 
 	    warnx("%s: not found", argv[i]);
+#ifdef HAVE_GLOB
 	    globfree(&gl);
+#else
+	    roken_globfree(&gl);
+#endif
 	    continue;
 	}
 	for (cpp = gl.gl_pathv; cpp && *cpp != NULL; cpp++) {
@@@@ -559,7 +567,11 @@@@
 		}
 	    }
 	}
+#ifdef HAVE_GLOB
 	globfree(&gl);
+#else
+	roken_globfree(&gl);
+#endif
     }
     signal(SIGINT, oldintr);
     mflag = 0;
@@@@ -1568,14 +1580,27 @@@@
 
 	flags = GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE;
 	memset(&gl, 0, sizeof(gl));
+#ifdef HAVE_GLOB
 	if (glob(*cpp, flags, NULL, &gl) ||
+#else 
+	if (roken_glob(*cpp, flags, NULL, &gl) ||
+#endif
 	    gl.gl_pathc == 0) {
 		warnx("%s: not found", *cpp);
+#ifdef HAVE_GLOB
 		globfree(&gl);
+#else
+		roken_globfree(&gl);
+#endif
 		return (0);
 	}
 	*cpp = strdup(gl.gl_pathv[0]);	/* XXX - wasted memory */
+#ifdef HAVE_GLOB
 	globfree(&gl);
+#else
+	roken_globfree(&gl);
+#endif
+
 	return (1);
 }
 
Index: heimdal-0.7.2/appl/ftp/ftp/ftp_locl.h
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftp/ftp_locl.h	2002-09-11 06:03:46.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftp/ftp_locl.h	2006-03-09 12:50:02.998024960 +1100
@@@@ -101,7 +101,11 @@@@
 
 #include <errno.h>
 #include <ctype.h>
+#ifdef HAVE_GLOB
 #include <glob.h>
+#else
+#include <roken-glob.h>
+#endif 
 #ifdef HAVE_NETDB_H
 #include <netdb.h>
 #endif
Index: heimdal-0.7.2/appl/ftp/ftpd/ftpcmd.y
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftpd/ftpcmd.y	2004-08-20 23:31:19.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftpd/ftpcmd.y	2006-03-09 12:50:03.000024656 +1100
@@@@ -826,14 +826,22 @@@@
 				 GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE;
 
 				memset(&gl, 0, sizeof(gl));
+#ifdef HAVE_GLOB
 				if (glob($1, flags, NULL, &gl) ||
+#else
+				if (roken_glob($1, flags, NULL, &gl) ||
+#endif
 				    gl.gl_pathc == 0) {
 					reply(550, "not found");
 					$$ = NULL;
 				} else {
 					$$ = strdup(gl.gl_pathv[0]);
 				}
+#ifdef HAVE_GLOB
 				globfree(&gl);
+#else
+				roken_globfree(&gl);
+#endif
 				free($1);
 			} else
 				$$ = $1;
Index: heimdal-0.7.2/appl/ftp/ftpd/ftpd.c
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftpd/ftpd.c	2005-06-02 20:41:28.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftpd/ftpd.c	2006-03-09 12:50:03.003024200 +1100
@@@@ -2234,7 +2234,11 @@@@
 
 	memset(&gl, 0, sizeof(gl));
 	freeglob = 1;
+#ifdef HAVE_GLOB
 	if (glob(whichf, flags, 0, &gl)) {
+#else
+	if (roken_glob(whichf, flags, 0, &gl)) {
+#endif
 	    reply(550, "not found");
 	    goto out;
 	} else if (gl.gl_pathc == 0) {
@@@@ -2341,7 +2345,11 @@@@
     pdata = -1;
     if (freeglob) {
 	freeglob = 0;
+#ifdef HAVE_GLOB
 	globfree(&gl);
+#else
+	roken_globfree(&gl);
+#endif
     }
 }
 
Index: heimdal-0.7.2/appl/ftp/ftpd/ftpd_locl.h
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftpd/ftpd_locl.h	2005-04-25 05:58:14.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftpd/ftpd_locl.h	2006-03-09 12:50:03.004024048 +1100
@@@@ -106,7 +106,11 @@@@
 #ifdef HAVE_FCNTL_H
 #include <fcntl.h>
 #endif
+#ifdef HAVE_GLOB
 #include <glob.h>
+#else
+#include <roken-glob.h>
+#endif 
 #include <limits.h>
 #ifdef HAVE_PWD_H
 #include <pwd.h>
Index: heimdal-0.7.2/appl/ftp/ftpd/popen.c
===================================================================
--- heimdal-0.7.2.orig/appl/ftp/ftpd/popen.c	2002-04-02 21:57:39.000000000 +1000
+++ heimdal-0.7.2/appl/ftp/ftpd/popen.c	2006-03-09 12:50:03.013022680 +1100
@@@@ -55,7 +55,11 @@@@
 #include <sys/wait.h>
 
 #include <errno.h>
+#ifdef HAVE_GLOB
 #include <glob.h>
+#else
+#include <roken-glob.h>
+#endif
 #include <signal.h>
 #include <stdio.h>
 #include <stdlib.h>
@@@@ -149,7 +153,11 @@@@
 
 		memset(&gl, 0, sizeof(gl));
 		if (no_glob || 
+#ifdef HAVE_GLOB
 		    glob(argv[argc], flags, NULL, &gl) || 
+#else
+		    roken_glob(argv[argc], flags, NULL, &gl) ||
+#endif
 		    gl.gl_pathc == 0)
 			gargv[gargc++] = strdup(argv[argc]);
 		else
@@@@ -157,7 +165,11 @@@@
 			     *pop && gargc < MAXGLOBS - 1;
 			     pop++)
 				gargv[gargc++] = strdup(*pop);
+#ifdef HAVE_GLOB
 		globfree(&gl);
+#else
+		roken_globfree(&gl);
+#endif
 	}
 	gargv[gargc] = NULL;
 
Index: heimdal-0.7.2/lib/roken/glob.c
===================================================================
--- heimdal-0.7.2.orig/lib/roken/glob.c	2005-04-12 21:28:50.000000000 +1000
+++ heimdal-0.7.2/lib/roken/glob.c	2006-03-09 12:50:03.015022376 +1100
@@@@ -87,7 +87,7 @@@@
 #include <limits.h>
 #endif
 
-#include "glob.h"
+#include "roken-glob.h"
 #include "roken.h"
 
 #ifndef ARG_MAX
@@@@ -167,7 +167,7 @@@@
 #endif
 
 int ROKEN_LIB_FUNCTION
-glob(const char *pattern, 
+roken_glob(const char *pattern, 
      int flags, 
      int (*errfunc)(const char *, int), 
      glob_t *pglob)
@@@@ -742,7 +742,7 @@@@
 
 /* Free allocated data belonging to a glob_t structure. */
 void ROKEN_LIB_FUNCTION
-globfree(glob_t *pglob)
+roken_globfree(glob_t *pglob)
 {
 	int i;
 	char **pp;
Index: heimdal-0.7.2/lib/roken/glob.hin
===================================================================
--- heimdal-0.7.2.orig/lib/roken/glob.hin	2005-04-13 23:17:56.000000000 +1000
+++ heimdal-0.7.2/lib/roken/glob.hin	2006-03-09 12:50:03.016022224 +1100
@@@@ -32,8 +32,8 @@@@
  *	@@(#)glob.h	8.1 (Berkeley) 6/2/93
  */
 
-#ifndef _GLOB_H_
-#define	_GLOB_H_
+#ifndef _ROKEN_GLOB_H_
+#define	_ROKEN_GLOB_H_
 
 #ifndef ROKEN_LIB_FUNCTION
 #ifdef _WIN32
@@@@ -88,9 +88,9 @@@@
 #define	GLOB_ABEND	(-2)	/* Unignored error. */
 
 int ROKEN_LIB_FUNCTION
-glob (const char *, int, int (*)(const char *, int), glob_t *);
+roken_glob (const char *, int, int (*)(const char *, int), glob_t *);
 
 void ROKEN_LIB_FUNCTION
-globfree (glob_t *);
+roken_globfree (glob_t *);
 
-#endif /* !_GLOB_H_ */
+#endif /* !_ROKEN_GLOB_H_ */
Index: heimdal-0.7.2/lib/roken/Makefile.am
===================================================================
--- heimdal-0.7.2.orig/lib/roken/Makefile.am	2005-05-24 21:39:01.000000000 +1000
+++ heimdal-0.7.2/lib/roken/Makefile.am	2006-03-09 12:50:03.016022224 +1100
@@@@ -129,7 +129,7 @@@@
 if have_glob_h
 glob_h =
 else
-glob_h = glob.h
+glob_h = roken-glob.h
 endif
 
 if have_ifaddrs_h
@@@@ -170,6 +170,8 @@@@
 SUFFIXES += .hin
 .hin.h:
 	cp $< $@@
+roken-glob.h:
+	cp glob.hin roken-glob.h
 
 roken.h: make-roken$(EXEEXT)
 	@@./make-roken$(EXEEXT) > tmp.h ;\
@


1.1
log
@Initial revision
@
text
@@


1.1.1.1
log
@Vendor import of Heimdal 1.1
@
text
@@
