Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: configure.ac

Issue 12568011: Update XZ Utils to 5.0.4 (third_party) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/xz/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« README.chromium ('K') | « THANKS ('k') | doc/examples/00_README.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: configure.ac
===================================================================
--- configure.ac (revision 87706)
+++ configure.ac (working copy)
@@ -431,10 +431,14 @@
if test "x$enable_threads" = xyes; then
echo
echo "Threading support:"
- ACX_PTHREAD
+ AX_PTHREAD
LIBS="$LIBS $PTHREAD_LIBS"
AM_CFLAGS="$AM_CFLAGS $PTHREAD_CFLAGS"
- CC="$PTHREAD_CC"
+
+ dnl NOTE: PTHREAD_CC is ignored. It would be useful on AIX, but
+ dnl it's tricky to get it right together with AC_PROG_CC_C99.
+ dnl Thus, this is handled by telling the user in INSTALL to set
+ dnl the correct CC manually.
fi
echo
@@ -627,13 +631,13 @@
src/xzdec/Makefile
src/lzmainfo/Makefile
src/scripts/Makefile
- src/scripts/xzdiff
- src/scripts/xzgrep
- src/scripts/xzmore
- src/scripts/xzless
tests/Makefile
debug/Makefile
])
+AC_CONFIG_FILES([src/scripts/xzdiff], [chmod +x src/scripts/xzdiff])
+AC_CONFIG_FILES([src/scripts/xzgrep], [chmod +x src/scripts/xzgrep])
+AC_CONFIG_FILES([src/scripts/xzmore], [chmod +x src/scripts/xzmore])
+AC_CONFIG_FILES([src/scripts/xzless], [chmod +x src/scripts/xzless])
AC_OUTPUT
« README.chromium ('K') | « THANKS ('k') | doc/examples/00_README.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698