Skip to content
Snippets Groups Projects
Commit fa0802e6 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

added a FIXME

Rev: src/lexer.h:1.16
Rev: src/modules/dynamic_module_makefile.in:1.64
parent c13e3500
No related branches found
No related tags found
No related merge requests found
/*
* $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();
......
#
# $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 \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment