From fa0802e60c47934f72159cb04f454ea2d96f5af6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Fri, 10 Mar 2000 12:06:34 -0800 Subject: [PATCH] added a FIXME Rev: src/lexer.h:1.16 Rev: src/modules/dynamic_module_makefile.in:1.64 --- src/lexer.h | 3 ++- src/modules/dynamic_module_makefile.in | 6 +++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/lexer.h b/src/lexer.h index c343c43bbf..89ada88d1d 100644 --- a/src/lexer.h +++ b/src/lexer.h @@ -1,5 +1,5 @@ /* - * $Id: lexer.h,v 1.15 2000/02/03 19:09:12 grubba Exp $ + * $Id: lexer.h,v 1.16 2000/03/10 20:06:34 hubbe Exp $ * * Lexical analyzer template. * Based on lex.c 1.62 @@ -342,6 +342,7 @@ static int low_yylex(YYSTYPE *yylval) goto badhash; case 'p': + /* FIXME: Support #pike */ if(ISWORD("pragma")) { SKIPSPACE(); diff --git a/src/modules/dynamic_module_makefile.in b/src/modules/dynamic_module_makefile.in index 705dc5b3b6..cb0848dd3e 100644 --- a/src/modules/dynamic_module_makefile.in +++ b/src/modules/dynamic_module_makefile.in @@ -1,5 +1,5 @@ # -# $Id: dynamic_module_makefile.in,v 1.63 2000/03/09 05:06:08 mast Exp $ +# $Id: dynamic_module_makefile.in,v 1.64 2000/03/10 20:02:40 hubbe Exp $ # @@ -88,6 +88,10 @@ $(SRCDIR)/configure: $(SRCDIR)/configure.in $(PIKE_SRC_DIR)/aclocal.m4 config.status: $(SRCDIR)/configure CFLAGS="$(REAL_CFLAGS)" LDFLAGS="$(REAL_LDFLAGS)" CPPFLAGS="$(REAL_CPPFLAGS)" CONFIG_FILES=Makefile CONFIG_HEADERS="$(CONFIG_HEADERS)" ./config.status --recheck +# FIXME: +# Move -lc $(LIBGCC) into a configurable variable and make sure it is empty on UnixWare +# + module.so: $(OBJS) $(MODULE_ARCHIVES) @echo "linking $(MODNAME)" ;\ if $(TMP_BINDIR)/smartlink "@LDSHARED@" $(LDFLAGS) -o module.@SO@ $(OBJS) $(MODULE_ARCHIVES) $(MODULE_LDFLAGS) $(LIBGCC) -lc $(LIBGCC) ; then \ -- GitLab