X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/72d848c21d85a531e965058d37787e646076b641..85ac3861e7c7de8877562ac0dbb1233d91c705c2:/tests/local.at diff --git a/tests/local.at b/tests/local.at index 2544b2f6..8f925128 100644 --- a/tests/local.at +++ b/tests/local.at @@ -15,8 +15,8 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301, USA. # We want a recent Autotest. m4_version_prereq([2.58]) @@ -175,11 +175,13 @@ m4_define([AT_COMPILE], # AT_COMPILE_CXX(OUTPUT, [SOURCES = OUTPUT.cc]) # -------------------------------------------- +# Compile SOURCES into OUTPUT. If OUTPUT does not contain '.', +# assume that we are linking too; this is a hack. # If the C++ compiler does not work, ignore the test. m4_define([AT_COMPILE_CXX], [AT_KEYWORDS(c++) AT_CHECK([$BISON_CXX_WORKS], 0, ignore, ignore) -AT_CHECK([$CXX $CXXFLAGS $CPPFLAGS -o $1 m4_default([$2], [$1.cc])], +AT_CHECK([$CXX $CXXFLAGS $CPPFLAGS m4_bmatch([$1], [[.]], [], [$LDFLAGS ])-o $1 m4_default([$2], [$1.cc])], 0, [ignore], [ignore])])