diff options
-rw-r--r-- | generic/tcl.decls | 2 | ||||
-rw-r--r-- | generic/tclDecls.h | 9 | ||||
-rw-r--r-- | generic/tclStubInit.c | 3 | ||||
-rw-r--r-- | unix/Makefile.in | 3 |
4 files changed, 10 insertions, 7 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 375fab8..39197c3 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -2628,7 +2628,7 @@ declare 685 { # ----- BASELINE -- FOR -- 8.7.0 / 9.0.0 ----- # -declare 687 { +declare 688 { void TclUnusedStubEntry(void) } diff --git a/generic/tclDecls.h b/generic/tclDecls.h index 4cc95c8..9b8d0d3 100644 --- a/generic/tclDecls.h +++ b/generic/tclDecls.h @@ -1862,7 +1862,8 @@ EXTERN int Tcl_GetWideUIntFromObj(Tcl_Interp *interp, /* 685 */ EXTERN Tcl_Obj * Tcl_DStringToObj(Tcl_DString *dsPtr); /* Slot 686 is reserved */ -/* 687 */ +/* Slot 687 is reserved */ +/* 688 */ EXTERN void TclUnusedStubEntry(void); typedef struct { @@ -2562,7 +2563,8 @@ typedef struct TclStubs { int (*tcl_GetWideUIntFromObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, Tcl_WideUInt *uwidePtr); /* 684 */ Tcl_Obj * (*tcl_DStringToObj) (Tcl_DString *dsPtr); /* 685 */ void (*reserved686)(void); - void (*tclUnusedStubEntry) (void); /* 687 */ + void (*reserved687)(void); + void (*tclUnusedStubEntry) (void); /* 688 */ } TclStubs; extern const TclStubs *tclStubsPtr; @@ -3888,8 +3890,9 @@ extern const TclStubs *tclStubsPtr; #define Tcl_DStringToObj \ (tclStubsPtr->tcl_DStringToObj) /* 685 */ /* Slot 686 is reserved */ +/* Slot 687 is reserved */ #define TclUnusedStubEntry \ - (tclStubsPtr->tclUnusedStubEntry) /* 687 */ + (tclStubsPtr->tclUnusedStubEntry) /* 688 */ #endif /* defined(USE_TCL_STUBS) */ diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 3f982e5..6171125 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -1511,7 +1511,8 @@ const TclStubs tclStubs = { Tcl_GetWideUIntFromObj, /* 684 */ Tcl_DStringToObj, /* 685 */ 0, /* 686 */ - TclUnusedStubEntry, /* 687 */ + 0, /* 687 */ + TclUnusedStubEntry, /* 688 */ }; /* !END!: Do not edit above this line. */ diff --git a/unix/Makefile.in b/unix/Makefile.in index 050b808..1bf5814 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -151,8 +151,7 @@ SHELL = @MAKEFILE_SHELL@ # distribution, which is slower but guaranteed to work. INSTALL_STRIP_PROGRAM = -s -# Use --strip-unneeded instead of -x. See issue 718de2132f487cf2 -INSTALL_STRIP_LIBRARY = -S --strip-unneeded +INSTALL_STRIP_LIBRARY = -S -x INSTALL = $(SHELL) $(UNIX_DIR)/install-sh -c INSTALL_PROGRAM = ${INSTALL} |