mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-29 02:22:43 +00:00
Remove files that were dropped from Heimdal Kerberos 2002/02/17.
This commit is contained in:
parent
bc865db654
commit
70d0374720
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=90930
@ -1,38 +0,0 @@
|
||||
dnl $Id: grok-type.m4,v 1.4 1999/11/29 11:16:48 joda Exp $
|
||||
dnl
|
||||
AC_DEFUN(AC_GROK_TYPE, [
|
||||
AC_CACHE_VAL(ac_cv_type_$1,
|
||||
AC_TRY_COMPILE([
|
||||
#ifdef HAVE_INTTYPES_H
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
#ifdef HAVE_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
#ifdef HAVE_SYS_BITYPES_H
|
||||
#include <sys/bitypes.h>
|
||||
#endif
|
||||
#ifdef HAVE_BIND_BITYPES_H
|
||||
#include <bind/bitypes.h>
|
||||
#endif
|
||||
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
||||
#include <netinet/in6_machtypes.h>
|
||||
#endif
|
||||
],
|
||||
$i x;
|
||||
,
|
||||
eval ac_cv_type_$1=yes,
|
||||
eval ac_cv_type_$1=no))])
|
||||
|
||||
AC_DEFUN(AC_GROK_TYPES, [
|
||||
for i in $1; do
|
||||
AC_MSG_CHECKING(for $i)
|
||||
AC_GROK_TYPE($i)
|
||||
eval ac_res=\$ac_cv_type_$i
|
||||
if test "$ac_res" = yes; then
|
||||
type=HAVE_[]upcase($i)
|
||||
AC_DEFINE_UNQUOTED($type)
|
||||
fi
|
||||
AC_MSG_RESULT($ac_res)
|
||||
done
|
||||
])
|
@ -1,100 +0,0 @@
|
||||
dnl $Id: krb-find-db.m4,v 1.6 2000/08/16 03:58:51 assar Exp $
|
||||
dnl
|
||||
dnl find a suitable database library
|
||||
dnl
|
||||
dnl AC_FIND_DB(libraries)
|
||||
AC_DEFUN(KRB_FIND_DB, [
|
||||
|
||||
lib_dbm=no
|
||||
lib_db=no
|
||||
|
||||
for i in $1; do
|
||||
|
||||
if test "$i"; then
|
||||
m="lib$i"
|
||||
l="-l$i"
|
||||
else
|
||||
m="libc"
|
||||
l=""
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING(for dbm_open in $m)
|
||||
AC_CACHE_VAL(ac_cv_krb_dbm_open_$m, [
|
||||
|
||||
save_LIBS="$LIBS"
|
||||
LIBS="$l $LIBS"
|
||||
AC_TRY_RUN([
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#if defined(HAVE_NDBM_H)
|
||||
#include <ndbm.h>
|
||||
#elif defined(HAVE_GDBM_NDBM_H)
|
||||
#include <gdbm/ndbm.h>
|
||||
#elif defined(HAVE_DBM_H)
|
||||
#include <dbm.h>
|
||||
#elif defined(HAVE_RPCSVC_DBM_H)
|
||||
#include <rpcsvc/dbm.h>
|
||||
#elif defined(HAVE_DB_H)
|
||||
#define DB_DBM_HSEARCH 1
|
||||
#include <db.h>
|
||||
#endif
|
||||
int main()
|
||||
{
|
||||
DBM *d;
|
||||
|
||||
d = dbm_open("conftest", O_RDWR | O_CREAT, 0666);
|
||||
if(d == NULL)
|
||||
return 1;
|
||||
dbm_close(d);
|
||||
return 0;
|
||||
}], [
|
||||
if test -f conftest.db; then
|
||||
ac_res=db
|
||||
else
|
||||
ac_res=dbm
|
||||
fi], ac_res=no, ac_res=no)
|
||||
|
||||
LIBS="$save_LIBS"
|
||||
|
||||
eval ac_cv_krb_dbm_open_$m=$ac_res])
|
||||
eval ac_res=\$ac_cv_krb_dbm_open_$m
|
||||
AC_MSG_RESULT($ac_res)
|
||||
|
||||
if test "$lib_dbm" = no -a $ac_res = dbm; then
|
||||
lib_dbm="$l"
|
||||
elif test "$lib_db" = no -a $ac_res = db; then
|
||||
lib_db="$l"
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
AC_MSG_CHECKING(for NDBM library)
|
||||
ac_ndbm=no
|
||||
if test "$lib_db" != no; then
|
||||
LIB_DBM="$lib_db"
|
||||
ac_ndbm=yes
|
||||
AC_DEFINE(HAVE_NEW_DB, 1, [Define if NDBM really is DB (creates files ending in .db).])
|
||||
if test "$LIB_DBM"; then
|
||||
ac_res="yes, $LIB_DBM"
|
||||
else
|
||||
ac_res=yes
|
||||
fi
|
||||
elif test "$lib_dbm" != no; then
|
||||
LIB_DBM="$lib_dbm"
|
||||
ac_ndbm=yes
|
||||
if test "$LIB_DBM"; then
|
||||
ac_res="yes, $LIB_DBM"
|
||||
else
|
||||
ac_res=yes
|
||||
fi
|
||||
else
|
||||
LIB_DBM=""
|
||||
ac_res=no
|
||||
fi
|
||||
test "$ac_ndbm" = yes && AC_DEFINE(NDBM, 1, [Define if you have NDBM (and not DBM)])dnl
|
||||
AC_SUBST(LIB_DBM)
|
||||
DBLIB="$LIB_DBM"
|
||||
AC_SUBST(DBLIB)
|
||||
AC_MSG_RESULT($ac_res)
|
||||
|
||||
])
|
@ -1,192 +0,0 @@
|
||||
dnl
|
||||
dnl $Id: shared-libs.m4,v 1.6 2000/11/17 02:59:27 assar Exp $
|
||||
dnl
|
||||
dnl Shared library stuff has to be different everywhere
|
||||
dnl
|
||||
|
||||
AC_DEFUN(AC_SHARED_LIBS, [
|
||||
|
||||
dnl Check if we want to use shared libraries
|
||||
AC_ARG_ENABLE(shared,
|
||||
[ --enable-shared create shared libraries for Kerberos])
|
||||
|
||||
AC_SUBST(CFLAGS)dnl
|
||||
AC_SUBST(LDFLAGS)dnl
|
||||
|
||||
case ${enable_shared} in
|
||||
yes ) enable_shared=yes;;
|
||||
no ) enable_shared=no;;
|
||||
* ) enable_shared=no;;
|
||||
esac
|
||||
|
||||
# NOTE: Building shared libraries may not work if you do not use gcc!
|
||||
#
|
||||
# OS $SHLIBEXT
|
||||
# HP-UX sl
|
||||
# Linux so
|
||||
# NetBSD so
|
||||
# FreeBSD so
|
||||
# OSF so
|
||||
# SunOS5 so
|
||||
# SunOS4 so.0.5
|
||||
# Irix so
|
||||
#
|
||||
# LIBEXT is the extension we should build (.a or $SHLIBEXT)
|
||||
LINK='$(CC)'
|
||||
AC_SUBST(LINK)
|
||||
lib_deps=yes
|
||||
REAL_PICFLAGS="-fpic"
|
||||
LDSHARED='$(CC) $(PICFLAGS) -shared'
|
||||
LIBPREFIX=lib
|
||||
build_symlink_command=@true
|
||||
install_symlink_command=@true
|
||||
install_symlink_command2=@true
|
||||
REAL_SHLIBEXT=so
|
||||
changequote({,})dnl
|
||||
SHLIB_VERSION=`echo $VERSION | sed 's/\([0-9.]*\).*/\1/'`
|
||||
SHLIB_SONAME=`echo $VERSION | sed 's/\([0-9]*\).*/\1/'`
|
||||
changequote([,])dnl
|
||||
case "${host}" in
|
||||
*-*-hpux*)
|
||||
REAL_SHLIBEXT=sl
|
||||
REAL_LD_FLAGS='-Wl,+b$(libdir)'
|
||||
if test -z "$GCC"; then
|
||||
LDSHARED="ld -b"
|
||||
REAL_PICFLAGS="+z"
|
||||
fi
|
||||
lib_deps=no
|
||||
;;
|
||||
*-*-linux*)
|
||||
LDSHARED='$(CC) -shared -Wl,-soname,$(LIBNAME).so.'"${SHLIB_SONAME}"
|
||||
REAL_LD_FLAGS='-Wl,-rpath,$(libdir)'
|
||||
REAL_SHLIBEXT=so.$SHLIB_VERSION
|
||||
build_symlink_command='$(LN_S) -f [$][@] $(LIBNAME).so'
|
||||
install_symlink_command='$(LN_S) -f $(LIB) $(DESTDIR)$(libdir)/$(LIBNAME).so.'"${SHLIB_SONAME}"';$(LN_S) -f $(LIB) $(DESTDIR)$(libdir)/$(LIBNAME).so'
|
||||
install_symlink_command2='$(LN_S) -f $(LIB2) $(DESTDIR)$(libdir)/$(LIBNAME2).so.'"${SHLIB_SONAME}"';$(LN_S) -f $(LIB2) $(DESTDIR)$(libdir)/$(LIBNAME2).so'
|
||||
;;
|
||||
changequote(,)dnl
|
||||
*-*-freebsd[345]* | *-*-freebsdelf[345]*)
|
||||
changequote([,])dnl
|
||||
REAL_SHLIBEXT=so.$SHLIB_VERSION
|
||||
REAL_LD_FLAGS='-Wl,-R$(libdir)'
|
||||
build_symlink_command='$(LN_S) -f [$][@] $(LIBNAME).so'
|
||||
install_symlink_command='$(LN_S) -f $(LIB) $(DESTDIR)$(libdir)/$(LIBNAME).so'
|
||||
install_symlink_command2='$(LN_S) -f $(LIB2) $(DESTDIR)$(libdir)/$(LIBNAME2).so'
|
||||
;;
|
||||
*-*-*bsd*)
|
||||
REAL_SHLIBEXT=so.$SHLIB_VERSION
|
||||
LDSHARED='ld -Bshareable'
|
||||
REAL_LD_FLAGS='-Wl,-R$(libdir)'
|
||||
;;
|
||||
*-*-osf*)
|
||||
REAL_LD_FLAGS='-Wl,-rpath,$(libdir)'
|
||||
REAL_PICFLAGS=
|
||||
LDSHARED='ld -shared -expect_unresolved \*'
|
||||
;;
|
||||
*-*-solaris2*)
|
||||
LDSHARED='$(CC) -shared -Wl,-soname,$(LIBNAME).so.'"${SHLIB_SONAME}"
|
||||
REAL_SHLIBEXT=so.$SHLIB_VERSION
|
||||
build_symlink_command='$(LN_S) [$][@] $(LIBNAME).so'
|
||||
install_symlink_command='$(LN_S) $(LIB) $(DESTDIR)$(libdir)/$(LIBNAME).so.'"${SHLIB_SONAME}"';$(LN_S) $(LIB) $(DESTDIR)$(libdir)/$(LIBNAME).so'
|
||||
install_symlink_command2='$(LN_S) $(LIB2) $(DESTDIR)$(libdir)/$(LIBNAME2).so.'"${SHLIB_SONAME}"';$(LN_S) $(LIB2) $(DESTDIR)$(libdir)/$(LIBNAME2).so'
|
||||
REAL_LD_FLAGS='-Wl,-R$(libdir)'
|
||||
if test -z "$GCC"; then
|
||||
LDSHARED='$(CC) -G -h$(LIBNAME).so.'"${SHLIB_SONAME}"
|
||||
REAL_PICFLAGS="-Kpic"
|
||||
fi
|
||||
;;
|
||||
*-fujitsu-uxpv*)
|
||||
REAL_LD_FLAGS='' # really: LD_RUN_PATH=$(libdir) cc -o ...
|
||||
REAL_LINK='LD_RUN_PATH=$(libdir) $(CC)'
|
||||
LDSHARED='$(CC) -G'
|
||||
REAL_PICFLAGS="-Kpic"
|
||||
lib_deps=no # fails in mysterious ways
|
||||
;;
|
||||
*-*-sunos*)
|
||||
REAL_SHLIBEXT=so.$SHLIB_VERSION
|
||||
REAL_LD_FLAGS='-Wl,-L$(libdir)'
|
||||
lib_deps=no
|
||||
;;
|
||||
*-*-irix*)
|
||||
libdir="${libdir}${abilibdirext}"
|
||||
REAL_LD_FLAGS="${abi} -Wl,-rpath,\$(libdir)"
|
||||
LD_FLAGS="${abi} -Wl,-rpath,\$(libdir)"
|
||||
LDSHARED="\$(CC) -shared ${abi}"
|
||||
REAL_PICFLAGS=
|
||||
CFLAGS="${abi} ${CFLAGS}"
|
||||
;;
|
||||
*-*-os2*)
|
||||
LIBPREFIX=
|
||||
EXECSUFFIX='.exe'
|
||||
RANLIB=EMXOMF
|
||||
LD_FLAGS=-Zcrtdll
|
||||
REAL_SHLIBEXT=nobuild
|
||||
;;
|
||||
*-*-cygwin32*)
|
||||
EXECSUFFIX='.exe'
|
||||
REAL_SHLIBEXT=nobuild
|
||||
;;
|
||||
*) REAL_SHLIBEXT=nobuild
|
||||
REAL_PICFLAGS=
|
||||
;;
|
||||
esac
|
||||
|
||||
if test "${enable_shared}" != "yes" ; then
|
||||
PICFLAGS=""
|
||||
SHLIBEXT="nobuild"
|
||||
LIBEXT="a"
|
||||
build_symlink_command=@true
|
||||
install_symlink_command=@true
|
||||
install_symlink_command2=@true
|
||||
else
|
||||
PICFLAGS="$REAL_PICFLAGS"
|
||||
SHLIBEXT="$REAL_SHLIBEXT"
|
||||
LIBEXT="$SHLIBEXT"
|
||||
AC_MSG_CHECKING(whether to use -rpath)
|
||||
case "$libdir" in
|
||||
/lib | /usr/lib | /usr/local/lib)
|
||||
AC_MSG_RESULT(no)
|
||||
REAL_LD_FLAGS=
|
||||
LD_FLAGS=
|
||||
;;
|
||||
*)
|
||||
LD_FLAGS="$REAL_LD_FLAGS"
|
||||
test "$REAL_LINK" && LINK="$REAL_LINK"
|
||||
AC_MSG_RESULT($LD_FLAGS)
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
if test "$lib_deps" = yes; then
|
||||
lib_deps_yes=""
|
||||
lib_deps_no="# "
|
||||
else
|
||||
lib_deps_yes="# "
|
||||
lib_deps_no=""
|
||||
fi
|
||||
AC_SUBST(lib_deps_yes)
|
||||
AC_SUBST(lib_deps_no)
|
||||
|
||||
# use supplied ld-flags, or none if `no'
|
||||
if test "$with_ld_flags" = no; then
|
||||
LD_FLAGS=
|
||||
elif test -n "$with_ld_flags"; then
|
||||
LD_FLAGS="$with_ld_flags"
|
||||
fi
|
||||
|
||||
AC_SUBST(REAL_PICFLAGS) dnl
|
||||
AC_SUBST(REAL_SHLIBEXT) dnl
|
||||
AC_SUBST(REAL_LD_FLAGS) dnl
|
||||
|
||||
AC_SUBST(PICFLAGS) dnl
|
||||
AC_SUBST(SHLIBEXT) dnl
|
||||
AC_SUBST(LDSHARED) dnl
|
||||
AC_SUBST(LD_FLAGS) dnl
|
||||
AC_SUBST(LIBEXT) dnl
|
||||
AC_SUBST(LIBPREFIX) dnl
|
||||
AC_SUBST(EXECSUFFIX) dnl
|
||||
|
||||
AC_SUBST(build_symlink_command)dnl
|
||||
AC_SUBST(install_symlink_command)dnl
|
||||
AC_SUBST(install_symlink_command2)dnl
|
||||
])
|
@ -1,51 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 1997 - 2001 Kungliga Tekniska Högskolan
|
||||
* (Royal Institute of Technology, Stockholm, Sweden).
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* 3. Neither the name of the Institute nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/* $Id: libasn1.h,v 1.9 2001/04/18 13:10:24 joda Exp $ */
|
||||
|
||||
#ifndef __LIBASN1_H__
|
||||
#define __LIBASN1_H__
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include "krb5_asn1.h"
|
||||
#include "der.h"
|
||||
#include "asn1_err.h"
|
||||
#include <parse_units.h>
|
||||
|
||||
#endif /* __LIBASN1_H__ */
|
@ -1,51 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2001 Kungliga Tekniska Högskolan
|
||||
* (Royal Institute of Technology, Stockholm, Sweden).
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* 3. Neither the name of the Institute nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/* $Id: libasn1.h,v 1.5 2001/04/18 16:21:33 joda Exp $ */
|
||||
|
||||
#ifndef __LIBASN1_H__
|
||||
#define __LIBASN1_H__
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
#include <krb5_asn1.h>
|
||||
#include <der.h>
|
||||
#include "hdb_asn1.h"
|
||||
#include <asn1_err.h>
|
||||
#include <parse_units.h>
|
||||
|
||||
#endif /* __LIBASN1_H__ */
|
Loading…
Reference in New Issue
Block a user