diff options
author | David Walter Seikel | 2012-04-22 09:19:23 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-04-22 09:19:23 +1000 |
commit | c963d75dfdeec11f82e79e727062fbf89afa2c04 (patch) | |
tree | 895633dbf641110be46f117c29890c49b3ffc0bd /libraries/eet | |
parent | Adding the new extantz viewer and grid manager. (diff) | |
download | SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.zip SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.tar.gz SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.tar.bz2 SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.tar.xz |
Update EFL to latest beta.
Diffstat (limited to 'libraries/eet')
33 files changed, 1179 insertions, 667 deletions
diff --git a/libraries/eet/AUTHORS b/libraries/eet/AUTHORS index ebdd15f..260b216 100644 --- a/libraries/eet/AUTHORS +++ b/libraries/eet/AUTHORS | |||
@@ -11,3 +11,4 @@ Mathieu Taillefumier <mathieu.taillefumier@free.fr> | |||
11 | Albin "Lutin" Tonnerre <albin.tonnerre@gmail.com> | 11 | Albin "Lutin" Tonnerre <albin.tonnerre@gmail.com> |
12 | Adam Simpkins <adam@adamsimpkins.net> | 12 | Adam Simpkins <adam@adamsimpkins.net> |
13 | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 13 | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> |
14 | Lionel Orry <lionel.orry@gmail.com> | ||
diff --git a/libraries/eet/ChangeLog b/libraries/eet/ChangeLog index 795d102..4de0f82 100644 --- a/libraries/eet/ChangeLog +++ b/libraries/eet/ChangeLog | |||
@@ -547,21 +547,29 @@ | |||
547 | noticable quality losses in the chase for speed. It will use | 547 | noticable quality losses in the chase for speed. It will use |
548 | IFAST for quality less than 60 when encoding | 548 | IFAST for quality less than 60 when encoding |
549 | 549 | ||
550 | 2011-12-02 Carsten Haitzler (The Rasterman) | 550 | 2011-12-02 Carsten Haitzler (The Rasterman) |
551 | 551 | ||
552 | 1.1.0 release | 552 | 1.1.0 release |
553 | 553 | ||
554 | 2011-12-02 Mike Blumenkrantz | 554 | 2011-12-02 Mike Blumenkrantz |
555 | 555 | ||
556 | * added eet_file_get to return the filename of an Eet_File | 556 | * added eet_file_get to return the filename of an Eet_File |
557 | * Eet_File filenames are now stringshared | 557 | * Eet_File filenames are now stringshared |
558 | * added mempool allocators | 558 | * added mempool allocators |
559 | 559 | ||
560 | 2011-12-29 Carsten Haitzler (The Rasterman) | 560 | 2011-12-29 Carsten Haitzler (The Rasterman) |
561 | 561 | ||
562 | * increase eet_connection packet size to 1Mb - more reasonable. | 562 | * increase eet_connection packet size to 1Mb - more reasonable. |
563 | 563 | ||
564 | 2012-01-07 Boris Faure (billiob) | 564 | 2012-01-07 Boris Faure (billiob) |
565 | 565 | ||
566 | * make eet tool write to standard output if no output file given. | 566 | * make eet tool write to standard output if no output file given. |
567 | 567 | ||
568 | 2012-02-09 Cedric Bail | ||
569 | |||
570 | * add support for GNUTLS 3.x. | ||
571 | |||
572 | 2012-02-10 Cedric Bail | ||
573 | |||
574 | * add eet_dictionary_count. | ||
575 | * add "eet -t FILE.EET". | ||
diff --git a/libraries/eet/Makefile.am b/libraries/eet/Makefile.am index 34a5762..d3622dc 100644 --- a/libraries/eet/Makefile.am +++ b/libraries/eet/Makefile.am | |||
@@ -69,18 +69,16 @@ endif | |||
69 | 69 | ||
70 | if EFL_ENABLE_COVERAGE | 70 | if EFL_ENABLE_COVERAGE |
71 | lcov-reset: | 71 | lcov-reset: |
72 | @rm -rf coverage | 72 | @rm -rf $(top_builddir)/coverage |
73 | @find . -name "*.gcda" -exec rm {} \; | 73 | @find $(top_builddir) -name "*.gcda" -delete |
74 | @lcov --directory . --zerocounters | 74 | @lcov --zerocounters --directory $(top_builddir) |
75 | 75 | ||
76 | lcov-report: | 76 | lcov-report: |
77 | @mkdir coverage | 77 | @mkdir $(top_builddir)/coverage |
78 | @lcov --compat-libtool --directory . --capture --output-file coverage/coverage.info | 78 | lcov --capture --compat-libtool --output-file $(top_builddir)/coverage/coverage.info --directory $(top_builddir) |
79 | @lcov -l coverage/coverage.info |grep "\\.h" |cut -d " " -f 2 > coverage/remove | 79 | lcov --remove $(top_builddir)/coverage/coverage.info '*.h' --output-file $(top_builddir)/coverage/coverage.cleaned.info |
80 | @lcov -r coverage/coverage.info `cat coverage/remove` > coverage/coverage.cleaned.info | 80 | genhtml -t "$(PACKAGE_STRING)" -o $(top_builddir)/coverage/html $(top_builddir)/coverage/coverage.cleaned.info |
81 | @rm coverage/remove | 81 | @echo "Coverage Report at $(top_builddir)/coverage/html" |
82 | @mv coverage/coverage.cleaned.info coverage/coverage.info | ||
83 | @genhtml -t "$(PACKAGE_STRING)" -o coverage coverage/coverage.info | ||
84 | 82 | ||
85 | coverage: | 83 | coverage: |
86 | @$(MAKE) lcov-reset | 84 | @$(MAKE) lcov-reset |
diff --git a/libraries/eet/Makefile.in b/libraries/eet/Makefile.in index b865027..fb2955c 100644 --- a/libraries/eet/Makefile.in +++ b/libraries/eet/Makefile.in | |||
@@ -184,6 +184,8 @@ EINA_LIBS = @EINA_LIBS@ | |||
184 | EVIL_CFLAGS = @EVIL_CFLAGS@ | 184 | EVIL_CFLAGS = @EVIL_CFLAGS@ |
185 | EVIL_LIBS = @EVIL_LIBS@ | 185 | EVIL_LIBS = @EVIL_LIBS@ |
186 | EXEEXT = @EXEEXT@ | 186 | EXEEXT = @EXEEXT@ |
187 | EXOTIC_CFLAGS = @EXOTIC_CFLAGS@ | ||
188 | EXOTIC_LIBS = @EXOTIC_LIBS@ | ||
187 | FGREP = @FGREP@ | 189 | FGREP = @FGREP@ |
188 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ | 190 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ |
189 | GNUTLS_LIBS = @GNUTLS_LIBS@ | 191 | GNUTLS_LIBS = @GNUTLS_LIBS@ |
@@ -223,6 +225,8 @@ PACKAGE_URL = @PACKAGE_URL@ | |||
223 | PACKAGE_VERSION = @PACKAGE_VERSION@ | 225 | PACKAGE_VERSION = @PACKAGE_VERSION@ |
224 | PATH_SEPARATOR = @PATH_SEPARATOR@ | 226 | PATH_SEPARATOR = @PATH_SEPARATOR@ |
225 | PKG_CONFIG = @PKG_CONFIG@ | 227 | PKG_CONFIG = @PKG_CONFIG@ |
228 | PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ | ||
229 | PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ | ||
226 | RANLIB = @RANLIB@ | 230 | RANLIB = @RANLIB@ |
227 | SED = @SED@ | 231 | SED = @SED@ |
228 | SET_MAKE = @SET_MAKE@ | 232 | SET_MAKE = @SET_MAKE@ |
@@ -878,18 +882,16 @@ doc: | |||
878 | # Coverage report | 882 | # Coverage report |
879 | 883 | ||
880 | @EFL_ENABLE_COVERAGE_TRUE@lcov-reset: | 884 | @EFL_ENABLE_COVERAGE_TRUE@lcov-reset: |
881 | @EFL_ENABLE_COVERAGE_TRUE@ @rm -rf coverage | 885 | @EFL_ENABLE_COVERAGE_TRUE@ @rm -rf $(top_builddir)/coverage |
882 | @EFL_ENABLE_COVERAGE_TRUE@ @find . -name "*.gcda" -exec rm {} \; | 886 | @EFL_ENABLE_COVERAGE_TRUE@ @find $(top_builddir) -name "*.gcda" -delete |
883 | @EFL_ENABLE_COVERAGE_TRUE@ @lcov --directory . --zerocounters | 887 | @EFL_ENABLE_COVERAGE_TRUE@ @lcov --zerocounters --directory $(top_builddir) |
884 | 888 | ||
885 | @EFL_ENABLE_COVERAGE_TRUE@lcov-report: | 889 | @EFL_ENABLE_COVERAGE_TRUE@lcov-report: |
886 | @EFL_ENABLE_COVERAGE_TRUE@ @mkdir coverage | 890 | @EFL_ENABLE_COVERAGE_TRUE@ @mkdir $(top_builddir)/coverage |
887 | @EFL_ENABLE_COVERAGE_TRUE@ @lcov --compat-libtool --directory . --capture --output-file coverage/coverage.info | 891 | @EFL_ENABLE_COVERAGE_TRUE@ lcov --capture --compat-libtool --output-file $(top_builddir)/coverage/coverage.info --directory $(top_builddir) |
888 | @EFL_ENABLE_COVERAGE_TRUE@ @lcov -l coverage/coverage.info |grep "\\.h" |cut -d " " -f 2 > coverage/remove | 892 | @EFL_ENABLE_COVERAGE_TRUE@ lcov --remove $(top_builddir)/coverage/coverage.info '*.h' --output-file $(top_builddir)/coverage/coverage.cleaned.info |
889 | @EFL_ENABLE_COVERAGE_TRUE@ @lcov -r coverage/coverage.info `cat coverage/remove` > coverage/coverage.cleaned.info | 893 | @EFL_ENABLE_COVERAGE_TRUE@ genhtml -t "$(PACKAGE_STRING)" -o $(top_builddir)/coverage/html $(top_builddir)/coverage/coverage.cleaned.info |
890 | @EFL_ENABLE_COVERAGE_TRUE@ @rm coverage/remove | 894 | @EFL_ENABLE_COVERAGE_TRUE@ @echo "Coverage Report at $(top_builddir)/coverage/html" |
891 | @EFL_ENABLE_COVERAGE_TRUE@ @mv coverage/coverage.cleaned.info coverage/coverage.info | ||
892 | @EFL_ENABLE_COVERAGE_TRUE@ @genhtml -t "$(PACKAGE_STRING)" -o coverage coverage/coverage.info | ||
893 | 895 | ||
894 | @EFL_ENABLE_COVERAGE_TRUE@coverage: | 896 | @EFL_ENABLE_COVERAGE_TRUE@coverage: |
895 | @EFL_ENABLE_COVERAGE_TRUE@ @$(MAKE) lcov-reset | 897 | @EFL_ENABLE_COVERAGE_TRUE@ @$(MAKE) lcov-reset |
diff --git a/libraries/eet/NEWS b/libraries/eet/NEWS index cccda15..1abe36e 100644 --- a/libraries/eet/NEWS +++ b/libraries/eet/NEWS | |||
@@ -9,6 +9,8 @@ Additions: | |||
9 | Improvements: | 9 | Improvements: |
10 | 10 | ||
11 | * most allocations moved to mempools | 11 | * most allocations moved to mempools |
12 | * support GNUTLS 3.x | ||
13 | * add "eet -t FILE.EET" to get some stat out of an eet file | ||
12 | 14 | ||
13 | Eet 1.5.0 | 15 | Eet 1.5.0 |
14 | 16 | ||
diff --git a/libraries/eet/README b/libraries/eet/README index 48be3e5..416214b 100644 --- a/libraries/eet/README +++ b/libraries/eet/README | |||
@@ -1,4 +1,4 @@ | |||
1 | Eet 1.1.0 | 1 | Eet 1.6.0 |
2 | 2 | ||
3 | ****************************************************************************** | 3 | ****************************************************************************** |
4 | 4 | ||
@@ -11,7 +11,6 @@ Requirements: | |||
11 | ------------- | 11 | ------------- |
12 | Must have: | 12 | Must have: |
13 | libc | 13 | libc |
14 | libm | ||
15 | zlib | 14 | zlib |
16 | libjpeg | 15 | libjpeg |
17 | eina (1.1.0 or better) | 16 | eina (1.1.0 or better) |
diff --git a/libraries/eet/aclocal.m4 b/libraries/eet/aclocal.m4 index 6d7b012..1d329e5 100644 --- a/libraries/eet/aclocal.m4 +++ b/libraries/eet/aclocal.m4 | |||
@@ -13,13 +13,14 @@ | |||
13 | 13 | ||
14 | m4_ifndef([AC_AUTOCONF_VERSION], | 14 | m4_ifndef([AC_AUTOCONF_VERSION], |
15 | [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl | 15 | [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl |
16 | m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],, | 16 | m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],, |
17 | [m4_warning([this file was generated for autoconf 2.65. | 17 | [m4_warning([this file was generated for autoconf 2.67. |
18 | You have another version of autoconf. It may work, but is not guaranteed to. | 18 | You have another version of autoconf. It may work, but is not guaranteed to. |
19 | If you have problems, you may need to regenerate the build system entirely. | 19 | If you have problems, you may need to regenerate the build system entirely. |
20 | To do so, use the procedure documented by the package, typically `autoreconf'.])]) | 20 | To do so, use the procedure documented by the package, typically `autoreconf'.])]) |
21 | 21 | ||
22 | # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- | 22 | # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- |
23 | # serial 1 (pkg-config-0.24) | ||
23 | # | 24 | # |
24 | # Copyright © 2004 Scott James Remnant <scott@netsplit.com>. | 25 | # Copyright © 2004 Scott James Remnant <scott@netsplit.com>. |
25 | # | 26 | # |
@@ -47,7 +48,10 @@ To do so, use the procedure documented by the package, typically `autoreconf'.]) | |||
47 | AC_DEFUN([PKG_PROG_PKG_CONFIG], | 48 | AC_DEFUN([PKG_PROG_PKG_CONFIG], |
48 | [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) | 49 | [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) |
49 | m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) | 50 | m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) |
50 | AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl | 51 | AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) |
52 | AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) | ||
53 | AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) | ||
54 | |||
51 | if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then | 55 | if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then |
52 | AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) | 56 | AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) |
53 | fi | 57 | fi |
@@ -60,7 +64,6 @@ if test -n "$PKG_CONFIG"; then | |||
60 | AC_MSG_RESULT([no]) | 64 | AC_MSG_RESULT([no]) |
61 | PKG_CONFIG="" | 65 | PKG_CONFIG="" |
62 | fi | 66 | fi |
63 | |||
64 | fi[]dnl | 67 | fi[]dnl |
65 | ])# PKG_PROG_PKG_CONFIG | 68 | ])# PKG_PROG_PKG_CONFIG |
66 | 69 | ||
@@ -69,34 +72,31 @@ fi[]dnl | |||
69 | # Check to see whether a particular set of modules exists. Similar | 72 | # Check to see whether a particular set of modules exists. Similar |
70 | # to PKG_CHECK_MODULES(), but does not set variables or print errors. | 73 | # to PKG_CHECK_MODULES(), but does not set variables or print errors. |
71 | # | 74 | # |
72 | # | 75 | # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) |
73 | # Similar to PKG_CHECK_MODULES, make sure that the first instance of | 76 | # only at the first occurence in configure.ac, so if the first place |
74 | # this or PKG_CHECK_MODULES is called, or make sure to call | 77 | # it's called might be skipped (such as if it is within an "if", you |
75 | # PKG_CHECK_EXISTS manually | 78 | # have to call PKG_CHECK_EXISTS manually |
76 | # -------------------------------------------------------------- | 79 | # -------------------------------------------------------------- |
77 | AC_DEFUN([PKG_CHECK_EXISTS], | 80 | AC_DEFUN([PKG_CHECK_EXISTS], |
78 | [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl | 81 | [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl |
79 | if test -n "$PKG_CONFIG" && \ | 82 | if test -n "$PKG_CONFIG" && \ |
80 | AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then | 83 | AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then |
81 | m4_ifval([$2], [$2], [:]) | 84 | m4_default([$2], [:]) |
82 | m4_ifvaln([$3], [else | 85 | m4_ifvaln([$3], [else |
83 | $3])dnl | 86 | $3])dnl |
84 | fi]) | 87 | fi]) |
85 | 88 | ||
86 | |||
87 | # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) | 89 | # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) |
88 | # --------------------------------------------- | 90 | # --------------------------------------------- |
89 | m4_define([_PKG_CONFIG], | 91 | m4_define([_PKG_CONFIG], |
90 | [if test -n "$PKG_CONFIG"; then | 92 | [if test -n "$$1"; then |
91 | if test -n "$$1"; then | 93 | pkg_cv_[]$1="$$1" |
92 | pkg_cv_[]$1="$$1" | 94 | elif test -n "$PKG_CONFIG"; then |
93 | else | 95 | PKG_CHECK_EXISTS([$3], |
94 | PKG_CHECK_EXISTS([$3], | 96 | [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], |
95 | [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], | 97 | [pkg_failed=yes]) |
96 | [pkg_failed=yes]) | 98 | else |
97 | fi | 99 | pkg_failed=untried |
98 | else | ||
99 | pkg_failed=untried | ||
100 | fi[]dnl | 100 | fi[]dnl |
101 | ])# _PKG_CONFIG | 101 | ])# _PKG_CONFIG |
102 | 102 | ||
@@ -138,16 +138,17 @@ and $1[]_LIBS to avoid the need to call pkg-config. | |||
138 | See the pkg-config man page for more details.]) | 138 | See the pkg-config man page for more details.]) |
139 | 139 | ||
140 | if test $pkg_failed = yes; then | 140 | if test $pkg_failed = yes; then |
141 | AC_MSG_RESULT([no]) | ||
141 | _PKG_SHORT_ERRORS_SUPPORTED | 142 | _PKG_SHORT_ERRORS_SUPPORTED |
142 | if test $_pkg_short_errors_supported = yes; then | 143 | if test $_pkg_short_errors_supported = yes; then |
143 | $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` | 144 | $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` |
144 | else | 145 | else |
145 | $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` | 146 | $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` |
146 | fi | 147 | fi |
147 | # Put the nasty error message in config.log where it belongs | 148 | # Put the nasty error message in config.log where it belongs |
148 | echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD | 149 | echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD |
149 | 150 | ||
150 | ifelse([$4], , [AC_MSG_ERROR(dnl | 151 | m4_default([$4], [AC_MSG_ERROR( |
151 | [Package requirements ($2) were not met: | 152 | [Package requirements ($2) were not met: |
152 | 153 | ||
153 | $$1_PKG_ERRORS | 154 | $$1_PKG_ERRORS |
@@ -155,25 +156,24 @@ $$1_PKG_ERRORS | |||
155 | Consider adjusting the PKG_CONFIG_PATH environment variable if you | 156 | Consider adjusting the PKG_CONFIG_PATH environment variable if you |
156 | installed software in a non-standard prefix. | 157 | installed software in a non-standard prefix. |
157 | 158 | ||
158 | _PKG_TEXT | 159 | _PKG_TEXT])[]dnl |
159 | ])], | 160 | ]) |
160 | [AC_MSG_RESULT([no]) | ||
161 | $4]) | ||
162 | elif test $pkg_failed = untried; then | 161 | elif test $pkg_failed = untried; then |
163 | ifelse([$4], , [AC_MSG_FAILURE(dnl | 162 | AC_MSG_RESULT([no]) |
163 | m4_default([$4], [AC_MSG_FAILURE( | ||
164 | [The pkg-config script could not be found or is too old. Make sure it | 164 | [The pkg-config script could not be found or is too old. Make sure it |
165 | is in your PATH or set the PKG_CONFIG environment variable to the full | 165 | is in your PATH or set the PKG_CONFIG environment variable to the full |
166 | path to pkg-config. | 166 | path to pkg-config. |
167 | 167 | ||
168 | _PKG_TEXT | 168 | _PKG_TEXT |
169 | 169 | ||
170 | To get pkg-config, see <http://pkg-config.freedesktop.org/>.])], | 170 | To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl |
171 | [$4]) | 171 | ]) |
172 | else | 172 | else |
173 | $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS | 173 | $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS |
174 | $1[]_LIBS=$pkg_cv_[]$1[]_LIBS | 174 | $1[]_LIBS=$pkg_cv_[]$1[]_LIBS |
175 | AC_MSG_RESULT([yes]) | 175 | AC_MSG_RESULT([yes]) |
176 | ifelse([$3], , :, [$3]) | 176 | $3 |
177 | fi[]dnl | 177 | fi[]dnl |
178 | ])# PKG_CHECK_MODULES | 178 | ])# PKG_CHECK_MODULES |
179 | 179 | ||
diff --git a/libraries/eet/config.guess b/libraries/eet/config.guess index e3a2116..c2246a4 100755 --- a/libraries/eet/config.guess +++ b/libraries/eet/config.guess | |||
@@ -1,10 +1,10 @@ | |||
1 | #! /bin/sh | 1 | #! /bin/sh |
2 | # Attempt to guess a canonical system name. | 2 | # Attempt to guess a canonical system name. |
3 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, | 3 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
4 | # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 | 4 | # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
5 | # Free Software Foundation, Inc. | 5 | # Free Software Foundation, Inc. |
6 | 6 | ||
7 | timestamp='2009-06-10' | 7 | timestamp='2009-12-30' |
8 | 8 | ||
9 | # This file is free software; you can redistribute it and/or modify it | 9 | # This file is free software; you can redistribute it and/or modify it |
10 | # under the terms of the GNU General Public License as published by | 10 | # under the terms of the GNU General Public License as published by |
@@ -27,16 +27,16 @@ timestamp='2009-06-10' | |||
27 | # the same distribution terms that you use for the rest of that program. | 27 | # the same distribution terms that you use for the rest of that program. |
28 | 28 | ||
29 | 29 | ||
30 | # Originally written by Per Bothner <per@bothner.com>. | 30 | # Originally written by Per Bothner. Please send patches (context |
31 | # Please send patches to <config-patches@gnu.org>. Submit a context | 31 | # diff format) to <config-patches@gnu.org> and include a ChangeLog |
32 | # diff and a properly formatted ChangeLog entry. | 32 | # entry. |
33 | # | 33 | # |
34 | # This script attempts to guess a canonical system name similar to | 34 | # This script attempts to guess a canonical system name similar to |
35 | # config.sub. If it succeeds, it prints the system name on stdout, and | 35 | # config.sub. If it succeeds, it prints the system name on stdout, and |
36 | # exits with 0. Otherwise, it exits with 1. | 36 | # exits with 0. Otherwise, it exits with 1. |
37 | # | 37 | # |
38 | # The plan is that this can be called by configure scripts if you | 38 | # You can get the latest version of this script from: |
39 | # don't specify an explicit build system type. | 39 | # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD |
40 | 40 | ||
41 | me=`echo "$0" | sed -e 's,.*/,,'` | 41 | me=`echo "$0" | sed -e 's,.*/,,'` |
42 | 42 | ||
@@ -56,8 +56,9 @@ version="\ | |||
56 | GNU config.guess ($timestamp) | 56 | GNU config.guess ($timestamp) |
57 | 57 | ||
58 | Originally written by Per Bothner. | 58 | Originally written by Per Bothner. |
59 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, | 59 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, |
60 | 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. | 60 | 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free |
61 | Software Foundation, Inc. | ||
61 | 62 | ||
62 | This is free software; see the source for copying conditions. There is NO | 63 | This is free software; see the source for copying conditions. There is NO |
63 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." | 64 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." |
@@ -333,6 +334,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in | |||
333 | sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) | 334 | sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) |
334 | echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` | 335 | echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` |
335 | exit ;; | 336 | exit ;; |
337 | i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) | ||
338 | echo i386-pc-auroraux${UNAME_RELEASE} | ||
339 | exit ;; | ||
336 | i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) | 340 | i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) |
337 | eval $set_cc_for_build | 341 | eval $set_cc_for_build |
338 | SUN_ARCH="i386" | 342 | SUN_ARCH="i386" |
@@ -807,12 +811,12 @@ EOF | |||
807 | i*:PW*:*) | 811 | i*:PW*:*) |
808 | echo ${UNAME_MACHINE}-pc-pw32 | 812 | echo ${UNAME_MACHINE}-pc-pw32 |
809 | exit ;; | 813 | exit ;; |
810 | *:Interix*:[3456]*) | 814 | *:Interix*:*) |
811 | case ${UNAME_MACHINE} in | 815 | case ${UNAME_MACHINE} in |
812 | x86) | 816 | x86) |
813 | echo i586-pc-interix${UNAME_RELEASE} | 817 | echo i586-pc-interix${UNAME_RELEASE} |
814 | exit ;; | 818 | exit ;; |
815 | EM64T | authenticamd | genuineintel) | 819 | authenticamd | genuineintel | EM64T) |
816 | echo x86_64-unknown-interix${UNAME_RELEASE} | 820 | echo x86_64-unknown-interix${UNAME_RELEASE} |
817 | exit ;; | 821 | exit ;; |
818 | IA64) | 822 | IA64) |
@@ -854,6 +858,20 @@ EOF | |||
854 | i*86:Minix:*:*) | 858 | i*86:Minix:*:*) |
855 | echo ${UNAME_MACHINE}-pc-minix | 859 | echo ${UNAME_MACHINE}-pc-minix |
856 | exit ;; | 860 | exit ;; |
861 | alpha:Linux:*:*) | ||
862 | case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in | ||
863 | EV5) UNAME_MACHINE=alphaev5 ;; | ||
864 | EV56) UNAME_MACHINE=alphaev56 ;; | ||
865 | PCA56) UNAME_MACHINE=alphapca56 ;; | ||
866 | PCA57) UNAME_MACHINE=alphapca56 ;; | ||
867 | EV6) UNAME_MACHINE=alphaev6 ;; | ||
868 | EV67) UNAME_MACHINE=alphaev67 ;; | ||
869 | EV68*) UNAME_MACHINE=alphaev68 ;; | ||
870 | esac | ||
871 | objdump --private-headers /bin/sh | grep -q ld.so.1 | ||
872 | if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi | ||
873 | echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} | ||
874 | exit ;; | ||
857 | arm*:Linux:*:*) | 875 | arm*:Linux:*:*) |
858 | eval $set_cc_for_build | 876 | eval $set_cc_for_build |
859 | if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | 877 | if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ |
@@ -876,6 +894,17 @@ EOF | |||
876 | frv:Linux:*:*) | 894 | frv:Linux:*:*) |
877 | echo frv-unknown-linux-gnu | 895 | echo frv-unknown-linux-gnu |
878 | exit ;; | 896 | exit ;; |
897 | i*86:Linux:*:*) | ||
898 | LIBC=gnu | ||
899 | eval $set_cc_for_build | ||
900 | sed 's/^ //' << EOF >$dummy.c | ||
901 | #ifdef __dietlibc__ | ||
902 | LIBC=dietlibc | ||
903 | #endif | ||
904 | EOF | ||
905 | eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` | ||
906 | echo "${UNAME_MACHINE}-pc-linux-${LIBC}" | ||
907 | exit ;; | ||
879 | ia64:Linux:*:*) | 908 | ia64:Linux:*:*) |
880 | echo ${UNAME_MACHINE}-unknown-linux-gnu | 909 | echo ${UNAME_MACHINE}-unknown-linux-gnu |
881 | exit ;; | 910 | exit ;; |
@@ -901,39 +930,18 @@ EOF | |||
901 | #endif | 930 | #endif |
902 | #endif | 931 | #endif |
903 | EOF | 932 | EOF |
904 | eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' | 933 | eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` |
905 | /^CPU/{ | ||
906 | s: ::g | ||
907 | p | ||
908 | }'`" | ||
909 | test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } | 934 | test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } |
910 | ;; | 935 | ;; |
911 | or32:Linux:*:*) | 936 | or32:Linux:*:*) |
912 | echo or32-unknown-linux-gnu | 937 | echo or32-unknown-linux-gnu |
913 | exit ;; | 938 | exit ;; |
914 | ppc:Linux:*:*) | ||
915 | echo powerpc-unknown-linux-gnu | ||
916 | exit ;; | ||
917 | ppc64:Linux:*:*) | ||
918 | echo powerpc64-unknown-linux-gnu | ||
919 | exit ;; | ||
920 | alpha:Linux:*:*) | ||
921 | case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in | ||
922 | EV5) UNAME_MACHINE=alphaev5 ;; | ||
923 | EV56) UNAME_MACHINE=alphaev56 ;; | ||
924 | PCA56) UNAME_MACHINE=alphapca56 ;; | ||
925 | PCA57) UNAME_MACHINE=alphapca56 ;; | ||
926 | EV6) UNAME_MACHINE=alphaev6 ;; | ||
927 | EV67) UNAME_MACHINE=alphaev67 ;; | ||
928 | EV68*) UNAME_MACHINE=alphaev68 ;; | ||
929 | esac | ||
930 | objdump --private-headers /bin/sh | grep -q ld.so.1 | ||
931 | if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi | ||
932 | echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} | ||
933 | exit ;; | ||
934 | padre:Linux:*:*) | 939 | padre:Linux:*:*) |
935 | echo sparc-unknown-linux-gnu | 940 | echo sparc-unknown-linux-gnu |
936 | exit ;; | 941 | exit ;; |
942 | parisc64:Linux:*:* | hppa64:Linux:*:*) | ||
943 | echo hppa64-unknown-linux-gnu | ||
944 | exit ;; | ||
937 | parisc:Linux:*:* | hppa:Linux:*:*) | 945 | parisc:Linux:*:* | hppa:Linux:*:*) |
938 | # Look for CPU level | 946 | # Look for CPU level |
939 | case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in | 947 | case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in |
@@ -942,8 +950,11 @@ EOF | |||
942 | *) echo hppa-unknown-linux-gnu ;; | 950 | *) echo hppa-unknown-linux-gnu ;; |
943 | esac | 951 | esac |
944 | exit ;; | 952 | exit ;; |
945 | parisc64:Linux:*:* | hppa64:Linux:*:*) | 953 | ppc64:Linux:*:*) |
946 | echo hppa64-unknown-linux-gnu | 954 | echo powerpc64-unknown-linux-gnu |
955 | exit ;; | ||
956 | ppc:Linux:*:*) | ||
957 | echo powerpc-unknown-linux-gnu | ||
947 | exit ;; | 958 | exit ;; |
948 | s390:Linux:*:* | s390x:Linux:*:*) | 959 | s390:Linux:*:* | s390x:Linux:*:*) |
949 | echo ${UNAME_MACHINE}-ibm-linux | 960 | echo ${UNAME_MACHINE}-ibm-linux |
@@ -966,58 +977,6 @@ EOF | |||
966 | xtensa*:Linux:*:*) | 977 | xtensa*:Linux:*:*) |
967 | echo ${UNAME_MACHINE}-unknown-linux-gnu | 978 | echo ${UNAME_MACHINE}-unknown-linux-gnu |
968 | exit ;; | 979 | exit ;; |
969 | i*86:Linux:*:*) | ||
970 | # The BFD linker knows what the default object file format is, so | ||
971 | # first see if it will tell us. cd to the root directory to prevent | ||
972 | # problems with other programs or directories called `ld' in the path. | ||
973 | # Set LC_ALL=C to ensure ld outputs messages in English. | ||
974 | ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ | ||
975 | | sed -ne '/supported targets:/!d | ||
976 | s/[ ][ ]*/ /g | ||
977 | s/.*supported targets: *// | ||
978 | s/ .*// | ||
979 | p'` | ||
980 | case "$ld_supported_targets" in | ||
981 | elf32-i386) | ||
982 | TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" | ||
983 | ;; | ||
984 | esac | ||
985 | # Determine whether the default compiler is a.out or elf | ||
986 | eval $set_cc_for_build | ||
987 | sed 's/^ //' << EOF >$dummy.c | ||
988 | #include <features.h> | ||
989 | #ifdef __ELF__ | ||
990 | # ifdef __GLIBC__ | ||
991 | # if __GLIBC__ >= 2 | ||
992 | LIBC=gnu | ||
993 | # else | ||
994 | LIBC=gnulibc1 | ||
995 | # endif | ||
996 | # else | ||
997 | LIBC=gnulibc1 | ||
998 | # endif | ||
999 | #else | ||
1000 | #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) | ||
1001 | LIBC=gnu | ||
1002 | #else | ||
1003 | LIBC=gnuaout | ||
1004 | #endif | ||
1005 | #endif | ||
1006 | #ifdef __dietlibc__ | ||
1007 | LIBC=dietlibc | ||
1008 | #endif | ||
1009 | EOF | ||
1010 | eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' | ||
1011 | /^LIBC/{ | ||
1012 | s: ::g | ||
1013 | p | ||
1014 | }'`" | ||
1015 | test x"${LIBC}" != x && { | ||
1016 | echo "${UNAME_MACHINE}-pc-linux-${LIBC}" | ||
1017 | exit | ||
1018 | } | ||
1019 | test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } | ||
1020 | ;; | ||
1021 | i*86:DYNIX/ptx:4*:*) | 980 | i*86:DYNIX/ptx:4*:*) |
1022 | # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. | 981 | # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. |
1023 | # earlier versions are messed up and put the nodename in both | 982 | # earlier versions are messed up and put the nodename in both |
@@ -1247,6 +1206,16 @@ EOF | |||
1247 | *:Darwin:*:*) | 1206 | *:Darwin:*:*) |
1248 | UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown | 1207 | UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown |
1249 | case $UNAME_PROCESSOR in | 1208 | case $UNAME_PROCESSOR in |
1209 | i386) | ||
1210 | eval $set_cc_for_build | ||
1211 | if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then | ||
1212 | if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ | ||
1213 | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ | ||
1214 | grep IS_64BIT_ARCH >/dev/null | ||
1215 | then | ||
1216 | UNAME_PROCESSOR="x86_64" | ||
1217 | fi | ||
1218 | fi ;; | ||
1250 | unknown) UNAME_PROCESSOR=powerpc ;; | 1219 | unknown) UNAME_PROCESSOR=powerpc ;; |
1251 | esac | 1220 | esac |
1252 | echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} | 1221 | echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} |
diff --git a/libraries/eet/config.h.in b/libraries/eet/config.h.in index 02ec411..76da120 100644 --- a/libraries/eet/config.h.in +++ b/libraries/eet/config.h.in | |||
@@ -19,6 +19,12 @@ | |||
19 | /* use gnutls_x509_crt_verify_hash */ | 19 | /* use gnutls_x509_crt_verify_hash */ |
20 | #undef EET_USE_NEW_GNUTLS_API | 20 | #undef EET_USE_NEW_GNUTLS_API |
21 | 21 | ||
22 | /* use gnutls_privkey_sign_data */ | ||
23 | #undef EET_USE_NEW_PRIVKEY_SIGN_DATA | ||
24 | |||
25 | /* use gnutls_pubkey_verify_hash */ | ||
26 | #undef EET_USE_NEW_PUBKEY_VERIFY_HASH | ||
27 | |||
22 | /* Define to 1 if you have `alloca', as a function or macro. */ | 28 | /* Define to 1 if you have `alloca', as a function or macro. */ |
23 | #undef HAVE_ALLOCA | 29 | #undef HAVE_ALLOCA |
24 | 30 | ||
@@ -35,6 +41,9 @@ | |||
35 | /* Set to 1 if Evil library is installed */ | 41 | /* Set to 1 if Evil library is installed */ |
36 | #undef HAVE_EVIL | 42 | #undef HAVE_EVIL |
37 | 43 | ||
44 | /* Define to 1 if you have Exotic. */ | ||
45 | #undef HAVE_EXOTIC_H | ||
46 | |||
38 | /* Define to 1 if you have the `fmemopen' function. */ | 47 | /* Define to 1 if you have the `fmemopen' function. */ |
39 | #undef HAVE_FMEMOPEN | 48 | #undef HAVE_FMEMOPEN |
40 | 49 | ||
diff --git a/libraries/eet/config.sub b/libraries/eet/config.sub index eb0389a..c2d1257 100755 --- a/libraries/eet/config.sub +++ b/libraries/eet/config.sub | |||
@@ -1,10 +1,10 @@ | |||
1 | #! /bin/sh | 1 | #! /bin/sh |
2 | # Configuration validation subroutine script. | 2 | # Configuration validation subroutine script. |
3 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, | 3 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
4 | # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 | 4 | # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
5 | # Free Software Foundation, Inc. | 5 | # Free Software Foundation, Inc. |
6 | 6 | ||
7 | timestamp='2009-06-11' | 7 | timestamp='2010-01-22' |
8 | 8 | ||
9 | # This file is (in principle) common to ALL GNU software. | 9 | # This file is (in principle) common to ALL GNU software. |
10 | # The presence of a machine in this file suggests that SOME GNU software | 10 | # The presence of a machine in this file suggests that SOME GNU software |
@@ -32,13 +32,16 @@ timestamp='2009-06-11' | |||
32 | 32 | ||
33 | 33 | ||
34 | # Please send patches to <config-patches@gnu.org>. Submit a context | 34 | # Please send patches to <config-patches@gnu.org>. Submit a context |
35 | # diff and a properly formatted ChangeLog entry. | 35 | # diff and a properly formatted GNU ChangeLog entry. |
36 | # | 36 | # |
37 | # Configuration subroutine to validate and canonicalize a configuration type. | 37 | # Configuration subroutine to validate and canonicalize a configuration type. |
38 | # Supply the specified configuration type as an argument. | 38 | # Supply the specified configuration type as an argument. |
39 | # If it is invalid, we print an error message on stderr and exit with code 1. | 39 | # If it is invalid, we print an error message on stderr and exit with code 1. |
40 | # Otherwise, we print the canonical config type on stdout and succeed. | 40 | # Otherwise, we print the canonical config type on stdout and succeed. |
41 | 41 | ||
42 | # You can get the latest version of this script from: | ||
43 | # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD | ||
44 | |||
42 | # This file is supposed to be the same for all GNU packages | 45 | # This file is supposed to be the same for all GNU packages |
43 | # and recognize all the CPU types, system types and aliases | 46 | # and recognize all the CPU types, system types and aliases |
44 | # that are meaningful with *any* GNU software. | 47 | # that are meaningful with *any* GNU software. |
@@ -72,8 +75,9 @@ Report bugs and patches to <config-patches@gnu.org>." | |||
72 | version="\ | 75 | version="\ |
73 | GNU config.sub ($timestamp) | 76 | GNU config.sub ($timestamp) |
74 | 77 | ||
75 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, | 78 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, |
76 | 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. | 79 | 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free |
80 | Software Foundation, Inc. | ||
77 | 81 | ||
78 | This is free software; see the source for copying conditions. There is NO | 82 | This is free software; see the source for copying conditions. There is NO |
79 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." | 83 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." |
@@ -149,7 +153,7 @@ case $os in | |||
149 | -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ | 153 | -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ |
150 | -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ | 154 | -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ |
151 | -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ | 155 | -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ |
152 | -apple | -axis | -knuth | -cray) | 156 | -apple | -axis | -knuth | -cray | -microblaze) |
153 | os= | 157 | os= |
154 | basic_machine=$1 | 158 | basic_machine=$1 |
155 | ;; | 159 | ;; |
@@ -284,6 +288,7 @@ case $basic_machine in | |||
284 | | pdp10 | pdp11 | pj | pjl \ | 288 | | pdp10 | pdp11 | pj | pjl \ |
285 | | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | 289 | | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ |
286 | | pyramid \ | 290 | | pyramid \ |
291 | | rx \ | ||
287 | | score \ | 292 | | score \ |
288 | | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | 293 | | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ |
289 | | sh64 | sh64le \ | 294 | | sh64 | sh64le \ |
@@ -291,13 +296,14 @@ case $basic_machine in | |||
291 | | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | 296 | | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ |
292 | | spu | strongarm \ | 297 | | spu | strongarm \ |
293 | | tahoe | thumb | tic4x | tic80 | tron \ | 298 | | tahoe | thumb | tic4x | tic80 | tron \ |
299 | | ubicom32 \ | ||
294 | | v850 | v850e \ | 300 | | v850 | v850e \ |
295 | | we32k \ | 301 | | we32k \ |
296 | | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | 302 | | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ |
297 | | z8k | z80) | 303 | | z8k | z80) |
298 | basic_machine=$basic_machine-unknown | 304 | basic_machine=$basic_machine-unknown |
299 | ;; | 305 | ;; |
300 | m6811 | m68hc11 | m6812 | m68hc12) | 306 | m6811 | m68hc11 | m6812 | m68hc12 | picochip) |
301 | # Motorola 68HC11/12. | 307 | # Motorola 68HC11/12. |
302 | basic_machine=$basic_machine-unknown | 308 | basic_machine=$basic_machine-unknown |
303 | os=-none | 309 | os=-none |
@@ -340,7 +346,7 @@ case $basic_machine in | |||
340 | | lm32-* \ | 346 | | lm32-* \ |
341 | | m32c-* | m32r-* | m32rle-* \ | 347 | | m32c-* | m32r-* | m32rle-* \ |
342 | | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | 348 | | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ |
343 | | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | 349 | | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ |
344 | | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | 350 | | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ |
345 | | mips16-* \ | 351 | | mips16-* \ |
346 | | mips64-* | mips64el-* \ | 352 | | mips64-* | mips64el-* \ |
@@ -368,15 +374,17 @@ case $basic_machine in | |||
368 | | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | 374 | | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ |
369 | | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | 375 | | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ |
370 | | pyramid-* \ | 376 | | pyramid-* \ |
371 | | romp-* | rs6000-* \ | 377 | | romp-* | rs6000-* | rx-* \ |
372 | | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | 378 | | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ |
373 | | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | 379 | | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ |
374 | | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | 380 | | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ |
375 | | sparclite-* \ | 381 | | sparclite-* \ |
376 | | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | 382 | | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ |
377 | | tahoe-* | thumb-* \ | 383 | | tahoe-* | thumb-* \ |
378 | | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ | 384 | | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ |
385 | | tile-* | tilegx-* \ | ||
379 | | tron-* \ | 386 | | tron-* \ |
387 | | ubicom32-* \ | ||
380 | | v850-* | v850e-* | vax-* \ | 388 | | v850-* | v850e-* | vax-* \ |
381 | | we32k-* \ | 389 | | we32k-* \ |
382 | | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | 390 | | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ |
@@ -726,6 +734,9 @@ case $basic_machine in | |||
726 | basic_machine=ns32k-utek | 734 | basic_machine=ns32k-utek |
727 | os=-sysv | 735 | os=-sysv |
728 | ;; | 736 | ;; |
737 | microblaze) | ||
738 | basic_machine=microblaze-xilinx | ||
739 | ;; | ||
729 | mingw32) | 740 | mingw32) |
730 | basic_machine=i386-pc | 741 | basic_machine=i386-pc |
731 | os=-mingw32 | 742 | os=-mingw32 |
@@ -1076,6 +1087,11 @@ case $basic_machine in | |||
1076 | basic_machine=tic6x-unknown | 1087 | basic_machine=tic6x-unknown |
1077 | os=-coff | 1088 | os=-coff |
1078 | ;; | 1089 | ;; |
1090 | # This must be matched before tile*. | ||
1091 | tilegx*) | ||
1092 | basic_machine=tilegx-unknown | ||
1093 | os=-linux-gnu | ||
1094 | ;; | ||
1079 | tile*) | 1095 | tile*) |
1080 | basic_machine=tile-unknown | 1096 | basic_machine=tile-unknown |
1081 | os=-linux-gnu | 1097 | os=-linux-gnu |
@@ -1247,6 +1263,9 @@ case $os in | |||
1247 | # First match some system type aliases | 1263 | # First match some system type aliases |
1248 | # that might get confused with valid system types. | 1264 | # that might get confused with valid system types. |
1249 | # -solaris* is a basic system type, with this one exception. | 1265 | # -solaris* is a basic system type, with this one exception. |
1266 | -auroraux) | ||
1267 | os=-auroraux | ||
1268 | ;; | ||
1250 | -solaris1 | -solaris1.*) | 1269 | -solaris1 | -solaris1.*) |
1251 | os=`echo $os | sed -e 's|solaris1|sunos4|'` | 1270 | os=`echo $os | sed -e 's|solaris1|sunos4|'` |
1252 | ;; | 1271 | ;; |
@@ -1268,8 +1287,8 @@ case $os in | |||
1268 | # -sysv* is not here because it comes later, after sysvr4. | 1287 | # -sysv* is not here because it comes later, after sysvr4. |
1269 | -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | 1288 | -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ |
1270 | | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | 1289 | | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ |
1271 | | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | 1290 | | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ |
1272 | | -kopensolaris* \ | 1291 | | -sym* | -kopensolaris* \ |
1273 | | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | 1292 | | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ |
1274 | | -aos* | -aros* \ | 1293 | | -aos* | -aros* \ |
1275 | | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | 1294 | | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ |
@@ -1290,7 +1309,7 @@ case $os in | |||
1290 | | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | 1309 | | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ |
1291 | | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | 1310 | | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ |
1292 | | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | 1311 | | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ |
1293 | | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) | 1312 | | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) |
1294 | # Remember, each alternative MUST END IN *, to match a version number. | 1313 | # Remember, each alternative MUST END IN *, to match a version number. |
1295 | ;; | 1314 | ;; |
1296 | -qnx*) | 1315 | -qnx*) |
@@ -1423,6 +1442,8 @@ case $os in | |||
1423 | -dicos*) | 1442 | -dicos*) |
1424 | os=-dicos | 1443 | os=-dicos |
1425 | ;; | 1444 | ;; |
1445 | -nacl*) | ||
1446 | ;; | ||
1426 | -none) | 1447 | -none) |
1427 | ;; | 1448 | ;; |
1428 | *) | 1449 | *) |
diff --git a/libraries/eet/configure b/libraries/eet/configure index b02c1c4..0687ffe 100755 --- a/libraries/eet/configure +++ b/libraries/eet/configure | |||
@@ -1,13 +1,13 @@ | |||
1 | #! /bin/sh | 1 | #! /bin/sh |
2 | # Guess values for system-dependent variables and create Makefiles. | 2 | # Guess values for system-dependent variables and create Makefiles. |
3 | # Generated by GNU Autoconf 2.65 for eet 1.5.99.67344. | 3 | # Generated by GNU Autoconf 2.67 for eet 1.6.0-alpha. |
4 | # | 4 | # |
5 | # Report bugs to <enlightenment-devel@lists.sourceforge.net>. | 5 | # Report bugs to <enlightenment-devel@lists.sourceforge.net>. |
6 | # | 6 | # |
7 | # | 7 | # |
8 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, | 8 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, |
9 | # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, | 9 | # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software |
10 | # Inc. | 10 | # Foundation, Inc. |
11 | # | 11 | # |
12 | # | 12 | # |
13 | # This configure script is free software; the Free Software Foundation | 13 | # This configure script is free software; the Free Software Foundation |
@@ -319,7 +319,7 @@ $as_echo X"$as_dir" | | |||
319 | test -d "$as_dir" && break | 319 | test -d "$as_dir" && break |
320 | done | 320 | done |
321 | test -z "$as_dirs" || eval "mkdir $as_dirs" | 321 | test -z "$as_dirs" || eval "mkdir $as_dirs" |
322 | } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" | 322 | } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" |
323 | 323 | ||
324 | 324 | ||
325 | } # as_fn_mkdir_p | 325 | } # as_fn_mkdir_p |
@@ -359,19 +359,19 @@ else | |||
359 | fi # as_fn_arith | 359 | fi # as_fn_arith |
360 | 360 | ||
361 | 361 | ||
362 | # as_fn_error ERROR [LINENO LOG_FD] | 362 | # as_fn_error STATUS ERROR [LINENO LOG_FD] |
363 | # --------------------------------- | 363 | # ---------------------------------------- |
364 | # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are | 364 | # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are |
365 | # provided, also output the error to LOG_FD, referencing LINENO. Then exit the | 365 | # provided, also output the error to LOG_FD, referencing LINENO. Then exit the |
366 | # script with status $?, using 1 if that was 0. | 366 | # script with STATUS, using 1 if that was 0. |
367 | as_fn_error () | 367 | as_fn_error () |
368 | { | 368 | { |
369 | as_status=$?; test $as_status -eq 0 && as_status=1 | 369 | as_status=$1; test $as_status -eq 0 && as_status=1 |
370 | if test "$3"; then | 370 | if test "$4"; then |
371 | as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | 371 | as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack |
372 | $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 | 372 | $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 |
373 | fi | 373 | fi |
374 | $as_echo "$as_me: error: $1" >&2 | 374 | $as_echo "$as_me: error: $2" >&2 |
375 | as_fn_exit $as_status | 375 | as_fn_exit $as_status |
376 | } # as_fn_error | 376 | } # as_fn_error |
377 | 377 | ||
@@ -682,7 +682,7 @@ test -n "$DJDIR" || exec 7<&0 </dev/null | |||
682 | exec 6>&1 | 682 | exec 6>&1 |
683 | 683 | ||
684 | # Name of the host. | 684 | # Name of the host. |
685 | # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, | 685 | # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, |
686 | # so uname gets run too. | 686 | # so uname gets run too. |
687 | ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` | 687 | ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` |
688 | 688 | ||
@@ -701,8 +701,8 @@ MAKEFLAGS= | |||
701 | # Identity of this package. | 701 | # Identity of this package. |
702 | PACKAGE_NAME='eet' | 702 | PACKAGE_NAME='eet' |
703 | PACKAGE_TARNAME='eet' | 703 | PACKAGE_TARNAME='eet' |
704 | PACKAGE_VERSION='1.5.99.67344' | 704 | PACKAGE_VERSION='1.6.0-alpha' |
705 | PACKAGE_STRING='eet 1.5.99.67344' | 705 | PACKAGE_STRING='eet 1.6.0-alpha' |
706 | PACKAGE_BUGREPORT='enlightenment-devel@lists.sourceforge.net' | 706 | PACKAGE_BUGREPORT='enlightenment-devel@lists.sourceforge.net' |
707 | PACKAGE_URL='' | 707 | PACKAGE_URL='' |
708 | 708 | ||
@@ -760,6 +760,8 @@ LIBGCRYPT_CFLAGS | |||
760 | LIBGCRYPT_CONFIG | 760 | LIBGCRYPT_CONFIG |
761 | GNUTLS_LIBS | 761 | GNUTLS_LIBS |
762 | GNUTLS_CFLAGS | 762 | GNUTLS_CFLAGS |
763 | EXOTIC_LIBS | ||
764 | EXOTIC_CFLAGS | ||
763 | EINA_LIBS | 765 | EINA_LIBS |
764 | EINA_CFLAGS | 766 | EINA_CFLAGS |
765 | EET_LIBS | 767 | EET_LIBS |
@@ -781,6 +783,8 @@ EFL_ENABLE_TESTS_FALSE | |||
781 | EFL_ENABLE_TESTS_TRUE | 783 | EFL_ENABLE_TESTS_TRUE |
782 | CHECK_LIBS | 784 | CHECK_LIBS |
783 | CHECK_CFLAGS | 785 | CHECK_CFLAGS |
786 | PKG_CONFIG_LIBDIR | ||
787 | PKG_CONFIG_PATH | ||
784 | PKG_CONFIG | 788 | PKG_CONFIG |
785 | BUILD_EXAMPLES_FALSE | 789 | BUILD_EXAMPLES_FALSE |
786 | BUILD_EXAMPLES_TRUE | 790 | BUILD_EXAMPLES_TRUE |
@@ -917,8 +921,6 @@ enable_libtool_lock | |||
917 | enable_amalgamation | 921 | enable_amalgamation |
918 | enable_eet | 922 | enable_eet |
919 | enable_old_eet_file_format | 923 | enable_old_eet_file_format |
920 | enable_gnutls | ||
921 | enable_new_gnutls_api | ||
922 | enable_openssl | 924 | enable_openssl |
923 | enable_cipher | 925 | enable_cipher |
924 | enable_signature | 926 | enable_signature |
@@ -929,8 +931,10 @@ enable_tests | |||
929 | enable_coverage | 931 | enable_coverage |
930 | enable_doc | 932 | enable_doc |
931 | with_doxygen | 933 | with_doxygen |
934 | enable_gnutls | ||
932 | with_libgcrypt_prefix | 935 | with_libgcrypt_prefix |
933 | with_libgcrypt_exec_prefix | 936 | with_libgcrypt_exec_prefix |
937 | enable_new_gnutls_api | ||
934 | ' | 938 | ' |
935 | ac_precious_vars='build_alias | 939 | ac_precious_vars='build_alias |
936 | host_alias | 940 | host_alias |
@@ -942,12 +946,16 @@ LIBS | |||
942 | CPPFLAGS | 946 | CPPFLAGS |
943 | CPP | 947 | CPP |
944 | PKG_CONFIG | 948 | PKG_CONFIG |
949 | PKG_CONFIG_PATH | ||
950 | PKG_CONFIG_LIBDIR | ||
945 | CHECK_CFLAGS | 951 | CHECK_CFLAGS |
946 | CHECK_LIBS | 952 | CHECK_LIBS |
947 | EVIL_CFLAGS | 953 | EVIL_CFLAGS |
948 | EVIL_LIBS | 954 | EVIL_LIBS |
949 | EINA_CFLAGS | 955 | EINA_CFLAGS |
950 | EINA_LIBS | 956 | EINA_LIBS |
957 | EXOTIC_CFLAGS | ||
958 | EXOTIC_LIBS | ||
951 | GNUTLS_CFLAGS | 959 | GNUTLS_CFLAGS |
952 | GNUTLS_LIBS | 960 | GNUTLS_LIBS |
953 | OPENSSL_CFLAGS | 961 | OPENSSL_CFLAGS |
@@ -1014,8 +1022,9 @@ do | |||
1014 | fi | 1022 | fi |
1015 | 1023 | ||
1016 | case $ac_option in | 1024 | case $ac_option in |
1017 | *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; | 1025 | *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; |
1018 | *) ac_optarg=yes ;; | 1026 | *=) ac_optarg= ;; |
1027 | *) ac_optarg=yes ;; | ||
1019 | esac | 1028 | esac |
1020 | 1029 | ||
1021 | # Accept the important Cygnus configure options, so we can diagnose typos. | 1030 | # Accept the important Cygnus configure options, so we can diagnose typos. |
@@ -1060,7 +1069,7 @@ do | |||
1060 | ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` | 1069 | ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` |
1061 | # Reject names that are not valid shell variable names. | 1070 | # Reject names that are not valid shell variable names. |
1062 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && | 1071 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && |
1063 | as_fn_error "invalid feature name: $ac_useropt" | 1072 | as_fn_error $? "invalid feature name: $ac_useropt" |
1064 | ac_useropt_orig=$ac_useropt | 1073 | ac_useropt_orig=$ac_useropt |
1065 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` | 1074 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` |
1066 | case $ac_user_opts in | 1075 | case $ac_user_opts in |
@@ -1086,7 +1095,7 @@ do | |||
1086 | ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` | 1095 | ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` |
1087 | # Reject names that are not valid shell variable names. | 1096 | # Reject names that are not valid shell variable names. |
1088 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && | 1097 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && |
1089 | as_fn_error "invalid feature name: $ac_useropt" | 1098 | as_fn_error $? "invalid feature name: $ac_useropt" |
1090 | ac_useropt_orig=$ac_useropt | 1099 | ac_useropt_orig=$ac_useropt |
1091 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` | 1100 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` |
1092 | case $ac_user_opts in | 1101 | case $ac_user_opts in |
@@ -1290,7 +1299,7 @@ do | |||
1290 | ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` | 1299 | ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` |
1291 | # Reject names that are not valid shell variable names. | 1300 | # Reject names that are not valid shell variable names. |
1292 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && | 1301 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && |
1293 | as_fn_error "invalid package name: $ac_useropt" | 1302 | as_fn_error $? "invalid package name: $ac_useropt" |
1294 | ac_useropt_orig=$ac_useropt | 1303 | ac_useropt_orig=$ac_useropt |
1295 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` | 1304 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` |
1296 | case $ac_user_opts in | 1305 | case $ac_user_opts in |
@@ -1306,7 +1315,7 @@ do | |||
1306 | ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` | 1315 | ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` |
1307 | # Reject names that are not valid shell variable names. | 1316 | # Reject names that are not valid shell variable names. |
1308 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && | 1317 | expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && |
1309 | as_fn_error "invalid package name: $ac_useropt" | 1318 | as_fn_error $? "invalid package name: $ac_useropt" |
1310 | ac_useropt_orig=$ac_useropt | 1319 | ac_useropt_orig=$ac_useropt |
1311 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` | 1320 | ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` |
1312 | case $ac_user_opts in | 1321 | case $ac_user_opts in |
@@ -1336,8 +1345,8 @@ do | |||
1336 | | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) | 1345 | | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) |
1337 | x_libraries=$ac_optarg ;; | 1346 | x_libraries=$ac_optarg ;; |
1338 | 1347 | ||
1339 | -*) as_fn_error "unrecognized option: \`$ac_option' | 1348 | -*) as_fn_error $? "unrecognized option: \`$ac_option' |
1340 | Try \`$0 --help' for more information." | 1349 | Try \`$0 --help' for more information" |
1341 | ;; | 1350 | ;; |
1342 | 1351 | ||
1343 | *=*) | 1352 | *=*) |
@@ -1345,7 +1354,7 @@ Try \`$0 --help' for more information." | |||
1345 | # Reject names that are not valid shell variable names. | 1354 | # Reject names that are not valid shell variable names. |
1346 | case $ac_envvar in #( | 1355 | case $ac_envvar in #( |
1347 | '' | [0-9]* | *[!_$as_cr_alnum]* ) | 1356 | '' | [0-9]* | *[!_$as_cr_alnum]* ) |
1348 | as_fn_error "invalid variable name: \`$ac_envvar'" ;; | 1357 | as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; |
1349 | esac | 1358 | esac |
1350 | eval $ac_envvar=\$ac_optarg | 1359 | eval $ac_envvar=\$ac_optarg |
1351 | export $ac_envvar ;; | 1360 | export $ac_envvar ;; |
@@ -1363,13 +1372,13 @@ done | |||
1363 | 1372 | ||
1364 | if test -n "$ac_prev"; then | 1373 | if test -n "$ac_prev"; then |
1365 | ac_option=--`echo $ac_prev | sed 's/_/-/g'` | 1374 | ac_option=--`echo $ac_prev | sed 's/_/-/g'` |
1366 | as_fn_error "missing argument to $ac_option" | 1375 | as_fn_error $? "missing argument to $ac_option" |
1367 | fi | 1376 | fi |
1368 | 1377 | ||
1369 | if test -n "$ac_unrecognized_opts"; then | 1378 | if test -n "$ac_unrecognized_opts"; then |
1370 | case $enable_option_checking in | 1379 | case $enable_option_checking in |
1371 | no) ;; | 1380 | no) ;; |
1372 | fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; | 1381 | fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; |
1373 | *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; | 1382 | *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; |
1374 | esac | 1383 | esac |
1375 | fi | 1384 | fi |
@@ -1392,7 +1401,7 @@ do | |||
1392 | [\\/$]* | ?:[\\/]* ) continue;; | 1401 | [\\/$]* | ?:[\\/]* ) continue;; |
1393 | NONE | '' ) case $ac_var in *prefix ) continue;; esac;; | 1402 | NONE | '' ) case $ac_var in *prefix ) continue;; esac;; |
1394 | esac | 1403 | esac |
1395 | as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" | 1404 | as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" |
1396 | done | 1405 | done |
1397 | 1406 | ||
1398 | # There might be people who depend on the old broken behavior: `$host' | 1407 | # There might be people who depend on the old broken behavior: `$host' |
@@ -1406,8 +1415,8 @@ target=$target_alias | |||
1406 | if test "x$host_alias" != x; then | 1415 | if test "x$host_alias" != x; then |
1407 | if test "x$build_alias" = x; then | 1416 | if test "x$build_alias" = x; then |
1408 | cross_compiling=maybe | 1417 | cross_compiling=maybe |
1409 | $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. | 1418 | $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. |
1410 | If a cross compiler is detected then cross compile mode will be used." >&2 | 1419 | If a cross compiler is detected then cross compile mode will be used" >&2 |
1411 | elif test "x$build_alias" != "x$host_alias"; then | 1420 | elif test "x$build_alias" != "x$host_alias"; then |
1412 | cross_compiling=yes | 1421 | cross_compiling=yes |
1413 | fi | 1422 | fi |
@@ -1422,9 +1431,9 @@ test "$silent" = yes && exec 6>/dev/null | |||
1422 | ac_pwd=`pwd` && test -n "$ac_pwd" && | 1431 | ac_pwd=`pwd` && test -n "$ac_pwd" && |
1423 | ac_ls_di=`ls -di .` && | 1432 | ac_ls_di=`ls -di .` && |
1424 | ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || | 1433 | ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || |
1425 | as_fn_error "working directory cannot be determined" | 1434 | as_fn_error $? "working directory cannot be determined" |
1426 | test "X$ac_ls_di" = "X$ac_pwd_ls_di" || | 1435 | test "X$ac_ls_di" = "X$ac_pwd_ls_di" || |
1427 | as_fn_error "pwd does not report name of working directory" | 1436 | as_fn_error $? "pwd does not report name of working directory" |
1428 | 1437 | ||
1429 | 1438 | ||
1430 | # Find the source files, if location was not specified. | 1439 | # Find the source files, if location was not specified. |
@@ -1463,11 +1472,11 @@ else | |||
1463 | fi | 1472 | fi |
1464 | if test ! -r "$srcdir/$ac_unique_file"; then | 1473 | if test ! -r "$srcdir/$ac_unique_file"; then |
1465 | test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." | 1474 | test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." |
1466 | as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" | 1475 | as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" |
1467 | fi | 1476 | fi |
1468 | ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" | 1477 | ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" |
1469 | ac_abs_confdir=`( | 1478 | ac_abs_confdir=`( |
1470 | cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" | 1479 | cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" |
1471 | pwd)` | 1480 | pwd)` |
1472 | # When building in place, set srcdir=. | 1481 | # When building in place, set srcdir=. |
1473 | if test "$ac_abs_confdir" = "$ac_pwd"; then | 1482 | if test "$ac_abs_confdir" = "$ac_pwd"; then |
@@ -1493,7 +1502,7 @@ if test "$ac_init_help" = "long"; then | |||
1493 | # Omit some internal or obsolete options to make the list less imposing. | 1502 | # Omit some internal or obsolete options to make the list less imposing. |
1494 | # This message is too long to be a string in the A/UX 3.1 sh. | 1503 | # This message is too long to be a string in the A/UX 3.1 sh. |
1495 | cat <<_ACEOF | 1504 | cat <<_ACEOF |
1496 | \`configure' configures eet 1.5.99.67344 to adapt to many kinds of systems. | 1505 | \`configure' configures eet 1.6.0-alpha to adapt to many kinds of systems. |
1497 | 1506 | ||
1498 | Usage: $0 [OPTION]... [VAR=VALUE]... | 1507 | Usage: $0 [OPTION]... [VAR=VALUE]... |
1499 | 1508 | ||
@@ -1507,7 +1516,7 @@ Configuration: | |||
1507 | --help=short display options specific to this package | 1516 | --help=short display options specific to this package |
1508 | --help=recursive display the short help of all the included packages | 1517 | --help=recursive display the short help of all the included packages |
1509 | -V, --version display version information and exit | 1518 | -V, --version display version information and exit |
1510 | -q, --quiet, --silent do not print \`checking...' messages | 1519 | -q, --quiet, --silent do not print \`checking ...' messages |
1511 | --cache-file=FILE cache test results in FILE [disabled] | 1520 | --cache-file=FILE cache test results in FILE [disabled] |
1512 | -C, --config-cache alias for \`--cache-file=config.cache' | 1521 | -C, --config-cache alias for \`--cache-file=config.cache' |
1513 | -n, --no-create do not create output files | 1522 | -n, --no-create do not create output files |
@@ -1563,7 +1572,7 @@ fi | |||
1563 | 1572 | ||
1564 | if test -n "$ac_init_help"; then | 1573 | if test -n "$ac_init_help"; then |
1565 | case $ac_init_help in | 1574 | case $ac_init_help in |
1566 | short | recursive ) echo "Configuration of eet 1.5.99.67344:";; | 1575 | short | recursive ) echo "Configuration of eet 1.6.0-alpha:";; |
1567 | esac | 1576 | esac |
1568 | cat <<\_ACEOF | 1577 | cat <<\_ACEOF |
1569 | 1578 | ||
@@ -1586,10 +1595,6 @@ Optional Features: | |||
1586 | --disable-old-eet-file-format | 1595 | --disable-old-eet-file-format |
1587 | disable old eet file format support. | 1596 | disable old eet file format support. |
1588 | [[default=enabled]] | 1597 | [[default=enabled]] |
1589 | --disable-gnutls disable gnutls eet support | ||
1590 | --disable-new-gnutls-api | ||
1591 | enable use of gnutls_x509_crt_verify_hash. | ||
1592 | [[default=enable]] | ||
1593 | --disable-openssl disable openssl eet support | 1598 | --disable-openssl disable openssl eet support |
1594 | --disable-cipher disable cipher support for eet API | 1599 | --disable-cipher disable cipher support for eet API |
1595 | --disable-signature disable signature file support for eet | 1600 | --disable-signature disable signature file support for eet |
@@ -1602,6 +1607,10 @@ Optional Features: | |||
1602 | --enable-coverage enable coverage profiling instrumentation | 1607 | --enable-coverage enable coverage profiling instrumentation |
1603 | [default=disabled] | 1608 | [default=disabled] |
1604 | --disable-doc Disable documentation build [default=enabled] | 1609 | --disable-doc Disable documentation build [default=enabled] |
1610 | --disable-gnutls disable gnutls eet support | ||
1611 | --disable-new-gnutls-api | ||
1612 | enable use of gnutls_x509_crt_verify_hash. | ||
1613 | [[default=enable]] | ||
1605 | 1614 | ||
1606 | Optional Packages: | 1615 | Optional Packages: |
1607 | --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] | 1616 | --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] |
@@ -1623,6 +1632,10 @@ Some influential environment variables: | |||
1623 | you have headers in a nonstandard directory <include dir> | 1632 | you have headers in a nonstandard directory <include dir> |
1624 | CPP C preprocessor | 1633 | CPP C preprocessor |
1625 | PKG_CONFIG path to pkg-config utility | 1634 | PKG_CONFIG path to pkg-config utility |
1635 | PKG_CONFIG_PATH | ||
1636 | directories to add to pkg-config's search path | ||
1637 | PKG_CONFIG_LIBDIR | ||
1638 | path overriding pkg-config's built-in search path | ||
1626 | CHECK_CFLAGS | 1639 | CHECK_CFLAGS |
1627 | C compiler flags for CHECK, overriding pkg-config | 1640 | C compiler flags for CHECK, overriding pkg-config |
1628 | CHECK_LIBS linker flags for CHECK, overriding pkg-config | 1641 | CHECK_LIBS linker flags for CHECK, overriding pkg-config |
@@ -1630,6 +1643,9 @@ Some influential environment variables: | |||
1630 | EVIL_LIBS linker flags for EVIL, overriding pkg-config | 1643 | EVIL_LIBS linker flags for EVIL, overriding pkg-config |
1631 | EINA_CFLAGS C compiler flags for EINA, overriding pkg-config | 1644 | EINA_CFLAGS C compiler flags for EINA, overriding pkg-config |
1632 | EINA_LIBS linker flags for EINA, overriding pkg-config | 1645 | EINA_LIBS linker flags for EINA, overriding pkg-config |
1646 | EXOTIC_CFLAGS | ||
1647 | C compiler flags for EXOTIC, overriding pkg-config | ||
1648 | EXOTIC_LIBS linker flags for EXOTIC, overriding pkg-config | ||
1633 | GNUTLS_CFLAGS | 1649 | GNUTLS_CFLAGS |
1634 | C compiler flags for GNUTLS, overriding pkg-config | 1650 | C compiler flags for GNUTLS, overriding pkg-config |
1635 | GNUTLS_LIBS linker flags for GNUTLS, overriding pkg-config | 1651 | GNUTLS_LIBS linker flags for GNUTLS, overriding pkg-config |
@@ -1704,10 +1720,10 @@ fi | |||
1704 | test -n "$ac_init_help" && exit $ac_status | 1720 | test -n "$ac_init_help" && exit $ac_status |
1705 | if $ac_init_version; then | 1721 | if $ac_init_version; then |
1706 | cat <<\_ACEOF | 1722 | cat <<\_ACEOF |
1707 | eet configure 1.5.99.67344 | 1723 | eet configure 1.6.0-alpha |
1708 | generated by GNU Autoconf 2.65 | 1724 | generated by GNU Autoconf 2.67 |
1709 | 1725 | ||
1710 | Copyright (C) 2009 Free Software Foundation, Inc. | 1726 | Copyright (C) 2010 Free Software Foundation, Inc. |
1711 | This configure script is free software; the Free Software Foundation | 1727 | This configure script is free software; the Free Software Foundation |
1712 | gives unlimited permission to copy, distribute and modify it. | 1728 | gives unlimited permission to copy, distribute and modify it. |
1713 | _ACEOF | 1729 | _ACEOF |
@@ -1811,7 +1827,7 @@ ac_fn_c_check_header_compile () | |||
1811 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | 1827 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack |
1812 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 | 1828 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 |
1813 | $as_echo_n "checking for $2... " >&6; } | 1829 | $as_echo_n "checking for $2... " >&6; } |
1814 | if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : | 1830 | if eval "test \"\${$3+set}\"" = set; then : |
1815 | $as_echo_n "(cached) " >&6 | 1831 | $as_echo_n "(cached) " >&6 |
1816 | else | 1832 | else |
1817 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | 1833 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
@@ -1854,7 +1870,7 @@ $as_echo "$ac_try_echo"; } >&5 | |||
1854 | mv -f conftest.er1 conftest.err | 1870 | mv -f conftest.er1 conftest.err |
1855 | fi | 1871 | fi |
1856 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | 1872 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 |
1857 | test $ac_status = 0; } >/dev/null && { | 1873 | test $ac_status = 0; } > conftest.i && { |
1858 | test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || | 1874 | test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || |
1859 | test ! -s conftest.err | 1875 | test ! -s conftest.err |
1860 | }; then : | 1876 | }; then : |
@@ -1920,7 +1936,7 @@ ac_fn_c_check_func () | |||
1920 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | 1936 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack |
1921 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 | 1937 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 |
1922 | $as_echo_n "checking for $2... " >&6; } | 1938 | $as_echo_n "checking for $2... " >&6; } |
1923 | if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : | 1939 | if eval "test \"\${$3+set}\"" = set; then : |
1924 | $as_echo_n "(cached) " >&6 | 1940 | $as_echo_n "(cached) " >&6 |
1925 | else | 1941 | else |
1926 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | 1942 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
@@ -1987,10 +2003,10 @@ $as_echo "$ac_res" >&6; } | |||
1987 | ac_fn_c_check_header_mongrel () | 2003 | ac_fn_c_check_header_mongrel () |
1988 | { | 2004 | { |
1989 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | 2005 | as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack |
1990 | if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : | 2006 | if eval "test \"\${$3+set}\"" = set; then : |
1991 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 | 2007 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 |
1992 | $as_echo_n "checking for $2... " >&6; } | 2008 | $as_echo_n "checking for $2... " >&6; } |
1993 | if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : | 2009 | if eval "test \"\${$3+set}\"" = set; then : |
1994 | $as_echo_n "(cached) " >&6 | 2010 | $as_echo_n "(cached) " >&6 |
1995 | fi | 2011 | fi |
1996 | eval ac_res=\$$3 | 2012 | eval ac_res=\$$3 |
@@ -2026,7 +2042,7 @@ if ac_fn_c_try_cpp "$LINENO"; then : | |||
2026 | else | 2042 | else |
2027 | ac_header_preproc=no | 2043 | ac_header_preproc=no |
2028 | fi | 2044 | fi |
2029 | rm -f conftest.err conftest.$ac_ext | 2045 | rm -f conftest.err conftest.i conftest.$ac_ext |
2030 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 | 2046 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 |
2031 | $as_echo "$ac_header_preproc" >&6; } | 2047 | $as_echo "$ac_header_preproc" >&6; } |
2032 | 2048 | ||
@@ -2049,17 +2065,15 @@ $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} | |||
2049 | $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} | 2065 | $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} |
2050 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 | 2066 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 |
2051 | $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} | 2067 | $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} |
2052 | ( cat <<\_ASBOX | 2068 | ( $as_echo "## -------------------------------------------------------- ## |
2053 | ## -------------------------------------------------------- ## | ||
2054 | ## Report this to enlightenment-devel@lists.sourceforge.net ## | 2069 | ## Report this to enlightenment-devel@lists.sourceforge.net ## |
2055 | ## -------------------------------------------------------- ## | 2070 | ## -------------------------------------------------------- ##" |
2056 | _ASBOX | ||
2057 | ) | sed "s/^/$as_me: WARNING: /" >&2 | 2071 | ) | sed "s/^/$as_me: WARNING: /" >&2 |
2058 | ;; | 2072 | ;; |
2059 | esac | 2073 | esac |
2060 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 | 2074 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 |
2061 | $as_echo_n "checking for $2... " >&6; } | 2075 | $as_echo_n "checking for $2... " >&6; } |
2062 | if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : | 2076 | if eval "test \"\${$3+set}\"" = set; then : |
2063 | $as_echo_n "(cached) " >&6 | 2077 | $as_echo_n "(cached) " >&6 |
2064 | else | 2078 | else |
2065 | eval "$3=\$ac_header_compiler" | 2079 | eval "$3=\$ac_header_compiler" |
@@ -2075,8 +2089,8 @@ cat >config.log <<_ACEOF | |||
2075 | This file contains any messages produced by compilers while | 2089 | This file contains any messages produced by compilers while |
2076 | running configure, to aid debugging if configure makes a mistake. | 2090 | running configure, to aid debugging if configure makes a mistake. |
2077 | 2091 | ||
2078 | It was created by eet $as_me 1.5.99.67344, which was | 2092 | It was created by eet $as_me 1.6.0-alpha, which was |
2079 | generated by GNU Autoconf 2.65. Invocation command line was | 2093 | generated by GNU Autoconf 2.67. Invocation command line was |
2080 | 2094 | ||
2081 | $ $0 $@ | 2095 | $ $0 $@ |
2082 | 2096 | ||
@@ -2186,11 +2200,9 @@ trap 'exit_status=$? | |||
2186 | { | 2200 | { |
2187 | echo | 2201 | echo |
2188 | 2202 | ||
2189 | cat <<\_ASBOX | 2203 | $as_echo "## ---------------- ## |
2190 | ## ---------------- ## | ||
2191 | ## Cache variables. ## | 2204 | ## Cache variables. ## |
2192 | ## ---------------- ## | 2205 | ## ---------------- ##" |
2193 | _ASBOX | ||
2194 | echo | 2206 | echo |
2195 | # The following way of writing the cache mishandles newlines in values, | 2207 | # The following way of writing the cache mishandles newlines in values, |
2196 | ( | 2208 | ( |
@@ -2224,11 +2236,9 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; | |||
2224 | ) | 2236 | ) |
2225 | echo | 2237 | echo |
2226 | 2238 | ||
2227 | cat <<\_ASBOX | 2239 | $as_echo "## ----------------- ## |
2228 | ## ----------------- ## | ||
2229 | ## Output variables. ## | 2240 | ## Output variables. ## |
2230 | ## ----------------- ## | 2241 | ## ----------------- ##" |
2231 | _ASBOX | ||
2232 | echo | 2242 | echo |
2233 | for ac_var in $ac_subst_vars | 2243 | for ac_var in $ac_subst_vars |
2234 | do | 2244 | do |
@@ -2241,11 +2251,9 @@ _ASBOX | |||
2241 | echo | 2251 | echo |
2242 | 2252 | ||
2243 | if test -n "$ac_subst_files"; then | 2253 | if test -n "$ac_subst_files"; then |
2244 | cat <<\_ASBOX | 2254 | $as_echo "## ------------------- ## |
2245 | ## ------------------- ## | ||
2246 | ## File substitutions. ## | 2255 | ## File substitutions. ## |
2247 | ## ------------------- ## | 2256 | ## ------------------- ##" |
2248 | _ASBOX | ||
2249 | echo | 2257 | echo |
2250 | for ac_var in $ac_subst_files | 2258 | for ac_var in $ac_subst_files |
2251 | do | 2259 | do |
@@ -2259,11 +2267,9 @@ _ASBOX | |||
2259 | fi | 2267 | fi |
2260 | 2268 | ||
2261 | if test -s confdefs.h; then | 2269 | if test -s confdefs.h; then |
2262 | cat <<\_ASBOX | 2270 | $as_echo "## ----------- ## |
2263 | ## ----------- ## | ||
2264 | ## confdefs.h. ## | 2271 | ## confdefs.h. ## |
2265 | ## ----------- ## | 2272 | ## ----------- ##" |
2266 | _ASBOX | ||
2267 | echo | 2273 | echo |
2268 | cat confdefs.h | 2274 | cat confdefs.h |
2269 | echo | 2275 | echo |
@@ -2318,7 +2324,12 @@ _ACEOF | |||
2318 | ac_site_file1=NONE | 2324 | ac_site_file1=NONE |
2319 | ac_site_file2=NONE | 2325 | ac_site_file2=NONE |
2320 | if test -n "$CONFIG_SITE"; then | 2326 | if test -n "$CONFIG_SITE"; then |
2321 | ac_site_file1=$CONFIG_SITE | 2327 | # We do not want a PATH search for config.site. |
2328 | case $CONFIG_SITE in #(( | ||
2329 | -*) ac_site_file1=./$CONFIG_SITE;; | ||
2330 | */*) ac_site_file1=$CONFIG_SITE;; | ||
2331 | *) ac_site_file1=./$CONFIG_SITE;; | ||
2332 | esac | ||
2322 | elif test "x$prefix" != xNONE; then | 2333 | elif test "x$prefix" != xNONE; then |
2323 | ac_site_file1=$prefix/share/config.site | 2334 | ac_site_file1=$prefix/share/config.site |
2324 | ac_site_file2=$prefix/etc/config.site | 2335 | ac_site_file2=$prefix/etc/config.site |
@@ -2333,7 +2344,11 @@ do | |||
2333 | { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 | 2344 | { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 |
2334 | $as_echo "$as_me: loading site script $ac_site_file" >&6;} | 2345 | $as_echo "$as_me: loading site script $ac_site_file" >&6;} |
2335 | sed 's/^/| /' "$ac_site_file" >&5 | 2346 | sed 's/^/| /' "$ac_site_file" >&5 |
2336 | . "$ac_site_file" | 2347 | . "$ac_site_file" \ |
2348 | || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | ||
2349 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | ||
2350 | as_fn_error $? "failed to load site script $ac_site_file | ||
2351 | See \`config.log' for more details" "$LINENO" 5 ; } | ||
2337 | fi | 2352 | fi |
2338 | done | 2353 | done |
2339 | 2354 | ||
@@ -2409,7 +2424,7 @@ if $ac_cache_corrupted; then | |||
2409 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | 2424 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
2410 | { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 | 2425 | { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 |
2411 | $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} | 2426 | $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} |
2412 | as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 | 2427 | as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 |
2413 | fi | 2428 | fi |
2414 | ## -------------------- ## | 2429 | ## -------------------- ## |
2415 | ## Main body of script. ## | 2430 | ## Main body of script. ## |
@@ -2435,16 +2450,22 @@ am__api_version='1.11' | |||
2435 | 2450 | ||
2436 | ac_aux_dir= | 2451 | ac_aux_dir= |
2437 | for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do | 2452 | for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do |
2438 | for ac_t in install-sh install.sh shtool; do | 2453 | if test -f "$ac_dir/install-sh"; then |
2439 | if test -f "$ac_dir/$ac_t"; then | 2454 | ac_aux_dir=$ac_dir |
2440 | ac_aux_dir=$ac_dir | 2455 | ac_install_sh="$ac_aux_dir/install-sh -c" |
2441 | ac_install_sh="$ac_aux_dir/$ac_t -c" | 2456 | break |
2442 | break 2 | 2457 | elif test -f "$ac_dir/install.sh"; then |
2443 | fi | 2458 | ac_aux_dir=$ac_dir |
2444 | done | 2459 | ac_install_sh="$ac_aux_dir/install.sh -c" |
2460 | break | ||
2461 | elif test -f "$ac_dir/shtool"; then | ||
2462 | ac_aux_dir=$ac_dir | ||
2463 | ac_install_sh="$ac_aux_dir/shtool install -c" | ||
2464 | break | ||
2465 | fi | ||
2445 | done | 2466 | done |
2446 | if test -z "$ac_aux_dir"; then | 2467 | if test -z "$ac_aux_dir"; then |
2447 | as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 | 2468 | as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 |
2448 | fi | 2469 | fi |
2449 | 2470 | ||
2450 | # These three variables are undocumented and unsupported, | 2471 | # These three variables are undocumented and unsupported, |
@@ -2560,11 +2581,11 @@ am_lf=' | |||
2560 | ' | 2581 | ' |
2561 | case `pwd` in | 2582 | case `pwd` in |
2562 | *[\\\"\#\$\&\'\`$am_lf]*) | 2583 | *[\\\"\#\$\&\'\`$am_lf]*) |
2563 | as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; | 2584 | as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5 ;; |
2564 | esac | 2585 | esac |
2565 | case $srcdir in | 2586 | case $srcdir in |
2566 | *[\\\"\#\$\&\'\`$am_lf\ \ ]*) | 2587 | *[\\\"\#\$\&\'\`$am_lf\ \ ]*) |
2567 | as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; | 2588 | as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5 ;; |
2568 | esac | 2589 | esac |
2569 | 2590 | ||
2570 | # Do `set' in a subshell so we don't clobber the current shell's | 2591 | # Do `set' in a subshell so we don't clobber the current shell's |
@@ -2586,7 +2607,7 @@ if ( | |||
2586 | # if, for instance, CONFIG_SHELL is bash and it inherits a | 2607 | # if, for instance, CONFIG_SHELL is bash and it inherits a |
2587 | # broken ls alias from the environment. This has actually | 2608 | # broken ls alias from the environment. This has actually |
2588 | # happened. Such a system could not be considered "sane". | 2609 | # happened. Such a system could not be considered "sane". |
2589 | as_fn_error "ls -t appears to fail. Make sure there is not a broken | 2610 | as_fn_error $? "ls -t appears to fail. Make sure there is not a broken |
2590 | alias in your environment" "$LINENO" 5 | 2611 | alias in your environment" "$LINENO" 5 |
2591 | fi | 2612 | fi |
2592 | 2613 | ||
@@ -2596,7 +2617,7 @@ then | |||
2596 | # Ok. | 2617 | # Ok. |
2597 | : | 2618 | : |
2598 | else | 2619 | else |
2599 | as_fn_error "newly created file is older than distributed files! | 2620 | as_fn_error $? "newly created file is older than distributed files! |
2600 | Check your system clock" "$LINENO" 5 | 2621 | Check your system clock" "$LINENO" 5 |
2601 | fi | 2622 | fi |
2602 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | 2623 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 |
@@ -2834,7 +2855,7 @@ done | |||
2834 | $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } | 2855 | $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } |
2835 | set x ${MAKE-make} | 2856 | set x ${MAKE-make} |
2836 | ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` | 2857 | ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` |
2837 | if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : | 2858 | if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\"" = set; then : |
2838 | $as_echo_n "(cached) " >&6 | 2859 | $as_echo_n "(cached) " >&6 |
2839 | else | 2860 | else |
2840 | cat >conftest.make <<\_ACEOF | 2861 | cat >conftest.make <<\_ACEOF |
@@ -2842,7 +2863,7 @@ SHELL = /bin/sh | |||
2842 | all: | 2863 | all: |
2843 | @echo '@@@%%%=$(MAKE)=@@@%%%' | 2864 | @echo '@@@%%%=$(MAKE)=@@@%%%' |
2844 | _ACEOF | 2865 | _ACEOF |
2845 | # GNU make sometimes prints "make[1]: Entering...", which would confuse us. | 2866 | # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. |
2846 | case `${MAKE-make} -f conftest.make 2>/dev/null` in | 2867 | case `${MAKE-make} -f conftest.make 2>/dev/null` in |
2847 | *@@@%%%=?*=@@@%%%*) | 2868 | *@@@%%%=?*=@@@%%%*) |
2848 | eval ac_cv_prog_make_${ac_make}_set=yes;; | 2869 | eval ac_cv_prog_make_${ac_make}_set=yes;; |
@@ -2876,7 +2897,7 @@ if test "`cd $srcdir && pwd`" != "`pwd`"; then | |||
2876 | am__isrc=' -I$(srcdir)' | 2897 | am__isrc=' -I$(srcdir)' |
2877 | # test to see if srcdir already configured | 2898 | # test to see if srcdir already configured |
2878 | if test -f $srcdir/config.status; then | 2899 | if test -f $srcdir/config.status; then |
2879 | as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 | 2900 | as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 |
2880 | fi | 2901 | fi |
2881 | fi | 2902 | fi |
2882 | 2903 | ||
@@ -2892,7 +2913,7 @@ fi | |||
2892 | 2913 | ||
2893 | # Define the identity of the package. | 2914 | # Define the identity of the package. |
2894 | PACKAGE='eet' | 2915 | PACKAGE='eet' |
2895 | VERSION='1.5.99.67344' | 2916 | VERSION='1.6.0-alpha' |
2896 | 2917 | ||
2897 | 2918 | ||
2898 | cat >>confdefs.h <<_ACEOF | 2919 | cat >>confdefs.h <<_ACEOF |
@@ -2947,7 +2968,7 @@ AM_BACKSLASH='\' | |||
2947 | 2968 | ||
2948 | # Make sure we can run config.sub. | 2969 | # Make sure we can run config.sub. |
2949 | $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || | 2970 | $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || |
2950 | as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 | 2971 | as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 |
2951 | 2972 | ||
2952 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 | 2973 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 |
2953 | $as_echo_n "checking build system type... " >&6; } | 2974 | $as_echo_n "checking build system type... " >&6; } |
@@ -2958,16 +2979,16 @@ else | |||
2958 | test "x$ac_build_alias" = x && | 2979 | test "x$ac_build_alias" = x && |
2959 | ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` | 2980 | ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` |
2960 | test "x$ac_build_alias" = x && | 2981 | test "x$ac_build_alias" = x && |
2961 | as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 | 2982 | as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 |
2962 | ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || | 2983 | ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || |
2963 | as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 | 2984 | as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 |
2964 | 2985 | ||
2965 | fi | 2986 | fi |
2966 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 | 2987 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 |
2967 | $as_echo "$ac_cv_build" >&6; } | 2988 | $as_echo "$ac_cv_build" >&6; } |
2968 | case $ac_cv_build in | 2989 | case $ac_cv_build in |
2969 | *-*-*) ;; | 2990 | *-*-*) ;; |
2970 | *) as_fn_error "invalid value of canonical build" "$LINENO" 5;; | 2991 | *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5 ;; |
2971 | esac | 2992 | esac |
2972 | build=$ac_cv_build | 2993 | build=$ac_cv_build |
2973 | ac_save_IFS=$IFS; IFS='-' | 2994 | ac_save_IFS=$IFS; IFS='-' |
@@ -2992,7 +3013,7 @@ else | |||
2992 | ac_cv_host=$ac_cv_build | 3013 | ac_cv_host=$ac_cv_build |
2993 | else | 3014 | else |
2994 | ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || | 3015 | ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || |
2995 | as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 | 3016 | as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 |
2996 | fi | 3017 | fi |
2997 | 3018 | ||
2998 | fi | 3019 | fi |
@@ -3000,7 +3021,7 @@ fi | |||
3000 | $as_echo "$ac_cv_host" >&6; } | 3021 | $as_echo "$ac_cv_host" >&6; } |
3001 | case $ac_cv_host in | 3022 | case $ac_cv_host in |
3002 | *-*-*) ;; | 3023 | *-*-*) ;; |
3003 | *) as_fn_error "invalid value of canonical host" "$LINENO" 5;; | 3024 | *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5 ;; |
3004 | esac | 3025 | esac |
3005 | host=$ac_cv_host | 3026 | host=$ac_cv_host |
3006 | ac_save_IFS=$IFS; IFS='-' | 3027 | ac_save_IFS=$IFS; IFS='-' |
@@ -3706,8 +3727,8 @@ fi | |||
3706 | 3727 | ||
3707 | test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | 3728 | test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |
3708 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | 3729 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
3709 | as_fn_error "no acceptable C compiler found in \$PATH | 3730 | as_fn_error $? "no acceptable C compiler found in \$PATH |
3710 | See \`config.log' for more details." "$LINENO" 5; } | 3731 | See \`config.log' for more details" "$LINENO" 5 ; } |
3711 | 3732 | ||
3712 | # Provide some information about the compiler. | 3733 | # Provide some information about the compiler. |
3713 | $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 | 3734 | $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 |
@@ -3821,9 +3842,8 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
3821 | 3842 | ||
3822 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | 3843 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |
3823 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | 3844 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
3824 | { as_fn_set_status 77 | 3845 | as_fn_error 77 "C compiler cannot create executables |
3825 | as_fn_error "C compiler cannot create executables | 3846 | See \`config.log' for more details" "$LINENO" 5 ; } |
3826 | See \`config.log' for more details." "$LINENO" 5; }; } | ||
3827 | else | 3847 | else |
3828 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | 3848 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 |
3829 | $as_echo "yes" >&6; } | 3849 | $as_echo "yes" >&6; } |
@@ -3865,8 +3885,8 @@ done | |||
3865 | else | 3885 | else |
3866 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | 3886 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |
3867 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | 3887 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
3868 | as_fn_error "cannot compute suffix of executables: cannot compile and link | 3888 | as_fn_error $? "cannot compute suffix of executables: cannot compile and link |
3869 | See \`config.log' for more details." "$LINENO" 5; } | 3889 | See \`config.log' for more details" "$LINENO" 5 ; } |
3870 | fi | 3890 | fi |
3871 | rm -f conftest conftest$ac_cv_exeext | 3891 | rm -f conftest conftest$ac_cv_exeext |
3872 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 | 3892 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 |
@@ -3923,9 +3943,9 @@ $as_echo "$ac_try_echo"; } >&5 | |||
3923 | else | 3943 | else |
3924 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | 3944 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |
3925 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | 3945 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
3926 | as_fn_error "cannot run C compiled programs. | 3946 | as_fn_error $? "cannot run C compiled programs. |
3927 | If you meant to cross compile, use \`--host'. | 3947 | If you meant to cross compile, use \`--host'. |
3928 | See \`config.log' for more details." "$LINENO" 5; } | 3948 | See \`config.log' for more details" "$LINENO" 5 ; } |
3929 | fi | 3949 | fi |
3930 | fi | 3950 | fi |
3931 | fi | 3951 | fi |
@@ -3976,8 +3996,8 @@ sed 's/^/| /' conftest.$ac_ext >&5 | |||
3976 | 3996 | ||
3977 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | 3997 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |
3978 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | 3998 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
3979 | as_fn_error "cannot compute suffix of object files: cannot compile | 3999 | as_fn_error $? "cannot compute suffix of object files: cannot compile |
3980 | See \`config.log' for more details." "$LINENO" 5; } | 4000 | See \`config.log' for more details" "$LINENO" 5 ; } |
3981 | fi | 4001 | fi |
3982 | rm -f conftest.$ac_cv_objext conftest.$ac_ext | 4002 | rm -f conftest.$ac_cv_objext conftest.$ac_ext |
3983 | fi | 4003 | fi |
@@ -4381,7 +4401,7 @@ esac | |||
4381 | done | 4401 | done |
4382 | IFS=$as_save_IFS | 4402 | IFS=$as_save_IFS |
4383 | if test -z "$ac_cv_path_SED"; then | 4403 | if test -z "$ac_cv_path_SED"; then |
4384 | as_fn_error "no acceptable sed could be found in \$PATH" "$LINENO" 5 | 4404 | as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 |
4385 | fi | 4405 | fi |
4386 | else | 4406 | else |
4387 | ac_cv_path_SED=$SED | 4407 | ac_cv_path_SED=$SED |
@@ -4457,7 +4477,7 @@ esac | |||
4457 | done | 4477 | done |
4458 | IFS=$as_save_IFS | 4478 | IFS=$as_save_IFS |
4459 | if test -z "$ac_cv_path_GREP"; then | 4479 | if test -z "$ac_cv_path_GREP"; then |
4460 | as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 | 4480 | as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 |
4461 | fi | 4481 | fi |
4462 | else | 4482 | else |
4463 | ac_cv_path_GREP=$GREP | 4483 | ac_cv_path_GREP=$GREP |
@@ -4523,7 +4543,7 @@ esac | |||
4523 | done | 4543 | done |
4524 | IFS=$as_save_IFS | 4544 | IFS=$as_save_IFS |
4525 | if test -z "$ac_cv_path_EGREP"; then | 4545 | if test -z "$ac_cv_path_EGREP"; then |
4526 | as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 | 4546 | as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 |
4527 | fi | 4547 | fi |
4528 | else | 4548 | else |
4529 | ac_cv_path_EGREP=$EGREP | 4549 | ac_cv_path_EGREP=$EGREP |
@@ -4590,7 +4610,7 @@ esac | |||
4590 | done | 4610 | done |
4591 | IFS=$as_save_IFS | 4611 | IFS=$as_save_IFS |
4592 | if test -z "$ac_cv_path_FGREP"; then | 4612 | if test -z "$ac_cv_path_FGREP"; then |
4593 | as_fn_error "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 | 4613 | as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 |
4594 | fi | 4614 | fi |
4595 | else | 4615 | else |
4596 | ac_cv_path_FGREP=$FGREP | 4616 | ac_cv_path_FGREP=$FGREP |
@@ -4706,7 +4726,7 @@ else | |||
4706 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | 4726 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 |
4707 | $as_echo "no" >&6; } | 4727 | $as_echo "no" >&6; } |
4708 | fi | 4728 | fi |
4709 | test -z "$LD" && as_fn_error "no acceptable ld found in \$PATH" "$LINENO" 5 | 4729 | test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 |
4710 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 | 4730 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 |
4711 | $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } | 4731 | $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } |
4712 | if test "${lt_cv_prog_gnu_ld+set}" = set; then : | 4732 | if test "${lt_cv_prog_gnu_ld+set}" = set; then : |
@@ -4908,13 +4928,13 @@ if test "${lt_cv_nm_interface+set}" = set; then : | |||
4908 | else | 4928 | else |
4909 | lt_cv_nm_interface="BSD nm" | 4929 | lt_cv_nm_interface="BSD nm" |
4910 | echo "int some_variable = 0;" > conftest.$ac_ext | 4930 | echo "int some_variable = 0;" > conftest.$ac_ext |
4911 | (eval echo "\"\$as_me:4911: $ac_compile\"" >&5) | 4931 | (eval echo "\"\$as_me:4931: $ac_compile\"" >&5) |
4912 | (eval "$ac_compile" 2>conftest.err) | 4932 | (eval "$ac_compile" 2>conftest.err) |
4913 | cat conftest.err >&5 | 4933 | cat conftest.err >&5 |
4914 | (eval echo "\"\$as_me:4914: $NM \\\"conftest.$ac_objext\\\"\"" >&5) | 4934 | (eval echo "\"\$as_me:4934: $NM \\\"conftest.$ac_objext\\\"\"" >&5) |
4915 | (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) | 4935 | (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) |
4916 | cat conftest.err >&5 | 4936 | cat conftest.err >&5 |
4917 | (eval echo "\"\$as_me:4917: output\"" >&5) | 4937 | (eval echo "\"\$as_me:4937: output\"" >&5) |
4918 | cat conftest.out >&5 | 4938 | cat conftest.out >&5 |
4919 | if $GREP 'External.*some_variable' conftest.out > /dev/null; then | 4939 | if $GREP 'External.*some_variable' conftest.out > /dev/null; then |
4920 | lt_cv_nm_interface="MS dumpbin" | 4940 | lt_cv_nm_interface="MS dumpbin" |
@@ -6117,7 +6137,7 @@ ia64-*-hpux*) | |||
6117 | ;; | 6137 | ;; |
6118 | *-*-irix6*) | 6138 | *-*-irix6*) |
6119 | # Find out which ABI we are using. | 6139 | # Find out which ABI we are using. |
6120 | echo '#line 6120 "configure"' > conftest.$ac_ext | 6140 | echo '#line 6140 "configure"' > conftest.$ac_ext |
6121 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 | 6141 | if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 |
6122 | (eval $ac_compile) 2>&5 | 6142 | (eval $ac_compile) 2>&5 |
6123 | ac_status=$? | 6143 | ac_status=$? |
@@ -6906,7 +6926,7 @@ else | |||
6906 | # Broken: fails on valid input. | 6926 | # Broken: fails on valid input. |
6907 | continue | 6927 | continue |
6908 | fi | 6928 | fi |
6909 | rm -f conftest.err conftest.$ac_ext | 6929 | rm -f conftest.err conftest.i conftest.$ac_ext |
6910 | 6930 | ||
6911 | # OK, works on sane cases. Now check whether nonexistent headers | 6931 | # OK, works on sane cases. Now check whether nonexistent headers |
6912 | # can be detected and how. | 6932 | # can be detected and how. |
@@ -6922,11 +6942,11 @@ else | |||
6922 | ac_preproc_ok=: | 6942 | ac_preproc_ok=: |
6923 | break | 6943 | break |
6924 | fi | 6944 | fi |
6925 | rm -f conftest.err conftest.$ac_ext | 6945 | rm -f conftest.err conftest.i conftest.$ac_ext |
6926 | 6946 | ||
6927 | done | 6947 | done |
6928 | # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. | 6948 | # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. |
6929 | rm -f conftest.err conftest.$ac_ext | 6949 | rm -f conftest.i conftest.err conftest.$ac_ext |
6930 | if $ac_preproc_ok; then : | 6950 | if $ac_preproc_ok; then : |
6931 | break | 6951 | break |
6932 | fi | 6952 | fi |
@@ -6965,7 +6985,7 @@ else | |||
6965 | # Broken: fails on valid input. | 6985 | # Broken: fails on valid input. |
6966 | continue | 6986 | continue |
6967 | fi | 6987 | fi |
6968 | rm -f conftest.err conftest.$ac_ext | 6988 | rm -f conftest.err conftest.i conftest.$ac_ext |
6969 | 6989 | ||
6970 | # OK, works on sane cases. Now check whether nonexistent headers | 6990 | # OK, works on sane cases. Now check whether nonexistent headers |
6971 | # can be detected and how. | 6991 | # can be detected and how. |
@@ -6981,18 +7001,18 @@ else | |||
6981 | ac_preproc_ok=: | 7001 | ac_preproc_ok=: |
6982 | break | 7002 | break |
6983 | fi | 7003 | fi |
6984 | rm -f conftest.err conftest.$ac_ext | 7004 | rm -f conftest.err conftest.i conftest.$ac_ext |
6985 | 7005 | ||
6986 | done | 7006 | done |
6987 | # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. | 7007 | # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. |
6988 | rm -f conftest.err conftest.$ac_ext | 7008 | rm -f conftest.i conftest.err conftest.$ac_ext |
6989 | if $ac_preproc_ok; then : | 7009 | if $ac_preproc_ok; then : |
6990 | 7010 | ||
6991 | else | 7011 | else |
6992 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | 7012 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |
6993 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | 7013 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
6994 | as_fn_error "C preprocessor \"$CPP\" fails sanity check | 7014 | as_fn_error $? "C preprocessor \"$CPP\" fails sanity check |
6995 | See \`config.log' for more details." "$LINENO" 5; } | 7015 | See \`config.log' for more details" "$LINENO" 5 ; } |
6996 | fi | 7016 | fi |
6997 | 7017 | ||
6998 | ac_ext=c | 7018 | ac_ext=c |
@@ -7121,8 +7141,7 @@ do : | |||
7121 | as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` | 7141 | as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` |
7122 | ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default | 7142 | ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default |
7123 | " | 7143 | " |
7124 | eval as_val=\$$as_ac_Header | 7144 | if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : |
7125 | if test "x$as_val" = x""yes; then : | ||
7126 | cat >>confdefs.h <<_ACEOF | 7145 | cat >>confdefs.h <<_ACEOF |
7127 | #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 | 7146 | #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 |
7128 | _ACEOF | 7147 | _ACEOF |
@@ -7645,11 +7664,11 @@ else | |||
7645 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ | 7664 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ |
7646 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 7665 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
7647 | -e 's:$: $lt_compiler_flag:'` | 7666 | -e 's:$: $lt_compiler_flag:'` |
7648 | (eval echo "\"\$as_me:7648: $lt_compile\"" >&5) | 7667 | (eval echo "\"\$as_me:7667: $lt_compile\"" >&5) |
7649 | (eval "$lt_compile" 2>conftest.err) | 7668 | (eval "$lt_compile" 2>conftest.err) |
7650 | ac_status=$? | 7669 | ac_status=$? |
7651 | cat conftest.err >&5 | 7670 | cat conftest.err >&5 |
7652 | echo "$as_me:7652: \$? = $ac_status" >&5 | 7671 | echo "$as_me:7671: \$? = $ac_status" >&5 |
7653 | if (exit $ac_status) && test -s "$ac_outfile"; then | 7672 | if (exit $ac_status) && test -s "$ac_outfile"; then |
7654 | # The compiler can only warn and ignore the option if not recognized | 7673 | # The compiler can only warn and ignore the option if not recognized |
7655 | # So say no if there are warnings other than the usual output. | 7674 | # So say no if there are warnings other than the usual output. |
@@ -7984,11 +8003,11 @@ else | |||
7984 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ | 8003 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ |
7985 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 8004 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
7986 | -e 's:$: $lt_compiler_flag:'` | 8005 | -e 's:$: $lt_compiler_flag:'` |
7987 | (eval echo "\"\$as_me:7987: $lt_compile\"" >&5) | 8006 | (eval echo "\"\$as_me:8006: $lt_compile\"" >&5) |
7988 | (eval "$lt_compile" 2>conftest.err) | 8007 | (eval "$lt_compile" 2>conftest.err) |
7989 | ac_status=$? | 8008 | ac_status=$? |
7990 | cat conftest.err >&5 | 8009 | cat conftest.err >&5 |
7991 | echo "$as_me:7991: \$? = $ac_status" >&5 | 8010 | echo "$as_me:8010: \$? = $ac_status" >&5 |
7992 | if (exit $ac_status) && test -s "$ac_outfile"; then | 8011 | if (exit $ac_status) && test -s "$ac_outfile"; then |
7993 | # The compiler can only warn and ignore the option if not recognized | 8012 | # The compiler can only warn and ignore the option if not recognized |
7994 | # So say no if there are warnings other than the usual output. | 8013 | # So say no if there are warnings other than the usual output. |
@@ -8089,11 +8108,11 @@ else | |||
8089 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ | 8108 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ |
8090 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 8109 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
8091 | -e 's:$: $lt_compiler_flag:'` | 8110 | -e 's:$: $lt_compiler_flag:'` |
8092 | (eval echo "\"\$as_me:8092: $lt_compile\"" >&5) | 8111 | (eval echo "\"\$as_me:8111: $lt_compile\"" >&5) |
8093 | (eval "$lt_compile" 2>out/conftest.err) | 8112 | (eval "$lt_compile" 2>out/conftest.err) |
8094 | ac_status=$? | 8113 | ac_status=$? |
8095 | cat out/conftest.err >&5 | 8114 | cat out/conftest.err >&5 |
8096 | echo "$as_me:8096: \$? = $ac_status" >&5 | 8115 | echo "$as_me:8115: \$? = $ac_status" >&5 |
8097 | if (exit $ac_status) && test -s out/conftest2.$ac_objext | 8116 | if (exit $ac_status) && test -s out/conftest2.$ac_objext |
8098 | then | 8117 | then |
8099 | # The compiler can only warn and ignore the option if not recognized | 8118 | # The compiler can only warn and ignore the option if not recognized |
@@ -8144,11 +8163,11 @@ else | |||
8144 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ | 8163 | -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ |
8145 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 8164 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
8146 | -e 's:$: $lt_compiler_flag:'` | 8165 | -e 's:$: $lt_compiler_flag:'` |
8147 | (eval echo "\"\$as_me:8147: $lt_compile\"" >&5) | 8166 | (eval echo "\"\$as_me:8166: $lt_compile\"" >&5) |
8148 | (eval "$lt_compile" 2>out/conftest.err) | 8167 | (eval "$lt_compile" 2>out/conftest.err) |
8149 | ac_status=$? | 8168 | ac_status=$? |
8150 | cat out/conftest.err >&5 | 8169 | cat out/conftest.err >&5 |
8151 | echo "$as_me:8151: \$? = $ac_status" >&5 | 8170 | echo "$as_me:8170: \$? = $ac_status" >&5 |
8152 | if (exit $ac_status) && test -s out/conftest2.$ac_objext | 8171 | if (exit $ac_status) && test -s out/conftest2.$ac_objext |
8153 | then | 8172 | then |
8154 | # The compiler can only warn and ignore the option if not recognized | 8173 | # The compiler can only warn and ignore the option if not recognized |
@@ -10528,7 +10547,7 @@ else | |||
10528 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | 10547 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 |
10529 | lt_status=$lt_dlunknown | 10548 | lt_status=$lt_dlunknown |
10530 | cat > conftest.$ac_ext <<_LT_EOF | 10549 | cat > conftest.$ac_ext <<_LT_EOF |
10531 | #line 10531 "configure" | 10550 | #line 10550 "configure" |
10532 | #include "confdefs.h" | 10551 | #include "confdefs.h" |
10533 | 10552 | ||
10534 | #if HAVE_DLFCN_H | 10553 | #if HAVE_DLFCN_H |
@@ -10624,7 +10643,7 @@ else | |||
10624 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | 10643 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 |
10625 | lt_status=$lt_dlunknown | 10644 | lt_status=$lt_dlunknown |
10626 | cat > conftest.$ac_ext <<_LT_EOF | 10645 | cat > conftest.$ac_ext <<_LT_EOF |
10627 | #line 10627 "configure" | 10646 | #line 10646 "configure" |
10628 | #include "confdefs.h" | 10647 | #include "confdefs.h" |
10629 | 10648 | ||
10630 | #if HAVE_DLFCN_H | 10649 | #if HAVE_DLFCN_H |
@@ -10863,20 +10882,20 @@ _ACEOF | |||
10863 | 10882 | ||
10864 | 10883 | ||
10865 | cat >>confdefs.h <<_ACEOF | 10884 | cat >>confdefs.h <<_ACEOF |
10866 | #define VMIN 5 | 10885 | #define VMIN 6 |
10867 | _ACEOF | 10886 | _ACEOF |
10868 | 10887 | ||
10869 | 10888 | ||
10870 | cat >>confdefs.h <<_ACEOF | 10889 | cat >>confdefs.h <<_ACEOF |
10871 | #define VMIC 99 | 10890 | #define VMIC 0 |
10872 | _ACEOF | 10891 | _ACEOF |
10873 | 10892 | ||
10874 | 10893 | ||
10875 | cat >>confdefs.h <<_ACEOF | 10894 | cat >>confdefs.h <<_ACEOF |
10876 | #define VREV 67344 | 10895 | #define VREV 0 |
10877 | _ACEOF | 10896 | _ACEOF |
10878 | 10897 | ||
10879 | version_info="6:99:5" | 10898 | version_info="7:0:6" |
10880 | release_info="" | 10899 | release_info="" |
10881 | 10900 | ||
10882 | 10901 | ||
@@ -10995,85 +11014,6 @@ $as_echo "#define EET_OLD_EET_FILE_FORMAT 0" >>confdefs.h | |||
10995 | 11014 | ||
10996 | fi | 11015 | fi |
10997 | 11016 | ||
10998 | # Gnutls support | ||
10999 | |||
11000 | # Check whether --enable-gnutls was given. | ||
11001 | if test "${enable_gnutls+set}" = set; then : | ||
11002 | enableval=$enable_gnutls; want_gnutls=$enableval | ||
11003 | |||
11004 | fi | ||
11005 | |||
11006 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use Gnutls" >&5 | ||
11007 | $as_echo_n "checking whether to use Gnutls... " >&6; } | ||
11008 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${want_gnutls}" >&5 | ||
11009 | $as_echo "${want_gnutls}" >&6; } | ||
11010 | |||
11011 | # Specific GNUTLS improvement | ||
11012 | |||
11013 | new_gnutls_api="yes" | ||
11014 | # Check whether --enable-new-gnutls-api was given. | ||
11015 | if test "${enable_new_gnutls_api+set}" = set; then : | ||
11016 | enableval=$enable_new_gnutls_api; new_gnutls_api=$enableval | ||
11017 | |||
11018 | fi | ||
11019 | |||
11020 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use gnutls_x509_crt_verify_hash" >&5 | ||
11021 | $as_echo_n "checking whether to use gnutls_x509_crt_verify_hash... " >&6; } | ||
11022 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${new_gnutls_api}" >&5 | ||
11023 | $as_echo "${new_gnutls_api}" >&6; } | ||
11024 | |||
11025 | if test "x${new_gnutls_api}" = "xyes" ; then | ||
11026 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gnutls_x509_crt_verify_hash in -lgnutls" >&5 | ||
11027 | $as_echo_n "checking for gnutls_x509_crt_verify_hash in -lgnutls... " >&6; } | ||
11028 | if test "${ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash+set}" = set; then : | ||
11029 | $as_echo_n "(cached) " >&6 | ||
11030 | else | ||
11031 | ac_check_lib_save_LIBS=$LIBS | ||
11032 | LIBS="-lgnutls $LIBS" | ||
11033 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||
11034 | /* end confdefs.h. */ | ||
11035 | |||
11036 | /* Override any GCC internal prototype to avoid an error. | ||
11037 | Use char because int might match the return type of a GCC | ||
11038 | builtin and then its argument prototype would still apply. */ | ||
11039 | #ifdef __cplusplus | ||
11040 | extern "C" | ||
11041 | #endif | ||
11042 | char gnutls_x509_crt_verify_hash (); | ||
11043 | int | ||
11044 | main () | ||
11045 | { | ||
11046 | return gnutls_x509_crt_verify_hash (); | ||
11047 | ; | ||
11048 | return 0; | ||
11049 | } | ||
11050 | _ACEOF | ||
11051 | if ac_fn_c_try_link "$LINENO"; then : | ||
11052 | ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash=yes | ||
11053 | else | ||
11054 | ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash=no | ||
11055 | fi | ||
11056 | rm -f core conftest.err conftest.$ac_objext \ | ||
11057 | conftest$ac_exeext conftest.$ac_ext | ||
11058 | LIBS=$ac_check_lib_save_LIBS | ||
11059 | fi | ||
11060 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash" >&5 | ||
11061 | $as_echo "$ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash" >&6; } | ||
11062 | if test "x$ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash" = x""yes; then : | ||
11063 | new_gnutls_api="yes" | ||
11064 | else | ||
11065 | new_gnutls_api="no" | ||
11066 | |||
11067 | fi | ||
11068 | |||
11069 | |||
11070 | if test "x${new_gnutls_api}" = "xyes"; then | ||
11071 | |||
11072 | $as_echo "#define EET_USE_NEW_GNUTLS_API 1" >>confdefs.h | ||
11073 | |||
11074 | fi | ||
11075 | fi | ||
11076 | |||
11077 | # Openssl support | 11017 | # Openssl support |
11078 | 11018 | ||
11079 | # Check whether --enable-openssl was given. | 11019 | # Check whether --enable-openssl was given. |
@@ -11170,6 +11110,10 @@ fi | |||
11170 | 11110 | ||
11171 | 11111 | ||
11172 | 11112 | ||
11113 | |||
11114 | |||
11115 | |||
11116 | |||
11173 | if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then | 11117 | if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then |
11174 | if test -n "$ac_tool_prefix"; then | 11118 | if test -n "$ac_tool_prefix"; then |
11175 | # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. | 11119 | # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. |
@@ -11282,7 +11226,6 @@ $as_echo "yes" >&6; } | |||
11282 | $as_echo "no" >&6; } | 11226 | $as_echo "no" >&6; } |
11283 | PKG_CONFIG="" | 11227 | PKG_CONFIG="" |
11284 | fi | 11228 | fi |
11285 | |||
11286 | fi | 11229 | fi |
11287 | 11230 | ||
11288 | 11231 | ||
@@ -11314,11 +11257,10 @@ pkg_failed=no | |||
11314 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CHECK" >&5 | 11257 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CHECK" >&5 |
11315 | $as_echo_n "checking for CHECK... " >&6; } | 11258 | $as_echo_n "checking for CHECK... " >&6; } |
11316 | 11259 | ||
11317 | if test -n "$PKG_CONFIG"; then | 11260 | if test -n "$CHECK_CFLAGS"; then |
11318 | if test -n "$CHECK_CFLAGS"; then | 11261 | pkg_cv_CHECK_CFLAGS="$CHECK_CFLAGS" |
11319 | pkg_cv_CHECK_CFLAGS="$CHECK_CFLAGS" | 11262 | elif test -n "$PKG_CONFIG"; then |
11320 | else | 11263 | if test -n "$PKG_CONFIG" && \ |
11321 | if test -n "$PKG_CONFIG" && \ | ||
11322 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"check >= 0.9.5\""; } >&5 | 11264 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"check >= 0.9.5\""; } >&5 |
11323 | ($PKG_CONFIG --exists --print-errors "check >= 0.9.5") 2>&5 | 11265 | ($PKG_CONFIG --exists --print-errors "check >= 0.9.5") 2>&5 |
11324 | ac_status=$? | 11266 | ac_status=$? |
@@ -11328,15 +11270,13 @@ if test -n "$PKG_CONFIG"; then | |||
11328 | else | 11270 | else |
11329 | pkg_failed=yes | 11271 | pkg_failed=yes |
11330 | fi | 11272 | fi |
11331 | fi | 11273 | else |
11332 | else | 11274 | pkg_failed=untried |
11333 | pkg_failed=untried | ||
11334 | fi | 11275 | fi |
11335 | if test -n "$PKG_CONFIG"; then | 11276 | if test -n "$CHECK_LIBS"; then |
11336 | if test -n "$CHECK_LIBS"; then | 11277 | pkg_cv_CHECK_LIBS="$CHECK_LIBS" |
11337 | pkg_cv_CHECK_LIBS="$CHECK_LIBS" | 11278 | elif test -n "$PKG_CONFIG"; then |
11338 | else | 11279 | if test -n "$PKG_CONFIG" && \ |
11339 | if test -n "$PKG_CONFIG" && \ | ||
11340 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"check >= 0.9.5\""; } >&5 | 11280 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"check >= 0.9.5\""; } >&5 |
11341 | ($PKG_CONFIG --exists --print-errors "check >= 0.9.5") 2>&5 | 11281 | ($PKG_CONFIG --exists --print-errors "check >= 0.9.5") 2>&5 |
11342 | ac_status=$? | 11282 | ac_status=$? |
@@ -11346,14 +11286,15 @@ if test -n "$PKG_CONFIG"; then | |||
11346 | else | 11286 | else |
11347 | pkg_failed=yes | 11287 | pkg_failed=yes |
11348 | fi | 11288 | fi |
11349 | fi | 11289 | else |
11350 | else | 11290 | pkg_failed=untried |
11351 | pkg_failed=untried | ||
11352 | fi | 11291 | fi |
11353 | 11292 | ||
11354 | 11293 | ||
11355 | 11294 | ||
11356 | if test $pkg_failed = yes; then | 11295 | if test $pkg_failed = yes; then |
11296 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
11297 | $as_echo "no" >&6; } | ||
11357 | 11298 | ||
11358 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then | 11299 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then |
11359 | _pkg_short_errors_supported=yes | 11300 | _pkg_short_errors_supported=yes |
@@ -11361,17 +11302,17 @@ else | |||
11361 | _pkg_short_errors_supported=no | 11302 | _pkg_short_errors_supported=no |
11362 | fi | 11303 | fi |
11363 | if test $_pkg_short_errors_supported = yes; then | 11304 | if test $_pkg_short_errors_supported = yes; then |
11364 | CHECK_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "check >= 0.9.5"` | 11305 | CHECK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "check >= 0.9.5" 2>&1` |
11365 | else | 11306 | else |
11366 | CHECK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "check >= 0.9.5"` | 11307 | CHECK_PKG_ERRORS=`$PKG_CONFIG --print-errors "check >= 0.9.5" 2>&1` |
11367 | fi | 11308 | fi |
11368 | # Put the nasty error message in config.log where it belongs | 11309 | # Put the nasty error message in config.log where it belongs |
11369 | echo "$CHECK_PKG_ERRORS" >&5 | 11310 | echo "$CHECK_PKG_ERRORS" >&5 |
11370 | 11311 | ||
11371 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | 11312 | _efl_enable_tests="no" |
11372 | $as_echo "no" >&6; } | ||
11373 | _efl_enable_tests="no" | ||
11374 | elif test $pkg_failed = untried; then | 11313 | elif test $pkg_failed = untried; then |
11314 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
11315 | $as_echo "no" >&6; } | ||
11375 | _efl_enable_tests="no" | 11316 | _efl_enable_tests="no" |
11376 | else | 11317 | else |
11377 | CHECK_CFLAGS=$pkg_cv_CHECK_CFLAGS | 11318 | CHECK_CFLAGS=$pkg_cv_CHECK_CFLAGS |
@@ -11808,8 +11749,8 @@ fi | |||
11808 | 11749 | ||
11809 | test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | 11750 | test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |
11810 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | 11751 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
11811 | as_fn_error "no acceptable C compiler found in \$PATH | 11752 | as_fn_error $? "no acceptable C compiler found in \$PATH |
11812 | See \`config.log' for more details." "$LINENO" 5; } | 11753 | See \`config.log' for more details" "$LINENO" 5 ; } |
11813 | 11754 | ||
11814 | # Provide some information about the compiler. | 11755 | # Provide some information about the compiler. |
11815 | $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 | 11756 | $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 |
@@ -12179,6 +12120,10 @@ fi | |||
12179 | # pkg-config | 12120 | # pkg-config |
12180 | 12121 | ||
12181 | 12122 | ||
12123 | |||
12124 | |||
12125 | |||
12126 | |||
12182 | if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then | 12127 | if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then |
12183 | if test -n "$ac_tool_prefix"; then | 12128 | if test -n "$ac_tool_prefix"; then |
12184 | # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. | 12129 | # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. |
@@ -12291,7 +12236,6 @@ $as_echo "yes" >&6; } | |||
12291 | $as_echo "no" >&6; } | 12236 | $as_echo "no" >&6; } |
12292 | PKG_CONFIG="" | 12237 | PKG_CONFIG="" |
12293 | fi | 12238 | fi |
12294 | |||
12295 | fi | 12239 | fi |
12296 | 12240 | ||
12297 | # Check whether pkg-config supports Requires.private | 12241 | # Check whether pkg-config supports Requires.private |
@@ -12476,11 +12420,10 @@ pkg_failed=no | |||
12476 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EVIL" >&5 | 12420 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EVIL" >&5 |
12477 | $as_echo_n "checking for EVIL... " >&6; } | 12421 | $as_echo_n "checking for EVIL... " >&6; } |
12478 | 12422 | ||
12479 | if test -n "$PKG_CONFIG"; then | 12423 | if test -n "$EVIL_CFLAGS"; then |
12480 | if test -n "$EVIL_CFLAGS"; then | 12424 | pkg_cv_EVIL_CFLAGS="$EVIL_CFLAGS" |
12481 | pkg_cv_EVIL_CFLAGS="$EVIL_CFLAGS" | 12425 | elif test -n "$PKG_CONFIG"; then |
12482 | else | 12426 | if test -n "$PKG_CONFIG" && \ |
12483 | if test -n "$PKG_CONFIG" && \ | ||
12484 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"evil >= 1.0.0\""; } >&5 | 12427 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"evil >= 1.0.0\""; } >&5 |
12485 | ($PKG_CONFIG --exists --print-errors "evil >= 1.0.0") 2>&5 | 12428 | ($PKG_CONFIG --exists --print-errors "evil >= 1.0.0") 2>&5 |
12486 | ac_status=$? | 12429 | ac_status=$? |
@@ -12490,15 +12433,13 @@ if test -n "$PKG_CONFIG"; then | |||
12490 | else | 12433 | else |
12491 | pkg_failed=yes | 12434 | pkg_failed=yes |
12492 | fi | 12435 | fi |
12493 | fi | 12436 | else |
12494 | else | 12437 | pkg_failed=untried |
12495 | pkg_failed=untried | ||
12496 | fi | 12438 | fi |
12497 | if test -n "$PKG_CONFIG"; then | 12439 | if test -n "$EVIL_LIBS"; then |
12498 | if test -n "$EVIL_LIBS"; then | 12440 | pkg_cv_EVIL_LIBS="$EVIL_LIBS" |
12499 | pkg_cv_EVIL_LIBS="$EVIL_LIBS" | 12441 | elif test -n "$PKG_CONFIG"; then |
12500 | else | 12442 | if test -n "$PKG_CONFIG" && \ |
12501 | if test -n "$PKG_CONFIG" && \ | ||
12502 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"evil >= 1.0.0\""; } >&5 | 12443 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"evil >= 1.0.0\""; } >&5 |
12503 | ($PKG_CONFIG --exists --print-errors "evil >= 1.0.0") 2>&5 | 12444 | ($PKG_CONFIG --exists --print-errors "evil >= 1.0.0") 2>&5 |
12504 | ac_status=$? | 12445 | ac_status=$? |
@@ -12508,14 +12449,15 @@ if test -n "$PKG_CONFIG"; then | |||
12508 | else | 12449 | else |
12509 | pkg_failed=yes | 12450 | pkg_failed=yes |
12510 | fi | 12451 | fi |
12511 | fi | 12452 | else |
12512 | else | 12453 | pkg_failed=untried |
12513 | pkg_failed=untried | ||
12514 | fi | 12454 | fi |
12515 | 12455 | ||
12516 | 12456 | ||
12517 | 12457 | ||
12518 | if test $pkg_failed = yes; then | 12458 | if test $pkg_failed = yes; then |
12459 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
12460 | $as_echo "no" >&6; } | ||
12519 | 12461 | ||
12520 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then | 12462 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then |
12521 | _pkg_short_errors_supported=yes | 12463 | _pkg_short_errors_supported=yes |
@@ -12523,14 +12465,14 @@ else | |||
12523 | _pkg_short_errors_supported=no | 12465 | _pkg_short_errors_supported=no |
12524 | fi | 12466 | fi |
12525 | if test $_pkg_short_errors_supported = yes; then | 12467 | if test $_pkg_short_errors_supported = yes; then |
12526 | EVIL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "evil >= 1.0.0"` | 12468 | EVIL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "evil >= 1.0.0" 2>&1` |
12527 | else | 12469 | else |
12528 | EVIL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "evil >= 1.0.0"` | 12470 | EVIL_PKG_ERRORS=`$PKG_CONFIG --print-errors "evil >= 1.0.0" 2>&1` |
12529 | fi | 12471 | fi |
12530 | # Put the nasty error message in config.log where it belongs | 12472 | # Put the nasty error message in config.log where it belongs |
12531 | echo "$EVIL_PKG_ERRORS" >&5 | 12473 | echo "$EVIL_PKG_ERRORS" >&5 |
12532 | 12474 | ||
12533 | as_fn_error "Package requirements (evil >= 1.0.0) were not met: | 12475 | as_fn_error $? "Package requirements (evil >= 1.0.0) were not met: |
12534 | 12476 | ||
12535 | $EVIL_PKG_ERRORS | 12477 | $EVIL_PKG_ERRORS |
12536 | 12478 | ||
@@ -12539,12 +12481,13 @@ installed software in a non-standard prefix. | |||
12539 | 12481 | ||
12540 | Alternatively, you may set the environment variables EVIL_CFLAGS | 12482 | Alternatively, you may set the environment variables EVIL_CFLAGS |
12541 | and EVIL_LIBS to avoid the need to call pkg-config. | 12483 | and EVIL_LIBS to avoid the need to call pkg-config. |
12542 | See the pkg-config man page for more details. | 12484 | See the pkg-config man page for more details." "$LINENO" 5 |
12543 | " "$LINENO" 5 | ||
12544 | elif test $pkg_failed = untried; then | 12485 | elif test $pkg_failed = untried; then |
12486 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
12487 | $as_echo "no" >&6; } | ||
12545 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | 12488 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |
12546 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | 12489 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
12547 | as_fn_error "The pkg-config script could not be found or is too old. Make sure it | 12490 | as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it |
12548 | is in your PATH or set the PKG_CONFIG environment variable to the full | 12491 | is in your PATH or set the PKG_CONFIG environment variable to the full |
12549 | path to pkg-config. | 12492 | path to pkg-config. |
12550 | 12493 | ||
@@ -12553,13 +12496,13 @@ and EVIL_LIBS to avoid the need to call pkg-config. | |||
12553 | See the pkg-config man page for more details. | 12496 | See the pkg-config man page for more details. |
12554 | 12497 | ||
12555 | To get pkg-config, see <http://pkg-config.freedesktop.org/>. | 12498 | To get pkg-config, see <http://pkg-config.freedesktop.org/>. |
12556 | See \`config.log' for more details." "$LINENO" 5; } | 12499 | See \`config.log' for more details" "$LINENO" 5 ; } |
12557 | else | 12500 | else |
12558 | EVIL_CFLAGS=$pkg_cv_EVIL_CFLAGS | 12501 | EVIL_CFLAGS=$pkg_cv_EVIL_CFLAGS |
12559 | EVIL_LIBS=$pkg_cv_EVIL_LIBS | 12502 | EVIL_LIBS=$pkg_cv_EVIL_LIBS |
12560 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | 12503 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 |
12561 | $as_echo "yes" >&6; } | 12504 | $as_echo "yes" >&6; } |
12562 | : | 12505 | |
12563 | fi | 12506 | fi |
12564 | 12507 | ||
12565 | $as_echo "#define HAVE_EVIL 1" >>confdefs.h | 12508 | $as_echo "#define HAVE_EVIL 1" >>confdefs.h |
@@ -12588,46 +12531,44 @@ pkg_failed=no | |||
12588 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EINA" >&5 | 12531 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EINA" >&5 |
12589 | $as_echo_n "checking for EINA... " >&6; } | 12532 | $as_echo_n "checking for EINA... " >&6; } |
12590 | 12533 | ||
12591 | if test -n "$PKG_CONFIG"; then | 12534 | if test -n "$EINA_CFLAGS"; then |
12592 | if test -n "$EINA_CFLAGS"; then | 12535 | pkg_cv_EINA_CFLAGS="$EINA_CFLAGS" |
12593 | pkg_cv_EINA_CFLAGS="$EINA_CFLAGS" | 12536 | elif test -n "$PKG_CONFIG"; then |
12594 | else | 12537 | if test -n "$PKG_CONFIG" && \ |
12595 | if test -n "$PKG_CONFIG" && \ | 12538 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"eina >= 1.2.0\""; } >&5 |
12596 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"eina >= 1.1.0\""; } >&5 | 12539 | ($PKG_CONFIG --exists --print-errors "eina >= 1.2.0") 2>&5 |
12597 | ($PKG_CONFIG --exists --print-errors "eina >= 1.1.0") 2>&5 | ||
12598 | ac_status=$? | 12540 | ac_status=$? |
12599 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | 12541 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 |
12600 | test $ac_status = 0; }; then | 12542 | test $ac_status = 0; }; then |
12601 | pkg_cv_EINA_CFLAGS=`$PKG_CONFIG --cflags "eina >= 1.1.0" 2>/dev/null` | 12543 | pkg_cv_EINA_CFLAGS=`$PKG_CONFIG --cflags "eina >= 1.2.0" 2>/dev/null` |
12602 | else | 12544 | else |
12603 | pkg_failed=yes | 12545 | pkg_failed=yes |
12604 | fi | 12546 | fi |
12605 | fi | 12547 | else |
12606 | else | 12548 | pkg_failed=untried |
12607 | pkg_failed=untried | ||
12608 | fi | 12549 | fi |
12609 | if test -n "$PKG_CONFIG"; then | 12550 | if test -n "$EINA_LIBS"; then |
12610 | if test -n "$EINA_LIBS"; then | 12551 | pkg_cv_EINA_LIBS="$EINA_LIBS" |
12611 | pkg_cv_EINA_LIBS="$EINA_LIBS" | 12552 | elif test -n "$PKG_CONFIG"; then |
12612 | else | 12553 | if test -n "$PKG_CONFIG" && \ |
12613 | if test -n "$PKG_CONFIG" && \ | 12554 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"eina >= 1.2.0\""; } >&5 |
12614 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"eina >= 1.1.0\""; } >&5 | 12555 | ($PKG_CONFIG --exists --print-errors "eina >= 1.2.0") 2>&5 |
12615 | ($PKG_CONFIG --exists --print-errors "eina >= 1.1.0") 2>&5 | ||
12616 | ac_status=$? | 12556 | ac_status=$? |
12617 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | 12557 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 |
12618 | test $ac_status = 0; }; then | 12558 | test $ac_status = 0; }; then |
12619 | pkg_cv_EINA_LIBS=`$PKG_CONFIG --libs "eina >= 1.1.0" 2>/dev/null` | 12559 | pkg_cv_EINA_LIBS=`$PKG_CONFIG --libs "eina >= 1.2.0" 2>/dev/null` |
12620 | else | 12560 | else |
12621 | pkg_failed=yes | 12561 | pkg_failed=yes |
12622 | fi | 12562 | fi |
12623 | fi | 12563 | else |
12624 | else | 12564 | pkg_failed=untried |
12625 | pkg_failed=untried | ||
12626 | fi | 12565 | fi |
12627 | 12566 | ||
12628 | 12567 | ||
12629 | 12568 | ||
12630 | if test $pkg_failed = yes; then | 12569 | if test $pkg_failed = yes; then |
12570 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
12571 | $as_echo "no" >&6; } | ||
12631 | 12572 | ||
12632 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then | 12573 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then |
12633 | _pkg_short_errors_supported=yes | 12574 | _pkg_short_errors_supported=yes |
@@ -12635,14 +12576,14 @@ else | |||
12635 | _pkg_short_errors_supported=no | 12576 | _pkg_short_errors_supported=no |
12636 | fi | 12577 | fi |
12637 | if test $_pkg_short_errors_supported = yes; then | 12578 | if test $_pkg_short_errors_supported = yes; then |
12638 | EINA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "eina >= 1.1.0"` | 12579 | EINA_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "eina >= 1.2.0" 2>&1` |
12639 | else | 12580 | else |
12640 | EINA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "eina >= 1.1.0"` | 12581 | EINA_PKG_ERRORS=`$PKG_CONFIG --print-errors "eina >= 1.2.0" 2>&1` |
12641 | fi | 12582 | fi |
12642 | # Put the nasty error message in config.log where it belongs | 12583 | # Put the nasty error message in config.log where it belongs |
12643 | echo "$EINA_PKG_ERRORS" >&5 | 12584 | echo "$EINA_PKG_ERRORS" >&5 |
12644 | 12585 | ||
12645 | as_fn_error "Package requirements (eina >= 1.1.0) were not met: | 12586 | as_fn_error $? "Package requirements (eina >= 1.2.0) were not met: |
12646 | 12587 | ||
12647 | $EINA_PKG_ERRORS | 12588 | $EINA_PKG_ERRORS |
12648 | 12589 | ||
@@ -12651,12 +12592,13 @@ installed software in a non-standard prefix. | |||
12651 | 12592 | ||
12652 | Alternatively, you may set the environment variables EINA_CFLAGS | 12593 | Alternatively, you may set the environment variables EINA_CFLAGS |
12653 | and EINA_LIBS to avoid the need to call pkg-config. | 12594 | and EINA_LIBS to avoid the need to call pkg-config. |
12654 | See the pkg-config man page for more details. | 12595 | See the pkg-config man page for more details." "$LINENO" 5 |
12655 | " "$LINENO" 5 | ||
12656 | elif test $pkg_failed = untried; then | 12596 | elif test $pkg_failed = untried; then |
12597 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
12598 | $as_echo "no" >&6; } | ||
12657 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 | 12599 | { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |
12658 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} | 12600 | $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
12659 | as_fn_error "The pkg-config script could not be found or is too old. Make sure it | 12601 | as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it |
12660 | is in your PATH or set the PKG_CONFIG environment variable to the full | 12602 | is in your PATH or set the PKG_CONFIG environment variable to the full |
12661 | path to pkg-config. | 12603 | path to pkg-config. |
12662 | 12604 | ||
@@ -12665,15 +12607,108 @@ and EINA_LIBS to avoid the need to call pkg-config. | |||
12665 | See the pkg-config man page for more details. | 12607 | See the pkg-config man page for more details. |
12666 | 12608 | ||
12667 | To get pkg-config, see <http://pkg-config.freedesktop.org/>. | 12609 | To get pkg-config, see <http://pkg-config.freedesktop.org/>. |
12668 | See \`config.log' for more details." "$LINENO" 5; } | 12610 | See \`config.log' for more details" "$LINENO" 5 ; } |
12669 | else | 12611 | else |
12670 | EINA_CFLAGS=$pkg_cv_EINA_CFLAGS | 12612 | EINA_CFLAGS=$pkg_cv_EINA_CFLAGS |
12671 | EINA_LIBS=$pkg_cv_EINA_LIBS | 12613 | EINA_LIBS=$pkg_cv_EINA_LIBS |
12672 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | 12614 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 |
12673 | $as_echo "yes" >&6; } | 12615 | $as_echo "yes" >&6; } |
12674 | : | 12616 | |
12617 | fi | ||
12618 | requirement_eet="eina >= 1.2.0 ${requirement_eet}" | ||
12619 | |||
12620 | ### Checks for portability layer | ||
12621 | |||
12622 | |||
12623 | pkg_failed=no | ||
12624 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EXOTIC" >&5 | ||
12625 | $as_echo_n "checking for EXOTIC... " >&6; } | ||
12626 | |||
12627 | if test -n "$EXOTIC_CFLAGS"; then | ||
12628 | pkg_cv_EXOTIC_CFLAGS="$EXOTIC_CFLAGS" | ||
12629 | elif test -n "$PKG_CONFIG"; then | ||
12630 | if test -n "$PKG_CONFIG" && \ | ||
12631 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"exotic\""; } >&5 | ||
12632 | ($PKG_CONFIG --exists --print-errors "exotic") 2>&5 | ||
12633 | ac_status=$? | ||
12634 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | ||
12635 | test $ac_status = 0; }; then | ||
12636 | pkg_cv_EXOTIC_CFLAGS=`$PKG_CONFIG --cflags "exotic" 2>/dev/null` | ||
12637 | else | ||
12638 | pkg_failed=yes | ||
12639 | fi | ||
12640 | else | ||
12641 | pkg_failed=untried | ||
12642 | fi | ||
12643 | if test -n "$EXOTIC_LIBS"; then | ||
12644 | pkg_cv_EXOTIC_LIBS="$EXOTIC_LIBS" | ||
12645 | elif test -n "$PKG_CONFIG"; then | ||
12646 | if test -n "$PKG_CONFIG" && \ | ||
12647 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"exotic\""; } >&5 | ||
12648 | ($PKG_CONFIG --exists --print-errors "exotic") 2>&5 | ||
12649 | ac_status=$? | ||
12650 | $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 | ||
12651 | test $ac_status = 0; }; then | ||
12652 | pkg_cv_EXOTIC_LIBS=`$PKG_CONFIG --libs "exotic" 2>/dev/null` | ||
12653 | else | ||
12654 | pkg_failed=yes | ||
12655 | fi | ||
12656 | else | ||
12657 | pkg_failed=untried | ||
12658 | fi | ||
12659 | |||
12660 | |||
12661 | |||
12662 | if test $pkg_failed = yes; then | ||
12663 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
12664 | $as_echo "no" >&6; } | ||
12665 | |||
12666 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then | ||
12667 | _pkg_short_errors_supported=yes | ||
12668 | else | ||
12669 | _pkg_short_errors_supported=no | ||
12670 | fi | ||
12671 | if test $_pkg_short_errors_supported = yes; then | ||
12672 | EXOTIC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "exotic" 2>&1` | ||
12673 | else | ||
12674 | EXOTIC_PKG_ERRORS=`$PKG_CONFIG --print-errors "exotic" 2>&1` | ||
12675 | fi | ||
12676 | # Put the nasty error message in config.log where it belongs | ||
12677 | echo "$EXOTIC_PKG_ERRORS" >&5 | ||
12678 | |||
12679 | enable_exotic="no" | ||
12680 | elif test $pkg_failed = untried; then | ||
12681 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
12682 | $as_echo "no" >&6; } | ||
12683 | enable_exotic="no" | ||
12684 | else | ||
12685 | EXOTIC_CFLAGS=$pkg_cv_EXOTIC_CFLAGS | ||
12686 | EXOTIC_LIBS=$pkg_cv_EXOTIC_LIBS | ||
12687 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 | ||
12688 | $as_echo "yes" >&6; } | ||
12689 | enable_exotic="yes" | ||
12690 | fi | ||
12691 | |||
12692 | if test "x${enable_exotic}" = "xyes"; then | ||
12693 | requirement_eet="exotic ${requirement_eet}" | ||
12694 | |||
12695 | |||
12696 | $as_echo "#define HAVE_EXOTIC_H 1" >>confdefs.h | ||
12697 | |||
12675 | fi | 12698 | fi |
12676 | requirement_eet="eina >= 1.1.0 ${requirement_eet}" | 12699 | |
12700 | # Gnutls support | ||
12701 | |||
12702 | # Check whether --enable-gnutls was given. | ||
12703 | if test "${enable_gnutls+set}" = set; then : | ||
12704 | enableval=$enable_gnutls; want_gnutls=$enableval | ||
12705 | |||
12706 | fi | ||
12707 | |||
12708 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use Gnutls" >&5 | ||
12709 | $as_echo_n "checking whether to use Gnutls... " >&6; } | ||
12710 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${want_gnutls}" >&5 | ||
12711 | $as_echo "${want_gnutls}" >&6; } | ||
12677 | 12712 | ||
12678 | # Gnutls library | 12713 | # Gnutls library |
12679 | have_gnutls="no" | 12714 | have_gnutls="no" |
@@ -12683,11 +12718,10 @@ pkg_failed=no | |||
12683 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNUTLS" >&5 | 12718 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNUTLS" >&5 |
12684 | $as_echo_n "checking for GNUTLS... " >&6; } | 12719 | $as_echo_n "checking for GNUTLS... " >&6; } |
12685 | 12720 | ||
12686 | if test -n "$PKG_CONFIG"; then | 12721 | if test -n "$GNUTLS_CFLAGS"; then |
12687 | if test -n "$GNUTLS_CFLAGS"; then | 12722 | pkg_cv_GNUTLS_CFLAGS="$GNUTLS_CFLAGS" |
12688 | pkg_cv_GNUTLS_CFLAGS="$GNUTLS_CFLAGS" | 12723 | elif test -n "$PKG_CONFIG"; then |
12689 | else | 12724 | if test -n "$PKG_CONFIG" && \ |
12690 | if test -n "$PKG_CONFIG" && \ | ||
12691 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnutls >= 1.7.6\""; } >&5 | 12725 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnutls >= 1.7.6\""; } >&5 |
12692 | ($PKG_CONFIG --exists --print-errors "gnutls >= 1.7.6") 2>&5 | 12726 | ($PKG_CONFIG --exists --print-errors "gnutls >= 1.7.6") 2>&5 |
12693 | ac_status=$? | 12727 | ac_status=$? |
@@ -12697,15 +12731,13 @@ if test -n "$PKG_CONFIG"; then | |||
12697 | else | 12731 | else |
12698 | pkg_failed=yes | 12732 | pkg_failed=yes |
12699 | fi | 12733 | fi |
12700 | fi | 12734 | else |
12701 | else | 12735 | pkg_failed=untried |
12702 | pkg_failed=untried | ||
12703 | fi | 12736 | fi |
12704 | if test -n "$PKG_CONFIG"; then | 12737 | if test -n "$GNUTLS_LIBS"; then |
12705 | if test -n "$GNUTLS_LIBS"; then | 12738 | pkg_cv_GNUTLS_LIBS="$GNUTLS_LIBS" |
12706 | pkg_cv_GNUTLS_LIBS="$GNUTLS_LIBS" | 12739 | elif test -n "$PKG_CONFIG"; then |
12707 | else | 12740 | if test -n "$PKG_CONFIG" && \ |
12708 | if test -n "$PKG_CONFIG" && \ | ||
12709 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnutls >= 1.7.6\""; } >&5 | 12741 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnutls >= 1.7.6\""; } >&5 |
12710 | ($PKG_CONFIG --exists --print-errors "gnutls >= 1.7.6") 2>&5 | 12742 | ($PKG_CONFIG --exists --print-errors "gnutls >= 1.7.6") 2>&5 |
12711 | ac_status=$? | 12743 | ac_status=$? |
@@ -12715,14 +12747,15 @@ if test -n "$PKG_CONFIG"; then | |||
12715 | else | 12747 | else |
12716 | pkg_failed=yes | 12748 | pkg_failed=yes |
12717 | fi | 12749 | fi |
12718 | fi | 12750 | else |
12719 | else | 12751 | pkg_failed=untried |
12720 | pkg_failed=untried | ||
12721 | fi | 12752 | fi |
12722 | 12753 | ||
12723 | 12754 | ||
12724 | 12755 | ||
12725 | if test $pkg_failed = yes; then | 12756 | if test $pkg_failed = yes; then |
12757 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
12758 | $as_echo "no" >&6; } | ||
12726 | 12759 | ||
12727 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then | 12760 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then |
12728 | _pkg_short_errors_supported=yes | 12761 | _pkg_short_errors_supported=yes |
@@ -12730,17 +12763,17 @@ else | |||
12730 | _pkg_short_errors_supported=no | 12763 | _pkg_short_errors_supported=no |
12731 | fi | 12764 | fi |
12732 | if test $_pkg_short_errors_supported = yes; then | 12765 | if test $_pkg_short_errors_supported = yes; then |
12733 | GNUTLS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gnutls >= 1.7.6"` | 12766 | GNUTLS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gnutls >= 1.7.6" 2>&1` |
12734 | else | 12767 | else |
12735 | GNUTLS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gnutls >= 1.7.6"` | 12768 | GNUTLS_PKG_ERRORS=`$PKG_CONFIG --print-errors "gnutls >= 1.7.6" 2>&1` |
12736 | fi | 12769 | fi |
12737 | # Put the nasty error message in config.log where it belongs | 12770 | # Put the nasty error message in config.log where it belongs |
12738 | echo "$GNUTLS_PKG_ERRORS" >&5 | 12771 | echo "$GNUTLS_PKG_ERRORS" >&5 |
12739 | 12772 | ||
12740 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | 12773 | have_gnutls="no" |
12741 | $as_echo "no" >&6; } | ||
12742 | have_gnutls="no" | ||
12743 | elif test $pkg_failed = untried; then | 12774 | elif test $pkg_failed = untried; then |
12775 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
12776 | $as_echo "no" >&6; } | ||
12744 | have_gnutls="no" | 12777 | have_gnutls="no" |
12745 | else | 12778 | else |
12746 | GNUTLS_CFLAGS=$pkg_cv_GNUTLS_CFLAGS | 12779 | GNUTLS_CFLAGS=$pkg_cv_GNUTLS_CFLAGS |
@@ -12869,6 +12902,204 @@ $as_echo "no" >&6; } | |||
12869 | fi | 12902 | fi |
12870 | fi | 12903 | fi |
12871 | 12904 | ||
12905 | # Specific GNUTLS improvement | ||
12906 | |||
12907 | new_gnutls_api="yes" | ||
12908 | # Check whether --enable-new-gnutls-api was given. | ||
12909 | if test "${enable_new_gnutls_api+set}" = set; then : | ||
12910 | enableval=$enable_new_gnutls_api; new_gnutls_api=$enableval | ||
12911 | |||
12912 | fi | ||
12913 | |||
12914 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use gnutls_x509_crt_verify_hash" >&5 | ||
12915 | $as_echo_n "checking whether to use gnutls_x509_crt_verify_hash... " >&6; } | ||
12916 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${new_gnutls_api}" >&5 | ||
12917 | $as_echo "${new_gnutls_api}" >&6; } | ||
12918 | |||
12919 | if test "x${new_gnutls_api}" = "xyes" ; then | ||
12920 | tmp_CFLAGS="${CFLAGS}" | ||
12921 | tmp_LIBS="${LIBS}" | ||
12922 | CFLAGS="${GNUTLS_CFLAGS}" | ||
12923 | LIBS="${GNUTLS_LIBS}" | ||
12924 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gnutls_x509_crt_verify_hash in -lgnutls" >&5 | ||
12925 | $as_echo_n "checking for gnutls_x509_crt_verify_hash in -lgnutls... " >&6; } | ||
12926 | if test "${ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash+set}" = set; then : | ||
12927 | $as_echo_n "(cached) " >&6 | ||
12928 | else | ||
12929 | ac_check_lib_save_LIBS=$LIBS | ||
12930 | LIBS="-lgnutls $LIBS" | ||
12931 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||
12932 | /* end confdefs.h. */ | ||
12933 | |||
12934 | /* Override any GCC internal prototype to avoid an error. | ||
12935 | Use char because int might match the return type of a GCC | ||
12936 | builtin and then its argument prototype would still apply. */ | ||
12937 | #ifdef __cplusplus | ||
12938 | extern "C" | ||
12939 | #endif | ||
12940 | char gnutls_x509_crt_verify_hash (); | ||
12941 | int | ||
12942 | main () | ||
12943 | { | ||
12944 | return gnutls_x509_crt_verify_hash (); | ||
12945 | ; | ||
12946 | return 0; | ||
12947 | } | ||
12948 | _ACEOF | ||
12949 | if ac_fn_c_try_link "$LINENO"; then : | ||
12950 | ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash=yes | ||
12951 | else | ||
12952 | ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash=no | ||
12953 | fi | ||
12954 | rm -f core conftest.err conftest.$ac_objext \ | ||
12955 | conftest$ac_exeext conftest.$ac_ext | ||
12956 | LIBS=$ac_check_lib_save_LIBS | ||
12957 | fi | ||
12958 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash" >&5 | ||
12959 | $as_echo "$ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash" >&6; } | ||
12960 | if test "x$ac_cv_lib_gnutls_gnutls_x509_crt_verify_hash" = x""yes; then : | ||
12961 | new_gnutls_api="yes" | ||
12962 | else | ||
12963 | new_gnutls_api="no" | ||
12964 | |||
12965 | fi | ||
12966 | |||
12967 | CFLAGS="${tmp_CFLAGS}" | ||
12968 | LIBS="${tmp_LIBS}" | ||
12969 | |||
12970 | if test "x${new_gnutls_api}" = "xyes"; then | ||
12971 | |||
12972 | $as_echo "#define EET_USE_NEW_GNUTLS_API 1" >>confdefs.h | ||
12973 | |||
12974 | fi | ||
12975 | fi | ||
12976 | |||
12977 | use_gnutls_privkey_sign_data="no" | ||
12978 | if test "x${want_gnutls}" = "xyes" -o "x${want_gnutls}" = "xauto"; then | ||
12979 | tmp_CFLAGS="${CFLAGS}" | ||
12980 | tmp_LIBS="${LIBS}" | ||
12981 | CFLAGS="${GNUTLS_CFLAGS}" | ||
12982 | LIBS="${GNUTLS_LIBS}" | ||
12983 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gnutls_privkey_sign_data in -lgnutls" >&5 | ||
12984 | $as_echo_n "checking for gnutls_privkey_sign_data in -lgnutls... " >&6; } | ||
12985 | if test "${ac_cv_lib_gnutls_gnutls_privkey_sign_data+set}" = set; then : | ||
12986 | $as_echo_n "(cached) " >&6 | ||
12987 | else | ||
12988 | ac_check_lib_save_LIBS=$LIBS | ||
12989 | LIBS="-lgnutls $LIBS" | ||
12990 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||
12991 | /* end confdefs.h. */ | ||
12992 | |||
12993 | /* Override any GCC internal prototype to avoid an error. | ||
12994 | Use char because int might match the return type of a GCC | ||
12995 | builtin and then its argument prototype would still apply. */ | ||
12996 | #ifdef __cplusplus | ||
12997 | extern "C" | ||
12998 | #endif | ||
12999 | char gnutls_privkey_sign_data (); | ||
13000 | int | ||
13001 | main () | ||
13002 | { | ||
13003 | return gnutls_privkey_sign_data (); | ||
13004 | ; | ||
13005 | return 0; | ||
13006 | } | ||
13007 | _ACEOF | ||
13008 | if ac_fn_c_try_link "$LINENO"; then : | ||
13009 | ac_cv_lib_gnutls_gnutls_privkey_sign_data=yes | ||
13010 | else | ||
13011 | ac_cv_lib_gnutls_gnutls_privkey_sign_data=no | ||
13012 | fi | ||
13013 | rm -f core conftest.err conftest.$ac_objext \ | ||
13014 | conftest$ac_exeext conftest.$ac_ext | ||
13015 | LIBS=$ac_check_lib_save_LIBS | ||
13016 | fi | ||
13017 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gnutls_gnutls_privkey_sign_data" >&5 | ||
13018 | $as_echo "$ac_cv_lib_gnutls_gnutls_privkey_sign_data" >&6; } | ||
13019 | if test "x$ac_cv_lib_gnutls_gnutls_privkey_sign_data" = x""yes; then : | ||
13020 | use_gnutls_privkey_sign_data="yes" | ||
13021 | else | ||
13022 | use_gnutls_privkey_sign_data="no" | ||
13023 | |||
13024 | fi | ||
13025 | |||
13026 | CFLAGS="${tmp_CFLAGS}" | ||
13027 | LIBS="${tmp_LIBS}" | ||
13028 | |||
13029 | if test "x${use_gnutls_privkey_sign_data}" = "xyes"; then | ||
13030 | |||
13031 | $as_echo "#define EET_USE_NEW_PRIVKEY_SIGN_DATA 1" >>confdefs.h | ||
13032 | |||
13033 | fi | ||
13034 | fi | ||
13035 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use gnutls_privkey_sign_data" >&5 | ||
13036 | $as_echo_n "checking whether to use gnutls_privkey_sign_data... " >&6; } | ||
13037 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${use_gnutls_privkey_sign_data}" >&5 | ||
13038 | $as_echo "${use_gnutls_privkey_sign_data}" >&6; } | ||
13039 | |||
13040 | use_gnutls_pubkey_verify_hash="no" | ||
13041 | if test "x${want_gnutls}" = "xyes" -o "x${want_gnutls}" = "xauto"; then | ||
13042 | tmp_CFLAGS="${CFLAGS}" | ||
13043 | tmp_LIBS="${LIBS}" | ||
13044 | CFLAGS="${GNUTLS_CFLAGS}" | ||
13045 | LIBS="${GNUTLS_LIBS}" | ||
13046 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gnutls_pubkey_verify_hash in -lgnutls" >&5 | ||
13047 | $as_echo_n "checking for gnutls_pubkey_verify_hash in -lgnutls... " >&6; } | ||
13048 | if test "${ac_cv_lib_gnutls_gnutls_pubkey_verify_hash+set}" = set; then : | ||
13049 | $as_echo_n "(cached) " >&6 | ||
13050 | else | ||
13051 | ac_check_lib_save_LIBS=$LIBS | ||
13052 | LIBS="-lgnutls $LIBS" | ||
13053 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||
13054 | /* end confdefs.h. */ | ||
13055 | |||
13056 | /* Override any GCC internal prototype to avoid an error. | ||
13057 | Use char because int might match the return type of a GCC | ||
13058 | builtin and then its argument prototype would still apply. */ | ||
13059 | #ifdef __cplusplus | ||
13060 | extern "C" | ||
13061 | #endif | ||
13062 | char gnutls_pubkey_verify_hash (); | ||
13063 | int | ||
13064 | main () | ||
13065 | { | ||
13066 | return gnutls_pubkey_verify_hash (); | ||
13067 | ; | ||
13068 | return 0; | ||
13069 | } | ||
13070 | _ACEOF | ||
13071 | if ac_fn_c_try_link "$LINENO"; then : | ||
13072 | ac_cv_lib_gnutls_gnutls_pubkey_verify_hash=yes | ||
13073 | else | ||
13074 | ac_cv_lib_gnutls_gnutls_pubkey_verify_hash=no | ||
13075 | fi | ||
13076 | rm -f core conftest.err conftest.$ac_objext \ | ||
13077 | conftest$ac_exeext conftest.$ac_ext | ||
13078 | LIBS=$ac_check_lib_save_LIBS | ||
13079 | fi | ||
13080 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gnutls_gnutls_pubkey_verify_hash" >&5 | ||
13081 | $as_echo "$ac_cv_lib_gnutls_gnutls_pubkey_verify_hash" >&6; } | ||
13082 | if test "x$ac_cv_lib_gnutls_gnutls_pubkey_verify_hash" = x""yes; then : | ||
13083 | use_gnutls_pubkey_verify_hash="yes" | ||
13084 | else | ||
13085 | use_gnutls_pubkey_verify_hash="no" | ||
13086 | |||
13087 | fi | ||
13088 | |||
13089 | CFLAGS="${tmp_CFLAGS}" | ||
13090 | LIBS="${tmp_LIBS}" | ||
13091 | |||
13092 | if test "x${use_gnutls_pubkey_verify_hash}" = "xyes"; then | ||
13093 | |||
13094 | $as_echo "#define EET_USE_NEW_PUBKEY_VERIFY_HASH 1" >>confdefs.h | ||
13095 | |||
13096 | fi | ||
13097 | fi | ||
13098 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use gnutls_pubkey_verify_hash" >&5 | ||
13099 | $as_echo_n "checking whether to use gnutls_pubkey_verify_hash... " >&6; } | ||
13100 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${use_gnutls_pubkey_verify_hash}" >&5 | ||
13101 | $as_echo "${use_gnutls_pubkey_verify_hash}" >&6; } | ||
13102 | |||
12872 | # Openssl library | 13103 | # Openssl library |
12873 | have_openssl="no" | 13104 | have_openssl="no" |
12874 | if test "x${want_openssl}" = "xyes" || test "x${want_openssl}" = "xauto" ; then | 13105 | if test "x${want_openssl}" = "xyes" || test "x${want_openssl}" = "xauto" ; then |
@@ -12877,11 +13108,10 @@ pkg_failed=no | |||
12877 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OPENSSL" >&5 | 13108 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OPENSSL" >&5 |
12878 | $as_echo_n "checking for OPENSSL... " >&6; } | 13109 | $as_echo_n "checking for OPENSSL... " >&6; } |
12879 | 13110 | ||
12880 | if test -n "$PKG_CONFIG"; then | 13111 | if test -n "$OPENSSL_CFLAGS"; then |
12881 | if test -n "$OPENSSL_CFLAGS"; then | 13112 | pkg_cv_OPENSSL_CFLAGS="$OPENSSL_CFLAGS" |
12882 | pkg_cv_OPENSSL_CFLAGS="$OPENSSL_CFLAGS" | 13113 | elif test -n "$PKG_CONFIG"; then |
12883 | else | 13114 | if test -n "$PKG_CONFIG" && \ |
12884 | if test -n "$PKG_CONFIG" && \ | ||
12885 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"openssl\""; } >&5 | 13115 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"openssl\""; } >&5 |
12886 | ($PKG_CONFIG --exists --print-errors "openssl") 2>&5 | 13116 | ($PKG_CONFIG --exists --print-errors "openssl") 2>&5 |
12887 | ac_status=$? | 13117 | ac_status=$? |
@@ -12891,15 +13121,13 @@ if test -n "$PKG_CONFIG"; then | |||
12891 | else | 13121 | else |
12892 | pkg_failed=yes | 13122 | pkg_failed=yes |
12893 | fi | 13123 | fi |
12894 | fi | 13124 | else |
12895 | else | 13125 | pkg_failed=untried |
12896 | pkg_failed=untried | ||
12897 | fi | 13126 | fi |
12898 | if test -n "$PKG_CONFIG"; then | 13127 | if test -n "$OPENSSL_LIBS"; then |
12899 | if test -n "$OPENSSL_LIBS"; then | 13128 | pkg_cv_OPENSSL_LIBS="$OPENSSL_LIBS" |
12900 | pkg_cv_OPENSSL_LIBS="$OPENSSL_LIBS" | 13129 | elif test -n "$PKG_CONFIG"; then |
12901 | else | 13130 | if test -n "$PKG_CONFIG" && \ |
12902 | if test -n "$PKG_CONFIG" && \ | ||
12903 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"openssl\""; } >&5 | 13131 | { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"openssl\""; } >&5 |
12904 | ($PKG_CONFIG --exists --print-errors "openssl") 2>&5 | 13132 | ($PKG_CONFIG --exists --print-errors "openssl") 2>&5 |
12905 | ac_status=$? | 13133 | ac_status=$? |
@@ -12909,14 +13137,15 @@ if test -n "$PKG_CONFIG"; then | |||
12909 | else | 13137 | else |
12910 | pkg_failed=yes | 13138 | pkg_failed=yes |
12911 | fi | 13139 | fi |
12912 | fi | 13140 | else |
12913 | else | 13141 | pkg_failed=untried |
12914 | pkg_failed=untried | ||
12915 | fi | 13142 | fi |
12916 | 13143 | ||
12917 | 13144 | ||
12918 | 13145 | ||
12919 | if test $pkg_failed = yes; then | 13146 | if test $pkg_failed = yes; then |
13147 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
13148 | $as_echo "no" >&6; } | ||
12920 | 13149 | ||
12921 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then | 13150 | if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then |
12922 | _pkg_short_errors_supported=yes | 13151 | _pkg_short_errors_supported=yes |
@@ -12924,17 +13153,17 @@ else | |||
12924 | _pkg_short_errors_supported=no | 13153 | _pkg_short_errors_supported=no |
12925 | fi | 13154 | fi |
12926 | if test $_pkg_short_errors_supported = yes; then | 13155 | if test $_pkg_short_errors_supported = yes; then |
12927 | OPENSSL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "openssl"` | 13156 | OPENSSL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "openssl" 2>&1` |
12928 | else | 13157 | else |
12929 | OPENSSL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "openssl"` | 13158 | OPENSSL_PKG_ERRORS=`$PKG_CONFIG --print-errors "openssl" 2>&1` |
12930 | fi | 13159 | fi |
12931 | # Put the nasty error message in config.log where it belongs | 13160 | # Put the nasty error message in config.log where it belongs |
12932 | echo "$OPENSSL_PKG_ERRORS" >&5 | 13161 | echo "$OPENSSL_PKG_ERRORS" >&5 |
12933 | 13162 | ||
12934 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | 13163 | have_openssl="no" |
12935 | $as_echo "no" >&6; } | ||
12936 | have_openssl="no" | ||
12937 | elif test $pkg_failed = untried; then | 13164 | elif test $pkg_failed = untried; then |
13165 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 | ||
13166 | $as_echo "no" >&6; } | ||
12938 | have_openssl="no" | 13167 | have_openssl="no" |
12939 | else | 13168 | else |
12940 | OPENSSL_CFLAGS=$pkg_cv_OPENSSL_CFLAGS | 13169 | OPENSSL_CFLAGS=$pkg_cv_OPENSSL_CFLAGS |
@@ -13001,7 +13230,7 @@ ac_fn_c_check_header_mongrel "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_inclu | |||
13001 | if test "x$ac_cv_header_zlib_h" = x""yes; then : | 13230 | if test "x$ac_cv_header_zlib_h" = x""yes; then : |
13002 | dummy="yes" | 13231 | dummy="yes" |
13003 | else | 13232 | else |
13004 | as_fn_error "\"Cannot find zlib.h. Make sure your CFLAGS environment variable contains include lines for the location of this file\"" "$LINENO" 5 | 13233 | as_fn_error $? "\"Cannot find zlib.h. Make sure your CFLAGS environment variable contains include lines for the location of this file\"" "$LINENO" 5 |
13005 | fi | 13234 | fi |
13006 | 13235 | ||
13007 | 13236 | ||
@@ -13010,7 +13239,7 @@ ac_fn_c_check_header_mongrel "$LINENO" "jpeglib.h" "ac_cv_header_jpeglib_h" "$ac | |||
13010 | if test "x$ac_cv_header_jpeglib_h" = x""yes; then : | 13239 | if test "x$ac_cv_header_jpeglib_h" = x""yes; then : |
13011 | dummy="yes" | 13240 | dummy="yes" |
13012 | else | 13241 | else |
13013 | as_fn_error "\"Cannot find jpeglib.h. Make sure your CFLAGS environment variable contains include lines for the location of this file\"" "$LINENO" 5 | 13242 | as_fn_error $? "\"Cannot find jpeglib.h. Make sure your CFLAGS environment variable contains include lines for the location of this file\"" "$LINENO" 5 |
13014 | fi | 13243 | fi |
13015 | 13244 | ||
13016 | 13245 | ||
@@ -13019,8 +13248,7 @@ for ac_header in netinet/in.h unistd.h | |||
13019 | do : | 13248 | do : |
13020 | as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` | 13249 | as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` |
13021 | ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" | 13250 | ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" |
13022 | eval as_val=\$$as_ac_Header | 13251 | if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : |
13023 | if test "x$as_val" = x""yes; then : | ||
13024 | cat >>confdefs.h <<_ACEOF | 13252 | cat >>confdefs.h <<_ACEOF |
13025 | #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 | 13253 | #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 |
13026 | _ACEOF | 13254 | _ACEOF |
@@ -13097,7 +13325,7 @@ $as_echo_n "checking whether cc understands -c and -o together... " >&6; } | |||
13097 | fi | 13325 | fi |
13098 | set dummy $CC; ac_cc=`$as_echo "$2" | | 13326 | set dummy $CC; ac_cc=`$as_echo "$2" | |
13099 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` | 13327 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` |
13100 | if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then : | 13328 | if eval "test \"\${ac_cv_prog_cc_${ac_cc}_c_o+set}\"" = set; then : |
13101 | $as_echo_n "(cached) " >&6 | 13329 | $as_echo_n "(cached) " >&6 |
13102 | else | 13330 | else |
13103 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | 13331 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
@@ -13992,8 +14220,7 @@ if test $ac_cv_os_cray = yes; then | |||
13992 | for ac_func in _getb67 GETB67 getb67; do | 14220 | for ac_func in _getb67 GETB67 getb67; do |
13993 | as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` | 14221 | as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` |
13994 | ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" | 14222 | ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" |
13995 | eval as_val=\$$as_ac_var | 14223 | if eval test \"x\$"$as_ac_var"\" = x"yes"; then : |
13996 | if test "x$as_val" = x""yes; then : | ||
13997 | 14224 | ||
13998 | cat >>confdefs.h <<_ACEOF | 14225 | cat >>confdefs.h <<_ACEOF |
13999 | #define CRAY_STACKSEG_END $ac_func | 14226 | #define CRAY_STACKSEG_END $ac_func |
@@ -14060,8 +14287,7 @@ for ac_func in fmemopen open_memstream realpath | |||
14060 | do : | 14287 | do : |
14061 | as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` | 14288 | as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` |
14062 | ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" | 14289 | ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" |
14063 | eval as_val=\$$as_ac_var | 14290 | if eval test \"x\$"$as_ac_var"\" = x"yes"; then : |
14064 | if test "x$as_val" = x""yes; then : | ||
14065 | cat >>confdefs.h <<_ACEOF | 14291 | cat >>confdefs.h <<_ACEOF |
14066 | #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 | 14292 | #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
14067 | _ACEOF | 14293 | _ACEOF |
@@ -14148,12 +14374,63 @@ if (! test "x${ac_cv_search_fnmatch}" = "xnone required") && (! test "x${ac_cv_s | |||
14148 | EFL_FNMATCH_LIBS=${ac_cv_search_fnmatch} | 14374 | EFL_FNMATCH_LIBS=${ac_cv_search_fnmatch} |
14149 | fi | 14375 | fi |
14150 | 14376 | ||
14377 | if test "x${_efl_have_fnmatch}" != "xyes" -a "x${enable_exotic}" = "xyes"; then | ||
14378 | LDFLAGS_SAVE="$LDFLAGS" | ||
14379 | LDFLAGS="$LDFLAGS $EXOTIC_LIBS" | ||
14380 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fnmatch in -lexotic" >&5 | ||
14381 | $as_echo_n "checking for fnmatch in -lexotic... " >&6; } | ||
14382 | if test "${ac_cv_lib_exotic_fnmatch+set}" = set; then : | ||
14383 | $as_echo_n "(cached) " >&6 | ||
14384 | else | ||
14385 | ac_check_lib_save_LIBS=$LIBS | ||
14386 | LIBS="-lexotic $LIBS" | ||
14387 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||
14388 | /* end confdefs.h. */ | ||
14389 | |||
14390 | /* Override any GCC internal prototype to avoid an error. | ||
14391 | Use char because int might match the return type of a GCC | ||
14392 | builtin and then its argument prototype would still apply. */ | ||
14393 | #ifdef __cplusplus | ||
14394 | extern "C" | ||
14395 | #endif | ||
14396 | char fnmatch (); | ||
14397 | int | ||
14398 | main () | ||
14399 | { | ||
14400 | return fnmatch (); | ||
14401 | ; | ||
14402 | return 0; | ||
14403 | } | ||
14404 | _ACEOF | ||
14405 | if ac_fn_c_try_link "$LINENO"; then : | ||
14406 | ac_cv_lib_exotic_fnmatch=yes | ||
14407 | else | ||
14408 | ac_cv_lib_exotic_fnmatch=no | ||
14409 | fi | ||
14410 | rm -f core conftest.err conftest.$ac_objext \ | ||
14411 | conftest$ac_exeext conftest.$ac_ext | ||
14412 | LIBS=$ac_check_lib_save_LIBS | ||
14413 | fi | ||
14414 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_exotic_fnmatch" >&5 | ||
14415 | $as_echo "$ac_cv_lib_exotic_fnmatch" >&6; } | ||
14416 | if test "x$ac_cv_lib_exotic_fnmatch" = x""yes; then : | ||
14417 | _efl_have_fnmatch="yes" | ||
14418 | else | ||
14419 | _efl_have_fnmatch="no" | ||
14420 | fi | ||
14421 | |||
14422 | |||
14423 | if test "x${_efl_have_fnmatch}" = "xyes"; then | ||
14424 | EFL_FNMATCH_LIBS="exotic" | ||
14425 | fi | ||
14426 | fi | ||
14427 | |||
14151 | 14428 | ||
14152 | 14429 | ||
14153 | if test "x$_efl_have_fnmatch" = "xyes"; then : | 14430 | if test "x$_efl_have_fnmatch" = "xyes"; then : |
14154 | 14431 | ||
14155 | else | 14432 | else |
14156 | as_fn_error "Cannot find fnmatch()" "$LINENO" 5 | 14433 | as_fn_error $? "Cannot find fnmatch()" "$LINENO" 5 |
14157 | fi | 14434 | fi |
14158 | 14435 | ||
14159 | 14436 | ||
@@ -14246,6 +14523,7 @@ DEFS=-DHAVE_CONFIG_H | |||
14246 | 14523 | ||
14247 | ac_libobjs= | 14524 | ac_libobjs= |
14248 | ac_ltlibobjs= | 14525 | ac_ltlibobjs= |
14526 | U= | ||
14249 | for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue | 14527 | for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue |
14250 | # 1. Remove the extension, and $U if already installed. | 14528 | # 1. Remove the extension, and $U if already installed. |
14251 | ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' | 14529 | ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' |
@@ -14269,43 +14547,43 @@ else | |||
14269 | fi | 14547 | fi |
14270 | 14548 | ||
14271 | if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then | 14549 | if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then |
14272 | as_fn_error "conditional \"AMDEP\" was never defined. | 14550 | as_fn_error $? "conditional \"AMDEP\" was never defined. |
14273 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 | 14551 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
14274 | fi | 14552 | fi |
14275 | if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then | 14553 | if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then |
14276 | as_fn_error "conditional \"am__fastdepCC\" was never defined. | 14554 | as_fn_error $? "conditional \"am__fastdepCC\" was never defined. |
14277 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 | 14555 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
14278 | fi | 14556 | fi |
14279 | if test -z "${EET_AMALGAMATION_TRUE}" && test -z "${EET_AMALGAMATION_FALSE}"; then | 14557 | if test -z "${EET_AMALGAMATION_TRUE}" && test -z "${EET_AMALGAMATION_FALSE}"; then |
14280 | as_fn_error "conditional \"EET_AMALGAMATION\" was never defined. | 14558 | as_fn_error $? "conditional \"EET_AMALGAMATION\" was never defined. |
14281 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 | 14559 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
14282 | fi | 14560 | fi |
14283 | if test -z "${BUILD_EET_TRUE}" && test -z "${BUILD_EET_FALSE}"; then | 14561 | if test -z "${BUILD_EET_TRUE}" && test -z "${BUILD_EET_FALSE}"; then |
14284 | as_fn_error "conditional \"BUILD_EET\" was never defined. | 14562 | as_fn_error $? "conditional \"BUILD_EET\" was never defined. |
14285 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 | 14563 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
14286 | fi | 14564 | fi |
14287 | if test -z "${INSTALL_EXAMPLES_TRUE}" && test -z "${INSTALL_EXAMPLES_FALSE}"; then | 14565 | if test -z "${INSTALL_EXAMPLES_TRUE}" && test -z "${INSTALL_EXAMPLES_FALSE}"; then |
14288 | as_fn_error "conditional \"INSTALL_EXAMPLES\" was never defined. | 14566 | as_fn_error $? "conditional \"INSTALL_EXAMPLES\" was never defined. |
14289 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 | 14567 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
14290 | fi | 14568 | fi |
14291 | if test -z "${BUILD_EXAMPLES_TRUE}" && test -z "${BUILD_EXAMPLES_FALSE}"; then | 14569 | if test -z "${BUILD_EXAMPLES_TRUE}" && test -z "${BUILD_EXAMPLES_FALSE}"; then |
14292 | as_fn_error "conditional \"BUILD_EXAMPLES\" was never defined. | 14570 | as_fn_error $? "conditional \"BUILD_EXAMPLES\" was never defined. |
14293 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 | 14571 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
14294 | fi | 14572 | fi |
14295 | if test -z "${EFL_ENABLE_TESTS_TRUE}" && test -z "${EFL_ENABLE_TESTS_FALSE}"; then | 14573 | if test -z "${EFL_ENABLE_TESTS_TRUE}" && test -z "${EFL_ENABLE_TESTS_FALSE}"; then |
14296 | as_fn_error "conditional \"EFL_ENABLE_TESTS\" was never defined. | 14574 | as_fn_error $? "conditional \"EFL_ENABLE_TESTS\" was never defined. |
14297 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 | 14575 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
14298 | fi | 14576 | fi |
14299 | if test -z "${EFL_ENABLE_COVERAGE_TRUE}" && test -z "${EFL_ENABLE_COVERAGE_FALSE}"; then | 14577 | if test -z "${EFL_ENABLE_COVERAGE_TRUE}" && test -z "${EFL_ENABLE_COVERAGE_FALSE}"; then |
14300 | as_fn_error "conditional \"EFL_ENABLE_COVERAGE\" was never defined. | 14578 | as_fn_error $? "conditional \"EFL_ENABLE_COVERAGE\" was never defined. |
14301 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 | 14579 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
14302 | fi | 14580 | fi |
14303 | if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then | 14581 | if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then |
14304 | as_fn_error "conditional \"am__fastdepCC\" was never defined. | 14582 | as_fn_error $? "conditional \"am__fastdepCC\" was never defined. |
14305 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 | 14583 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
14306 | fi | 14584 | fi |
14307 | if test -z "${EFL_BUILD_DOC_TRUE}" && test -z "${EFL_BUILD_DOC_FALSE}"; then | 14585 | if test -z "${EFL_BUILD_DOC_TRUE}" && test -z "${EFL_BUILD_DOC_FALSE}"; then |
14308 | as_fn_error "conditional \"EFL_BUILD_DOC\" was never defined. | 14586 | as_fn_error $? "conditional \"EFL_BUILD_DOC\" was never defined. |
14309 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 | 14587 | Usually this means the macro was only invoked conditionally." "$LINENO" 5 |
14310 | fi | 14588 | fi |
14311 | 14589 | ||
@@ -14455,19 +14733,19 @@ export LANGUAGE | |||
14455 | (unset CDPATH) >/dev/null 2>&1 && unset CDPATH | 14733 | (unset CDPATH) >/dev/null 2>&1 && unset CDPATH |
14456 | 14734 | ||
14457 | 14735 | ||
14458 | # as_fn_error ERROR [LINENO LOG_FD] | 14736 | # as_fn_error STATUS ERROR [LINENO LOG_FD] |
14459 | # --------------------------------- | 14737 | # ---------------------------------------- |
14460 | # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are | 14738 | # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are |
14461 | # provided, also output the error to LOG_FD, referencing LINENO. Then exit the | 14739 | # provided, also output the error to LOG_FD, referencing LINENO. Then exit the |
14462 | # script with status $?, using 1 if that was 0. | 14740 | # script with STATUS, using 1 if that was 0. |
14463 | as_fn_error () | 14741 | as_fn_error () |
14464 | { | 14742 | { |
14465 | as_status=$?; test $as_status -eq 0 && as_status=1 | 14743 | as_status=$1; test $as_status -eq 0 && as_status=1 |
14466 | if test "$3"; then | 14744 | if test "$4"; then |
14467 | as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | 14745 | as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack |
14468 | $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 | 14746 | $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 |
14469 | fi | 14747 | fi |
14470 | $as_echo "$as_me: error: $1" >&2 | 14748 | $as_echo "$as_me: error: $2" >&2 |
14471 | as_fn_exit $as_status | 14749 | as_fn_exit $as_status |
14472 | } # as_fn_error | 14750 | } # as_fn_error |
14473 | 14751 | ||
@@ -14663,7 +14941,7 @@ $as_echo X"$as_dir" | | |||
14663 | test -d "$as_dir" && break | 14941 | test -d "$as_dir" && break |
14664 | done | 14942 | done |
14665 | test -z "$as_dirs" || eval "mkdir $as_dirs" | 14943 | test -z "$as_dirs" || eval "mkdir $as_dirs" |
14666 | } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" | 14944 | } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" |
14667 | 14945 | ||
14668 | 14946 | ||
14669 | } # as_fn_mkdir_p | 14947 | } # as_fn_mkdir_p |
@@ -14716,8 +14994,8 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |||
14716 | # report actual input values of CONFIG_FILES etc. instead of their | 14994 | # report actual input values of CONFIG_FILES etc. instead of their |
14717 | # values after options handling. | 14995 | # values after options handling. |
14718 | ac_log=" | 14996 | ac_log=" |
14719 | This file was extended by eet $as_me 1.5.99.67344, which was | 14997 | This file was extended by eet $as_me 1.6.0-alpha, which was |
14720 | generated by GNU Autoconf 2.65. Invocation command line was | 14998 | generated by GNU Autoconf 2.67. Invocation command line was |
14721 | 14999 | ||
14722 | CONFIG_FILES = $CONFIG_FILES | 15000 | CONFIG_FILES = $CONFIG_FILES |
14723 | CONFIG_HEADERS = $CONFIG_HEADERS | 15001 | CONFIG_HEADERS = $CONFIG_HEADERS |
@@ -14782,11 +15060,11 @@ _ACEOF | |||
14782 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | 15060 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 |
14783 | ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" | 15061 | ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" |
14784 | ac_cs_version="\\ | 15062 | ac_cs_version="\\ |
14785 | eet config.status 1.5.99.67344 | 15063 | eet config.status 1.6.0-alpha |
14786 | configured by $0, generated by GNU Autoconf 2.65, | 15064 | configured by $0, generated by GNU Autoconf 2.67, |
14787 | with options \\"\$ac_cs_config\\" | 15065 | with options \\"\$ac_cs_config\\" |
14788 | 15066 | ||
14789 | Copyright (C) 2009 Free Software Foundation, Inc. | 15067 | Copyright (C) 2010 Free Software Foundation, Inc. |
14790 | This config.status script is free software; the Free Software Foundation | 15068 | This config.status script is free software; the Free Software Foundation |
14791 | gives unlimited permission to copy, distribute and modify it." | 15069 | gives unlimited permission to copy, distribute and modify it." |
14792 | 15070 | ||
@@ -14804,11 +15082,16 @@ ac_need_defaults=: | |||
14804 | while test $# != 0 | 15082 | while test $# != 0 |
14805 | do | 15083 | do |
14806 | case $1 in | 15084 | case $1 in |
14807 | --*=*) | 15085 | --*=?*) |
14808 | ac_option=`expr "X$1" : 'X\([^=]*\)='` | 15086 | ac_option=`expr "X$1" : 'X\([^=]*\)='` |
14809 | ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` | 15087 | ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` |
14810 | ac_shift=: | 15088 | ac_shift=: |
14811 | ;; | 15089 | ;; |
15090 | --*=) | ||
15091 | ac_option=`expr "X$1" : 'X\([^=]*\)='` | ||
15092 | ac_optarg= | ||
15093 | ac_shift=: | ||
15094 | ;; | ||
14812 | *) | 15095 | *) |
14813 | ac_option=$1 | 15096 | ac_option=$1 |
14814 | ac_optarg=$2 | 15097 | ac_optarg=$2 |
@@ -14830,6 +15113,7 @@ do | |||
14830 | $ac_shift | 15113 | $ac_shift |
14831 | case $ac_optarg in | 15114 | case $ac_optarg in |
14832 | *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; | 15115 | *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; |
15116 | '') as_fn_error $? "missing file argument" ;; | ||
14833 | esac | 15117 | esac |
14834 | as_fn_append CONFIG_FILES " '$ac_optarg'" | 15118 | as_fn_append CONFIG_FILES " '$ac_optarg'" |
14835 | ac_need_defaults=false;; | 15119 | ac_need_defaults=false;; |
@@ -14842,7 +15126,7 @@ do | |||
14842 | ac_need_defaults=false;; | 15126 | ac_need_defaults=false;; |
14843 | --he | --h) | 15127 | --he | --h) |
14844 | # Conflict between --help and --header | 15128 | # Conflict between --help and --header |
14845 | as_fn_error "ambiguous option: \`$1' | 15129 | as_fn_error $? "ambiguous option: \`$1' |
14846 | Try \`$0 --help' for more information.";; | 15130 | Try \`$0 --help' for more information.";; |
14847 | --help | --hel | -h ) | 15131 | --help | --hel | -h ) |
14848 | $as_echo "$ac_cs_usage"; exit ;; | 15132 | $as_echo "$ac_cs_usage"; exit ;; |
@@ -14851,7 +15135,7 @@ Try \`$0 --help' for more information.";; | |||
14851 | ac_cs_silent=: ;; | 15135 | ac_cs_silent=: ;; |
14852 | 15136 | ||
14853 | # This is an error. | 15137 | # This is an error. |
14854 | -*) as_fn_error "unrecognized option: \`$1' | 15138 | -*) as_fn_error $? "unrecognized option: \`$1' |
14855 | Try \`$0 --help' for more information." ;; | 15139 | Try \`$0 --help' for more information." ;; |
14856 | 15140 | ||
14857 | *) as_fn_append ac_config_targets " $1" | 15141 | *) as_fn_append ac_config_targets " $1" |
@@ -15176,7 +15460,7 @@ do | |||
15176 | "src/examples/Makefile") CONFIG_FILES="$CONFIG_FILES src/examples/Makefile" ;; | 15460 | "src/examples/Makefile") CONFIG_FILES="$CONFIG_FILES src/examples/Makefile" ;; |
15177 | "eet.spec") CONFIG_FILES="$CONFIG_FILES eet.spec" ;; | 15461 | "eet.spec") CONFIG_FILES="$CONFIG_FILES eet.spec" ;; |
15178 | 15462 | ||
15179 | *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; | 15463 | *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;; |
15180 | esac | 15464 | esac |
15181 | done | 15465 | done |
15182 | 15466 | ||
@@ -15214,7 +15498,7 @@ $debug || | |||
15214 | { | 15498 | { |
15215 | tmp=./conf$$-$RANDOM | 15499 | tmp=./conf$$-$RANDOM |
15216 | (umask 077 && mkdir "$tmp") | 15500 | (umask 077 && mkdir "$tmp") |
15217 | } || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 | 15501 | } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 |
15218 | 15502 | ||
15219 | # Set up the scripts for CONFIG_FILES section. | 15503 | # Set up the scripts for CONFIG_FILES section. |
15220 | # No need to generate them if there are no CONFIG_FILES. | 15504 | # No need to generate them if there are no CONFIG_FILES. |
@@ -15231,7 +15515,7 @@ if test "x$ac_cr" = x; then | |||
15231 | fi | 15515 | fi |
15232 | ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` | 15516 | ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` |
15233 | if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then | 15517 | if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then |
15234 | ac_cs_awk_cr='\r' | 15518 | ac_cs_awk_cr='\\r' |
15235 | else | 15519 | else |
15236 | ac_cs_awk_cr=$ac_cr | 15520 | ac_cs_awk_cr=$ac_cr |
15237 | fi | 15521 | fi |
@@ -15245,18 +15529,18 @@ _ACEOF | |||
15245 | echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && | 15529 | echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && |
15246 | echo "_ACEOF" | 15530 | echo "_ACEOF" |
15247 | } >conf$$subs.sh || | 15531 | } >conf$$subs.sh || |
15248 | as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 | 15532 | as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 |
15249 | ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` | 15533 | ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` |
15250 | ac_delim='%!_!# ' | 15534 | ac_delim='%!_!# ' |
15251 | for ac_last_try in false false false false false :; do | 15535 | for ac_last_try in false false false false false :; do |
15252 | . ./conf$$subs.sh || | 15536 | . ./conf$$subs.sh || |
15253 | as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 | 15537 | as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 |
15254 | 15538 | ||
15255 | ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` | 15539 | ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` |
15256 | if test $ac_delim_n = $ac_delim_num; then | 15540 | if test $ac_delim_n = $ac_delim_num; then |
15257 | break | 15541 | break |
15258 | elif $ac_last_try; then | 15542 | elif $ac_last_try; then |
15259 | as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 | 15543 | as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 |
15260 | else | 15544 | else |
15261 | ac_delim="$ac_delim!$ac_delim _$ac_delim!! " | 15545 | ac_delim="$ac_delim!$ac_delim _$ac_delim!! " |
15262 | fi | 15546 | fi |
@@ -15345,20 +15629,28 @@ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then | |||
15345 | else | 15629 | else |
15346 | cat | 15630 | cat |
15347 | fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ | 15631 | fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ |
15348 | || as_fn_error "could not setup config files machinery" "$LINENO" 5 | 15632 | || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 |
15349 | _ACEOF | 15633 | _ACEOF |
15350 | 15634 | ||
15351 | # VPATH may cause trouble with some makes, so we remove $(srcdir), | 15635 | # VPATH may cause trouble with some makes, so we remove sole $(srcdir), |
15352 | # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and | 15636 | # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and |
15353 | # trailing colons and then remove the whole line if VPATH becomes empty | 15637 | # trailing colons and then remove the whole line if VPATH becomes empty |
15354 | # (actually we leave an empty line to preserve line numbers). | 15638 | # (actually we leave an empty line to preserve line numbers). |
15355 | if test "x$srcdir" = x.; then | 15639 | if test "x$srcdir" = x.; then |
15356 | ac_vpsub='/^[ ]*VPATH[ ]*=/{ | 15640 | ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ |
15357 | s/:*\$(srcdir):*/:/ | 15641 | h |
15358 | s/:*\${srcdir}:*/:/ | 15642 | s/// |
15359 | s/:*@srcdir@:*/:/ | 15643 | s/^/:/ |
15360 | s/^\([^=]*=[ ]*\):*/\1/ | 15644 | s/[ ]*$/:/ |
15645 | s/:\$(srcdir):/:/g | ||
15646 | s/:\${srcdir}:/:/g | ||
15647 | s/:@srcdir@:/:/g | ||
15648 | s/^:*// | ||
15361 | s/:*$// | 15649 | s/:*$// |
15650 | x | ||
15651 | s/\(=[ ]*\).*/\1/ | ||
15652 | G | ||
15653 | s/\n// | ||
15362 | s/^[^=]*=[ ]*$// | 15654 | s/^[^=]*=[ ]*$// |
15363 | }' | 15655 | }' |
15364 | fi | 15656 | fi |
@@ -15386,7 +15678,7 @@ for ac_last_try in false false :; do | |||
15386 | if test -z "$ac_t"; then | 15678 | if test -z "$ac_t"; then |
15387 | break | 15679 | break |
15388 | elif $ac_last_try; then | 15680 | elif $ac_last_try; then |
15389 | as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 | 15681 | as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 |
15390 | else | 15682 | else |
15391 | ac_delim="$ac_delim!$ac_delim _$ac_delim!! " | 15683 | ac_delim="$ac_delim!$ac_delim _$ac_delim!! " |
15392 | fi | 15684 | fi |
@@ -15471,7 +15763,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | |||
15471 | _ACAWK | 15763 | _ACAWK |
15472 | _ACEOF | 15764 | _ACEOF |
15473 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | 15765 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 |
15474 | as_fn_error "could not setup config headers machinery" "$LINENO" 5 | 15766 | as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 |
15475 | fi # test -n "$CONFIG_HEADERS" | 15767 | fi # test -n "$CONFIG_HEADERS" |
15476 | 15768 | ||
15477 | 15769 | ||
@@ -15484,7 +15776,7 @@ do | |||
15484 | esac | 15776 | esac |
15485 | case $ac_mode$ac_tag in | 15777 | case $ac_mode$ac_tag in |
15486 | :[FHL]*:*);; | 15778 | :[FHL]*:*);; |
15487 | :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; | 15779 | :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;; |
15488 | :[FH]-) ac_tag=-:-;; | 15780 | :[FH]-) ac_tag=-:-;; |
15489 | :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; | 15781 | :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; |
15490 | esac | 15782 | esac |
@@ -15512,7 +15804,7 @@ do | |||
15512 | [\\/$]*) false;; | 15804 | [\\/$]*) false;; |
15513 | *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; | 15805 | *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; |
15514 | esac || | 15806 | esac || |
15515 | as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; | 15807 | as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;; |
15516 | esac | 15808 | esac |
15517 | case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac | 15809 | case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac |
15518 | as_fn_append ac_file_inputs " '$ac_f'" | 15810 | as_fn_append ac_file_inputs " '$ac_f'" |
@@ -15539,7 +15831,7 @@ $as_echo "$as_me: creating $ac_file" >&6;} | |||
15539 | 15831 | ||
15540 | case $ac_tag in | 15832 | case $ac_tag in |
15541 | *:-:* | *:-) cat >"$tmp/stdin" \ | 15833 | *:-:* | *:-) cat >"$tmp/stdin" \ |
15542 | || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; | 15834 | || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; |
15543 | esac | 15835 | esac |
15544 | ;; | 15836 | ;; |
15545 | esac | 15837 | esac |
@@ -15676,22 +15968,22 @@ s&@MKDIR_P@&$ac_MKDIR_P&;t t | |||
15676 | $ac_datarootdir_hack | 15968 | $ac_datarootdir_hack |
15677 | " | 15969 | " |
15678 | eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ | 15970 | eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ |
15679 | || as_fn_error "could not create $ac_file" "$LINENO" 5 | 15971 | || as_fn_error $? "could not create $ac_file" "$LINENO" 5 |
15680 | 15972 | ||
15681 | test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && | 15973 | test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && |
15682 | { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && | 15974 | { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && |
15683 | { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && | 15975 | { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && |
15684 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' | 15976 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' |
15685 | which seems to be undefined. Please make sure it is defined." >&5 | 15977 | which seems to be undefined. Please make sure it is defined" >&5 |
15686 | $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' | 15978 | $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' |
15687 | which seems to be undefined. Please make sure it is defined." >&2;} | 15979 | which seems to be undefined. Please make sure it is defined" >&2;} |
15688 | 15980 | ||
15689 | rm -f "$tmp/stdin" | 15981 | rm -f "$tmp/stdin" |
15690 | case $ac_file in | 15982 | case $ac_file in |
15691 | -) cat "$tmp/out" && rm -f "$tmp/out";; | 15983 | -) cat "$tmp/out" && rm -f "$tmp/out";; |
15692 | *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; | 15984 | *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; |
15693 | esac \ | 15985 | esac \ |
15694 | || as_fn_error "could not create $ac_file" "$LINENO" 5 | 15986 | || as_fn_error $? "could not create $ac_file" "$LINENO" 5 |
15695 | ;; | 15987 | ;; |
15696 | :H) | 15988 | :H) |
15697 | # | 15989 | # |
@@ -15702,19 +15994,19 @@ which seems to be undefined. Please make sure it is defined." >&2;} | |||
15702 | $as_echo "/* $configure_input */" \ | 15994 | $as_echo "/* $configure_input */" \ |
15703 | && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" | 15995 | && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" |
15704 | } >"$tmp/config.h" \ | 15996 | } >"$tmp/config.h" \ |
15705 | || as_fn_error "could not create $ac_file" "$LINENO" 5 | 15997 | || as_fn_error $? "could not create $ac_file" "$LINENO" 5 |
15706 | if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then | 15998 | if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then |
15707 | { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 | 15999 | { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 |
15708 | $as_echo "$as_me: $ac_file is unchanged" >&6;} | 16000 | $as_echo "$as_me: $ac_file is unchanged" >&6;} |
15709 | else | 16001 | else |
15710 | rm -f "$ac_file" | 16002 | rm -f "$ac_file" |
15711 | mv "$tmp/config.h" "$ac_file" \ | 16003 | mv "$tmp/config.h" "$ac_file" \ |
15712 | || as_fn_error "could not create $ac_file" "$LINENO" 5 | 16004 | || as_fn_error $? "could not create $ac_file" "$LINENO" 5 |
15713 | fi | 16005 | fi |
15714 | else | 16006 | else |
15715 | $as_echo "/* $configure_input */" \ | 16007 | $as_echo "/* $configure_input */" \ |
15716 | && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ | 16008 | && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ |
15717 | || as_fn_error "could not create -" "$LINENO" 5 | 16009 | || as_fn_error $? "could not create -" "$LINENO" 5 |
15718 | fi | 16010 | fi |
15719 | # Compute "$ac_file"'s index in $config_headers. | 16011 | # Compute "$ac_file"'s index in $config_headers. |
15720 | _am_arg="$ac_file" | 16012 | _am_arg="$ac_file" |
@@ -16505,7 +16797,7 @@ _ACEOF | |||
16505 | ac_clean_files=$ac_clean_files_save | 16797 | ac_clean_files=$ac_clean_files_save |
16506 | 16798 | ||
16507 | test $ac_write_fail = 0 || | 16799 | test $ac_write_fail = 0 || |
16508 | as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 | 16800 | as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 |
16509 | 16801 | ||
16510 | 16802 | ||
16511 | # configure is writing to config.log, and then calls config.status. | 16803 | # configure is writing to config.log, and then calls config.status. |
@@ -16526,7 +16818,7 @@ if test "$no_create" != yes; then | |||
16526 | exec 5>>config.log | 16818 | exec 5>>config.log |
16527 | # Use ||, not &&, to avoid exiting from the if with $? = 1, which | 16819 | # Use ||, not &&, to avoid exiting from the if with $? = 1, which |
16528 | # would make configure fail if this is the last instruction. | 16820 | # would make configure fail if this is the last instruction. |
16529 | $ac_cs_success || as_fn_exit $? | 16821 | $ac_cs_success || as_fn_exit 1 |
16530 | fi | 16822 | fi |
16531 | if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then | 16823 | if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then |
16532 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 | 16824 | { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 |
diff --git a/libraries/eet/configure.ac b/libraries/eet/configure.ac index 220e2a1..eb3c7e5 100644 --- a/libraries/eet/configure.ac +++ b/libraries/eet/configure.ac | |||
@@ -1,12 +1,12 @@ | |||
1 | y##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## | 1 | ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## |
2 | ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## | 2 | ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## |
3 | m4_define([v_maj], [1]) | 3 | m4_define([v_maj], [1]) |
4 | m4_define([v_min], [5]) | 4 | m4_define([v_min], [6]) |
5 | m4_define([v_mic], [99]) | 5 | m4_define([v_mic], [0]) |
6 | m4_define([v_rev], m4_esyscmd([(svnversion "${SVN_REPO_PATH:-.}" | grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F : '{printf("%s\n", $1);}' | tr -d ' :MSP\n'])) | 6 | m4_define([v_rev], m4_esyscmd([(svnversion "${SVN_REPO_PATH:-.}" | grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F : '{printf("%s\n", $1);}' | tr -d ' :MSP\n'])) |
7 | m4_if(v_rev, [0], [m4_define([v_rev], m4_esyscmd([git log 2> /dev/null | (grep -m1 git-svn-id || echo 0) | sed -e 's/.*@\([0-9]*\).*/\1/' | tr -d '\n']))]) | 7 | m4_if(v_rev, [0], [m4_define([v_rev], m4_esyscmd([git log 2> /dev/null | (grep -m1 git-svn-id || echo 0) | sed -e 's/.*@\([0-9]*\).*/\1/' | tr -d '\n']))]) |
8 | ##-- When released, remove the dnl on the below line | 8 | ##-- When released, remove the dnl on the below line |
9 | dnl m4_undefine([v_rev]) | 9 | m4_undefine([v_rev]) |
10 | ##-- When doing snapshots - change soname. remove dnl on below line | 10 | ##-- When doing snapshots - change soname. remove dnl on below line |
11 | dnl m4_define([relname], [ver-pre-svn-05]) | 11 | dnl m4_define([relname], [ver-pre-svn-05]) |
12 | dnl m4_define([v_rel], [-release relname]) | 12 | dnl m4_define([v_rel], [-release relname]) |
@@ -18,7 +18,7 @@ m4_define([lt_age], v_min) | |||
18 | ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## | 18 | ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## |
19 | ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## | 19 | ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## |
20 | 20 | ||
21 | AC_INIT([eet], [v_ver], [enlightenment-devel@lists.sourceforge.net]) | 21 | AC_INIT([eet], [v_ver]-alpha, [enlightenment-devel@lists.sourceforge.net]) |
22 | AC_PREREQ([2.52]) | 22 | AC_PREREQ([2.52]) |
23 | AC_CONFIG_SRCDIR([configure.ac]) | 23 | AC_CONFIG_SRCDIR([configure.ac]) |
24 | AC_CONFIG_MACRO_DIR([m4]) | 24 | AC_CONFIG_MACRO_DIR([m4]) |
@@ -110,39 +110,6 @@ else | |||
110 | AC_DEFINE(EET_OLD_EET_FILE_FORMAT, 0, [support old eet file format]) | 110 | AC_DEFINE(EET_OLD_EET_FILE_FORMAT, 0, [support old eet file format]) |
111 | fi | 111 | fi |
112 | 112 | ||
113 | # Gnutls support | ||
114 | |||
115 | AC_ARG_ENABLE([gnutls], | ||
116 | [AC_HELP_STRING([--disable-gnutls], [disable gnutls eet support])], | ||
117 | [want_gnutls=$enableval] | ||
118 | ) | ||
119 | AC_MSG_CHECKING([whether to use Gnutls]) | ||
120 | AC_MSG_RESULT([${want_gnutls}]) | ||
121 | |||
122 | # Specific GNUTLS improvement | ||
123 | |||
124 | new_gnutls_api="yes" | ||
125 | AC_ARG_ENABLE(new-gnutls-api, | ||
126 | [AC_HELP_STRING( | ||
127 | [--disable-new-gnutls-api], | ||
128 | [enable use of gnutls_x509_crt_verify_hash. [[default=enable]]] | ||
129 | )], | ||
130 | [new_gnutls_api=$enableval] | ||
131 | ) | ||
132 | AC_MSG_CHECKING([whether to use gnutls_x509_crt_verify_hash]) | ||
133 | AC_MSG_RESULT([${new_gnutls_api}]) | ||
134 | |||
135 | if test "x${new_gnutls_api}" = "xyes" ; then | ||
136 | AC_CHECK_LIB(gnutls, gnutls_x509_crt_verify_hash, | ||
137 | [ new_gnutls_api="yes" ], | ||
138 | [ new_gnutls_api="no" ] | ||
139 | ) | ||
140 | |||
141 | if test "x${new_gnutls_api}" = "xyes"; then | ||
142 | AC_DEFINE(EET_USE_NEW_GNUTLS_API, 1, [use gnutls_x509_crt_verify_hash]) | ||
143 | fi | ||
144 | fi | ||
145 | |||
146 | # Openssl support | 113 | # Openssl support |
147 | 114 | ||
148 | AC_ARG_ENABLE([openssl], | 115 | AC_ARG_ENABLE([openssl], |
@@ -264,8 +231,30 @@ AC_SUBST(EET_LIBS) | |||
264 | 231 | ||
265 | # Eina library | 232 | # Eina library |
266 | 233 | ||
267 | PKG_CHECK_MODULES(EINA, [eina >= 1.1.0]) | 234 | PKG_CHECK_MODULES(EINA, [eina >= 1.2.0]) |
268 | requirement_eet="eina >= 1.1.0 ${requirement_eet}" | 235 | requirement_eet="eina >= 1.2.0 ${requirement_eet}" |
236 | |||
237 | ### Checks for portability layer | ||
238 | |||
239 | PKG_CHECK_MODULES([EXOTIC], | ||
240 | [exotic], | ||
241 | [enable_exotic="yes"], | ||
242 | [enable_exotic="no"]) | ||
243 | |||
244 | if test "x${enable_exotic}" = "xyes"; then | ||
245 | requirement_eet="exotic ${requirement_eet}" | ||
246 | |||
247 | AC_DEFINE([HAVE_EXOTIC_H], [1], [Define to 1 if you have Exotic.]) | ||
248 | fi | ||
249 | |||
250 | # Gnutls support | ||
251 | |||
252 | AC_ARG_ENABLE([gnutls], | ||
253 | [AC_HELP_STRING([--disable-gnutls], [disable gnutls eet support])], | ||
254 | [want_gnutls=$enableval] | ||
255 | ) | ||
256 | AC_MSG_CHECKING([whether to use Gnutls]) | ||
257 | AC_MSG_RESULT([${want_gnutls}]) | ||
269 | 258 | ||
270 | # Gnutls library | 259 | # Gnutls library |
271 | have_gnutls="no" | 260 | have_gnutls="no" |
@@ -287,6 +276,76 @@ if test "x${want_gnutls}" = "xyes" || test "x${want_gnutls}" = "xauto" ; then | |||
287 | fi | 276 | fi |
288 | fi | 277 | fi |
289 | 278 | ||
279 | # Specific GNUTLS improvement | ||
280 | |||
281 | new_gnutls_api="yes" | ||
282 | AC_ARG_ENABLE(new-gnutls-api, | ||
283 | [AC_HELP_STRING( | ||
284 | [--disable-new-gnutls-api], | ||
285 | [enable use of gnutls_x509_crt_verify_hash. [[default=enable]]] | ||
286 | )], | ||
287 | [new_gnutls_api=$enableval] | ||
288 | ) | ||
289 | AC_MSG_CHECKING([whether to use gnutls_x509_crt_verify_hash]) | ||
290 | AC_MSG_RESULT([${new_gnutls_api}]) | ||
291 | |||
292 | if test "x${new_gnutls_api}" = "xyes" ; then | ||
293 | tmp_CFLAGS="${CFLAGS}" | ||
294 | tmp_LIBS="${LIBS}" | ||
295 | CFLAGS="${GNUTLS_CFLAGS}" | ||
296 | LIBS="${GNUTLS_LIBS}" | ||
297 | AC_CHECK_LIB(gnutls, gnutls_x509_crt_verify_hash, | ||
298 | [ new_gnutls_api="yes" ], | ||
299 | [ new_gnutls_api="no" ] | ||
300 | ) | ||
301 | CFLAGS="${tmp_CFLAGS}" | ||
302 | LIBS="${tmp_LIBS}" | ||
303 | |||
304 | if test "x${new_gnutls_api}" = "xyes"; then | ||
305 | AC_DEFINE(EET_USE_NEW_GNUTLS_API, 1, [use gnutls_x509_crt_verify_hash]) | ||
306 | fi | ||
307 | fi | ||
308 | |||
309 | use_gnutls_privkey_sign_data="no" | ||
310 | if test "x${want_gnutls}" = "xyes" -o "x${want_gnutls}" = "xauto"; then | ||
311 | tmp_CFLAGS="${CFLAGS}" | ||
312 | tmp_LIBS="${LIBS}" | ||
313 | CFLAGS="${GNUTLS_CFLAGS}" | ||
314 | LIBS="${GNUTLS_LIBS}" | ||
315 | AC_CHECK_LIB(gnutls, gnutls_privkey_sign_data, | ||
316 | [ use_gnutls_privkey_sign_data="yes" ], | ||
317 | [ use_gnutls_privkey_sign_data="no" ] | ||
318 | ) | ||
319 | CFLAGS="${tmp_CFLAGS}" | ||
320 | LIBS="${tmp_LIBS}" | ||
321 | |||
322 | if test "x${use_gnutls_privkey_sign_data}" = "xyes"; then | ||
323 | AC_DEFINE(EET_USE_NEW_PRIVKEY_SIGN_DATA, 1, [use gnutls_privkey_sign_data]) | ||
324 | fi | ||
325 | fi | ||
326 | AC_MSG_CHECKING([whether to use gnutls_privkey_sign_data]) | ||
327 | AC_MSG_RESULT([${use_gnutls_privkey_sign_data}]) | ||
328 | |||
329 | use_gnutls_pubkey_verify_hash="no" | ||
330 | if test "x${want_gnutls}" = "xyes" -o "x${want_gnutls}" = "xauto"; then | ||
331 | tmp_CFLAGS="${CFLAGS}" | ||
332 | tmp_LIBS="${LIBS}" | ||
333 | CFLAGS="${GNUTLS_CFLAGS}" | ||
334 | LIBS="${GNUTLS_LIBS}" | ||
335 | AC_CHECK_LIB(gnutls, gnutls_pubkey_verify_hash, | ||
336 | [ use_gnutls_pubkey_verify_hash="yes" ], | ||
337 | [ use_gnutls_pubkey_verify_hash="no" ] | ||
338 | ) | ||
339 | CFLAGS="${tmp_CFLAGS}" | ||
340 | LIBS="${tmp_LIBS}" | ||
341 | |||
342 | if test "x${use_gnutls_pubkey_verify_hash}" = "xyes"; then | ||
343 | AC_DEFINE(EET_USE_NEW_PUBKEY_VERIFY_HASH, 1, [use gnutls_pubkey_verify_hash]) | ||
344 | fi | ||
345 | fi | ||
346 | AC_MSG_CHECKING([whether to use gnutls_pubkey_verify_hash]) | ||
347 | AC_MSG_RESULT([${use_gnutls_pubkey_verify_hash}]) | ||
348 | |||
290 | # Openssl library | 349 | # Openssl library |
291 | have_openssl="no" | 350 | have_openssl="no" |
292 | if test "x${want_openssl}" = "xyes" || test "x${want_openssl}" = "xauto" ; then | 351 | if test "x${want_openssl}" = "xyes" || test "x${want_openssl}" = "xauto" ; then |
diff --git a/libraries/eet/doc/Doxyfile b/libraries/eet/doc/Doxyfile index f6e3026..26a32a7 100644 --- a/libraries/eet/doc/Doxyfile +++ b/libraries/eet/doc/Doxyfile | |||
@@ -31,7 +31,7 @@ PROJECT_NAME = Eet | |||
31 | # This could be handy for archiving the generated documentation or | 31 | # This could be handy for archiving the generated documentation or |
32 | # if some version control system is used. | 32 | # if some version control system is used. |
33 | 33 | ||
34 | PROJECT_NUMBER = 1.5.99.67344 | 34 | PROJECT_NUMBER = 1.6.0-alpha |
35 | 35 | ||
36 | # Using the PROJECT_BRIEF tag one can provide an optional one line description for a project that appears at the top of each page and should give viewer a quick idea about the purpose of the project. Keep the description short. | 36 | # Using the PROJECT_BRIEF tag one can provide an optional one line description for a project that appears at the top of each page and should give viewer a quick idea about the purpose of the project. Keep the description short. |
37 | 37 | ||
@@ -1267,7 +1267,7 @@ RTF_EXTENSIONS_FILE = | |||
1267 | # If the GENERATE_MAN tag is set to YES (the default) Doxygen will | 1267 | # If the GENERATE_MAN tag is set to YES (the default) Doxygen will |
1268 | # generate man pages | 1268 | # generate man pages |
1269 | 1269 | ||
1270 | GENERATE_MAN = YES | 1270 | GENERATE_MAN = NO |
1271 | 1271 | ||
1272 | # The MAN_OUTPUT tag is used to specify where the man pages will be put. | 1272 | # The MAN_OUTPUT tag is used to specify where the man pages will be put. |
1273 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be | 1273 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be |
diff --git a/libraries/eet/doc/Doxyfile.in b/libraries/eet/doc/Doxyfile.in index eadf82a..8c427f8 100644 --- a/libraries/eet/doc/Doxyfile.in +++ b/libraries/eet/doc/Doxyfile.in | |||
@@ -1267,7 +1267,7 @@ RTF_EXTENSIONS_FILE = | |||
1267 | # If the GENERATE_MAN tag is set to YES (the default) Doxygen will | 1267 | # If the GENERATE_MAN tag is set to YES (the default) Doxygen will |
1268 | # generate man pages | 1268 | # generate man pages |
1269 | 1269 | ||
1270 | GENERATE_MAN = YES | 1270 | GENERATE_MAN = NO |
1271 | 1271 | ||
1272 | # The MAN_OUTPUT tag is used to specify where the man pages will be put. | 1272 | # The MAN_OUTPUT tag is used to specify where the man pages will be put. |
1273 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be | 1273 | # If a relative path is entered the value of OUTPUT_DIRECTORY will be |
diff --git a/libraries/eet/doc/Makefile.am b/libraries/eet/doc/Makefile.am index 145376f..4eeb438 100644 --- a/libraries/eet/doc/Makefile.am +++ b/libraries/eet/doc/Makefile.am | |||
@@ -8,19 +8,20 @@ PACKAGE_DOCNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc | |||
8 | if EFL_BUILD_DOC | 8 | if EFL_BUILD_DOC |
9 | 9 | ||
10 | doc-clean: | 10 | doc-clean: |
11 | rm -rf html/ latex/ man/ xml/ $(PACKAGE_DOCNAME).tar* | 11 | rm -rf html/ latex/ xml/ $(PACKAGE_DOCNAME).tar* |
12 | 12 | ||
13 | doc: doc-clean | 13 | doc: doc-clean |
14 | $(efl_doxygen) | 14 | $(efl_doxygen) |
15 | cp $(srcdir)/img/* html/ | 15 | cp $(srcdir)/img/* html/ |
16 | rm -rf $(PACKAGE_DOCNAME).tar* | 16 | rm -rf $(PACKAGE_DOCNAME).tar* |
17 | mkdir -p $(PACKAGE_DOCNAME)/doc | 17 | mkdir -p $(PACKAGE_DOCNAME)/doc |
18 | cp -R html/ latex/ man/ $(PACKAGE_DOCNAME)/doc | 18 | cp -R html/ latex/ $(PACKAGE_DOCNAME)/doc |
19 | tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/ | 19 | tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/ |
20 | bzip2 -9 $(PACKAGE_DOCNAME).tar | 20 | bzip2 -9 $(PACKAGE_DOCNAME).tar |
21 | rm -rf $(PACKAGE_DOCNAME)/ | 21 | rm -rf $(PACKAGE_DOCNAME)/ |
22 | mv $(PACKAGE_DOCNAME).tar.bz2 $(top_builddir) | 22 | mv $(PACKAGE_DOCNAME).tar.bz2 $(top_builddir) |
23 | @echo "Documentation Package: $(top_builddir)/$(PACKAGE_DOCNAME).tar.bz2" | 23 | @echo "Documentation Package: $(PACKAGE_DOCNAME).tar.bz2" |
24 | @echo "Documentation HTML: doc/html" | ||
24 | 25 | ||
25 | clean-local: doc-clean | 26 | clean-local: doc-clean |
26 | 27 | ||
diff --git a/libraries/eet/doc/Makefile.in b/libraries/eet/doc/Makefile.in index e285740..25de7ec 100644 --- a/libraries/eet/doc/Makefile.in +++ b/libraries/eet/doc/Makefile.in | |||
@@ -104,6 +104,8 @@ EINA_LIBS = @EINA_LIBS@ | |||
104 | EVIL_CFLAGS = @EVIL_CFLAGS@ | 104 | EVIL_CFLAGS = @EVIL_CFLAGS@ |
105 | EVIL_LIBS = @EVIL_LIBS@ | 105 | EVIL_LIBS = @EVIL_LIBS@ |
106 | EXEEXT = @EXEEXT@ | 106 | EXEEXT = @EXEEXT@ |
107 | EXOTIC_CFLAGS = @EXOTIC_CFLAGS@ | ||
108 | EXOTIC_LIBS = @EXOTIC_LIBS@ | ||
107 | FGREP = @FGREP@ | 109 | FGREP = @FGREP@ |
108 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ | 110 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ |
109 | GNUTLS_LIBS = @GNUTLS_LIBS@ | 111 | GNUTLS_LIBS = @GNUTLS_LIBS@ |
@@ -143,6 +145,8 @@ PACKAGE_URL = @PACKAGE_URL@ | |||
143 | PACKAGE_VERSION = @PACKAGE_VERSION@ | 145 | PACKAGE_VERSION = @PACKAGE_VERSION@ |
144 | PATH_SEPARATOR = @PATH_SEPARATOR@ | 146 | PATH_SEPARATOR = @PATH_SEPARATOR@ |
145 | PKG_CONFIG = @PKG_CONFIG@ | 147 | PKG_CONFIG = @PKG_CONFIG@ |
148 | PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ | ||
149 | PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ | ||
146 | RANLIB = @RANLIB@ | 150 | RANLIB = @RANLIB@ |
147 | SED = @SED@ | 151 | SED = @SED@ |
148 | SET_MAKE = @SET_MAKE@ | 152 | SET_MAKE = @SET_MAKE@ |
@@ -414,19 +418,20 @@ uninstall-am: | |||
414 | .PHONY: doc | 418 | .PHONY: doc |
415 | 419 | ||
416 | @EFL_BUILD_DOC_TRUE@doc-clean: | 420 | @EFL_BUILD_DOC_TRUE@doc-clean: |
417 | @EFL_BUILD_DOC_TRUE@ rm -rf html/ latex/ man/ xml/ $(PACKAGE_DOCNAME).tar* | 421 | @EFL_BUILD_DOC_TRUE@ rm -rf html/ latex/ xml/ $(PACKAGE_DOCNAME).tar* |
418 | 422 | ||
419 | @EFL_BUILD_DOC_TRUE@doc: doc-clean | 423 | @EFL_BUILD_DOC_TRUE@doc: doc-clean |
420 | @EFL_BUILD_DOC_TRUE@ $(efl_doxygen) | 424 | @EFL_BUILD_DOC_TRUE@ $(efl_doxygen) |
421 | @EFL_BUILD_DOC_TRUE@ cp $(srcdir)/img/* html/ | 425 | @EFL_BUILD_DOC_TRUE@ cp $(srcdir)/img/* html/ |
422 | @EFL_BUILD_DOC_TRUE@ rm -rf $(PACKAGE_DOCNAME).tar* | 426 | @EFL_BUILD_DOC_TRUE@ rm -rf $(PACKAGE_DOCNAME).tar* |
423 | @EFL_BUILD_DOC_TRUE@ mkdir -p $(PACKAGE_DOCNAME)/doc | 427 | @EFL_BUILD_DOC_TRUE@ mkdir -p $(PACKAGE_DOCNAME)/doc |
424 | @EFL_BUILD_DOC_TRUE@ cp -R html/ latex/ man/ $(PACKAGE_DOCNAME)/doc | 428 | @EFL_BUILD_DOC_TRUE@ cp -R html/ latex/ $(PACKAGE_DOCNAME)/doc |
425 | @EFL_BUILD_DOC_TRUE@ tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/ | 429 | @EFL_BUILD_DOC_TRUE@ tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/ |
426 | @EFL_BUILD_DOC_TRUE@ bzip2 -9 $(PACKAGE_DOCNAME).tar | 430 | @EFL_BUILD_DOC_TRUE@ bzip2 -9 $(PACKAGE_DOCNAME).tar |
427 | @EFL_BUILD_DOC_TRUE@ rm -rf $(PACKAGE_DOCNAME)/ | 431 | @EFL_BUILD_DOC_TRUE@ rm -rf $(PACKAGE_DOCNAME)/ |
428 | @EFL_BUILD_DOC_TRUE@ mv $(PACKAGE_DOCNAME).tar.bz2 $(top_builddir) | 432 | @EFL_BUILD_DOC_TRUE@ mv $(PACKAGE_DOCNAME).tar.bz2 $(top_builddir) |
429 | @EFL_BUILD_DOC_TRUE@ @echo "Documentation Package: $(top_builddir)/$(PACKAGE_DOCNAME).tar.bz2" | 433 | @EFL_BUILD_DOC_TRUE@ @echo "Documentation Package: $(PACKAGE_DOCNAME).tar.bz2" |
434 | @EFL_BUILD_DOC_TRUE@ @echo "Documentation HTML: doc/html" | ||
430 | 435 | ||
431 | @EFL_BUILD_DOC_TRUE@clean-local: doc-clean | 436 | @EFL_BUILD_DOC_TRUE@clean-local: doc-clean |
432 | 437 | ||
diff --git a/libraries/eet/eet.spec b/libraries/eet/eet.spec index 4b7994b..a357773 100644 --- a/libraries/eet/eet.spec +++ b/libraries/eet/eet.spec | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | Summary: Library for speedy data storage, retrieval, and compression. | 4 | Summary: Library for speedy data storage, retrieval, and compression. |
5 | Name: eet | 5 | Name: eet |
6 | Version: 1.5.99.67344 | 6 | Version: 1.6.0-alpha |
7 | Release: %{_rel} | 7 | Release: %{_rel} |
8 | License: BSD | 8 | License: BSD |
9 | Group: System Environment/Libraries | 9 | Group: System Environment/Libraries |
diff --git a/libraries/eet/ltmain.sh b/libraries/eet/ltmain.sh index 7ed280b..fa4b1e1 100755 --- a/libraries/eet/ltmain.sh +++ b/libraries/eet/ltmain.sh | |||
@@ -65,7 +65,7 @@ | |||
65 | # compiler: $LTCC | 65 | # compiler: $LTCC |
66 | # compiler flags: $LTCFLAGS | 66 | # compiler flags: $LTCFLAGS |
67 | # linker: $LD (gnu? $with_gnu_ld) | 67 | # linker: $LD (gnu? $with_gnu_ld) |
68 | # $progname: (GNU libtool) 2.2.6b Debian-2.2.6b-2ubuntu1 | 68 | # $progname: (GNU libtool) 2.2.6b Debian-2.2.6b-2ubuntu3 |
69 | # automake: $automake_version | 69 | # automake: $automake_version |
70 | # autoconf: $autoconf_version | 70 | # autoconf: $autoconf_version |
71 | # | 71 | # |
@@ -73,7 +73,7 @@ | |||
73 | 73 | ||
74 | PROGRAM=ltmain.sh | 74 | PROGRAM=ltmain.sh |
75 | PACKAGE=libtool | 75 | PACKAGE=libtool |
76 | VERSION="2.2.6b Debian-2.2.6b-2ubuntu1" | 76 | VERSION="2.2.6b Debian-2.2.6b-2ubuntu3" |
77 | TIMESTAMP="" | 77 | TIMESTAMP="" |
78 | package_revision=1.3017 | 78 | package_revision=1.3017 |
79 | 79 | ||
diff --git a/libraries/eet/m4/efl_fnmatch.m4 b/libraries/eet/m4/efl_fnmatch.m4 index a92ac6b..b5555ee 100644 --- a/libraries/eet/m4/efl_fnmatch.m4 +++ b/libraries/eet/m4/efl_fnmatch.m4 | |||
@@ -24,6 +24,18 @@ if (! test "x${ac_cv_search_fnmatch}" = "xnone required") && (! test "x${ac_cv_s | |||
24 | EFL_FNMATCH_LIBS=${ac_cv_search_fnmatch} | 24 | EFL_FNMATCH_LIBS=${ac_cv_search_fnmatch} |
25 | fi | 25 | fi |
26 | 26 | ||
27 | if test "x${_efl_have_fnmatch}" != "xyes" -a "x${enable_exotic}" = "xyes"; then | ||
28 | LDFLAGS_SAVE="$LDFLAGS" | ||
29 | LDFLAGS="$LDFLAGS $EXOTIC_LIBS" | ||
30 | AC_CHECK_LIB([exotic], [fnmatch], | ||
31 | [_efl_have_fnmatch="yes"], | ||
32 | [_efl_have_fnmatch="no"]) | ||
33 | |||
34 | if test "x${_efl_have_fnmatch}" = "xyes"; then | ||
35 | EFL_FNMATCH_LIBS="exotic" | ||
36 | fi | ||
37 | fi | ||
38 | |||
27 | AC_SUBST(EFL_FNMATCH_LIBS) | 39 | AC_SUBST(EFL_FNMATCH_LIBS) |
28 | 40 | ||
29 | AS_IF([test "x$_efl_have_fnmatch" = "xyes"], [$1], [$2]) | 41 | AS_IF([test "x$_efl_have_fnmatch" = "xyes"], [$1], [$2]) |
diff --git a/libraries/eet/src/Makefile.in b/libraries/eet/src/Makefile.in index 8b2aa37..bfdc4f6 100644 --- a/libraries/eet/src/Makefile.in +++ b/libraries/eet/src/Makefile.in | |||
@@ -143,6 +143,8 @@ EINA_LIBS = @EINA_LIBS@ | |||
143 | EVIL_CFLAGS = @EVIL_CFLAGS@ | 143 | EVIL_CFLAGS = @EVIL_CFLAGS@ |
144 | EVIL_LIBS = @EVIL_LIBS@ | 144 | EVIL_LIBS = @EVIL_LIBS@ |
145 | EXEEXT = @EXEEXT@ | 145 | EXEEXT = @EXEEXT@ |
146 | EXOTIC_CFLAGS = @EXOTIC_CFLAGS@ | ||
147 | EXOTIC_LIBS = @EXOTIC_LIBS@ | ||
146 | FGREP = @FGREP@ | 148 | FGREP = @FGREP@ |
147 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ | 149 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ |
148 | GNUTLS_LIBS = @GNUTLS_LIBS@ | 150 | GNUTLS_LIBS = @GNUTLS_LIBS@ |
@@ -182,6 +184,8 @@ PACKAGE_URL = @PACKAGE_URL@ | |||
182 | PACKAGE_VERSION = @PACKAGE_VERSION@ | 184 | PACKAGE_VERSION = @PACKAGE_VERSION@ |
183 | PATH_SEPARATOR = @PATH_SEPARATOR@ | 185 | PATH_SEPARATOR = @PATH_SEPARATOR@ |
184 | PKG_CONFIG = @PKG_CONFIG@ | 186 | PKG_CONFIG = @PKG_CONFIG@ |
187 | PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ | ||
188 | PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ | ||
185 | RANLIB = @RANLIB@ | 189 | RANLIB = @RANLIB@ |
186 | SED = @SED@ | 190 | SED = @SED@ |
187 | SET_MAKE = @SET_MAKE@ | 191 | SET_MAKE = @SET_MAKE@ |
diff --git a/libraries/eet/src/bin/Makefile.am b/libraries/eet/src/bin/Makefile.am index ba7d67e..89c68f1 100644 --- a/libraries/eet/src/bin/Makefile.am +++ b/libraries/eet/src/bin/Makefile.am | |||
@@ -17,5 +17,5 @@ EXTRA_PROGRAMS = eet | |||
17 | 17 | ||
18 | eet_SOURCES = eet_main.c | 18 | eet_SOURCES = eet_main.c |
19 | eet_CFLAGS = @EET_CFLAGS@ | 19 | eet_CFLAGS = @EET_CFLAGS@ |
20 | eet_LDADD = $(top_builddir)/src/lib/libeet.la @EINA_LIBS@ @EVIL_LIBS@ | 20 | eet_LDADD = $(top_builddir)/src/lib/libeet.la @EINA_LIBS@ @EVIL_LIBS@ @EXOTIC_LIBS@ |
21 | eet_LDFLAGS = @lt_enable_auto_import@ | 21 | eet_LDFLAGS = @lt_enable_auto_import@ |
diff --git a/libraries/eet/src/bin/Makefile.in b/libraries/eet/src/bin/Makefile.in index 4a899f5..a7e94cb 100644 --- a/libraries/eet/src/bin/Makefile.in +++ b/libraries/eet/src/bin/Makefile.in | |||
@@ -138,6 +138,8 @@ EINA_LIBS = @EINA_LIBS@ | |||
138 | EVIL_CFLAGS = @EVIL_CFLAGS@ | 138 | EVIL_CFLAGS = @EVIL_CFLAGS@ |
139 | EVIL_LIBS = @EVIL_LIBS@ | 139 | EVIL_LIBS = @EVIL_LIBS@ |
140 | EXEEXT = @EXEEXT@ | 140 | EXEEXT = @EXEEXT@ |
141 | EXOTIC_CFLAGS = @EXOTIC_CFLAGS@ | ||
142 | EXOTIC_LIBS = @EXOTIC_LIBS@ | ||
141 | FGREP = @FGREP@ | 143 | FGREP = @FGREP@ |
142 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ | 144 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ |
143 | GNUTLS_LIBS = @GNUTLS_LIBS@ | 145 | GNUTLS_LIBS = @GNUTLS_LIBS@ |
@@ -177,6 +179,8 @@ PACKAGE_URL = @PACKAGE_URL@ | |||
177 | PACKAGE_VERSION = @PACKAGE_VERSION@ | 179 | PACKAGE_VERSION = @PACKAGE_VERSION@ |
178 | PATH_SEPARATOR = @PATH_SEPARATOR@ | 180 | PATH_SEPARATOR = @PATH_SEPARATOR@ |
179 | PKG_CONFIG = @PKG_CONFIG@ | 181 | PKG_CONFIG = @PKG_CONFIG@ |
182 | PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ | ||
183 | PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ | ||
180 | RANLIB = @RANLIB@ | 184 | RANLIB = @RANLIB@ |
181 | SED = @SED@ | 185 | SED = @SED@ |
182 | SET_MAKE = @SET_MAKE@ | 186 | SET_MAKE = @SET_MAKE@ |
@@ -259,7 +263,7 @@ AM_CPPFLAGS = \ | |||
259 | bin_PROGRAMS = @EET_PRG@ | 263 | bin_PROGRAMS = @EET_PRG@ |
260 | eet_SOURCES = eet_main.c | 264 | eet_SOURCES = eet_main.c |
261 | eet_CFLAGS = @EET_CFLAGS@ | 265 | eet_CFLAGS = @EET_CFLAGS@ |
262 | eet_LDADD = $(top_builddir)/src/lib/libeet.la @EINA_LIBS@ @EVIL_LIBS@ | 266 | eet_LDADD = $(top_builddir)/src/lib/libeet.la @EINA_LIBS@ @EVIL_LIBS@ @EXOTIC_LIBS@ |
263 | eet_LDFLAGS = @lt_enable_auto_import@ | 267 | eet_LDFLAGS = @lt_enable_auto_import@ |
264 | all: all-am | 268 | all: all-am |
265 | 269 | ||
diff --git a/libraries/eet/src/bin/eet_main.c b/libraries/eet/src/bin/eet_main.c index 0d577ad..8a93d11 100644 --- a/libraries/eet/src/bin/eet_main.c +++ b/libraries/eet/src/bin/eet_main.c | |||
@@ -69,6 +69,63 @@ do_eet_list(const char *file) | |||
69 | } /* do_eet_list */ | 69 | } /* do_eet_list */ |
70 | 70 | ||
71 | static void | 71 | static void |
72 | do_eet_stats(const char *file) | ||
73 | { | ||
74 | int i, num; | ||
75 | int count[2] = { 0, 0 }; | ||
76 | int size[2] = { 0, 0 }; | ||
77 | char **list; | ||
78 | Eet_File *ef; | ||
79 | Eet_Dictionary *ed; | ||
80 | |||
81 | ef = eet_open(file, EET_FILE_MODE_READ); | ||
82 | if (!ef) | ||
83 | { | ||
84 | ERR("cannot open for reading: %s", file); | ||
85 | exit(-1); | ||
86 | } | ||
87 | |||
88 | printf("*** sections stats ***\n"); | ||
89 | list = eet_list(ef, "*", &num); | ||
90 | if (list) | ||
91 | { | ||
92 | for (i = 0; i < num; i++) | ||
93 | { | ||
94 | const void *ro = NULL; | ||
95 | void *rw = NULL; | ||
96 | int tsize; | ||
97 | |||
98 | ro = eet_read_direct(ef, list[i], &tsize); | ||
99 | if (!ro) rw = eet_read(ef, list[i], &tsize); | ||
100 | printf(rw ? "%s of size %i is compressed.\n" : "%s of size %i is not compressed.\n", list[i], tsize); | ||
101 | count[rw ? 0 : 1]++; | ||
102 | size[rw ? 0 : 1] += tsize; | ||
103 | free(rw); | ||
104 | } | ||
105 | free(list); | ||
106 | } | ||
107 | |||
108 | printf("*** dictionary ***\n"); | ||
109 | ed = eet_dictionary_get(ef); | ||
110 | if (ed) | ||
111 | { | ||
112 | printf("%i strings inside the dictionary.\n", eet_dictionary_count(ed)); | ||
113 | } | ||
114 | else | ||
115 | { | ||
116 | printf("no dictionary in this file.\n"); | ||
117 | } | ||
118 | printf("*** global ***\n"); | ||
119 | printf("%i sections\n", num); | ||
120 | printf("- %i of them are compressed (%02.2f%%) expanding in %i bytes.\n", | ||
121 | count[0], (float) count[0] * 100 / (float) num, size[0]); | ||
122 | printf("- %i of them are directly mappable in memory (%02.2f%%) representing %i bytes.\n", | ||
123 | count[1], (float) count[1] * 100 / (float) num, size[1]); | ||
124 | |||
125 | eet_close(ef); | ||
126 | } | ||
127 | |||
128 | static void | ||
72 | do_eet_extract(const char *file, | 129 | do_eet_extract(const char *file, |
73 | const char *key, | 130 | const char *key, |
74 | const char *out, | 131 | const char *out, |
@@ -366,6 +423,7 @@ help: | |||
366 | " eet -r FILE.EET KEY remove KEY in FILE.EET\n" | 423 | " eet -r FILE.EET KEY remove KEY in FILE.EET\n" |
367 | " eet -c FILE.EET report and check the signature information of an eet file\n" | 424 | " eet -c FILE.EET report and check the signature information of an eet file\n" |
368 | " eet -s FILE.EET PRIVATE_KEY PUBLIC_KEY sign FILE.EET with PRIVATE_KEY and attach PUBLIC_KEY as it's certificate\n" | 425 | " eet -s FILE.EET PRIVATE_KEY PUBLIC_KEY sign FILE.EET with PRIVATE_KEY and attach PUBLIC_KEY as it's certificate\n" |
426 | " eet -t FILE.EET give some statistic about a file\n" | ||
369 | ); | 427 | ); |
370 | eet_shutdown(); | 428 | eet_shutdown(); |
371 | return -1; | 429 | return -1; |
@@ -437,6 +495,8 @@ help: | |||
437 | do_eet_check(argv[2]); | 495 | do_eet_check(argv[2]); |
438 | else if ((!strcmp(argv[1], "-s")) && (argc > 4)) | 496 | else if ((!strcmp(argv[1], "-s")) && (argc > 4)) |
439 | do_eet_sign(argv[2], argv[3], argv[4]); | 497 | do_eet_sign(argv[2], argv[3], argv[4]); |
498 | else if ((!strcmp(argv[1], "-t")) && (argc > 2)) | ||
499 | do_eet_stats(argv[2]); | ||
440 | else | 500 | else |
441 | goto help; | 501 | goto help; |
442 | 502 | ||
diff --git a/libraries/eet/src/examples/Makefile.in b/libraries/eet/src/examples/Makefile.in index 5830132..1e979ab 100644 --- a/libraries/eet/src/examples/Makefile.in +++ b/libraries/eet/src/examples/Makefile.in | |||
@@ -226,6 +226,8 @@ EINA_LIBS = @EINA_LIBS@ | |||
226 | EVIL_CFLAGS = @EVIL_CFLAGS@ | 226 | EVIL_CFLAGS = @EVIL_CFLAGS@ |
227 | EVIL_LIBS = @EVIL_LIBS@ | 227 | EVIL_LIBS = @EVIL_LIBS@ |
228 | EXEEXT = @EXEEXT@ | 228 | EXEEXT = @EXEEXT@ |
229 | EXOTIC_CFLAGS = @EXOTIC_CFLAGS@ | ||
230 | EXOTIC_LIBS = @EXOTIC_LIBS@ | ||
229 | FGREP = @FGREP@ | 231 | FGREP = @FGREP@ |
230 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ | 232 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ |
231 | GNUTLS_LIBS = @GNUTLS_LIBS@ | 233 | GNUTLS_LIBS = @GNUTLS_LIBS@ |
@@ -265,6 +267,8 @@ PACKAGE_URL = @PACKAGE_URL@ | |||
265 | PACKAGE_VERSION = @PACKAGE_VERSION@ | 267 | PACKAGE_VERSION = @PACKAGE_VERSION@ |
266 | PATH_SEPARATOR = @PATH_SEPARATOR@ | 268 | PATH_SEPARATOR = @PATH_SEPARATOR@ |
267 | PKG_CONFIG = @PKG_CONFIG@ | 269 | PKG_CONFIG = @PKG_CONFIG@ |
270 | PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ | ||
271 | PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ | ||
268 | RANLIB = @RANLIB@ | 272 | RANLIB = @RANLIB@ |
269 | SED = @SED@ | 273 | SED = @SED@ |
270 | SET_MAKE = @SET_MAKE@ | 274 | SET_MAKE = @SET_MAKE@ |
diff --git a/libraries/eet/src/lib/Eet.h b/libraries/eet/src/lib/Eet.h index 2df7fbf..7495090 100644 --- a/libraries/eet/src/lib/Eet.h +++ b/libraries/eet/src/lib/Eet.h | |||
@@ -6,7 +6,7 @@ | |||
6 | @mainpage Eet Library Documentation | 6 | @mainpage Eet Library Documentation |
7 | 7 | ||
8 | @version 1.5.0 | 8 | @version 1.5.0 |
9 | @date 2000-2011 | 9 | @date 2000-2012 |
10 | 10 | ||
11 | Please see the @ref authors page for contact details. | 11 | Please see the @ref authors page for contact details. |
12 | 12 | ||
@@ -30,7 +30,7 @@ | |||
30 | Eet is extremely fast, small and simple. Eet files can be very small and | 30 | Eet is extremely fast, small and simple. Eet files can be very small and |
31 | highly compressed, making them very optimal for just sending across the | 31 | highly compressed, making them very optimal for just sending across the |
32 | internet without having to archive, compress or decompress and install them. | 32 | internet without having to archive, compress or decompress and install them. |
33 | They allow for lightning-fast random-acess reads once created, making them | 33 | They allow for lightning-fast random-access reads once created, making them |
34 | perfect for storing data that is written once (or rarely) and read many | 34 | perfect for storing data that is written once (or rarely) and read many |
35 | times, but the program does not want to have to read it all in at once. | 35 | times, but the program does not want to have to read it all in at once. |
36 | 36 | ||
@@ -577,7 +577,7 @@ EAPI Eet_File_Mode | |||
577 | eet_mode_get(Eet_File *ef); | 577 | eet_mode_get(Eet_File *ef); |
578 | 578 | ||
579 | /** | 579 | /** |
580 | * Close an eet file handle and flush and writes pending. | 580 | * Close an eet file handle and flush pending writes. |
581 | * @param ef A valid eet file handle. | 581 | * @param ef A valid eet file handle. |
582 | * | 582 | * |
583 | * This function will flush any pending writes to disk if the eet file | 583 | * This function will flush any pending writes to disk if the eet file |
@@ -645,6 +645,17 @@ eet_dictionary_string_check(Eet_Dictionary *ed, | |||
645 | const char *string); | 645 | const char *string); |
646 | 646 | ||
647 | /** | 647 | /** |
648 | * Return the number of strings inside a dictionary | ||
649 | * @param ed A valid dictionary handle | ||
650 | * @return the number of strings inside a dictionary | ||
651 | * | ||
652 | * @since 1.6.0 | ||
653 | * @ingroup Eet_File_Group | ||
654 | */ | ||
655 | EAPI int | ||
656 | eet_dictionary_count(const Eet_Dictionary *ed); | ||
657 | |||
658 | /** | ||
648 | * Read a specified entry from an eet file and return data | 659 | * Read a specified entry from an eet file and return data |
649 | * @param ef A valid eet file handle opened for reading. | 660 | * @param ef A valid eet file handle opened for reading. |
650 | * @param name Name of the entry. eg: "/base/file_i_want". | 661 | * @param name Name of the entry. eg: "/base/file_i_want". |
diff --git a/libraries/eet/src/lib/Makefile.in b/libraries/eet/src/lib/Makefile.in index 2a3fec0..c0367b3 100644 --- a/libraries/eet/src/lib/Makefile.in +++ b/libraries/eet/src/lib/Makefile.in | |||
@@ -172,6 +172,8 @@ EINA_LIBS = @EINA_LIBS@ | |||
172 | EVIL_CFLAGS = @EVIL_CFLAGS@ | 172 | EVIL_CFLAGS = @EVIL_CFLAGS@ |
173 | EVIL_LIBS = @EVIL_LIBS@ | 173 | EVIL_LIBS = @EVIL_LIBS@ |
174 | EXEEXT = @EXEEXT@ | 174 | EXEEXT = @EXEEXT@ |
175 | EXOTIC_CFLAGS = @EXOTIC_CFLAGS@ | ||
176 | EXOTIC_LIBS = @EXOTIC_LIBS@ | ||
175 | FGREP = @FGREP@ | 177 | FGREP = @FGREP@ |
176 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ | 178 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ |
177 | GNUTLS_LIBS = @GNUTLS_LIBS@ | 179 | GNUTLS_LIBS = @GNUTLS_LIBS@ |
@@ -211,6 +213,8 @@ PACKAGE_URL = @PACKAGE_URL@ | |||
211 | PACKAGE_VERSION = @PACKAGE_VERSION@ | 213 | PACKAGE_VERSION = @PACKAGE_VERSION@ |
212 | PATH_SEPARATOR = @PATH_SEPARATOR@ | 214 | PATH_SEPARATOR = @PATH_SEPARATOR@ |
213 | PKG_CONFIG = @PKG_CONFIG@ | 215 | PKG_CONFIG = @PKG_CONFIG@ |
216 | PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ | ||
217 | PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ | ||
214 | RANLIB = @RANLIB@ | 218 | RANLIB = @RANLIB@ |
215 | SED = @SED@ | 219 | SED = @SED@ |
216 | SET_MAKE = @SET_MAKE@ | 220 | SET_MAKE = @SET_MAKE@ |
diff --git a/libraries/eet/src/lib/eet_alloc.c b/libraries/eet/src/lib/eet_alloc.c index 85351ad..29e276c 100644 --- a/libraries/eet/src/lib/eet_alloc.c +++ b/libraries/eet/src/lib/eet_alloc.c | |||
@@ -3,6 +3,7 @@ | |||
3 | #endif | 3 | #endif |
4 | 4 | ||
5 | #include <Eina.h> | 5 | #include <Eina.h> |
6 | |||
6 | #include "Eet.h" | 7 | #include "Eet.h" |
7 | #include "Eet_private.h" | 8 | #include "Eet_private.h" |
8 | 9 | ||
@@ -90,4 +91,3 @@ eet_mempool_shutdown(void) | |||
90 | mempool_array[i]->mp = NULL; | 91 | mempool_array[i]->mp = NULL; |
91 | } | 92 | } |
92 | } | 93 | } |
93 | |||
diff --git a/libraries/eet/src/lib/eet_cipher.c b/libraries/eet/src/lib/eet_cipher.c index 37a0899..2425e22 100644 --- a/libraries/eet/src/lib/eet_cipher.c +++ b/libraries/eet/src/lib/eet_cipher.c | |||
@@ -56,6 +56,9 @@ void *alloca(size_t); | |||
56 | 56 | ||
57 | #ifdef HAVE_CIPHER | 57 | #ifdef HAVE_CIPHER |
58 | # ifdef HAVE_GNUTLS | 58 | # ifdef HAVE_GNUTLS |
59 | # if defined EET_USE_NEW_PUBKEY_VERIFY_HASH || defined EET_USE_NEW_PRIVKEY_SIGN_DATA | ||
60 | # include <gnutls/abstract.h> | ||
61 | # endif | ||
59 | # include <gnutls/x509.h> | 62 | # include <gnutls/x509.h> |
60 | # include <gcrypt.h> | 63 | # include <gcrypt.h> |
61 | # else /* ifdef HAVE_GNUTLS */ | 64 | # else /* ifdef HAVE_GNUTLS */ |
@@ -497,6 +500,10 @@ eet_identity_sign(FILE *fp, | |||
497 | gnutls_datum_t datum = { NULL, 0 }; | 500 | gnutls_datum_t datum = { NULL, 0 }; |
498 | size_t sign_len = 0; | 501 | size_t sign_len = 0; |
499 | size_t cert_len = 0; | 502 | size_t cert_len = 0; |
503 | #ifdef EET_USE_NEW_PRIVKEY_SIGN_DATA | ||
504 | gnutls_datum_t signum = { NULL, 0 }; | ||
505 | gnutls_privkey_t privkey; | ||
506 | #endif | ||
500 | # else /* ifdef HAVE_GNUTLS */ | 507 | # else /* ifdef HAVE_GNUTLS */ |
501 | EVP_MD_CTX md_ctx; | 508 | EVP_MD_CTX md_ctx; |
502 | unsigned int sign_len = 0; | 509 | unsigned int sign_len = 0; |
@@ -528,6 +535,28 @@ eet_identity_sign(FILE *fp, | |||
528 | datum.size = st_buf.st_size; | 535 | datum.size = st_buf.st_size; |
529 | 536 | ||
530 | /* Get the signature length */ | 537 | /* Get the signature length */ |
538 | #ifdef EET_USE_NEW_PRIVKEY_SIGN_DATA | ||
539 | if (gnutls_privkey_init(&privkey) < 0) | ||
540 | { | ||
541 | err = EET_ERROR_SIGNATURE_FAILED; | ||
542 | goto on_error; | ||
543 | } | ||
544 | |||
545 | if (gnutls_privkey_import_x509(privkey, key->private_key, 0) < 0) | ||
546 | { | ||
547 | err = EET_ERROR_SIGNATURE_FAILED; | ||
548 | goto on_error; | ||
549 | } | ||
550 | |||
551 | if (gnutls_privkey_sign_data(privkey, GNUTLS_DIG_SHA1, 0, &datum, &signum) < 0) | ||
552 | { | ||
553 | err = EET_ERROR_SIGNATURE_FAILED; | ||
554 | goto on_error; | ||
555 | } | ||
556 | |||
557 | sign = signum.data; | ||
558 | sign_len = signum.size; | ||
559 | #else | ||
531 | if (gnutls_x509_privkey_sign_data(key->private_key, GNUTLS_DIG_SHA1, 0, | 560 | if (gnutls_x509_privkey_sign_data(key->private_key, GNUTLS_DIG_SHA1, 0, |
532 | &datum, sign, &sign_len) && | 561 | &datum, sign, &sign_len) && |
533 | !sign_len) | 562 | !sign_len) |
@@ -550,6 +579,7 @@ eet_identity_sign(FILE *fp, | |||
550 | 579 | ||
551 | goto on_error; | 580 | goto on_error; |
552 | } | 581 | } |
582 | #endif | ||
553 | 583 | ||
554 | /* Get the certificate length */ | 584 | /* Get the certificate length */ |
555 | if (gnutls_x509_crt_export(key->certificate, GNUTLS_X509_FMT_DER, cert, | 585 | if (gnutls_x509_crt_export(key->certificate, GNUTLS_X509_FMT_DER, cert, |
@@ -696,6 +726,10 @@ eet_identity_check(const void *data_base, | |||
696 | gnutls_datum_t datum; | 726 | gnutls_datum_t datum; |
697 | gnutls_datum_t signature; | 727 | gnutls_datum_t signature; |
698 | # if EET_USE_NEW_GNUTLS_API | 728 | # if EET_USE_NEW_GNUTLS_API |
729 | # if EET_USE_NEW_PUBKEY_VERIFY_HASH | ||
730 | gnutls_pubkey_t pubkey; | ||
731 | gnutls_digest_algorithm_t hash_algo; | ||
732 | # endif | ||
699 | unsigned char *hash; | 733 | unsigned char *hash; |
700 | gcry_md_hd_t md; | 734 | gcry_md_hd_t md; |
701 | int err; | 735 | int err; |
@@ -724,28 +758,32 @@ eet_identity_check(const void *data_base, | |||
724 | 758 | ||
725 | hash = gcry_md_read(md, GCRY_MD_SHA1); | 759 | hash = gcry_md_read(md, GCRY_MD_SHA1); |
726 | if (!hash) | 760 | if (!hash) |
727 | { | 761 | goto on_error; |
728 | gcry_md_close(md); | ||
729 | return NULL; | ||
730 | } | ||
731 | 762 | ||
732 | datum.size = gcry_md_get_algo_dlen(GCRY_MD_SHA1); | 763 | datum.size = gcry_md_get_algo_dlen(GCRY_MD_SHA1); |
733 | datum.data = hash; | 764 | datum.data = hash; |
734 | 765 | ||
766 | # ifdef EET_USE_NEW_PUBKEY_VERIFY_HASH | ||
767 | if (gnutls_pubkey_init(&pubkey) < 0) | ||
768 | goto on_error; | ||
769 | |||
770 | if (gnutls_pubkey_import_x509(pubkey, cert, 0) < 0) | ||
771 | goto on_error; | ||
772 | |||
773 | if (gnutls_pubkey_get_verify_algorithm(pubkey, &signature, &hash_algo) < 0) | ||
774 | goto on_error; | ||
775 | |||
776 | if (gnutls_pubkey_verify_hash(pubkey, 0, &datum, &signature) < 0) | ||
777 | goto on_error; | ||
778 | # else | ||
735 | if (!gnutls_x509_crt_verify_hash(cert, 0, &datum, &signature)) | 779 | if (!gnutls_x509_crt_verify_hash(cert, 0, &datum, &signature)) |
736 | { | 780 | goto on_error; |
737 | gcry_md_close(md); | 781 | # endif |
738 | return NULL; | ||
739 | } | ||
740 | 782 | ||
741 | if (sha1) | 783 | if (sha1) |
742 | { | 784 | { |
743 | *sha1 = malloc(datum.size); | 785 | *sha1 = malloc(datum.size); |
744 | if (!*sha1) | 786 | if (!*sha1) goto on_error; |
745 | { | ||
746 | gcry_md_close(md); | ||
747 | return NULL; | ||
748 | } | ||
749 | 787 | ||
750 | memcpy(*sha1, hash, datum.size); | 788 | memcpy(*sha1, hash, datum.size); |
751 | *sha1_length = datum.size; | 789 | *sha1_length = datum.size; |
@@ -818,6 +856,13 @@ eet_identity_check(const void *data_base, | |||
818 | *raw_signature_length = sign_len; | 856 | *raw_signature_length = sign_len; |
819 | 857 | ||
820 | return cert_der; | 858 | return cert_der; |
859 | # ifdef HAVE_GNUTLS | ||
860 | # if EET_USE_NEW_GNUTLS_API | ||
861 | on_error: | ||
862 | gcry_md_close(md); | ||
863 | return NULL; | ||
864 | # endif | ||
865 | # endif | ||
821 | #else /* ifdef HAVE_SIGNATURE */ | 866 | #else /* ifdef HAVE_SIGNATURE */ |
822 | data_base = NULL; | 867 | data_base = NULL; |
823 | data_length = 0; | 868 | data_length = 0; |
diff --git a/libraries/eet/src/lib/eet_data.c b/libraries/eet/src/lib/eet_data.c index 56b9ee0..d502f44 100644 --- a/libraries/eet/src/lib/eet_data.c +++ b/libraries/eet/src/lib/eet_data.c | |||
@@ -21,18 +21,6 @@ | |||
21 | #include "Eet.h" | 21 | #include "Eet.h" |
22 | #include "Eet_private.h" | 22 | #include "Eet_private.h" |
23 | 23 | ||
24 | #ifdef _WIN32 | ||
25 | # define FMT_CHAR "%c" | ||
26 | # define FMT_UCHAR "%c" | ||
27 | # define FMT_LONG_LONG "%I64i" | ||
28 | # define FMT_ULONG_LONG "%I64u" | ||
29 | #else | ||
30 | # define FMT_CHAR "%hhi" | ||
31 | # define FMT_UCHAR "%hhu" | ||
32 | # define FMT_LONG_LONG "%lli" | ||
33 | # define FMT_ULONG_LONG "%llu" | ||
34 | #endif | ||
35 | |||
36 | /* | 24 | /* |
37 | * routines for doing data -> struct and struct -> data conversion | 25 | * routines for doing data -> struct and struct -> data conversion |
38 | * | 26 | * |
@@ -3108,7 +3096,7 @@ _eet_data_dump_parse(Eet_Dictionary *ed, | |||
3108 | if (!strcmp(tok3, "char:")) | 3096 | if (!strcmp(tok3, "char:")) |
3109 | { | 3097 | { |
3110 | n->type = EET_T_CHAR; | 3098 | n->type = EET_T_CHAR; |
3111 | sscanf(tok4, FMT_CHAR, | 3099 | sscanf(tok4, "%hhi", |
3112 | &(n->data.value.c)); | 3100 | &(n->data.value.c)); |
3113 | } | 3101 | } |
3114 | else if (!strcmp(tok3, "short:")) | 3102 | else if (!strcmp(tok3, "short:")) |
@@ -3126,7 +3114,7 @@ _eet_data_dump_parse(Eet_Dictionary *ed, | |||
3126 | else if (!strcmp(tok3, "long_long:")) | 3114 | else if (!strcmp(tok3, "long_long:")) |
3127 | { | 3115 | { |
3128 | n->type = EET_T_LONG_LONG; | 3116 | n->type = EET_T_LONG_LONG; |
3129 | sscanf(tok4, FMT_LONG_LONG, | 3117 | sscanf(tok4, "%lli", |
3130 | &(n->data.value.l)); | 3118 | &(n->data.value.l)); |
3131 | } | 3119 | } |
3132 | else if (!strcmp(tok3, "float:")) | 3120 | else if (!strcmp(tok3, "float:")) |
@@ -3144,7 +3132,7 @@ _eet_data_dump_parse(Eet_Dictionary *ed, | |||
3144 | else if (!strcmp(tok3, "uchar:")) | 3132 | else if (!strcmp(tok3, "uchar:")) |
3145 | { | 3133 | { |
3146 | n->type = EET_T_UCHAR; | 3134 | n->type = EET_T_UCHAR; |
3147 | sscanf(tok4, FMT_UCHAR, | 3135 | sscanf(tok4, "%hhu", |
3148 | &(n->data.value.uc)); | 3136 | &(n->data.value.uc)); |
3149 | } | 3137 | } |
3150 | else if (!strcmp(tok3, "ushort:")) | 3138 | else if (!strcmp(tok3, "ushort:")) |
@@ -3162,7 +3150,7 @@ _eet_data_dump_parse(Eet_Dictionary *ed, | |||
3162 | else if (!strcmp(tok3, "ulong_long:")) | 3150 | else if (!strcmp(tok3, "ulong_long:")) |
3163 | { | 3151 | { |
3164 | n->type = EET_T_ULONG_LONG; | 3152 | n->type = EET_T_ULONG_LONG; |
3165 | sscanf(tok4, FMT_ULONG_LONG, | 3153 | sscanf(tok4, "%llu", |
3166 | &(n->data.value.ul)); | 3154 | &(n->data.value.ul)); |
3167 | } | 3155 | } |
3168 | else if (!strcmp(tok3, "string:")) | 3156 | else if (!strcmp(tok3, "string:")) |
@@ -4996,4 +4984,3 @@ eet_data_xattr_cipher_set(const char *filename, | |||
4996 | 4984 | ||
4997 | return ret; | 4985 | return ret; |
4998 | } | 4986 | } |
4999 | |||
diff --git a/libraries/eet/src/lib/eet_dictionary.c b/libraries/eet/src/lib/eet_dictionary.c index 287860d..c79239b 100644 --- a/libraries/eet/src/lib/eet_dictionary.c +++ b/libraries/eet/src/lib/eet_dictionary.c | |||
@@ -169,6 +169,12 @@ eet_dictionary_string_get_size(const Eet_Dictionary *ed, | |||
169 | return 0; | 169 | return 0; |
170 | } | 170 | } |
171 | 171 | ||
172 | EAPI int | ||
173 | eet_dictionary_count(const Eet_Dictionary *ed) | ||
174 | { | ||
175 | return ed->count; | ||
176 | } | ||
177 | |||
172 | int | 178 | int |
173 | eet_dictionary_string_get_hash(const Eet_Dictionary *ed, | 179 | eet_dictionary_string_get_hash(const Eet_Dictionary *ed, |
174 | int idx) | 180 | int idx) |
diff --git a/libraries/eet/src/lib/eet_image.c b/libraries/eet/src/lib/eet_image.c index 8c6c03c..b622236 100644 --- a/libraries/eet/src/lib/eet_image.c +++ b/libraries/eet/src/lib/eet_image.c | |||
@@ -246,7 +246,7 @@ eet_data_image_jpeg_rgb_decode(const void *data, | |||
246 | unsigned int w, | 246 | unsigned int w, |
247 | unsigned int h, | 247 | unsigned int h, |
248 | unsigned int row_stride); | 248 | unsigned int row_stride); |
249 | static void * | 249 | static int |
250 | eet_data_image_jpeg_alpha_decode(const void *data, | 250 | eet_data_image_jpeg_alpha_decode(const void *data, |
251 | int size, | 251 | int size, |
252 | unsigned int src_x, | 252 | unsigned int src_x, |
@@ -560,7 +560,7 @@ eet_data_image_jpeg_rgb_decode(const void *data, | |||
560 | return 1; | 560 | return 1; |
561 | } | 561 | } |
562 | 562 | ||
563 | static void * | 563 | static int |
564 | eet_data_image_jpeg_alpha_decode(const void *data, | 564 | eet_data_image_jpeg_alpha_decode(const void *data, |
565 | int size, | 565 | int size, |
566 | unsigned int src_x, | 566 | unsigned int src_x, |
@@ -577,6 +577,10 @@ eet_data_image_jpeg_alpha_decode(const void *data, | |||
577 | unsigned int x, y, l, scans; | 577 | unsigned int x, y, l, scans; |
578 | unsigned int i, iw; | 578 | unsigned int i, iw; |
579 | 579 | ||
580 | /* FIXME: handle src_x, src_y and row_stride correctly */ | ||
581 | if (!d) | ||
582 | return 0; | ||
583 | |||
580 | memset(&cinfo, 0, sizeof (struct jpeg_decompress_struct)); | 584 | memset(&cinfo, 0, sizeof (struct jpeg_decompress_struct)); |
581 | 585 | ||
582 | cinfo.err = jpeg_std_error(&(jerr.pub)); | 586 | cinfo.err = jpeg_std_error(&(jerr.pub)); |
@@ -584,14 +588,14 @@ eet_data_image_jpeg_alpha_decode(const void *data, | |||
584 | jerr.pub.emit_message = _JPEGErrorHandler2; | 588 | jerr.pub.emit_message = _JPEGErrorHandler2; |
585 | jerr.pub.output_message = _JPEGErrorHandler; | 589 | jerr.pub.output_message = _JPEGErrorHandler; |
586 | if (setjmp(jerr.setjmp_buffer)) | 590 | if (setjmp(jerr.setjmp_buffer)) |
587 | return NULL; | 591 | return 0; |
588 | 592 | ||
589 | jpeg_create_decompress(&cinfo); | 593 | jpeg_create_decompress(&cinfo); |
590 | 594 | ||
591 | if (eet_jpeg_membuf_src(&cinfo, data, (size_t)size)) | 595 | if (eet_jpeg_membuf_src(&cinfo, data, (size_t)size)) |
592 | { | 596 | { |
593 | jpeg_destroy_decompress(&cinfo); | 597 | jpeg_destroy_decompress(&cinfo); |
594 | return NULL; | 598 | return 0; |
595 | } | 599 | } |
596 | 600 | ||
597 | jpeg_read_header(&cinfo, TRUE); | 601 | jpeg_read_header(&cinfo, TRUE); |
@@ -609,7 +613,7 @@ eet_data_image_jpeg_alpha_decode(const void *data, | |||
609 | cinfo.src = NULL; | 613 | cinfo.src = NULL; |
610 | 614 | ||
611 | jpeg_destroy_decompress(&cinfo); | 615 | jpeg_destroy_decompress(&cinfo); |
612 | return NULL; | 616 | return 0; |
613 | } | 617 | } |
614 | 618 | ||
615 | /* end head decoding */ | 619 | /* end head decoding */ |
@@ -620,11 +624,12 @@ eet_data_image_jpeg_alpha_decode(const void *data, | |||
620 | cinfo.src = NULL; | 624 | cinfo.src = NULL; |
621 | 625 | ||
622 | jpeg_destroy_decompress(&cinfo); | 626 | jpeg_destroy_decompress(&cinfo); |
623 | return NULL; | 627 | return 0; |
624 | } | 628 | } |
625 | 629 | ||
626 | tdata = alloca(w * 16 * 3); | 630 | tdata = alloca(w * 16 * 3); |
627 | ptr2 = d; | 631 | ptr2 = d; |
632 | |||
628 | if (cinfo.output_components == 1) | 633 | if (cinfo.output_components == 1) |
629 | { | 634 | { |
630 | for (i = 0; i < (unsigned int)cinfo.rec_outbuf_height; i++) | 635 | for (i = 0; i < (unsigned int)cinfo.rec_outbuf_height; i++) |
@@ -666,7 +671,7 @@ eet_data_image_jpeg_alpha_decode(const void *data, | |||
666 | /* end data decoding */ | 671 | /* end data decoding */ |
667 | jpeg_finish_decompress(&cinfo); | 672 | jpeg_finish_decompress(&cinfo); |
668 | jpeg_destroy_decompress(&cinfo); | 673 | jpeg_destroy_decompress(&cinfo); |
669 | return d; | 674 | return 1; |
670 | } | 675 | } |
671 | 676 | ||
672 | static void * | 677 | static void * |
diff --git a/libraries/eet/src/tests/Makefile.in b/libraries/eet/src/tests/Makefile.in index 791f9fd..e17a54e 100644 --- a/libraries/eet/src/tests/Makefile.in +++ b/libraries/eet/src/tests/Makefile.in | |||
@@ -135,6 +135,8 @@ EINA_LIBS = @EINA_LIBS@ | |||
135 | EVIL_CFLAGS = @EVIL_CFLAGS@ | 135 | EVIL_CFLAGS = @EVIL_CFLAGS@ |
136 | EVIL_LIBS = @EVIL_LIBS@ | 136 | EVIL_LIBS = @EVIL_LIBS@ |
137 | EXEEXT = @EXEEXT@ | 137 | EXEEXT = @EXEEXT@ |
138 | EXOTIC_CFLAGS = @EXOTIC_CFLAGS@ | ||
139 | EXOTIC_LIBS = @EXOTIC_LIBS@ | ||
138 | FGREP = @FGREP@ | 140 | FGREP = @FGREP@ |
139 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ | 141 | GNUTLS_CFLAGS = @GNUTLS_CFLAGS@ |
140 | GNUTLS_LIBS = @GNUTLS_LIBS@ | 142 | GNUTLS_LIBS = @GNUTLS_LIBS@ |
@@ -174,6 +176,8 @@ PACKAGE_URL = @PACKAGE_URL@ | |||
174 | PACKAGE_VERSION = @PACKAGE_VERSION@ | 176 | PACKAGE_VERSION = @PACKAGE_VERSION@ |
175 | PATH_SEPARATOR = @PATH_SEPARATOR@ | 177 | PATH_SEPARATOR = @PATH_SEPARATOR@ |
176 | PKG_CONFIG = @PKG_CONFIG@ | 178 | PKG_CONFIG = @PKG_CONFIG@ |
179 | PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ | ||
180 | PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ | ||
177 | RANLIB = @RANLIB@ | 181 | RANLIB = @RANLIB@ |
178 | SED = @SED@ | 182 | SED = @SED@ |
179 | SET_MAKE = @SET_MAKE@ | 183 | SET_MAKE = @SET_MAKE@ |
diff --git a/libraries/eet/src/tests/eet_suite.c b/libraries/eet/src/tests/eet_suite.c index 3bbc912..91ef2a7 100644 --- a/libraries/eet/src/tests/eet_suite.c +++ b/libraries/eet/src/tests/eet_suite.c | |||
@@ -1933,7 +1933,7 @@ START_TEST(eet_cache_concurrency) | |||
1933 | thread = _beginthreadex(NULL, 0, open_close_worker, file, 0, &thread_id); | 1933 | thread = _beginthreadex(NULL, 0, open_close_worker, file, 0, &thread_id); |
1934 | # endif /* ifdef _EET_INCLUDED_PTHREAD */ | 1934 | # endif /* ifdef _EET_INCLUDED_PTHREAD */ |
1935 | /* clear the cache repeatedly in this thread */ | 1935 | /* clear the cache repeatedly in this thread */ |
1936 | for (n = 0; n < 50000; ++n) | 1936 | for (n = 0; n < 20000; ++n) |
1937 | { | 1937 | { |
1938 | eet_clearcache(); | 1938 | eet_clearcache(); |
1939 | } | 1939 | } |