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

bugfix

Rev: src/configure.in:1.98
Rev: src/run_autoconfig:1.15
parent 139868b6
No related branches found
No related tags found
No related merge requests found
AC_REVISION("$Id: configure.in,v 1.97 1997/05/20 01:51:54 hubbe Exp $") AC_REVISION("$Id: configure.in,v 1.98 1997/05/20 02:02:53 hubbe Exp $")
AC_INIT(interpret.c) AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h) AC_CONFIG_HEADER(machine.h)
...@@ -959,10 +959,11 @@ define(MY_CHECK_FUNCTION,[ ...@@ -959,10 +959,11 @@ define(MY_CHECK_FUNCTION,[
AC_MSG_CHECKING(for working $1) AC_MSG_CHECKING(for working $1)
AC_CACHE_VAL(pike_cv_func_$1,[ AC_CACHE_VAL(pike_cv_func_$1,[
AC_TRY_RUN([$2],pike_cv_func_$1=yes,pike_cv_func_$1=no) AC_TRY_RUN([$2],pike_cv_func_$1=yes,pike_cv_func_$1=no)
])
AC_MSG_RESULT([$]pike_cv_func_$1) AC_MSG_RESULT([$]pike_cv_func_$1)
if test [$]pike_cv_func_$1 = yes; then if test [$]pike_cv_func_$1 = yes; then
AC_DEFINE(translit(HAVE_$1,[a-z],[A-Z])) AC_DEFINE(translit(HAVE_$1,[a-z],[A-Z]))
fi])]) fi])
######################################################################## ########################################################################
......
...@@ -6,7 +6,7 @@ need_to_make_depend=no ...@@ -6,7 +6,7 @@ need_to_make_depend=no
find . -type d -print|egrep -v '/(CVS)|(RCS)$'| while read dir; do find . -type d -print|egrep -v '/(CVS)|(RCS)$'| while read dir; do
if [ -f $dir/acconfig.h ]; then if [ -f $dir/acconfig.h -a $dir/configure.in ]; then
echo "Running autoheader in $dir" echo "Running autoheader in $dir"
( cd $dir ; autoheader && echo foo >stamp-h.in ) ( cd $dir ; autoheader && echo foo >stamp-h.in )
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment