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

minor fixes

Rev: src/.cvsignore:1.8
Rev: src/Makefile.in:1.23
Rev: src/configure.in:1.82
parent 1f64357c
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
Makefile Makefile
config.cache config.cache
config.log config.log
config.h.in
config.status config.status
configure configure
dependencies dependencies
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
/Makefile /Makefile
/config.cache /config.cache
/config.log /config.log
/config.h.in
/config.status /config.status
/configure /configure
/dependencies /dependencies
......
...@@ -224,7 +224,7 @@ $(SRCDIR)/peep_engine.c: $(SRCDIR)/peep.in ...@@ -224,7 +224,7 @@ $(SRCDIR)/peep_engine.c: $(SRCDIR)/peep.in
peep.o: $(SRCDIR)/peep_engine.c peep.o: $(SRCDIR)/peep_engine.c
# make dependencies (requires compiled Pike) # make dependencies
depend: language.c depend: language.c
gcc -MM $(PREFLAGS) $(SRCDIR)/*.c | $(TMP_BINDIR)/fixdepends.sh $(SRCDIR) gcc -MM $(PREFLAGS) $(SRCDIR)/*.c | $(TMP_BINDIR)/fixdepends.sh $(SRCDIR)
( cd modules ; $(MAKE) $(MAKE_FLAGS) depend ) ( cd modules ; $(MAKE) $(MAKE_FLAGS) depend )
......
AC_REVISION("$Id: configure.in,v 1.81 1997/04/15 03:47:42 hubbe Exp $") AC_REVISION("$Id: configure.in,v 1.82 1997/04/15 08:59:12 hubbe Exp $")
AC_INIT(interpret.c) AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h) AC_CONFIG_HEADER(machine.h)
...@@ -45,8 +45,8 @@ done ...@@ -45,8 +45,8 @@ done
if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC" if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
then then
AC_MSG_WARN(CC is different than last time Pike was compiled, AC_MSG_WARN([CC is different than last time Pike was compiled,
It is probably best to delete ./config.cache before proceeding) It is probably best to delete ./config.cache before proceeding])
fi fi
...@@ -219,8 +219,8 @@ else ...@@ -219,8 +219,8 @@ else
AC_TRY_COMPILE([int foo(int bar);],[],[], AC_TRY_COMPILE([int foo(int bar);],[],[],
[ [
OLD_CC="${CC-cc}" OLD_CC="${CC-cc}"
if test "$CC" = "cc" -a -x /usr/bin/cc ; then if test "$CC" = "$BINDIR/smartlink cc" -a -x /usr/bin/cc ; then
CC=/usr/bin/cc CC="$BINDIR/smartlink /usr/bin/cc"
fi fi
CC="$CC -Aa -D_HPUX_SOURCE +Olibcalls" CC="$CC -Aa -D_HPUX_SOURCE +Olibcalls"
AC_TRY_COMPILE([int foo(int bar);],[],[],[CC="$OLD_CC"]) AC_TRY_COMPILE([int foo(int bar);],[],[],[CC="$OLD_CC"])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment