diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-11-16 09:51:30 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-11-16 09:51:30 +0000 |
commit | 09950a732cfa76559d18b3540d69bf7eed235171 (patch) | |
tree | 00e395f5458e8c3d6904d313d1d513fc9d1dabfb /Build/source/texk/xdv2pdf | |
parent | 6d04c5f72978b866477b0608d68285045337b061 (diff) |
build system: --enable-libtool-hack to prvent linking with dependency_libs
git-svn-id: svn://tug.org/texlive/trunk@16027 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/xdv2pdf')
-rwxr-xr-x | Build/source/texk/xdv2pdf/configure | 8 | ||||
-rw-r--r-- | Build/source/texk/xdv2pdf/configure.ac | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/Build/source/texk/xdv2pdf/configure b/Build/source/texk/xdv2pdf/configure index 9efc113c08a..1489da22492 100755 --- a/Build/source/texk/xdv2pdf/configure +++ b/Build/source/texk/xdv2pdf/configure @@ -17540,14 +17540,14 @@ fi if test "x$kpse_cv_have_Carbon:$kpse_cv_have_QuickTime" = xyes:yes; then - build=yes + can_build=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Carbon or QuickTime framework not found, can not build xdv2pdf." >&5 $as_echo "$as_me: WARNING: Carbon or QuickTime framework not found, can not build xdv2pdf." >&2;} - build=no + can_build=no fi -if test "x$build" = xyes; then +if test "x$can_build" = xyes; then ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = x""yes; then : @@ -17939,7 +17939,7 @@ fi fi - if test "x$build" = xyes; then + if test "x$can_build" = xyes; then build_TRUE= build_FALSE='#' else diff --git a/Build/source/texk/xdv2pdf/configure.ac b/Build/source/texk/xdv2pdf/configure.ac index ac7bf31a321..240b26a960c 100644 --- a/Build/source/texk/xdv2pdf/configure.ac +++ b/Build/source/texk/xdv2pdf/configure.ac @@ -29,13 +29,13 @@ KPSE_CHECK_FRAMEWORK([Carbon], [ATSUStyle style]) KPSE_CHECK_FRAMEWORK([QuickTime], [ImageDescriptionHandle h]) if test "x$kpse_cv_have_Carbon:$kpse_cv_have_QuickTime" = xyes:yes; then - build=yes + can_build=yes else AC_MSG_WARN([Carbon or QuickTime framework not found, can not build xdv2pdf.]) - build=no + can_build=no fi -if test "x$build" = xyes; then +if test "x$can_build" = xyes; then dnl Checks for typedefs, structures, and compiler characteristics. AC_TYPE_SIZE_T @@ -59,7 +59,7 @@ fi fi -AM_CONDITIONAL([build], [test "x$build" = xyes]) +AM_CONDITIONAL([build], [test "x$can_build" = xyes]) AC_CONFIG_FILES([Makefile]) |