@@ -314,7 +314,7 @@ ac_includes_default="\
314
314
# include <unistd.h>
315
315
#endif"
316
316
317
- ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS configure_args build build_cpu build_vendor build_os host host_cpu host_vendor host_os PORTNAME docdir enable_nls WANTED_LANGUAGES default_port enable_shared enable_rpath enable_debug DTRACE DTRACEFLAGS enable_dtrace CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CPP GCC TAS autodepend INCLUDES enable_thread_safety with_tcl with_perl with_python with_krb5 krb_srvtab with_pam with_ldap with_bonjour with_openssl with_zlib EGREP ELF_SYS LDFLAGS_SL AWK FLEX FLEXFLAGS LN_S LD with_gnu_ld ld_R_works RANLIB ac_ct_RANLIB TAR STRIP ac_ct_STRIP STRIP_STATIC_LIB STRIP_SHARED_LIB YACC YFLAGS PERL perl_archlibexp perl_privlibexp perl_useshrplib perl_embed_ldflags PYTHON python_version python_configdir python_includespec python_libdir python_libspec python_additional_libs HAVE_IPV6 LIBOBJS acx_pthread_config PTHREAD_CC PTHREAD_LIBS PTHREAD_CFLAGS LDAP_LIBS_FE LDAP_LIBS_BE HAVE_POSIX_SIGNALS MSGFMT MSGMERGE XGETTEXT localedir TCLSH TCL_CONFIG_SH TCL_INCLUDE_SPEC TCL_LIB_FILE TCL_LIBS TCL_LIB_SPEC TCL_SHARED_BUILD TCL_SHLIB_LD_LIBS NSGMLS JADE have_docbook DOCBOOKSTYLE COLLATEINDEX SGMLSPL vpath_build LTLIBOBJS'
317
+ ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS configure_args build build_cpu build_vendor build_os host host_cpu host_vendor host_os PORTNAME docdir enable_nls WANTED_LANGUAGES default_port enable_shared enable_rpath enable_debug DTRACE DTRACEFLAGS enable_dtrace CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CPP GCC TAS autodepend INCLUDES enable_thread_safety with_tcl with_perl with_python with_krb5 krb_srvtab with_pam with_ldap with_bonjour with_openssl XML2_CONFIG with_zlib EGREP ELF_SYS LDFLAGS_SL AWK FLEX FLEXFLAGS LN_S LD with_gnu_ld ld_R_works RANLIB ac_ct_RANLIB TAR STRIP ac_ct_STRIP STRIP_STATIC_LIB STRIP_SHARED_LIB YACC YFLAGS PERL perl_archlibexp perl_privlibexp perl_useshrplib perl_embed_ldflags PYTHON python_version python_configdir python_includespec python_libdir python_libspec python_additional_libs HAVE_IPV6 LIBOBJS acx_pthread_config PTHREAD_CC PTHREAD_LIBS PTHREAD_CFLAGS LDAP_LIBS_FE LDAP_LIBS_BE HAVE_POSIX_SIGNALS MSGFMT MSGMERGE XGETTEXT localedir TCLSH TCL_CONFIG_SH TCL_INCLUDE_SPEC TCL_LIB_FILE TCL_LIBS TCL_LIB_SPEC TCL_SHARED_BUILD TCL_SHLIB_LD_LIBS NSGMLS JADE have_docbook DOCBOOKSTYLE COLLATEINDEX SGMLSPL vpath_build LTLIBOBJS'
318
318
ac_subst_files=''
319
319
320
320
# Initialize some variables set by options.
@@ -4196,6 +4196,61 @@ else
4196
4196
fi;
4197
4197
4198
4198
4199
+ if test "$with_libxml" = yes ; then
4200
+ for ac_prog in xml2-config
4201
+ do
4202
+ # Extract the first word of "$ac_prog", so it can be a program name with args.
4203
+ set dummy $ac_prog; ac_word=$2
4204
+ echo "$as_me:$LINENO: checking for $ac_word" >&5
4205
+ echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4206
+ if test "${ac_cv_prog_XML2_CONFIG+set}" = set; then
4207
+ echo $ECHO_N "(cached) $ECHO_C" >&6
4208
+ else
4209
+ if test -n "$XML2_CONFIG"; then
4210
+ ac_cv_prog_XML2_CONFIG="$XML2_CONFIG" # Let the user override the test.
4211
+ else
4212
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
4213
+ for as_dir in $PATH
4214
+ do
4215
+ IFS=$as_save_IFS
4216
+ test -z "$as_dir" && as_dir=.
4217
+ for ac_exec_ext in '' $ac_executable_extensions; do
4218
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
4219
+ ac_cv_prog_XML2_CONFIG="$ac_prog"
4220
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
4221
+ break 2
4222
+ fi
4223
+ done
4224
+ done
4225
+
4226
+ fi
4227
+ fi
4228
+ XML2_CONFIG=$ac_cv_prog_XML2_CONFIG
4229
+ if test -n "$XML2_CONFIG"; then
4230
+ echo "$as_me:$LINENO: result: $XML2_CONFIG" >&5
4231
+ echo "${ECHO_T}$XML2_CONFIG" >&6
4232
+ else
4233
+ echo "$as_me:$LINENO: result: no" >&5
4234
+ echo "${ECHO_T}no" >&6
4235
+ fi
4236
+
4237
+ test -n "$XML2_CONFIG" && break
4238
+ done
4239
+
4240
+ if test -n "$XML2_CONFIG"; then
4241
+ for pgac_option in `$XML2_CONFIG --cflags`; do
4242
+ case $pgac_option in
4243
+ -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
4244
+ esac
4245
+ done
4246
+ for pgac_option in `$XML2_CONFIG --libs`; do
4247
+ case $pgac_option in
4248
+ -L*) LDFLAGS="$LDFLAGS $pgac_option";;
4249
+ esac
4250
+ done
4251
+ fi
4252
+ fi
4253
+
4199
4254
4200
4255
#
4201
4256
# Zlib
@@ -23794,6 +23849,7 @@ s,@with_pam@,$with_pam,;t t
23794
23849
s,@with_ldap@,$with_ldap,;t t
23795
23850
s,@with_bonjour@,$with_bonjour,;t t
23796
23851
s,@with_openssl@,$with_openssl,;t t
23852
+ s,@XML2_CONFIG@,$XML2_CONFIG,;t t
23797
23853
s,@with_zlib@,$with_zlib,;t t
23798
23854
s,@EGREP@,$EGREP,;t t
23799
23855
s,@ELF_SYS@,$ELF_SYS,;t t
0 commit comments