mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
'==' is not a legal test operator on BSD. Use '='.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33126 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -444,7 +444,7 @@ AC_PATH_PROG(GRAPHVIZ, [Graphviz], [echo Graphviz])
|
|||||||
if test "$GRAPHVIZ" != "echo Graphviz" ; then
|
if test "$GRAPHVIZ" != "echo Graphviz" ; then
|
||||||
AC_DEFINE([HAVE_GRAPHVIZ],[1],[Define if the Graphviz program is available])
|
AC_DEFINE([HAVE_GRAPHVIZ],[1],[Define if the Graphviz program is available])
|
||||||
dnl If we're targeting for mingw we should emit windows paths, not msys
|
dnl If we're targeting for mingw we should emit windows paths, not msys
|
||||||
if test "$llvm_cv_os_type" == "MingW" ; then
|
if test "$llvm_cv_os_type" = "MingW" ; then
|
||||||
GRAPHVIZ=`echo $GRAPHVIZ | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
|
GRAPHVIZ=`echo $GRAPHVIZ | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
|
||||||
fi
|
fi
|
||||||
AC_DEFINE_UNQUOTED([LLVM_PATH_GRAPHVIZ],"$GRAPHVIZ${EXEEXT}",
|
AC_DEFINE_UNQUOTED([LLVM_PATH_GRAPHVIZ],"$GRAPHVIZ${EXEEXT}",
|
||||||
@@ -454,7 +454,7 @@ AC_PATH_PROG(DOT, [dot], [echo dot])
|
|||||||
if test "$DOT" != "echo dot" ; then
|
if test "$DOT" != "echo dot" ; then
|
||||||
AC_DEFINE([HAVE_DOT],[1],[Define if the dot program is available])
|
AC_DEFINE([HAVE_DOT],[1],[Define if the dot program is available])
|
||||||
dnl If we're targeting for mingw we should emit windows paths, not msys
|
dnl If we're targeting for mingw we should emit windows paths, not msys
|
||||||
if test "$llvm_cv_os_type" == "MingW" ; then
|
if test "$llvm_cv_os_type" = "MingW" ; then
|
||||||
DOT=`echo $DOT | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
|
DOT=`echo $DOT | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
|
||||||
fi
|
fi
|
||||||
AC_DEFINE_UNQUOTED([LLVM_PATH_DOT],"$DOT${EXEEXT}",
|
AC_DEFINE_UNQUOTED([LLVM_PATH_DOT],"$DOT${EXEEXT}",
|
||||||
@@ -464,7 +464,7 @@ AC_PATH_PROGS(GV, [gv gsview32], [echo gv])
|
|||||||
if test "$GV" != "echo gv" ; then
|
if test "$GV" != "echo gv" ; then
|
||||||
AC_DEFINE([HAVE_GV],[1],[Define if the gv program is available])
|
AC_DEFINE([HAVE_GV],[1],[Define if the gv program is available])
|
||||||
dnl If we're targeting for mingw we should emit windows paths, not msys
|
dnl If we're targeting for mingw we should emit windows paths, not msys
|
||||||
if test "$llvm_cv_os_type" == "MingW" ; then
|
if test "$llvm_cv_os_type" = "MingW" ; then
|
||||||
GV=`echo $GV | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
|
GV=`echo $GV | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
|
||||||
fi
|
fi
|
||||||
AC_DEFINE_UNQUOTED([LLVM_PATH_GV],"$GV${EXEEXT}",
|
AC_DEFINE_UNQUOTED([LLVM_PATH_GV],"$GV${EXEEXT}",
|
||||||
@@ -474,7 +474,7 @@ AC_PATH_PROG(DOTTY, [dotty], [echo dotty])
|
|||||||
if test "$DOTTY" != "echo dotty" ; then
|
if test "$DOTTY" != "echo dotty" ; then
|
||||||
AC_DEFINE([HAVE_DOTTY],[1],[Define if the dotty program is available])
|
AC_DEFINE([HAVE_DOTTY],[1],[Define if the dotty program is available])
|
||||||
dnl If we're targeting for mingw we should emit windows paths, not msys
|
dnl If we're targeting for mingw we should emit windows paths, not msys
|
||||||
if test "$llvm_cv_os_type" == "MingW" ; then
|
if test "$llvm_cv_os_type" = "MingW" ; then
|
||||||
DOTTY=`echo $DOTTY | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
|
DOTTY=`echo $DOTTY | sed 's/^\/\([[A-Za-z]]\)\//\1:\//' `
|
||||||
fi
|
fi
|
||||||
AC_DEFINE_UNQUOTED([LLVM_PATH_DOTTY],"$DOTTY${EXEEXT}",
|
AC_DEFINE_UNQUOTED([LLVM_PATH_DOTTY],"$DOTTY${EXEEXT}",
|
||||||
@@ -600,7 +600,7 @@ dnl===-----------------------------------------------------------------------===
|
|||||||
dnl libelf is for sparc only; we can ignore it if we don't have it
|
dnl libelf is for sparc only; we can ignore it if we don't have it
|
||||||
AC_CHECK_LIB(elf, elf_begin)
|
AC_CHECK_LIB(elf, elf_begin)
|
||||||
AC_CHECK_LIB(m,sin)
|
AC_CHECK_LIB(m,sin)
|
||||||
if test "$llvm_cv_os_type" == "MingW" ; then
|
if test "$llvm_cv_os_type" = "MingW" ; then
|
||||||
AC_CHECK_LIB(imagehlp, main)
|
AC_CHECK_LIB(imagehlp, main)
|
||||||
AC_CHECK_LIB(psapi, main)
|
AC_CHECK_LIB(psapi, main)
|
||||||
fi
|
fi
|
||||||
@@ -758,7 +758,7 @@ AC_SUBST(SHLIBEXT,$libltdl_cv_shlibext)
|
|||||||
# Translate the various configuration directories and other basic
|
# Translate the various configuration directories and other basic
|
||||||
# information into substitutions that will end up in Makefile.config.in
|
# information into substitutions that will end up in Makefile.config.in
|
||||||
# that these configured values can be used by the makefiles
|
# that these configured values can be used by the makefiles
|
||||||
if test "${prefix}" == "NONE" ; then
|
if test "${prefix}" = "NONE" ; then
|
||||||
prefix="/usr/local"
|
prefix="/usr/local"
|
||||||
fi
|
fi
|
||||||
eval LLVM_PREFIX="${prefix}";
|
eval LLVM_PREFIX="${prefix}";
|
||||||
|
12
configure
vendored
12
configure
vendored
@@ -7119,7 +7119,7 @@ cat >>confdefs.h <<\_ACEOF
|
|||||||
#define HAVE_GRAPHVIZ 1
|
#define HAVE_GRAPHVIZ 1
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
if test "$llvm_cv_os_type" == "MingW" ; then
|
if test "$llvm_cv_os_type" = "MingW" ; then
|
||||||
GRAPHVIZ=`echo $GRAPHVIZ | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
|
GRAPHVIZ=`echo $GRAPHVIZ | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -7175,7 +7175,7 @@ cat >>confdefs.h <<\_ACEOF
|
|||||||
#define HAVE_DOT 1
|
#define HAVE_DOT 1
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
if test "$llvm_cv_os_type" == "MingW" ; then
|
if test "$llvm_cv_os_type" = "MingW" ; then
|
||||||
DOT=`echo $DOT | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
|
DOT=`echo $DOT | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -7236,7 +7236,7 @@ cat >>confdefs.h <<\_ACEOF
|
|||||||
#define HAVE_GV 1
|
#define HAVE_GV 1
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
if test "$llvm_cv_os_type" == "MingW" ; then
|
if test "$llvm_cv_os_type" = "MingW" ; then
|
||||||
GV=`echo $GV | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
|
GV=`echo $GV | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -7292,7 +7292,7 @@ cat >>confdefs.h <<\_ACEOF
|
|||||||
#define HAVE_DOTTY 1
|
#define HAVE_DOTTY 1
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
if test "$llvm_cv_os_type" == "MingW" ; then
|
if test "$llvm_cv_os_type" = "MingW" ; then
|
||||||
DOTTY=`echo $DOTTY | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
|
DOTTY=`echo $DOTTY | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -26899,7 +26899,7 @@ _ACEOF
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$llvm_cv_os_type" == "MingW" ; then
|
if test "$llvm_cv_os_type" = "MingW" ; then
|
||||||
|
|
||||||
{ echo "$as_me:$LINENO: checking for main in -limagehlp" >&5
|
{ echo "$as_me:$LINENO: checking for main in -limagehlp" >&5
|
||||||
echo $ECHO_N "checking for main in -limagehlp... $ECHO_C" >&6; }
|
echo $ECHO_N "checking for main in -limagehlp... $ECHO_C" >&6; }
|
||||||
@@ -33343,7 +33343,7 @@ SHLIBEXT=$libltdl_cv_shlibext
|
|||||||
# Translate the various configuration directories and other basic
|
# Translate the various configuration directories and other basic
|
||||||
# information into substitutions that will end up in Makefile.config.in
|
# information into substitutions that will end up in Makefile.config.in
|
||||||
# that these configured values can be used by the makefiles
|
# that these configured values can be used by the makefiles
|
||||||
if test "${prefix}" == "NONE" ; then
|
if test "${prefix}" = "NONE" ; then
|
||||||
prefix="/usr/local"
|
prefix="/usr/local"
|
||||||
fi
|
fi
|
||||||
eval LLVM_PREFIX="${prefix}";
|
eval LLVM_PREFIX="${prefix}";
|
||||||
|
Reference in New Issue
Block a user