diff options
| author | Glenn Morris | 2009-01-26 07:31:35 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-01-26 07:31:35 +0000 |
| commit | 8bff6137519b682e173c62b6bbdc31086f9dd074 (patch) | |
| tree | f32d60de2f032492bb463d7d1a30863b522342e6 | |
| parent | 9f798291e42ce614b271f72ac799d9cab49abf7d (diff) | |
| download | emacs-8bff6137519b682e173c62b6bbdc31086f9dd074.tar.gz emacs-8bff6137519b682e173c62b6bbdc31086f9dd074.zip | |
Regenerate.
| -rwxr-xr-x | configure | 80 |
1 files changed, 78 insertions, 2 deletions
| @@ -2474,6 +2474,7 @@ _ACEOF | |||
| 2474 | sparc*-*-openbsd*) machine=sparc ;; | 2474 | sparc*-*-openbsd*) machine=sparc ;; |
| 2475 | vax-*-openbsd*) machine=vax ;; | 2475 | vax-*-openbsd*) machine=vax ;; |
| 2476 | x86_64-*-openbsd*) machine=amdx86-64 ;; | 2476 | x86_64-*-openbsd*) machine=amdx86-64 ;; |
| 2477 | hppa-*-openbsd*) machine=hp800 ;; | ||
| 2477 | esac | 2478 | esac |
| 2478 | ;; | 2479 | ;; |
| 2479 | 2480 | ||
| @@ -2657,7 +2658,8 @@ _ACEOF | |||
| 2657 | ;; | 2658 | ;; |
| 2658 | 2659 | ||
| 2659 | ## Mips Linux-based GNU system | 2660 | ## Mips Linux-based GNU system |
| 2660 | mips-*-linux-gnu* | mipsel-*-linux-gnu* ) | 2661 | mips-*-linux-gnu* | mipsel-*-linux-gnu* \ |
| 2662 | | mips64-*-linux-gnu* | mips64el-*-linux-gnu* ) | ||
| 2661 | machine=mips opsys=gnu-linux | 2663 | machine=mips opsys=gnu-linux |
| 2662 | ;; | 2664 | ;; |
| 2663 | 2665 | ||
| @@ -10838,7 +10840,7 @@ fi | |||
| 10838 | 10840 | ||
| 10839 | ### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified. | 10841 | ### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified. |
| 10840 | HAVE_RSVG=no | 10842 | HAVE_RSVG=no |
| 10841 | if test "${HAVE_X11}" = "yes"; then | 10843 | if test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes"; then |
| 10842 | if test "${with_rsvg}" != "no"; then | 10844 | if test "${with_rsvg}" != "no"; then |
| 10843 | RSVG_REQUIRED=2.0.0 | 10845 | RSVG_REQUIRED=2.0.0 |
| 10844 | RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED" | 10846 | RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED" |
| @@ -13208,6 +13210,80 @@ cat >>confdefs.h <<\_ACEOF | |||
| 13208 | #define HAVE_LIBOTF 1 | 13210 | #define HAVE_LIBOTF 1 |
| 13209 | _ACEOF | 13211 | _ACEOF |
| 13210 | 13212 | ||
| 13213 | { echo "$as_me:$LINENO: checking for OTF_get_variation_glyphs in -lotf" >&5 | ||
| 13214 | echo $ECHO_N "checking for OTF_get_variation_glyphs in -lotf... $ECHO_C" >&6; } | ||
| 13215 | if test "${ac_cv_lib_otf_OTF_get_variation_glyphs+set}" = set; then | ||
| 13216 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
| 13217 | else | ||
| 13218 | ac_check_lib_save_LIBS=$LIBS | ||
| 13219 | LIBS="-lotf $LIBS" | ||
| 13220 | cat >conftest.$ac_ext <<_ACEOF | ||
| 13221 | /* confdefs.h. */ | ||
| 13222 | _ACEOF | ||
| 13223 | cat confdefs.h >>conftest.$ac_ext | ||
| 13224 | cat >>conftest.$ac_ext <<_ACEOF | ||
| 13225 | /* end confdefs.h. */ | ||
| 13226 | |||
| 13227 | /* Override any GCC internal prototype to avoid an error. | ||
| 13228 | Use char because int might match the return type of a GCC | ||
| 13229 | builtin and then its argument prototype would still apply. */ | ||
| 13230 | #ifdef __cplusplus | ||
| 13231 | extern "C" | ||
| 13232 | #endif | ||
| 13233 | char OTF_get_variation_glyphs (); | ||
| 13234 | int | ||
| 13235 | main () | ||
| 13236 | { | ||
| 13237 | return OTF_get_variation_glyphs (); | ||
| 13238 | ; | ||
| 13239 | return 0; | ||
| 13240 | } | ||
| 13241 | _ACEOF | ||
| 13242 | rm -f conftest.$ac_objext conftest$ac_exeext | ||
| 13243 | if { (ac_try="$ac_link" | ||
| 13244 | case "(($ac_try" in | ||
| 13245 | *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; | ||
| 13246 | *) ac_try_echo=$ac_try;; | ||
| 13247 | esac | ||
| 13248 | eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 | ||
| 13249 | (eval "$ac_link") 2>conftest.er1 | ||
| 13250 | ac_status=$? | ||
| 13251 | grep -v '^ *+' conftest.er1 >conftest.err | ||
| 13252 | rm -f conftest.er1 | ||
| 13253 | cat conftest.err >&5 | ||
| 13254 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
| 13255 | (exit $ac_status); } && { | ||
| 13256 | test -z "$ac_c_werror_flag" || | ||
| 13257 | test ! -s conftest.err | ||
| 13258 | } && test -s conftest$ac_exeext && | ||
| 13259 | $as_test_x conftest$ac_exeext; then | ||
| 13260 | ac_cv_lib_otf_OTF_get_variation_glyphs=yes | ||
| 13261 | else | ||
| 13262 | echo "$as_me: failed program was:" >&5 | ||
| 13263 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
| 13264 | |||
| 13265 | ac_cv_lib_otf_OTF_get_variation_glyphs=no | ||
| 13266 | fi | ||
| 13267 | |||
| 13268 | rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ | ||
| 13269 | conftest$ac_exeext conftest.$ac_ext | ||
| 13270 | LIBS=$ac_check_lib_save_LIBS | ||
| 13271 | fi | ||
| 13272 | { echo "$as_me:$LINENO: result: $ac_cv_lib_otf_OTF_get_variation_glyphs" >&5 | ||
| 13273 | echo "${ECHO_T}$ac_cv_lib_otf_OTF_get_variation_glyphs" >&6; } | ||
| 13274 | if test $ac_cv_lib_otf_OTF_get_variation_glyphs = yes; then | ||
| 13275 | HAVE_OTF_GET_VARIATION_GLYPHS=yes | ||
| 13276 | else | ||
| 13277 | HAVE_OTF_GET_VARIATION_GLYPHS=no | ||
| 13278 | fi | ||
| 13279 | |||
| 13280 | if test "${HAVE_OTF_GET_VARIATION_GLYPHS}" = "yes"; then | ||
| 13281 | |||
| 13282 | cat >>confdefs.h <<\_ACEOF | ||
| 13283 | #define HAVE_OTF_GET_VARIATION_GLYPHS 1 | ||
| 13284 | _ACEOF | ||
| 13285 | |||
| 13286 | fi | ||
| 13211 | fi | 13287 | fi |
| 13212 | fi | 13288 | fi |
| 13213 | fi | 13289 | fi |