]> granicus.if.org Git - icu/commitdiff
ICU-10972 improve --with-data-packaging docs
authorSteven R. Loomis <srl@icu-project.org>
Fri, 5 Sep 2014 18:33:24 +0000 (18:33 +0000)
committerSteven R. Loomis <srl@icu-project.org>
Fri, 5 Sep 2014 18:33:24 +0000 (18:33 +0000)
X-SVN-Rev: 36363

icu4c/source/configure
icu4c/source/configure.ac

index 579368684d17da5e82691e1c1f11a78e1534e0cd..bf1f012e471508d3dd5421d14926feaded64065f 100755 (executable)
@@ -2,7 +2,7 @@
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.69.
 #
-#  Copyright (c) 1999-2013, International Business Machines Corporation and others. All Rights Reserved.
+#  Copyright (c) 1999-2014, International Business Machines Corporation and others. All Rights Reserved.
 #
 #
 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -1433,7 +1433,13 @@ Optional Packages:
   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
   --with-cross-build=dir specify an absolute path to the build directory of an ICU built for the current platform default=no cross dir
   --with-library-bits=bits specify how many bits to use for the library (32, 64, 64else32, nochange) default=nochange
-  --with-data-packaging=type specify how to package ICU data (files, archive, library, static, auto) default=auto
+  --with-data-packaging     specify how to package ICU data. Possible values:
+        files    raw files (.res, etc)
+        archive  build a single icudtXX.dat file
+        library  shared library (.dll/.so/etc.)
+        static   static library (.a/.lib/etc.)
+        auto     build shared if possible (default)
+           See http://userguide.icu-project.org/icudata for more info.
   --with-library-suffix=suffix    tag a suffix to the library names default=
 
 Some influential environment variables:
@@ -1521,7 +1527,7 @@ Copyright (C) 2012 Free Software Foundation, Inc.
 This configure script is free software; the Free Software Foundation
 gives unlimited permission to copy, distribute and modify it.
 
- Copyright (c) 1999-2013, International Business Machines Corporation and others. All Rights Reserved.
+ Copyright (c) 1999-2014, International Business Machines Corporation and others. All Rights Reserved.
 _ACEOF
   exit
 fi
index a86db17aa64a07c1e854fa474b80cb5d2f609142..86f6dca932f2997b6db57221a447c3e703965e92 100644 (file)
@@ -1,5 +1,5 @@
 # -*-autoconf-*-
-AC_COPYRIGHT([ Copyright (c) 1999-2013, International Business Machines Corporation and others. All Rights Reserved. ])
+AC_COPYRIGHT([ Copyright (c) 1999-2014, International Business Machines Corporation and others. All Rights Reserved. ])
 # configure.in for ICU
 # Stephen F. Booth, heavily modified by Yves and others
 
@@ -1084,7 +1084,13 @@ AC_ARG_ENABLE(tools,
 ICU_CONDITIONAL(TOOLS, test "$tools" = true)
 
 AC_ARG_WITH(data-packaging,
-       [  --with-data-packaging=type specify how to package ICU data (files, archive, library, static, auto) [default=auto]],
+       [  --with-data-packaging     specify how to package ICU data. Possible values:
+        files    raw files (.res, etc)
+        archive  build a single icudtXX.dat file
+        library  shared library (.dll/.so/etc.)
+        static   static library (.a/.lib/etc.)
+        auto     build shared if possible (default)
+           See http://userguide.icu-project.org/icudata for more info.],
        [case "${withval}" in
                 files|archive|library) datapackaging=$withval ;;
                auto) datapackaging=$withval ;;