diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-10-13 13:50:10 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-10-13 13:50:10 (GMT) |
| commit | bfa39cdd57f5e52d610b1c1e7168718760e77b93 (patch) | |
| tree | 9398e4182a5a8e10d192f228d34b1b61554a8c5b /unix | |
| parent | e6a868c242fb7ad99bf71d9d57597761e1fec9ab (diff) | |
| download | tcl-bfa39cdd57f5e52d610b1c1e7168718760e77b93.zip tcl-bfa39cdd57f5e52d610b1c1e7168718760e77b93.tar.gz tcl-bfa39cdd57f5e52d610b1c1e7168718760e77b93.tar.bz2 | |
Fix warning on MacOSX: "/Library/Developer/CommandLineTools/usr/bin/ranlib: file: libtcl8.6.a(tclAlloc.o) has no symbols". Backported from 8.7
Diffstat (limited to 'unix')
| -rw-r--r-- | unix/tclUnixEvent.c | 4 | ||||
| -rw-r--r-- | unix/tclUnixNotfy.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/unix/tclUnixEvent.c b/unix/tclUnixEvent.c index 40aac6f..7161d18 100644 --- a/unix/tclUnixEvent.c +++ b/unix/tclUnixEvent.c @@ -3,7 +3,7 @@ * * This file implements Unix specific event related routines. * - * Copyright (c) 1997 by Sun Microsystems, Inc. + * Copyright (c) 1997 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. @@ -85,6 +85,8 @@ Tcl_Sleep( } } +#else +TCL_MAC_EMPTY_FILE(unix_tclUnixEvent_c) #endif /* HAVE_COREFOUNDATION */ /* * Local Variables: diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c index 4655327..0bee2f1 100644 --- a/unix/tclUnixNotfy.c +++ b/unix/tclUnixNotfy.c @@ -1483,6 +1483,8 @@ AtForkChild(void) #endif /* TCL_THREADS */ +#else +TCL_MAC_EMPTY_FILE(unix_tclUnixNotfy_c) #endif /* !HAVE_COREFOUNDATION */ /* |
