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

Side by Side Diff: third_party/yasm/patched-yasm/configure.ac

Issue 11369048: Update Yasm to 1.2.0 (Yasm Part 2/3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Process this file with autoconf to produce a configure script. 1 # Process this file with autoconf to produce a configure script.
2 # $Id: configure.ac 2353 2010-08-07 16:37:52Z peter $
3 2
4 # 3 #
5 # autoconf setup 4 # autoconf setup
6 # 5 #
7 AC_PREREQ(2.53) 6 AC_PREREQ(2.53)
8 AC_INIT([yasm], [1.1.0], [bug-yasm@tortall.net]) 7 AC_INIT([yasm],
8 »m4_esyscmd([./YASM-VERSION-GEN.sh && tr -d '\n' <YASM-VERSION-FILE]),
9 [bug-yasm@tortall.net])
9 #AC_CONFIG_SRCDIR([src/main.c]) 10 #AC_CONFIG_SRCDIR([src/main.c])
10 AC_CONFIG_AUX_DIR(config) 11 AC_CONFIG_AUX_DIR(config)
11 AC_CONFIG_HEADER([config.h]) 12 AC_CONFIG_HEADER([config.h])
12 13
13 AM_INIT_AUTOMAKE([1.9.6 foreign]) 14 AM_INIT_AUTOMAKE([1.9.6 foreign])
14 AM_MAINTAINER_MODE 15 AM_MAINTAINER_MODE
15 16
16 AC_DEFINE(PACKAGE_INTVER, ["1.1.0"],
17 [Define to internal version of this package.])
18 AC_DEFINE(PACKAGE_BUILD, ["2352"], [Define to build version of this package.])
19
20 # 17 #
21 # autoconf command-line options 18 # autoconf command-line options
22 # 19 #
23 AC_ARG_ENABLE(debug, 20 AC_ARG_ENABLE(debug,
24 AC_HELP_STRING([--enable-debug], 21 AC_HELP_STRING([--enable-debug],
25 [Turn on debugging and compile time warnings]), 22 [Turn on debugging and compile time warnings]),
26 [case "${enableval}" in 23 [case "${enableval}" in
27 yes) debugging="yes" ;; 24 yes) debugging="yes" ;;
28 no) debugging="no" ;; 25 no) debugging="no" ;;
29 *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;; 26 *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 fi 304 fi
308 fi 305 fi
309 306
310 AM_CONDITIONAL(HAVE_PYTHON, test x$have_python = xyes) 307 AM_CONDITIONAL(HAVE_PYTHON, test x$have_python = xyes)
311 AM_CONDITIONAL(HAVE_PYTHON_BINDINGS, test x$have_python_bindings = xyes) 308 AM_CONDITIONAL(HAVE_PYTHON_BINDINGS, test x$have_python_bindings = xyes)
312 309
313 AC_CONFIG_FILES([Makefile 310 AC_CONFIG_FILES([Makefile
314 po/Makefile.in 311 po/Makefile.in
315 ]) 312 ])
316 AC_OUTPUT 313 AC_OUTPUT
OLDNEW
« no previous file with comments | « third_party/yasm/patched-yasm/configure ('k') | third_party/yasm/patched-yasm/libyasm/tests/Makefile.inc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698