~ubuntu-branches/ubuntu/lucid/erlang/lucid

« back to all changes in this revision

Viewing changes to erts/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-06-11 12:18:07 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090611121807-ks7eb4xrt7dsysgx
Tags: 1:13.b.1-dfsg-1
* New upstream release.
* Removed unnecessary dependency of erlang-os-mon on erlang-observer and
  erlang-tools and added missing dependency of erlang-nox on erlang-os-mon
  (closes: #529512).
* Removed a patch to eunit application because the bug was fixed upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
AC_INIT(vsn.mk)
24
24
AC_PREREQ(2.59)
25
25
 
26
 
if test "x$no_recursion" != "xyes"; then
 
26
if test "x$no_recursion" != "xyes" -a "x$OVERRIDE_CONFIG_CACHE" = "x"; then
27
27
    # We do not want to use a common cache!
28
28
    cache_file=/dev/null
29
29
fi
644
644
                ;;
645
645
esac
646
646
 
 
647
dnl
 
648
dnl Fix for Tilera install permissions
 
649
dnl
 
650
 
 
651
case $build in
 
652
        *tile*)
 
653
                INSTALL_PROGRAM="$INSTALL_PROGRAM -m755"
 
654
                INSTALL_SCRIPT="$INSTALL_SCRIPT -m755"
 
655
                ;;
 
656
        *)
 
657
                ;;
 
658
esac
 
659
 
647
660
dnl ----------------------------------------------------------------------
648
661
dnl Misc. things (some of them should go away)
649
662
dnl ----------------------------------------------------------------------
1288
1301
AC_SUBST(BITS64)
1289
1302
 
1290
1303
if test "x$ac_compiler_gnu" = "xyes"; then
 
1304
AC_MSG_CHECKING([if we should add -fno-tree-copyrename to CFLAGS for computed gotos to work properly])
 
1305
AC_TRY_COMPILE([],[
 
1306
                #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
 
1307
                        ;
 
1308
                        #else
 
1309
                        #error old and ok
 
1310
                        #endif
 
1311
                        ],
 
1312
                        no_tree_copyrename=yes,
 
1313
                        no_tree_copyrename=no)
 
1314
 
 
1315
if test "x$no_tree_copyrename" = "xyes"; then
 
1316
        CFLAGS="$CFLAGS -fno-tree-copyrename"
 
1317
        AC_MSG_RESULT(yes, adjusting CFLAGS)
 
1318
else
 
1319
        AC_MSG_RESULT(no)
 
1320
fi
 
1321
 
 
1322
 
 
1323
 
1291
1324
AC_MSG_CHECKING([for broken gcc-4.3.0 compiler])
1292
1325
AC_TRY_RUN([
1293
1326
/* pr36339.c */