]> git.saurik.com Git - apple/security.git/blobdiff - SecuritySNACCRuntime/c++-lib/c++/tkAppInit.c
Security-163.tar.gz
[apple/security.git] / SecuritySNACCRuntime / c++-lib / c++ / tkAppInit.c
diff --git a/SecuritySNACCRuntime/c++-lib/c++/tkAppInit.c b/SecuritySNACCRuntime/c++-lib/c++/tkAppInit.c
deleted file mode 100644 (file)
index 60dec14..0000000
+++ /dev/null
@@ -1,139 +0,0 @@
-/*
- * Copyright (c) 2000-2001 Apple Computer, Inc. All Rights Reserved.
- * 
- * The contents of this file constitute Original Code as defined in and are
- * subject to the Apple Public Source License Version 1.2 (the 'License').
- * You may not use this file except in compliance with the License. Please obtain
- * a copy of the License at http://www.apple.com/publicsource and read it before
- * using this file.
- * 
- * This Original Code and all software distributed under the License are
- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS
- * OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
- * LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
- * specific language governing rights and limitations under the License.
- */
-
-
-/*
- * snacced -   Snacc_Init added to the default tkXAppInit.
- *
- * $Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/tkAppInit.c,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
- * $Log: tkAppInit.c,v $
- * Revision 1.1.1.1  2001/05/18 23:14:06  mb
- * Move from private repository to open source repository
- *
- * Revision 1.3  2001/05/05 00:59:17  rmurphy
- * Adding darwin license headers
- *
- * Revision 1.2  2000/06/15 18:44:59  dmitch
- * These snacc-generated source files are now checked in to allow cross-platform build.
- *
- * Revision 1.2  2000/06/08 20:05:37  dmitch
- * Mods for X port. These files are actually machine generated and probably don't need to be in CVS....
- *
- * Revision 1.1.1.1  2000/03/09 01:00:06  rmurphy
- * Base Fortissimo Tree
- *
- * Revision 1.1  1999/02/25 05:21:58  mb
- * Added snacc c++ library
- *
- * Revision 1.2  1997/02/28 13:39:48  wan
- * Modifications collected for new version 1.3: Bug fixes, tk4.2.
- *
- * Revision 1.1  1997/01/02 09:07:59  rj
- * first check-in
- *
- */
-
-#ifndef        __APPLE__
-/* I don't know why this gets configd to build but we don't have tk.h */
-
-#include "snacc.h"
-
-#if TCL
-
-/* 
- * tkXAppInit.c --
- *
- *      Provides a default version of the TclX_AppInit procedure for use with
- *      applications built with Extended Tcl and Tk.  This is based on the
- *      the UCB Tk file tkAppInit.c
- *
- *-----------------------------------------------------------------------------
- * Copyright 1991-1993 Karl Lehenbauer and Mark Diekhans.
- *
- * Permission to use, copy, modify, and distribute this software and its
- * documentation for any purpose and without fee is hereby granted, provided
- * that the above copyright notice appear in all copies.  Karl Lehenbauer and
- * Mark Diekhans make no representations about the suitability of this
- * software for any purpose.  It is provided "as is" without express or
- * implied warranty.
- *-----------------------------------------------------------------------------
- * $Id: tkAppInit.c,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $
- *-----------------------------------------------------------------------------
- * Copyright (c) 1993 The Regents of the University of California.
- * All rights reserved.
- *
- * Permission is hereby granted, without written agreement and without
- * license or royalty fees, to use, copy, modify, and distribute this
- * software and its documentation for any purpose, provided that the
- * above copyright notice and the following two paragraphs appear in
- * all copies of this software.
- * 
- * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
- * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
- * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
- * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
- * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
- * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
- * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
- * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
- */
-
-#ifndef lint
-static char rcsid[] = "$Header: /cvs/root/Security/SecuritySNACCRuntime/c++-lib/c++/Attic/tkAppInit.c,v 1.1.1.1 2001/05/18 23:14:06 mb Exp $ SPRITE (Berkeley)";
-#endif /* not lint */
-
-#include <tk.h>
-
-#include "init.h"
-
-int
-main(argc, argv)
-    int argc;                   /* Number of command-line arguments. */
-    char **argv;                /* Values of command-line arguments. */
-{
-    Tk_Main(argc, argv, Tcl_AppInit);
-    return 0;                   /* Needed only to prevent compiler warning. */
-}
-
-int
-Tcl_AppInit (interp)
-    Tcl_Interp *interp;                /* Interpreter for application. */
-{
-    if (Tcl_Init(interp) == TCL_ERROR) {
-        return TCL_ERROR;
-    }
-    if (Tk_Init(interp) == TCL_ERROR) {
-        return TCL_ERROR;
-    }
-    Tcl_StaticPackage(interp, "Tk", Tk_Init, (Tcl_PackageInitProc *) NULL);
-
-    if (Snacc_Init (interp) == TCL_ERROR)
-       return TCL_ERROR;
-
-    if (Tree_Init (interp) == TCL_ERROR)
-       return TCL_ERROR;
-
-    Tcl_SetVar (interp, "tcl_rcFileName", "~/.snaccedrc", TCL_GLOBAL_ONLY);
-
-    return TCL_OK;
-}
-
-#endif
-
-#endif // Apple