X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=aclocal.m4;h=0f164f6eef54a2c6ca0ae700ad1cd11999c90aff;hb=fa3ef527287e63a0cebbe3841f27e519fe38fec3;hp=3b675b48e6d3532dad44f794c9152d876efe0842;hpb=e769e8950174222a25b41f54fc7dd7a095bb2a69;p=ghc-hetmet.git diff --git a/aclocal.m4 b/aclocal.m4 index 3b675b4..0f164f6 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $Id: aclocal.m4,v 1.79 2001/07/19 09:03:24 simonmar Exp $ +dnl $Id: aclocal.m4,v 1.81 2001/07/19 22:08:07 sof Exp $ dnl dnl Extra autoconf macros for the Glasgow fptools dnl @@ -672,10 +672,10 @@ AC_DEFUN([FPTOOLS_END_TEXT_SECTION], if test "$not_done" = 1; then FPTOOLS_IN_SCOPE(etext asm("etext"),etext,fptools_end_of_text) if test "$fptools_end_of_text" = yes; then - fptools_cv_end_of_text="etext asm("etext")" + fptools_cv_end_of_text="etext" fi fi]) - if test -n $fptools_cv_end_of_text; then + if test -n "$fptools_cv_end_of_text"; then AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER], $fptools_cv_end_of_text) else AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER], dunno_end_of_text) @@ -695,10 +695,10 @@ AC_DEFUN([FPTOOLS_END_TEXT_SECTION], if test "$not_done" = 1; then FPTOOLS_IN_SCOPE(etext asm("etext"),etext,fptools_end_of_text_decl) if test "$fptools_end_of_text_decl" = yes; then - fptools_cv_end_of_text_decl=etext + fptools_cv_end_of_text_decl="etext asm(\"etext\")" fi fi]) - if test -n $fptools_cv_end_of_text_decl; then + if test -n "$fptools_cv_end_of_text_decl"; then AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER_DECL], $fptools_cv_end_of_text_decl) else AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER_DECL], dunno_end_of_text_decl) @@ -723,10 +723,10 @@ AC_DEFUN([FPTOOLS_END_DATA_SECTION], if test "$not_done" = 1; then FPTOOLS_IN_SCOPE(end asm("end"),end,fptools_end_of_data) if test "$fptools_end_of_data" = yes; then - fptools_cv_end_of_data=end + fptools_cv_end_of_data="end" fi fi]) - if test -n $fptools_cv_end_of_data; then + if test -n "$fptools_cv_end_of_data"; then AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER], $fptools_cv_end_of_data) else AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER], dunno_end_of_data) @@ -746,10 +746,10 @@ AC_DEFUN([FPTOOLS_END_DATA_SECTION], if test "$not_done" = 1; then FPTOOLS_IN_SCOPE(end asm("end"),end,fptools_end_of_data_decl) if test "$fptools_end_of_data_decl" = yes; then - fptools_cv_end_of_data_decl=end + fptools_cv_end_of_data_decl="end asm(\"end\")" fi fi]) - if test -n $fptools_cv_end_of_data_decl; then + if test -n "$fptools_cv_end_of_data_decl"; then AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER_DECL], $fptools_cv_end_of_data_decl) else AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER_DECL], dunno_end_of_data_decl)