diff options
author | das <das@noemail.net> | 2004-11-12 19:08:00 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2004-11-12 19:08:00 (GMT) |
commit | 5c65fe6bfe45e555688691f3ddd81eb60087599a (patch) | |
tree | 3f4f7e834d66802e4a4cccec21703e68f30f9649 /unix/tclUnixInit.c | |
parent | a11a20aff67dfafed0616bdc26128bd3655af8f2 (diff) | |
download | tcl-5c65fe6bfe45e555688691f3ddd81eb60087599a.zip tcl-5c65fe6bfe45e555688691f3ddd81eb60087599a.tar.gz tcl-5c65fe6bfe45e555688691f3ddd81eb60087599a.tar.bz2 |
* unix/tclUnixInit.c: moved check for HAVE_CFBUNDLE define after
#include "tclInt.h" to ensure tclConfig.h has been included.
FossilOrigin-Name: 2e4cb21f124a9720cce3d32550c5d5a95b13f2ae
Diffstat (limited to 'unix/tclUnixInit.c')
-rw-r--r-- | unix/tclUnixInit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index 3fe1a0f..21ec34b 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -7,12 +7,9 @@ * Copyright (c) 1999 by Scriptics Corporation. * All rights reserved. * - * RCS: @(#) $Id: tclUnixInit.c,v 1.49 2004/09/22 15:51:53 msofer Exp $ + * RCS: @(#) $Id: tclUnixInit.c,v 1.50 2004/11/12 19:08:10 das Exp $ */ -#if defined(HAVE_CFBUNDLE) -#include <CoreFoundation/CoreFoundation.h> -#endif #include "tclInt.h" #include <stddef.h> #include <locale.h> @@ -29,6 +26,9 @@ # include <dlfcn.h> # endif #endif +#ifdef HAVE_CFBUNDLE +#include <CoreFoundation/CoreFoundation.h> +#endif /* * Define this if you want to revert to the old behavior of |