diff options
Diffstat (limited to 'devel')
324 files changed, 18763 insertions, 22235 deletions
diff --git a/devel/Makefile b/devel/Makefile index 9fe00a3a0f1e..30c58f9fb9de 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -2015,7 +2015,6 @@ SUBDIR += php5-ice SUBDIR += php5-ncurses SUBDIR += php5-pcntl - SUBDIR += php5-pcre SUBDIR += php5-phing SUBDIR += php5-readline SUBDIR += php5-shmop diff --git a/devel/apr0/Makefile b/devel/apr0/Makefile deleted file mode 100644 index a6de0636ae07..000000000000 --- a/devel/apr0/Makefile +++ /dev/null @@ -1,189 +0,0 @@ -# New ports collection makefile for: apr -# Date created: 19 February 2002 -# Whom: Garrett Rooney <rooneg@electricjellyfish.net> -# -# $FreeBSD$ -# -# Tunables: -# APR_UTIL_WITHOUT_THREADS: disable threads support -# APR_UTIL_WITH_GDBM: force dependency on the GNU dbm -# APR_UTIL_WITHOUT_GDBM: unconditionally disable the use of GNU dbm -# APR_UTIL_WITH_BERKELEY_DB: force dependency on Sleepycat's Berkeley DB 4.2 -# APR_UTIL_WITHOUT_BERKELEY_DB: unconditionally disable the use of db4.2 -# (the database bindings are detected and recorded automatically if these -# switches are not set) -# APR_UTIL_WITH_LDAP: force dependency on OpenLDAP - -PORTNAME= apr -PORTVERSION= ${APR_VERSION}.${APU_VERSION} -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_APACHE} -MASTER_SITE_SUBDIR= apr -DISTFILES= apr-${APR_VERSION}.tar.gz apr-util-${APU_VERSION}.tar.gz - -MAINTAINER= pgollucci@FreeBSD.org -COMMENT= Apache Portability Library - -LIB_DEPENDS+= expat.6:${PORTSDIR}/textproc/expat2 - -APR_VERSION= 1.3.3 -APU_VERSION= 1.3.4 - -USE_ICONV= yes -USE_AUTOTOOLS= automake:19 autoconf:262 libtool:15:env -USE_PERL5_BUILD= yes -USE_GMAKE= yes -USE_PYTHON_BUILD= yes -USE_LDCONFIG= yes -GNU_CONFIGURE= yes - -NO_WRKSUBDIR= yes - -PLIST_SUB= SHLIB_MAJOR="${SHLIB_MAJOR}" -SHLIB_MAJOR= 3 - -APR_UTIL_CONF_ARGS= --with-apr=../apr-${APR_VERSION} \ - --with-expat=${LOCALBASE} \ - --with-iconv=${LOCALBASE} - -.include <bsd.port.pre.mk> - -.if defined(APR_UTIL_WITHOUT_THREADS) -CONFIGURE_ARGS+= --disable-threads -APR_UTIL_CONF_ARGS+= --disable-threads -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-nothr -.else -PKGNAMESUFFIX= -nothr -.endif -.else -CONFIGURE_ARGS+= --enable-threads -.endif - -.if defined(APR_UTIL_WITHOUT_GDBM) -APR_UTIL_CONF_ARGS+= --without-gdbm -.elif defined(APR_UTIL_WITH_GDBM) || exists(${LOCALBASE}/lib/libgdbm.so.3) -LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm -APR_UTIL_CONF_ARGS+= --with-gdbm=${LOCALBASE} -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-gdbm -.else -PKGNAMESUFFIX= -gdbm -.endif -.else -APR_UTIL_CONF_ARGS+= --without-gdbm -.endif - -.if defined(WITH_BDB) -APR_UTIL_WITH_BERKELEY_DB= yes -.endif - -.if defined(APR_UTIL_WITHOUT_BERKELEY_DB) -APR_UTIL_CONF_ARGS+= --without-berkeley-db -.elif defined(APR_UTIL_WITH_BERKELEY_DB) || exists(${LOCALBASE}/lib/libdb-4.2.so.2) -USE_BDB= 42+ -APR_UTIL_CONF_ARGS+= --with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR} -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-${BDB_INCLUDE_DIR:S,^${LOCALBASE}/include/,,} -.else -PKGNAMESUFFIX= -${BDB_INCLUDE_DIR:S,^${LOCALBASE}/include/,,} -.endif -.endif - -.if defined(WITH_LDAP) -APR_UTIL_WITH_LDAP= yes -.endif - -.if defined(APR_UTIL_WITH_LDAP) -PLIST_SUB+= LDAP="" -USE_OPENLDAP= yes -APR_UTIL_CONF_ARGS+= --with-ldap-include=${LOCALBASE}/include \ - --with-ldap-lib=${LOCALBASE}/lib --with-ldap=ldap -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-ldap -.else -PKGNAMESUFFIX= -ldap -.endif -.else -PLIST_SUB+= LDAP="@comment " -.endif - -pre-extract: - @${ECHO_MSG} "" -.if defined(APR_UTIL_WITHOUT_THREADS) - @${ECHO_MSG} "apr library will be built without threads support." -.else - @${ECHO_MSG} "apr library will be built with threads support." - @${ECHO_MSG} "All programs which use apr must be linked with threads too." - @${ECHO_MSG} "You can disable threads by defining APR_UTIL_WITHOUT_THREADS." -.endif - @${ECHO_MSG} "" -.if defined(APR_UTIL_WITHOUT_GDBM) - @${ECHO_MSG} "GDBM support is disabled." -.elif defined(APR_UTIL_WITH_GDBM) - @${ECHO_MSG} "GDBM support is forced." -.elif exists(${LOCALBASE}/lib/libgdbm.so.3) - @${ECHO_MSG} "GDBM support is enabled." - @${ECHO_MSG} "You can disable GDBM support by defining APR_UTIL_WITHOUT_GDBM." -.else - @${ECHO_MSG} "GDBM was not found." - @${ECHO_MSG} "You can force GDBM support by defining APR_UTIL_WITH_GDBM." -.endif - @${ECHO_MSG} "" -.if defined(APR_UTIL_WITHOUT_BERKELEY_DB) - @${ECHO_MSG} "Berkeley DB support is disabled." -.elif defined(APR_UTIL_WITH_BERKELEY_DB) - @${ECHO_MSG} "Berkeley DB support forced." -.elif exists(${LOCALBASE}/lib/libdb-4.2.so.2) - @${ECHO_MSG} "Berkeley db4.2 support is enabled." - @${ECHO_MSG} "You can disable Berkeley db4.2 support by defining APR_UTIL_WITHOUT_BERKELEY_DB." -.else - @${ECHO_MSG} "Berkeley DB was not found." - @${ECHO_MSG} "You can force Berkeley DB support by defining APR_UTIL_WITH_BERKELEY_DB." -.endif - @${ECHO_MSG} "" - -post-patch: - ${REINPLACE_CMD} -e 's/OSVERSION/'${OSVERSION}'/g' \ - ${WRKDIR}/apr-${APR_VERSION}/build/apr_hints.m4 - ${FIND} ${WRKDIR} -name "Makefile.in*" | ${XARGS} ${REINPLACE_CMD} -e \ - 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' - -run-autotools:: - cd ${WRKDIR}/apr-${APR_VERSION} ; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} ./buildconf - cd ${WRKDIR}/apr-util-${APU_VERSION} ; \ - ${RM} -fr xml/expat - cd ${WRKDIR}/apr-util-${APU_VERSION} ; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} ./buildconf \ - --with-apr=../apr-${APR_VERSION} - cd ${WRKDIR}/apr-${APR_VERSION}; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} ./configure ${CONFIGURE_ARGS} - cd ${WRKDIR}/apr-util-${APU_VERSION}; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} \ - ./configure ${CONFIGURE_ARGS} ${APR_UTIL_CONF_ARGS} - -do-configure: - ${DO_NADA} - -do-build: - cd ${WRKDIR}/apr-${APR_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} - cd ${WRKDIR}/apr-util-${APU_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} - -do-install: - cd ${WRKDIR}/apr-${APR_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${INSTALL_TARGET} - cd ${WRKDIR}/apr-util-${APU_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${INSTALL_TARGET} - -debug_autoconf: - @echo "LIBTOOL: ${LIBTOOL_VERSION}" - @echo "AUTOCONF: dev ${dev_acver} cur ${cur_acver} use ${use_acver}" - @echo "AUTOMAKE: dev ${dev_amver} cur ${cur_amver} use ${use_amver}" - @echo "AUTOCONF_DIR: ${AUTOCONF_DIR}" - @echo "BUILD_DEPENDS: ${BUILD_DEPENDS}" - @echo "ACLOCAL_DIR: ${ACLOCAL_DIR}" - @echo "LIBTOOLFILES: ${LIBTOOLFILES}" - @echo "LIBTOOL_SHAREDIR: ${LIBTOOL_SHAREDIR}" - @echo "LIBTOOL_LIBEXECDIR: ${LIBTOOL_LIBEXECDIR}" - @echo "LIBTOOL_M4: ${LIBTOOL_M4}" - -.include <bsd.port.post.mk> diff --git a/devel/apr0/distinfo b/devel/apr0/distinfo deleted file mode 100644 index 52713d463fd4..000000000000 --- a/devel/apr0/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (apr-1.3.3.tar.gz) = b254a9abecaedb05efde71daa7517480 -SHA256 (apr-1.3.3.tar.gz) = 390af2f94c38d9fa03cd6caac3549058bb3e2c4d9f7408b7b829ad75bd5cc273 -SIZE (apr-1.3.3.tar.gz) = 1160542 -MD5 (apr-util-1.3.4.tar.gz) = a10e2ca150ff07f484c724c36142211f -SHA256 (apr-util-1.3.4.tar.gz) = 3f07ffdb18fb853290c9b83e82cd5cae66b8fbc357bd391e846c0afdd24fed7e -SIZE (apr-util-1.3.4.tar.gz) = 778902 diff --git a/devel/apr0/files/patch-apr_hints.m4 b/devel/apr0/files/patch-apr_hints.m4 deleted file mode 100644 index 5549809f5b30..000000000000 --- a/devel/apr0/files/patch-apr_hints.m4 +++ /dev/null @@ -1,15 +0,0 @@ ---- apr-1.3.3/build/apr_hints.m4.orig Wed Oct 27 11:12:28 2004 -+++ apr-1.3.3/build/apr_hints.m4 Wed Oct 27 11:25:32 2004 -@@ -137,11 +137,7 @@ - ;; - *-freebsd*) - APR_SETIFNULL(apr_lock_method, [USE_FLOCK_SERIALIZE]) -- if test -x /sbin/sysctl; then -- os_version=`/sbin/sysctl -n kern.osreldate` -- else -- os_version=000000 -- fi -+ os_version="OSVERSION" - # 502102 is when libc_r switched to libpthread (aka libkse). - if test $os_version -ge "502102"; then - apr_cv_pthreads_cflags="none" diff --git a/devel/apr0/pkg-descr b/devel/apr0/pkg-descr deleted file mode 100644 index 171e56b08723..000000000000 --- a/devel/apr0/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -The Apache Portable Runtime is a library of C data structures and routines, -forming a system portability layer that covers as many operating systems as -possible, including Unices, Win32, BeOS, and OS/2. - -This port also includes the APR-Util package, which contains some useful -utilities built on top of APR. - -WWW: http://apr.apache.org/ diff --git a/devel/apr0/pkg-plist b/devel/apr0/pkg-plist deleted file mode 100644 index 7402d8e77672..000000000000 --- a/devel/apr0/pkg-plist +++ /dev/null @@ -1,93 +0,0 @@ -bin/apr-1-config -bin/apu-1-config -build-1/apr_rules.mk -build-1/libtool -build-1/make_exports.awk -build-1/make_var_export.awk -build-1/mkdir.sh -include/apr-1/apr.h -include/apr-1/apr_allocator.h -include/apr-1/apr_anylock.h -include/apr-1/apr_atomic.h -include/apr-1/apr_base64.h -include/apr-1/apr_buckets.h -include/apr-1/apr_date.h -include/apr-1/apr_dbd.h -include/apr-1/apr_dbm.h -include/apr-1/apr_dso.h -include/apr-1/apr_env.h -include/apr-1/apr_errno.h -include/apr-1/apr_file_info.h -include/apr-1/apr_file_io.h -include/apr-1/apr_fnmatch.h -include/apr-1/apr_general.h -include/apr-1/apr_getopt.h -include/apr-1/apr_global_mutex.h -include/apr-1/apr_hash.h -include/apr-1/apr_hooks.h -include/apr-1/apr_inherit.h -include/apr-1/apr_ldap.h -include/apr-1/apr_ldap_init.h -include/apr-1/apr_ldap_option.h -include/apr-1/apr_ldap_rebind.h -include/apr-1/apr_ldap_url.h -include/apr-1/apr_lib.h -include/apr-1/apr_md4.h -include/apr-1/apr_md5.h -include/apr-1/apr_memcache.h -include/apr-1/apr_mmap.h -include/apr-1/apr_network_io.h -include/apr-1/apr_optional.h -include/apr-1/apr_optional_hooks.h -include/apr-1/apr_poll.h -include/apr-1/apr_pools.h -include/apr-1/apr_portable.h -include/apr-1/apr_proc_mutex.h -include/apr-1/apr_queue.h -include/apr-1/apr_random.h -include/apr-1/apr_reslist.h -include/apr-1/apr_ring.h -include/apr-1/apr_rmm.h -include/apr-1/apr_sdbm.h -include/apr-1/apr_sha1.h -include/apr-1/apr_shm.h -include/apr-1/apr_signal.h -include/apr-1/apr_strings.h -include/apr-1/apr_strmatch.h -include/apr-1/apr_support.h -include/apr-1/apr_tables.h -include/apr-1/apr_thread_cond.h -include/apr-1/apr_thread_mutex.h -include/apr-1/apr_thread_pool.h -include/apr-1/apr_thread_proc.h -include/apr-1/apr_thread_rwlock.h -include/apr-1/apr_time.h -include/apr-1/apr_uri.h -include/apr-1/apr_user.h -include/apr-1/apr_uuid.h -include/apr-1/apr_version.h -include/apr-1/apr_want.h -include/apr-1/apr_xlate.h -include/apr-1/apr_xml.h -include/apr-1/apu.h -include/apr-1/apu_version.h -include/apr-1/apu_want.h -libdata/pkgconfig/apr-1.pc -libdata/pkgconfig/apr-util-1.pc -lib/apr.exp -lib/aprutil.exp -lib/libapr-1.a -lib/libapr-1.la -lib/libapr-1.so -lib/libapr-1.so.%%SHLIB_MAJOR%% -lib/libaprutil-1.a -lib/libaprutil-1.la -lib/libaprutil-1.so -lib/libaprutil-1.so.%%SHLIB_MAJOR%% -%%LDAP%%lib/apr-util-1/apr_ldap-1.so -%%LDAP%%lib/apr-util-1/apr_ldap.so -%%LDAP%%lib/apr-util-1/apr_ldap.la -%%LDAP%%lib/apr-util-1/apr_ldap.a -%%LDAP%%@dirrm lib/apr-util-1 -@dirrm build-1 -@dirrm include/apr-1 diff --git a/devel/apr1/Makefile b/devel/apr1/Makefile deleted file mode 100644 index a6de0636ae07..000000000000 --- a/devel/apr1/Makefile +++ /dev/null @@ -1,189 +0,0 @@ -# New ports collection makefile for: apr -# Date created: 19 February 2002 -# Whom: Garrett Rooney <rooneg@electricjellyfish.net> -# -# $FreeBSD$ -# -# Tunables: -# APR_UTIL_WITHOUT_THREADS: disable threads support -# APR_UTIL_WITH_GDBM: force dependency on the GNU dbm -# APR_UTIL_WITHOUT_GDBM: unconditionally disable the use of GNU dbm -# APR_UTIL_WITH_BERKELEY_DB: force dependency on Sleepycat's Berkeley DB 4.2 -# APR_UTIL_WITHOUT_BERKELEY_DB: unconditionally disable the use of db4.2 -# (the database bindings are detected and recorded automatically if these -# switches are not set) -# APR_UTIL_WITH_LDAP: force dependency on OpenLDAP - -PORTNAME= apr -PORTVERSION= ${APR_VERSION}.${APU_VERSION} -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_APACHE} -MASTER_SITE_SUBDIR= apr -DISTFILES= apr-${APR_VERSION}.tar.gz apr-util-${APU_VERSION}.tar.gz - -MAINTAINER= pgollucci@FreeBSD.org -COMMENT= Apache Portability Library - -LIB_DEPENDS+= expat.6:${PORTSDIR}/textproc/expat2 - -APR_VERSION= 1.3.3 -APU_VERSION= 1.3.4 - -USE_ICONV= yes -USE_AUTOTOOLS= automake:19 autoconf:262 libtool:15:env -USE_PERL5_BUILD= yes -USE_GMAKE= yes -USE_PYTHON_BUILD= yes -USE_LDCONFIG= yes -GNU_CONFIGURE= yes - -NO_WRKSUBDIR= yes - -PLIST_SUB= SHLIB_MAJOR="${SHLIB_MAJOR}" -SHLIB_MAJOR= 3 - -APR_UTIL_CONF_ARGS= --with-apr=../apr-${APR_VERSION} \ - --with-expat=${LOCALBASE} \ - --with-iconv=${LOCALBASE} - -.include <bsd.port.pre.mk> - -.if defined(APR_UTIL_WITHOUT_THREADS) -CONFIGURE_ARGS+= --disable-threads -APR_UTIL_CONF_ARGS+= --disable-threads -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-nothr -.else -PKGNAMESUFFIX= -nothr -.endif -.else -CONFIGURE_ARGS+= --enable-threads -.endif - -.if defined(APR_UTIL_WITHOUT_GDBM) -APR_UTIL_CONF_ARGS+= --without-gdbm -.elif defined(APR_UTIL_WITH_GDBM) || exists(${LOCALBASE}/lib/libgdbm.so.3) -LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm -APR_UTIL_CONF_ARGS+= --with-gdbm=${LOCALBASE} -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-gdbm -.else -PKGNAMESUFFIX= -gdbm -.endif -.else -APR_UTIL_CONF_ARGS+= --without-gdbm -.endif - -.if defined(WITH_BDB) -APR_UTIL_WITH_BERKELEY_DB= yes -.endif - -.if defined(APR_UTIL_WITHOUT_BERKELEY_DB) -APR_UTIL_CONF_ARGS+= --without-berkeley-db -.elif defined(APR_UTIL_WITH_BERKELEY_DB) || exists(${LOCALBASE}/lib/libdb-4.2.so.2) -USE_BDB= 42+ -APR_UTIL_CONF_ARGS+= --with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR} -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-${BDB_INCLUDE_DIR:S,^${LOCALBASE}/include/,,} -.else -PKGNAMESUFFIX= -${BDB_INCLUDE_DIR:S,^${LOCALBASE}/include/,,} -.endif -.endif - -.if defined(WITH_LDAP) -APR_UTIL_WITH_LDAP= yes -.endif - -.if defined(APR_UTIL_WITH_LDAP) -PLIST_SUB+= LDAP="" -USE_OPENLDAP= yes -APR_UTIL_CONF_ARGS+= --with-ldap-include=${LOCALBASE}/include \ - --with-ldap-lib=${LOCALBASE}/lib --with-ldap=ldap -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-ldap -.else -PKGNAMESUFFIX= -ldap -.endif -.else -PLIST_SUB+= LDAP="@comment " -.endif - -pre-extract: - @${ECHO_MSG} "" -.if defined(APR_UTIL_WITHOUT_THREADS) - @${ECHO_MSG} "apr library will be built without threads support." -.else - @${ECHO_MSG} "apr library will be built with threads support." - @${ECHO_MSG} "All programs which use apr must be linked with threads too." - @${ECHO_MSG} "You can disable threads by defining APR_UTIL_WITHOUT_THREADS." -.endif - @${ECHO_MSG} "" -.if defined(APR_UTIL_WITHOUT_GDBM) - @${ECHO_MSG} "GDBM support is disabled." -.elif defined(APR_UTIL_WITH_GDBM) - @${ECHO_MSG} "GDBM support is forced." -.elif exists(${LOCALBASE}/lib/libgdbm.so.3) - @${ECHO_MSG} "GDBM support is enabled." - @${ECHO_MSG} "You can disable GDBM support by defining APR_UTIL_WITHOUT_GDBM." -.else - @${ECHO_MSG} "GDBM was not found." - @${ECHO_MSG} "You can force GDBM support by defining APR_UTIL_WITH_GDBM." -.endif - @${ECHO_MSG} "" -.if defined(APR_UTIL_WITHOUT_BERKELEY_DB) - @${ECHO_MSG} "Berkeley DB support is disabled." -.elif defined(APR_UTIL_WITH_BERKELEY_DB) - @${ECHO_MSG} "Berkeley DB support forced." -.elif exists(${LOCALBASE}/lib/libdb-4.2.so.2) - @${ECHO_MSG} "Berkeley db4.2 support is enabled." - @${ECHO_MSG} "You can disable Berkeley db4.2 support by defining APR_UTIL_WITHOUT_BERKELEY_DB." -.else - @${ECHO_MSG} "Berkeley DB was not found." - @${ECHO_MSG} "You can force Berkeley DB support by defining APR_UTIL_WITH_BERKELEY_DB." -.endif - @${ECHO_MSG} "" - -post-patch: - ${REINPLACE_CMD} -e 's/OSVERSION/'${OSVERSION}'/g' \ - ${WRKDIR}/apr-${APR_VERSION}/build/apr_hints.m4 - ${FIND} ${WRKDIR} -name "Makefile.in*" | ${XARGS} ${REINPLACE_CMD} -e \ - 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' - -run-autotools:: - cd ${WRKDIR}/apr-${APR_VERSION} ; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} ./buildconf - cd ${WRKDIR}/apr-util-${APU_VERSION} ; \ - ${RM} -fr xml/expat - cd ${WRKDIR}/apr-util-${APU_VERSION} ; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} ./buildconf \ - --with-apr=../apr-${APR_VERSION} - cd ${WRKDIR}/apr-${APR_VERSION}; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} ./configure ${CONFIGURE_ARGS} - cd ${WRKDIR}/apr-util-${APU_VERSION}; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} \ - ./configure ${CONFIGURE_ARGS} ${APR_UTIL_CONF_ARGS} - -do-configure: - ${DO_NADA} - -do-build: - cd ${WRKDIR}/apr-${APR_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} - cd ${WRKDIR}/apr-util-${APU_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} - -do-install: - cd ${WRKDIR}/apr-${APR_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${INSTALL_TARGET} - cd ${WRKDIR}/apr-util-${APU_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${INSTALL_TARGET} - -debug_autoconf: - @echo "LIBTOOL: ${LIBTOOL_VERSION}" - @echo "AUTOCONF: dev ${dev_acver} cur ${cur_acver} use ${use_acver}" - @echo "AUTOMAKE: dev ${dev_amver} cur ${cur_amver} use ${use_amver}" - @echo "AUTOCONF_DIR: ${AUTOCONF_DIR}" - @echo "BUILD_DEPENDS: ${BUILD_DEPENDS}" - @echo "ACLOCAL_DIR: ${ACLOCAL_DIR}" - @echo "LIBTOOLFILES: ${LIBTOOLFILES}" - @echo "LIBTOOL_SHAREDIR: ${LIBTOOL_SHAREDIR}" - @echo "LIBTOOL_LIBEXECDIR: ${LIBTOOL_LIBEXECDIR}" - @echo "LIBTOOL_M4: ${LIBTOOL_M4}" - -.include <bsd.port.post.mk> diff --git a/devel/apr1/distinfo b/devel/apr1/distinfo deleted file mode 100644 index 52713d463fd4..000000000000 --- a/devel/apr1/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (apr-1.3.3.tar.gz) = b254a9abecaedb05efde71daa7517480 -SHA256 (apr-1.3.3.tar.gz) = 390af2f94c38d9fa03cd6caac3549058bb3e2c4d9f7408b7b829ad75bd5cc273 -SIZE (apr-1.3.3.tar.gz) = 1160542 -MD5 (apr-util-1.3.4.tar.gz) = a10e2ca150ff07f484c724c36142211f -SHA256 (apr-util-1.3.4.tar.gz) = 3f07ffdb18fb853290c9b83e82cd5cae66b8fbc357bd391e846c0afdd24fed7e -SIZE (apr-util-1.3.4.tar.gz) = 778902 diff --git a/devel/apr1/files/patch-apr_hints.m4 b/devel/apr1/files/patch-apr_hints.m4 deleted file mode 100644 index 5549809f5b30..000000000000 --- a/devel/apr1/files/patch-apr_hints.m4 +++ /dev/null @@ -1,15 +0,0 @@ ---- apr-1.3.3/build/apr_hints.m4.orig Wed Oct 27 11:12:28 2004 -+++ apr-1.3.3/build/apr_hints.m4 Wed Oct 27 11:25:32 2004 -@@ -137,11 +137,7 @@ - ;; - *-freebsd*) - APR_SETIFNULL(apr_lock_method, [USE_FLOCK_SERIALIZE]) -- if test -x /sbin/sysctl; then -- os_version=`/sbin/sysctl -n kern.osreldate` -- else -- os_version=000000 -- fi -+ os_version="OSVERSION" - # 502102 is when libc_r switched to libpthread (aka libkse). - if test $os_version -ge "502102"; then - apr_cv_pthreads_cflags="none" diff --git a/devel/apr1/pkg-descr b/devel/apr1/pkg-descr deleted file mode 100644 index 171e56b08723..000000000000 --- a/devel/apr1/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -The Apache Portable Runtime is a library of C data structures and routines, -forming a system portability layer that covers as many operating systems as -possible, including Unices, Win32, BeOS, and OS/2. - -This port also includes the APR-Util package, which contains some useful -utilities built on top of APR. - -WWW: http://apr.apache.org/ diff --git a/devel/apr1/pkg-plist b/devel/apr1/pkg-plist deleted file mode 100644 index 7402d8e77672..000000000000 --- a/devel/apr1/pkg-plist +++ /dev/null @@ -1,93 +0,0 @@ -bin/apr-1-config -bin/apu-1-config -build-1/apr_rules.mk -build-1/libtool -build-1/make_exports.awk -build-1/make_var_export.awk -build-1/mkdir.sh -include/apr-1/apr.h -include/apr-1/apr_allocator.h -include/apr-1/apr_anylock.h -include/apr-1/apr_atomic.h -include/apr-1/apr_base64.h -include/apr-1/apr_buckets.h -include/apr-1/apr_date.h -include/apr-1/apr_dbd.h -include/apr-1/apr_dbm.h -include/apr-1/apr_dso.h -include/apr-1/apr_env.h -include/apr-1/apr_errno.h -include/apr-1/apr_file_info.h -include/apr-1/apr_file_io.h -include/apr-1/apr_fnmatch.h -include/apr-1/apr_general.h -include/apr-1/apr_getopt.h -include/apr-1/apr_global_mutex.h -include/apr-1/apr_hash.h -include/apr-1/apr_hooks.h -include/apr-1/apr_inherit.h -include/apr-1/apr_ldap.h -include/apr-1/apr_ldap_init.h -include/apr-1/apr_ldap_option.h -include/apr-1/apr_ldap_rebind.h -include/apr-1/apr_ldap_url.h -include/apr-1/apr_lib.h -include/apr-1/apr_md4.h -include/apr-1/apr_md5.h -include/apr-1/apr_memcache.h -include/apr-1/apr_mmap.h -include/apr-1/apr_network_io.h -include/apr-1/apr_optional.h -include/apr-1/apr_optional_hooks.h -include/apr-1/apr_poll.h -include/apr-1/apr_pools.h -include/apr-1/apr_portable.h -include/apr-1/apr_proc_mutex.h -include/apr-1/apr_queue.h -include/apr-1/apr_random.h -include/apr-1/apr_reslist.h -include/apr-1/apr_ring.h -include/apr-1/apr_rmm.h -include/apr-1/apr_sdbm.h -include/apr-1/apr_sha1.h -include/apr-1/apr_shm.h -include/apr-1/apr_signal.h -include/apr-1/apr_strings.h -include/apr-1/apr_strmatch.h -include/apr-1/apr_support.h -include/apr-1/apr_tables.h -include/apr-1/apr_thread_cond.h -include/apr-1/apr_thread_mutex.h -include/apr-1/apr_thread_pool.h -include/apr-1/apr_thread_proc.h -include/apr-1/apr_thread_rwlock.h -include/apr-1/apr_time.h -include/apr-1/apr_uri.h -include/apr-1/apr_user.h -include/apr-1/apr_uuid.h -include/apr-1/apr_version.h -include/apr-1/apr_want.h -include/apr-1/apr_xlate.h -include/apr-1/apr_xml.h -include/apr-1/apu.h -include/apr-1/apu_version.h -include/apr-1/apu_want.h -libdata/pkgconfig/apr-1.pc -libdata/pkgconfig/apr-util-1.pc -lib/apr.exp -lib/aprutil.exp -lib/libapr-1.a -lib/libapr-1.la -lib/libapr-1.so -lib/libapr-1.so.%%SHLIB_MAJOR%% -lib/libaprutil-1.a -lib/libaprutil-1.la -lib/libaprutil-1.so -lib/libaprutil-1.so.%%SHLIB_MAJOR%% -%%LDAP%%lib/apr-util-1/apr_ldap-1.so -%%LDAP%%lib/apr-util-1/apr_ldap.so -%%LDAP%%lib/apr-util-1/apr_ldap.la -%%LDAP%%lib/apr-util-1/apr_ldap.a -%%LDAP%%@dirrm lib/apr-util-1 -@dirrm build-1 -@dirrm include/apr-1 diff --git a/devel/apr2/Makefile b/devel/apr2/Makefile deleted file mode 100644 index a6de0636ae07..000000000000 --- a/devel/apr2/Makefile +++ /dev/null @@ -1,189 +0,0 @@ -# New ports collection makefile for: apr -# Date created: 19 February 2002 -# Whom: Garrett Rooney <rooneg@electricjellyfish.net> -# -# $FreeBSD$ -# -# Tunables: -# APR_UTIL_WITHOUT_THREADS: disable threads support -# APR_UTIL_WITH_GDBM: force dependency on the GNU dbm -# APR_UTIL_WITHOUT_GDBM: unconditionally disable the use of GNU dbm -# APR_UTIL_WITH_BERKELEY_DB: force dependency on Sleepycat's Berkeley DB 4.2 -# APR_UTIL_WITHOUT_BERKELEY_DB: unconditionally disable the use of db4.2 -# (the database bindings are detected and recorded automatically if these -# switches are not set) -# APR_UTIL_WITH_LDAP: force dependency on OpenLDAP - -PORTNAME= apr -PORTVERSION= ${APR_VERSION}.${APU_VERSION} -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_APACHE} -MASTER_SITE_SUBDIR= apr -DISTFILES= apr-${APR_VERSION}.tar.gz apr-util-${APU_VERSION}.tar.gz - -MAINTAINER= pgollucci@FreeBSD.org -COMMENT= Apache Portability Library - -LIB_DEPENDS+= expat.6:${PORTSDIR}/textproc/expat2 - -APR_VERSION= 1.3.3 -APU_VERSION= 1.3.4 - -USE_ICONV= yes -USE_AUTOTOOLS= automake:19 autoconf:262 libtool:15:env -USE_PERL5_BUILD= yes -USE_GMAKE= yes -USE_PYTHON_BUILD= yes -USE_LDCONFIG= yes -GNU_CONFIGURE= yes - -NO_WRKSUBDIR= yes - -PLIST_SUB= SHLIB_MAJOR="${SHLIB_MAJOR}" -SHLIB_MAJOR= 3 - -APR_UTIL_CONF_ARGS= --with-apr=../apr-${APR_VERSION} \ - --with-expat=${LOCALBASE} \ - --with-iconv=${LOCALBASE} - -.include <bsd.port.pre.mk> - -.if defined(APR_UTIL_WITHOUT_THREADS) -CONFIGURE_ARGS+= --disable-threads -APR_UTIL_CONF_ARGS+= --disable-threads -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-nothr -.else -PKGNAMESUFFIX= -nothr -.endif -.else -CONFIGURE_ARGS+= --enable-threads -.endif - -.if defined(APR_UTIL_WITHOUT_GDBM) -APR_UTIL_CONF_ARGS+= --without-gdbm -.elif defined(APR_UTIL_WITH_GDBM) || exists(${LOCALBASE}/lib/libgdbm.so.3) -LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm -APR_UTIL_CONF_ARGS+= --with-gdbm=${LOCALBASE} -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-gdbm -.else -PKGNAMESUFFIX= -gdbm -.endif -.else -APR_UTIL_CONF_ARGS+= --without-gdbm -.endif - -.if defined(WITH_BDB) -APR_UTIL_WITH_BERKELEY_DB= yes -.endif - -.if defined(APR_UTIL_WITHOUT_BERKELEY_DB) -APR_UTIL_CONF_ARGS+= --without-berkeley-db -.elif defined(APR_UTIL_WITH_BERKELEY_DB) || exists(${LOCALBASE}/lib/libdb-4.2.so.2) -USE_BDB= 42+ -APR_UTIL_CONF_ARGS+= --with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR} -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-${BDB_INCLUDE_DIR:S,^${LOCALBASE}/include/,,} -.else -PKGNAMESUFFIX= -${BDB_INCLUDE_DIR:S,^${LOCALBASE}/include/,,} -.endif -.endif - -.if defined(WITH_LDAP) -APR_UTIL_WITH_LDAP= yes -.endif - -.if defined(APR_UTIL_WITH_LDAP) -PLIST_SUB+= LDAP="" -USE_OPENLDAP= yes -APR_UTIL_CONF_ARGS+= --with-ldap-include=${LOCALBASE}/include \ - --with-ldap-lib=${LOCALBASE}/lib --with-ldap=ldap -.if defined(PKGNAMESUFFIX) -PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-ldap -.else -PKGNAMESUFFIX= -ldap -.endif -.else -PLIST_SUB+= LDAP="@comment " -.endif - -pre-extract: - @${ECHO_MSG} "" -.if defined(APR_UTIL_WITHOUT_THREADS) - @${ECHO_MSG} "apr library will be built without threads support." -.else - @${ECHO_MSG} "apr library will be built with threads support." - @${ECHO_MSG} "All programs which use apr must be linked with threads too." - @${ECHO_MSG} "You can disable threads by defining APR_UTIL_WITHOUT_THREADS." -.endif - @${ECHO_MSG} "" -.if defined(APR_UTIL_WITHOUT_GDBM) - @${ECHO_MSG} "GDBM support is disabled." -.elif defined(APR_UTIL_WITH_GDBM) - @${ECHO_MSG} "GDBM support is forced." -.elif exists(${LOCALBASE}/lib/libgdbm.so.3) - @${ECHO_MSG} "GDBM support is enabled." - @${ECHO_MSG} "You can disable GDBM support by defining APR_UTIL_WITHOUT_GDBM." -.else - @${ECHO_MSG} "GDBM was not found." - @${ECHO_MSG} "You can force GDBM support by defining APR_UTIL_WITH_GDBM." -.endif - @${ECHO_MSG} "" -.if defined(APR_UTIL_WITHOUT_BERKELEY_DB) - @${ECHO_MSG} "Berkeley DB support is disabled." -.elif defined(APR_UTIL_WITH_BERKELEY_DB) - @${ECHO_MSG} "Berkeley DB support forced." -.elif exists(${LOCALBASE}/lib/libdb-4.2.so.2) - @${ECHO_MSG} "Berkeley db4.2 support is enabled." - @${ECHO_MSG} "You can disable Berkeley db4.2 support by defining APR_UTIL_WITHOUT_BERKELEY_DB." -.else - @${ECHO_MSG} "Berkeley DB was not found." - @${ECHO_MSG} "You can force Berkeley DB support by defining APR_UTIL_WITH_BERKELEY_DB." -.endif - @${ECHO_MSG} "" - -post-patch: - ${REINPLACE_CMD} -e 's/OSVERSION/'${OSVERSION}'/g' \ - ${WRKDIR}/apr-${APR_VERSION}/build/apr_hints.m4 - ${FIND} ${WRKDIR} -name "Makefile.in*" | ${XARGS} ${REINPLACE_CMD} -e \ - 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' - -run-autotools:: - cd ${WRKDIR}/apr-${APR_VERSION} ; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} ./buildconf - cd ${WRKDIR}/apr-util-${APU_VERSION} ; \ - ${RM} -fr xml/expat - cd ${WRKDIR}/apr-util-${APU_VERSION} ; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} ./buildconf \ - --with-apr=../apr-${APR_VERSION} - cd ${WRKDIR}/apr-${APR_VERSION}; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} ./configure ${CONFIGURE_ARGS} - cd ${WRKDIR}/apr-util-${APU_VERSION}; \ - ${SETENV} ${CONFIGURE_ENV} ${SH} \ - ./configure ${CONFIGURE_ARGS} ${APR_UTIL_CONF_ARGS} - -do-configure: - ${DO_NADA} - -do-build: - cd ${WRKDIR}/apr-${APR_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} - cd ${WRKDIR}/apr-util-${APU_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} - -do-install: - cd ${WRKDIR}/apr-${APR_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${INSTALL_TARGET} - cd ${WRKDIR}/apr-util-${APU_VERSION}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${INSTALL_TARGET} - -debug_autoconf: - @echo "LIBTOOL: ${LIBTOOL_VERSION}" - @echo "AUTOCONF: dev ${dev_acver} cur ${cur_acver} use ${use_acver}" - @echo "AUTOMAKE: dev ${dev_amver} cur ${cur_amver} use ${use_amver}" - @echo "AUTOCONF_DIR: ${AUTOCONF_DIR}" - @echo "BUILD_DEPENDS: ${BUILD_DEPENDS}" - @echo "ACLOCAL_DIR: ${ACLOCAL_DIR}" - @echo "LIBTOOLFILES: ${LIBTOOLFILES}" - @echo "LIBTOOL_SHAREDIR: ${LIBTOOL_SHAREDIR}" - @echo "LIBTOOL_LIBEXECDIR: ${LIBTOOL_LIBEXECDIR}" - @echo "LIBTOOL_M4: ${LIBTOOL_M4}" - -.include <bsd.port.post.mk> diff --git a/devel/apr2/distinfo b/devel/apr2/distinfo deleted file mode 100644 index 52713d463fd4..000000000000 --- a/devel/apr2/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (apr-1.3.3.tar.gz) = b254a9abecaedb05efde71daa7517480 -SHA256 (apr-1.3.3.tar.gz) = 390af2f94c38d9fa03cd6caac3549058bb3e2c4d9f7408b7b829ad75bd5cc273 -SIZE (apr-1.3.3.tar.gz) = 1160542 -MD5 (apr-util-1.3.4.tar.gz) = a10e2ca150ff07f484c724c36142211f -SHA256 (apr-util-1.3.4.tar.gz) = 3f07ffdb18fb853290c9b83e82cd5cae66b8fbc357bd391e846c0afdd24fed7e -SIZE (apr-util-1.3.4.tar.gz) = 778902 diff --git a/devel/apr2/files/patch-apr_hints.m4 b/devel/apr2/files/patch-apr_hints.m4 deleted file mode 100644 index 5549809f5b30..000000000000 --- a/devel/apr2/files/patch-apr_hints.m4 +++ /dev/null @@ -1,15 +0,0 @@ ---- apr-1.3.3/build/apr_hints.m4.orig Wed Oct 27 11:12:28 2004 -+++ apr-1.3.3/build/apr_hints.m4 Wed Oct 27 11:25:32 2004 -@@ -137,11 +137,7 @@ - ;; - *-freebsd*) - APR_SETIFNULL(apr_lock_method, [USE_FLOCK_SERIALIZE]) -- if test -x /sbin/sysctl; then -- os_version=`/sbin/sysctl -n kern.osreldate` -- else -- os_version=000000 -- fi -+ os_version="OSVERSION" - # 502102 is when libc_r switched to libpthread (aka libkse). - if test $os_version -ge "502102"; then - apr_cv_pthreads_cflags="none" diff --git a/devel/apr2/pkg-descr b/devel/apr2/pkg-descr deleted file mode 100644 index 171e56b08723..000000000000 --- a/devel/apr2/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -The Apache Portable Runtime is a library of C data structures and routines, -forming a system portability layer that covers as many operating systems as -possible, including Unices, Win32, BeOS, and OS/2. - -This port also includes the APR-Util package, which contains some useful -utilities built on top of APR. - -WWW: http://apr.apache.org/ diff --git a/devel/apr2/pkg-plist b/devel/apr2/pkg-plist deleted file mode 100644 index 7402d8e77672..000000000000 --- a/devel/apr2/pkg-plist +++ /dev/null @@ -1,93 +0,0 @@ -bin/apr-1-config -bin/apu-1-config -build-1/apr_rules.mk -build-1/libtool -build-1/make_exports.awk -build-1/make_var_export.awk -build-1/mkdir.sh -include/apr-1/apr.h -include/apr-1/apr_allocator.h -include/apr-1/apr_anylock.h -include/apr-1/apr_atomic.h -include/apr-1/apr_base64.h -include/apr-1/apr_buckets.h -include/apr-1/apr_date.h -include/apr-1/apr_dbd.h -include/apr-1/apr_dbm.h -include/apr-1/apr_dso.h -include/apr-1/apr_env.h -include/apr-1/apr_errno.h -include/apr-1/apr_file_info.h -include/apr-1/apr_file_io.h -include/apr-1/apr_fnmatch.h -include/apr-1/apr_general.h -include/apr-1/apr_getopt.h -include/apr-1/apr_global_mutex.h -include/apr-1/apr_hash.h -include/apr-1/apr_hooks.h -include/apr-1/apr_inherit.h -include/apr-1/apr_ldap.h -include/apr-1/apr_ldap_init.h -include/apr-1/apr_ldap_option.h -include/apr-1/apr_ldap_rebind.h -include/apr-1/apr_ldap_url.h -include/apr-1/apr_lib.h -include/apr-1/apr_md4.h -include/apr-1/apr_md5.h -include/apr-1/apr_memcache.h -include/apr-1/apr_mmap.h -include/apr-1/apr_network_io.h -include/apr-1/apr_optional.h -include/apr-1/apr_optional_hooks.h -include/apr-1/apr_poll.h -include/apr-1/apr_pools.h -include/apr-1/apr_portable.h -include/apr-1/apr_proc_mutex.h -include/apr-1/apr_queue.h -include/apr-1/apr_random.h -include/apr-1/apr_reslist.h -include/apr-1/apr_ring.h -include/apr-1/apr_rmm.h -include/apr-1/apr_sdbm.h -include/apr-1/apr_sha1.h -include/apr-1/apr_shm.h -include/apr-1/apr_signal.h -include/apr-1/apr_strings.h -include/apr-1/apr_strmatch.h -include/apr-1/apr_support.h -include/apr-1/apr_tables.h -include/apr-1/apr_thread_cond.h -include/apr-1/apr_thread_mutex.h -include/apr-1/apr_thread_pool.h -include/apr-1/apr_thread_proc.h -include/apr-1/apr_thread_rwlock.h -include/apr-1/apr_time.h -include/apr-1/apr_uri.h -include/apr-1/apr_user.h -include/apr-1/apr_uuid.h -include/apr-1/apr_version.h -include/apr-1/apr_want.h -include/apr-1/apr_xlate.h -include/apr-1/apr_xml.h -include/apr-1/apu.h -include/apr-1/apu_version.h -include/apr-1/apu_want.h -libdata/pkgconfig/apr-1.pc -libdata/pkgconfig/apr-util-1.pc -lib/apr.exp -lib/aprutil.exp -lib/libapr-1.a -lib/libapr-1.la -lib/libapr-1.so -lib/libapr-1.so.%%SHLIB_MAJOR%% -lib/libaprutil-1.a -lib/libaprutil-1.la -lib/libaprutil-1.so -lib/libaprutil-1.so.%%SHLIB_MAJOR%% -%%LDAP%%lib/apr-util-1/apr_ldap-1.so -%%LDAP%%lib/apr-util-1/apr_ldap.so -%%LDAP%%lib/apr-util-1/apr_ldap.la -%%LDAP%%lib/apr-util-1/apr_ldap.a -%%LDAP%%@dirrm lib/apr-util-1 -@dirrm build-1 -@dirrm include/apr-1 diff --git a/devel/astah-community/Makefile b/devel/astah-community/Makefile deleted file mode 100644 index f56c32101464..000000000000 --- a/devel/astah-community/Makefile +++ /dev/null @@ -1,102 +0,0 @@ -# New ports collection makefile for: jude_take -# Date created: 19 April 2004 -# Whom: Yoshihiko Sarumaru <mistral@imasy.or.jp> -# -# $FreeBSD$ -# - -PORTNAME= jude-community -PORTVERSION= 5.2.2 -CATEGORIES= devel java -MASTER_SITES= # you have to register yourself as a member to download -DISTNAME= ${PORTNAME}-${PORTVERSION:S!.!_!g} - -MAINTAINER= mistral@imasy.or.jp -COMMENT= A Java/UML Object-Oriented Design Tool - -USE_ZIP= yes - -# Export HTML function can be used with JDK 1.4 only. -# (But it can work with JDK 1.5 + copying JDK 1.4 tools.jar to ${DATADIR}) -OPTIONS= EXPORT_HTML "Enable Exporting HTML function (needs JDK1.4)" Off - -.include <bsd.port.pre.mk> - -# In case you are going to use JDK1.5+ in Japanese environment, make sure -# you have prepared following command to avoid from font problem: -# ln -s ${LOCALBASE}/lib/X11/fonts/TrueType \ -# ${LOCALBASE}/diablo-jdk1.5.0/jre/lib/fonts/fallback -.if defined(WITH_EXPORT_HTML) -JAVA_VERSION= 1.4 -.else -JAVA_VERSION= 1.4+ -.endif - -USE_JAVA= yes -JAVA_OS= native -NO_BUILD= yes - -.include "${PORTSDIR}/Mk/bsd.java.mk" - -RESTRICTED= See http://jude.change-vision.com/jude-web/notes/ProductLicenseAgreement.html - -WRKSRC= ${WRKDIR}/${PORTNAME:S!-!_!} - -DOWNLOAD_URL= http://jude.change-vision.com/jude-web/download/index.html - -PLIST_FILES= bin/jude share/${PORTNAME}/mozilla -DATA_FILES= ${PORTNAME}.jar jude-api.jar jude-gui_en.properties_org \ - jude.ico jude-doc.ico Welcome.jude Welcome_ja.jude \ - template/project/Java1.4.jude template/project/Java5.jude - -.for file in ${DATA_FILES} -PLIST_FILES+= share/${PORTNAME}/${file} -.endfor -.if defined(WITH_EXPORT_HTML) -PLIST_FILES+= share/${PORTNAME}/tools.jar -.endif -PLIST_DIRS= share/${PORTNAME}/template/project \ - share/${PORTNAME}/template \ - share/${PORTNAME} - -.if !defined(NOPORTDOCS) -PORTDOCS+= README-e.txt README.txt ReleaseNote-e.html ReleaseNote.html \ - ProductInformation.txt -.endif - -.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE= needs you to fetch manually the distribution file\ - from ${DOWNLOAD_URL}, \ - then place it in ${DISTDIR} and run make again -.endif - -post-patch: - ${REINPLACE_CMD} -e "s!%%JAVA_HOME%%!${JAVA_HOME}!; \ - s!%%DATADIR%%!${DATADIR}!" ${WRKSRC}/jude -.if !defined(NOPORTDOCS) - ${REINPLACE_CMD} 's/png\\/png\//' ${WRKSRC}/api/*/doc/index.html -.endif - -do-install: - ${MKDIR} ${DATADIR} - ${INSTALL_SCRIPT} ${WRKSRC}/jude ${PREFIX}/bin - ${INSTALL_SCRIPT} ${FILESDIR}/mozilla ${DATADIR} - (cd ${WRKSRC} && ${COPYTREE_SHARE} "${DATA_FILES}" ${DATADIR}) -.if defined(WITH_EXPORT_HTML) - # ExportHTML needs lib/tools.jar of JDK1.4 - ${LN} -s ${JAVA_HOME}/lib/tools.jar ${DATADIR} -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for docfile in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} -.endfor - ${MKDIR} ${DOCSDIR}/api - (cd ${WRKSRC}/api && ${COPYTREE_SHARE} \* ${DOCSDIR}/api) - @ cd ${PREFIX} && ${FIND} share/doc/${PORTNAME}/api -type f -print | \ - ${SORT} -r >> ${TMPPLIST} - @ cd ${PREFIX} && ${FIND} share/doc/${PORTNAME}/api -type d -print | \ - ${SORT} -r | ${SED} -e 's#^#@dirrm #' >> ${TMPPLIST} -.endif - -.include <bsd.port.post.mk> diff --git a/devel/astah-community/distinfo b/devel/astah-community/distinfo deleted file mode 100644 index fea7f0e49036..000000000000 --- a/devel/astah-community/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (jude-community-5_2_2.zip) = 9ec2f0f6b6311a0d5adbbb3d82fbe085 -SHA256 (jude-community-5_2_2.zip) = eb1e8a90554d2b5e046002ffe68cde615a15ca0225f2b7769f6e5dbfec07bcd5 -SIZE (jude-community-5_2_2.zip) = 8263661 diff --git a/devel/astah-community/files/mozilla b/devel/astah-community/files/mozilla deleted file mode 100644 index 5ece63ef79c9..000000000000 --- a/devel/astah-community/files/mozilla +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -# eliminate own path from PATH (without this, cause a inifinite loop) -PATH=${PATH#$(dirname $0)} - -# add your favorite browser in the top of the list -for browser in mozilla linux-mozilla firefox linux-mozillafirebird opera linux-opera -do - type $browser > /dev/null 2>&1 && exec $browser "$@" -done diff --git a/devel/astah-community/files/patch-jude b/devel/astah-community/files/patch-jude deleted file mode 100644 index c0bae388278b..000000000000 --- a/devel/astah-community/files/patch-jude +++ /dev/null @@ -1,20 +0,0 @@ ---- jude.orig Tue Oct 26 21:21:53 2004 -+++ jude Tue Nov 9 13:58:28 2004 -@@ -3,13 +3,14 @@ - #Remove "#" from following two lines, if you'd like to use j2sdk. - #JAVA_HOME=/usr/lib/j2sdk1.4/;export JAVA_HOME - #PATH=$JAVA_HOME/bin:$PATH; export PATH -+PATH=%%DATADIR%%:$PATH - --#JUDE_HOME=/usr/local/share/jude_community --JUDE_HOME=`dirname $0` -+JUDE_HOME=%%DATADIR%% -+#JUDE_HOME=`dirname $0` - JUDE_JAR=jude-community.jar - - CLASSPATH=$JUDE_HOME/$JUDE_JAR - - JAVA_OPTS="-Xms16m -Xmx512m -Xss2m" - --java $JAVA_OPTS -jar $JUDE_HOME/$JUDE_JAR $1 $2 $3 -+%%JAVA_HOME%%/bin/java $JAVA_OPTS -jar $JUDE_HOME/$JUDE_JAR $1 $2 $3 diff --git a/devel/astah-community/pkg-descr b/devel/astah-community/pkg-descr deleted file mode 100644 index bbc51762f0a1..000000000000 --- a/devel/astah-community/pkg-descr +++ /dev/null @@ -1,21 +0,0 @@ -JUDE/Community is the free edition with basic features. -It is rich in functionality, offering features, such as editing and printing -UML1.4 diagrams, import/export of Java source code, graphics output, and -auto layout. (A restriction is that the JUDE logo always appears in the header -of printed documents.) - -Basic Features -JUDE supports the following basic UML 1.4 diagrams: -- Class (Object, Package, Robustness) -- Usecase -- Sequence -- Collaboration -- Statechart -- Activity -- Component -- Deployment -- Template Generation of Java Source Files -- Import of Java Source Files -- Automatic Generation of Class Diagrams with Model Information - -WWW: http://jude.change-vision.com/jude-web/index.html diff --git a/devel/autoconf267/Makefile b/devel/autoconf267/Makefile deleted file mode 100644 index a5aefa5a2db5..000000000000 --- a/devel/autoconf267/Makefile +++ /dev/null @@ -1,59 +0,0 @@ -# New ports collection makefile for: autoconf262 -# Date created: 7th December 2006 -# Whom: ade@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= autoconf -PORTVERSION= 2.62 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= autoconf -DISTNAME= autoconf-${PORTVERSION} - -MAINTAINER= ade@FreeBSD.org -COMMENT= Automatically configure source code on many Un*x platforms (2.62) - -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ - help2man:${PORTSDIR}/misc/help2man -RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ - autoconf-wrapper:${PORTSDIR}/devel/autoconf-wrapper - -BUILD_VERSION= 2.62 -PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} -LATEST_LINK= autoconf262 -USE_BZIP2= yes -USE_GMAKE= yes -USE_PERL5= yes -INFO= autoconf-${BUILD_VERSION} - -GNU_CONFIGURE= yes -CONFIGURE_ENV+= CONFIG_SHELL=${SH} M4=${LOCALBASE}/bin/gm4 AWK=${AWK} -CONFIGURE_ARGS= --program-suffix=-${BUILD_VERSION} --without-lispdir - -GENERIC_TOOLS= config.guess config.sub elisp-comp install-sh mdate-sh missing -GENERIC_LINKS= autoconf autoheader autom4te autoreconf autoscan autoupdate \ - ifnames - -MAN1_PAGES= ${GENERIC_LINKS} config.guess config.sub -MAN1= ${MAN1_PAGES:S/$/-${BUILD_VERSION}.1/g} - -post-patch: - @(cd ${WRKSRC}/man && \ - for file in *.[1x]; do \ - ${REINPLACE_CMD} -E 's,([^-]auto)(conf|make|reconf|update|header|scan),\1\2-${BUILD_VERSION},g ; \ - s,(config\.guess|config\.sub|ifnames),\1-${BUILD_VERSION},g' $$file ; \ - done) - @(cd ${WRKSRC}/doc && \ - ${RM} -f *.info && \ - ${MV} autoconf.texi autoconf-${BUILD_VERSION}.texi) - @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ - 's|@PACKAGE@$$|@PACKAGE@-@VERSION@|' - -post-install: -.for FILE in ${GENERIC_TOOLS} - @${INSTALL_SCRIPT} ${WRKSRC}/build-aux/${FILE} ${PREFIX}/share/autoconf-${BUILD_VERSION} -.endfor - -.include <bsd.port.mk> diff --git a/devel/autoconf267/distinfo b/devel/autoconf267/distinfo deleted file mode 100644 index d5fb5537f640..000000000000 --- a/devel/autoconf267/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (autoconf-2.62.tar.bz2) = e1fb8fe0b22e651240afdfa2be537a3c -SHA256 (autoconf-2.62.tar.bz2) = 42be7628e32fd3bebe07d684b11fb6e7e7920ef698fc4ccb3da6d77f91cefb96 -SIZE (autoconf-2.62.tar.bz2) = 1165951 diff --git a/devel/autoconf267/files/patch-autoconf.texi b/devel/autoconf267/files/patch-autoconf.texi deleted file mode 100644 index ee5ab7ccdcf6..000000000000 --- a/devel/autoconf267/files/patch-autoconf.texi +++ /dev/null @@ -1,38 +0,0 @@ ---- doc/autoconf.texi.orig 2008-04-05 11:43:30.000000000 -0700 -+++ doc/autoconf.texi 2008-05-16 18:27:31.000000000 -0700 -@@ -3,5 +3,5 @@ - @comment %**start of header --@setfilename autoconf.info -+@setfilename autoconf-2.62.info - @include version.texi --@settitle Autoconf -+@settitle Autoconf-2.62 - @setchapternewpage odd -@@ -205,25 +205,5 @@ - --@dircategory Software development -+@dircategory Programming & development tools - @direntry --* Autoconf: (autoconf). Create source code configuration scripts. --@end direntry -- --@dircategory Individual utilities --@direntry --* autoscan: (autoconf)autoscan Invocation. -- Semi-automatic @file{configure.ac} writing --* ifnames: (autoconf)ifnames Invocation. Listing conditionals in source. --* autoconf-invocation: (autoconf)autoconf Invocation. -- How to create configuration scripts --* autoreconf: (autoconf)autoreconf Invocation. -- Remaking multiple @command{configure} scripts --* autoheader: (autoconf)autoheader Invocation. -- How to create configuration templates --* autom4te: (autoconf)autom4te Invocation. -- The Autoconf executables backbone --* configure: (autoconf)configure Invocation. Configuring a package. --* autoupdate: (autoconf)autoupdate Invocation. -- Automatic update of @file{configure.ac} --* config.status: (autoconf)config.status Invocation. Recreating configurations. --* testsuite: (autoconf)testsuite Invocation. Running an Autotest test suite. -+* Autoconf-2.62: (autoconf-2.62). Create source code configuration scripts. - @end direntry diff --git a/devel/autoconf267/files/patch-doc-Makefile.in b/devel/autoconf267/files/patch-doc-Makefile.in deleted file mode 100644 index 7c9dfac296c1..000000000000 --- a/devel/autoconf267/files/patch-doc-Makefile.in +++ /dev/null @@ -1,25 +0,0 @@ ---- doc/Makefile.in.orig Mon Oct 16 13:58:44 2006 -+++ doc/Makefile.in Thu Apr 5 01:51:13 2007 -@@ -44,3 +44,3 @@ - DIST_SOURCES = --INFO_DEPS = $(srcdir)/autoconf.info $(srcdir)/standards.info -+INFO_DEPS = $(srcdir)/autoconf-2.62.info - TEXINFO_TEX = $(top_srcdir)/build-aux/texinfo.tex -@@ -51,3 +51,3 @@ - HTMLS = autoconf.html standards.html --TEXINFOS = autoconf.texi standards.texi -+TEXINFOS = autoconf-2.62.texi - TEXI2PDF = $(TEXI2DVI) --pdf --batch -@@ -241,3 +241,3 @@ - fi --$(srcdir)/autoconf.info: autoconf.texi $(srcdir)/version.texi $(autoconf_TEXINFOS) -+$(srcdir)/autoconf-2.62.info: autoconf-2.62.texi $(srcdir)/version.texi $(autoconf_TEXINFOS) - autoconf.dvi: autoconf.texi $(srcdir)/version.texi $(autoconf_TEXINFOS) -@@ -246,5 +246,5 @@ - $(srcdir)/version.texi: $(srcdir)/stamp-vti --$(srcdir)/stamp-vti: autoconf.texi $(top_srcdir)/configure -+$(srcdir)/stamp-vti: autoconf-2.62.texi $(top_srcdir)/configure - @(dir=.; test -f ./autoconf.texi || dir=$(srcdir); \ -- set `$(SHELL) $(top_srcdir)/build-aux/mdate-sh $$dir/autoconf.texi`; \ -+ set `$(SHELL) $(top_srcdir)/build-aux/mdate-sh $$dir/autoconf-2.62.texi`; \ - echo "@set UPDATED $$1 $$2 $$3"; \ diff --git a/devel/autoconf267/pkg-descr b/devel/autoconf267/pkg-descr deleted file mode 100644 index c404cc852ea8..000000000000 --- a/devel/autoconf267/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Autoconf is an extensible package of m4 macros that produce shell -scripts to automatically configure software source code packages. -These scripts can adapt the packages to many kinds of UNIX-like -systems without manual user intervention. Autoconf creates a -configuration script for a package from a template file that lists the -operating system features that the package can use, in the form of m4 -macro calls. - -WWW: http://www.gnu.org/software/autoconf/ diff --git a/devel/autoconf267/pkg-plist b/devel/autoconf267/pkg-plist deleted file mode 100644 index b9ef638c9691..000000000000 --- a/devel/autoconf267/pkg-plist +++ /dev/null @@ -1,58 +0,0 @@ -bin/autoconf-%%BUILD_VERSION%% -bin/autoheader-%%BUILD_VERSION%% -bin/autom4te-%%BUILD_VERSION%% -bin/autoreconf-%%BUILD_VERSION%% -bin/autoscan-%%BUILD_VERSION%% -bin/autoupdate-%%BUILD_VERSION%% -bin/ifnames-%%BUILD_VERSION%% -share/autoconf-%%BUILD_VERSION%%/Autom4te/C4che.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/ChannelDefs.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/Channels.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/Configure_ac.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/FileUtils.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/General.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/Request.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/Struct.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/XFile.pm -share/autoconf-%%BUILD_VERSION%%/INSTALL -share/autoconf-%%BUILD_VERSION%%/autoconf/autoconf.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/autoconf.m4f -share/autoconf-%%BUILD_VERSION%%/autoconf/autoheader.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/autoscan.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/autotest.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/autoupdate.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/c.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/erlang.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/fortran.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/functions.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/general.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/headers.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/lang.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/libs.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/oldnames.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/programs.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/specific.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/status.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/types.m4 -share/autoconf-%%BUILD_VERSION%%/autom4te.cfg -share/autoconf-%%BUILD_VERSION%%/autoscan/autoscan.list -share/autoconf-%%BUILD_VERSION%%/autotest/autotest.m4 -share/autoconf-%%BUILD_VERSION%%/autotest/autotest.m4f -share/autoconf-%%BUILD_VERSION%%/autotest/general.m4 -share/autoconf-%%BUILD_VERSION%%/config.guess -share/autoconf-%%BUILD_VERSION%%/config.sub -share/autoconf-%%BUILD_VERSION%%/elisp-comp -share/autoconf-%%BUILD_VERSION%%/install-sh -share/autoconf-%%BUILD_VERSION%%/m4sugar/m4sh.m4 -share/autoconf-%%BUILD_VERSION%%/m4sugar/m4sh.m4f -share/autoconf-%%BUILD_VERSION%%/m4sugar/m4sugar.m4 -share/autoconf-%%BUILD_VERSION%%/m4sugar/m4sugar.m4f -share/autoconf-%%BUILD_VERSION%%/m4sugar/version.m4 -share/autoconf-%%BUILD_VERSION%%/mdate-sh -share/autoconf-%%BUILD_VERSION%%/missing -@dirrm share/autoconf-%%BUILD_VERSION%%/m4sugar -@dirrm share/autoconf-%%BUILD_VERSION%%/autotest -@dirrm share/autoconf-%%BUILD_VERSION%%/autoscan -@dirrm share/autoconf-%%BUILD_VERSION%%/autoconf -@dirrm share/autoconf-%%BUILD_VERSION%%/Autom4te -@dirrm share/autoconf-%%BUILD_VERSION%% diff --git a/devel/autoconf268/Makefile b/devel/autoconf268/Makefile deleted file mode 100644 index a5aefa5a2db5..000000000000 --- a/devel/autoconf268/Makefile +++ /dev/null @@ -1,59 +0,0 @@ -# New ports collection makefile for: autoconf262 -# Date created: 7th December 2006 -# Whom: ade@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= autoconf -PORTVERSION= 2.62 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= autoconf -DISTNAME= autoconf-${PORTVERSION} - -MAINTAINER= ade@FreeBSD.org -COMMENT= Automatically configure source code on many Un*x platforms (2.62) - -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ - help2man:${PORTSDIR}/misc/help2man -RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ - autoconf-wrapper:${PORTSDIR}/devel/autoconf-wrapper - -BUILD_VERSION= 2.62 -PLIST_SUB= BUILD_VERSION=${BUILD_VERSION} -LATEST_LINK= autoconf262 -USE_BZIP2= yes -USE_GMAKE= yes -USE_PERL5= yes -INFO= autoconf-${BUILD_VERSION} - -GNU_CONFIGURE= yes -CONFIGURE_ENV+= CONFIG_SHELL=${SH} M4=${LOCALBASE}/bin/gm4 AWK=${AWK} -CONFIGURE_ARGS= --program-suffix=-${BUILD_VERSION} --without-lispdir - -GENERIC_TOOLS= config.guess config.sub elisp-comp install-sh mdate-sh missing -GENERIC_LINKS= autoconf autoheader autom4te autoreconf autoscan autoupdate \ - ifnames - -MAN1_PAGES= ${GENERIC_LINKS} config.guess config.sub -MAN1= ${MAN1_PAGES:S/$/-${BUILD_VERSION}.1/g} - -post-patch: - @(cd ${WRKSRC}/man && \ - for file in *.[1x]; do \ - ${REINPLACE_CMD} -E 's,([^-]auto)(conf|make|reconf|update|header|scan),\1\2-${BUILD_VERSION},g ; \ - s,(config\.guess|config\.sub|ifnames),\1-${BUILD_VERSION},g' $$file ; \ - done) - @(cd ${WRKSRC}/doc && \ - ${RM} -f *.info && \ - ${MV} autoconf.texi autoconf-${BUILD_VERSION}.texi) - @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ - 's|@PACKAGE@$$|@PACKAGE@-@VERSION@|' - -post-install: -.for FILE in ${GENERIC_TOOLS} - @${INSTALL_SCRIPT} ${WRKSRC}/build-aux/${FILE} ${PREFIX}/share/autoconf-${BUILD_VERSION} -.endfor - -.include <bsd.port.mk> diff --git a/devel/autoconf268/distinfo b/devel/autoconf268/distinfo deleted file mode 100644 index d5fb5537f640..000000000000 --- a/devel/autoconf268/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (autoconf-2.62.tar.bz2) = e1fb8fe0b22e651240afdfa2be537a3c -SHA256 (autoconf-2.62.tar.bz2) = 42be7628e32fd3bebe07d684b11fb6e7e7920ef698fc4ccb3da6d77f91cefb96 -SIZE (autoconf-2.62.tar.bz2) = 1165951 diff --git a/devel/autoconf268/files/patch-autoconf.texi b/devel/autoconf268/files/patch-autoconf.texi deleted file mode 100644 index ee5ab7ccdcf6..000000000000 --- a/devel/autoconf268/files/patch-autoconf.texi +++ /dev/null @@ -1,38 +0,0 @@ ---- doc/autoconf.texi.orig 2008-04-05 11:43:30.000000000 -0700 -+++ doc/autoconf.texi 2008-05-16 18:27:31.000000000 -0700 -@@ -3,5 +3,5 @@ - @comment %**start of header --@setfilename autoconf.info -+@setfilename autoconf-2.62.info - @include version.texi --@settitle Autoconf -+@settitle Autoconf-2.62 - @setchapternewpage odd -@@ -205,25 +205,5 @@ - --@dircategory Software development -+@dircategory Programming & development tools - @direntry --* Autoconf: (autoconf). Create source code configuration scripts. --@end direntry -- --@dircategory Individual utilities --@direntry --* autoscan: (autoconf)autoscan Invocation. -- Semi-automatic @file{configure.ac} writing --* ifnames: (autoconf)ifnames Invocation. Listing conditionals in source. --* autoconf-invocation: (autoconf)autoconf Invocation. -- How to create configuration scripts --* autoreconf: (autoconf)autoreconf Invocation. -- Remaking multiple @command{configure} scripts --* autoheader: (autoconf)autoheader Invocation. -- How to create configuration templates --* autom4te: (autoconf)autom4te Invocation. -- The Autoconf executables backbone --* configure: (autoconf)configure Invocation. Configuring a package. --* autoupdate: (autoconf)autoupdate Invocation. -- Automatic update of @file{configure.ac} --* config.status: (autoconf)config.status Invocation. Recreating configurations. --* testsuite: (autoconf)testsuite Invocation. Running an Autotest test suite. -+* Autoconf-2.62: (autoconf-2.62). Create source code configuration scripts. - @end direntry diff --git a/devel/autoconf268/files/patch-doc-Makefile.in b/devel/autoconf268/files/patch-doc-Makefile.in deleted file mode 100644 index 7c9dfac296c1..000000000000 --- a/devel/autoconf268/files/patch-doc-Makefile.in +++ /dev/null @@ -1,25 +0,0 @@ ---- doc/Makefile.in.orig Mon Oct 16 13:58:44 2006 -+++ doc/Makefile.in Thu Apr 5 01:51:13 2007 -@@ -44,3 +44,3 @@ - DIST_SOURCES = --INFO_DEPS = $(srcdir)/autoconf.info $(srcdir)/standards.info -+INFO_DEPS = $(srcdir)/autoconf-2.62.info - TEXINFO_TEX = $(top_srcdir)/build-aux/texinfo.tex -@@ -51,3 +51,3 @@ - HTMLS = autoconf.html standards.html --TEXINFOS = autoconf.texi standards.texi -+TEXINFOS = autoconf-2.62.texi - TEXI2PDF = $(TEXI2DVI) --pdf --batch -@@ -241,3 +241,3 @@ - fi --$(srcdir)/autoconf.info: autoconf.texi $(srcdir)/version.texi $(autoconf_TEXINFOS) -+$(srcdir)/autoconf-2.62.info: autoconf-2.62.texi $(srcdir)/version.texi $(autoconf_TEXINFOS) - autoconf.dvi: autoconf.texi $(srcdir)/version.texi $(autoconf_TEXINFOS) -@@ -246,5 +246,5 @@ - $(srcdir)/version.texi: $(srcdir)/stamp-vti --$(srcdir)/stamp-vti: autoconf.texi $(top_srcdir)/configure -+$(srcdir)/stamp-vti: autoconf-2.62.texi $(top_srcdir)/configure - @(dir=.; test -f ./autoconf.texi || dir=$(srcdir); \ -- set `$(SHELL) $(top_srcdir)/build-aux/mdate-sh $$dir/autoconf.texi`; \ -+ set `$(SHELL) $(top_srcdir)/build-aux/mdate-sh $$dir/autoconf-2.62.texi`; \ - echo "@set UPDATED $$1 $$2 $$3"; \ diff --git a/devel/autoconf268/pkg-descr b/devel/autoconf268/pkg-descr deleted file mode 100644 index c404cc852ea8..000000000000 --- a/devel/autoconf268/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Autoconf is an extensible package of m4 macros that produce shell -scripts to automatically configure software source code packages. -These scripts can adapt the packages to many kinds of UNIX-like -systems without manual user intervention. Autoconf creates a -configuration script for a package from a template file that lists the -operating system features that the package can use, in the form of m4 -macro calls. - -WWW: http://www.gnu.org/software/autoconf/ diff --git a/devel/autoconf268/pkg-plist b/devel/autoconf268/pkg-plist deleted file mode 100644 index b9ef638c9691..000000000000 --- a/devel/autoconf268/pkg-plist +++ /dev/null @@ -1,58 +0,0 @@ -bin/autoconf-%%BUILD_VERSION%% -bin/autoheader-%%BUILD_VERSION%% -bin/autom4te-%%BUILD_VERSION%% -bin/autoreconf-%%BUILD_VERSION%% -bin/autoscan-%%BUILD_VERSION%% -bin/autoupdate-%%BUILD_VERSION%% -bin/ifnames-%%BUILD_VERSION%% -share/autoconf-%%BUILD_VERSION%%/Autom4te/C4che.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/ChannelDefs.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/Channels.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/Configure_ac.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/FileUtils.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/General.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/Request.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/Struct.pm -share/autoconf-%%BUILD_VERSION%%/Autom4te/XFile.pm -share/autoconf-%%BUILD_VERSION%%/INSTALL -share/autoconf-%%BUILD_VERSION%%/autoconf/autoconf.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/autoconf.m4f -share/autoconf-%%BUILD_VERSION%%/autoconf/autoheader.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/autoscan.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/autotest.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/autoupdate.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/c.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/erlang.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/fortran.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/functions.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/general.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/headers.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/lang.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/libs.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/oldnames.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/programs.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/specific.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/status.m4 -share/autoconf-%%BUILD_VERSION%%/autoconf/types.m4 -share/autoconf-%%BUILD_VERSION%%/autom4te.cfg -share/autoconf-%%BUILD_VERSION%%/autoscan/autoscan.list -share/autoconf-%%BUILD_VERSION%%/autotest/autotest.m4 -share/autoconf-%%BUILD_VERSION%%/autotest/autotest.m4f -share/autoconf-%%BUILD_VERSION%%/autotest/general.m4 -share/autoconf-%%BUILD_VERSION%%/config.guess -share/autoconf-%%BUILD_VERSION%%/config.sub -share/autoconf-%%BUILD_VERSION%%/elisp-comp -share/autoconf-%%BUILD_VERSION%%/install-sh -share/autoconf-%%BUILD_VERSION%%/m4sugar/m4sh.m4 -share/autoconf-%%BUILD_VERSION%%/m4sugar/m4sh.m4f -share/autoconf-%%BUILD_VERSION%%/m4sugar/m4sugar.m4 -share/autoconf-%%BUILD_VERSION%%/m4sugar/m4sugar.m4f -share/autoconf-%%BUILD_VERSION%%/m4sugar/version.m4 -share/autoconf-%%BUILD_VERSION%%/mdate-sh -share/autoconf-%%BUILD_VERSION%%/missing -@dirrm share/autoconf-%%BUILD_VERSION%%/m4sugar -@dirrm share/autoconf-%%BUILD_VERSION%%/autotest -@dirrm share/autoconf-%%BUILD_VERSION%%/autoscan -@dirrm share/autoconf-%%BUILD_VERSION%%/autoconf -@dirrm share/autoconf-%%BUILD_VERSION%%/Autom4te -@dirrm share/autoconf-%%BUILD_VERSION%% diff --git a/devel/baz/Makefile b/devel/baz/Makefile deleted file mode 100644 index 656df887c0ef..000000000000 --- a/devel/baz/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# Ports collection makefile for: bazaar -# Date created: 11 October 2005 -# Whom: Ulf Lilleengen -# -# $FreeBSD$ -# - -PORTNAME= bazaar -PORTVERSION= 1.4.2 -PORTREVISION= 6 -CATEGORIES= devel -MASTER_SITES= http://bazaar-vcs.org/releases/src/obsolete/ -DISTNAME= bazaar_${PORTVERSION} - -MAINTAINER= lulf@kerneled.org -COMMENT= An implementation of the GNU Arch RCS protocol in C by Canonical - -BUILD_DEPENDS= gpatch:${PORTSDIR}/devel/patch \ - gdiff:${PORTSDIR}/textproc/diffutils \ - gtar:${PORTSDIR}/archivers/gtar -RUN_DEPENDS= ${BUILD_DEPENDS} -LIB_DEPENDS= neon.26:${PORTSDIR}/www/neon26 \ - gpgme.17:${PORTSDIR}/security/gpgme - -USE_GMAKE= yes -USE_GETTEXT= yes -USE_PERL5_BUILD=yes -GNU_CONFIGURE= yes - -MAN1= baz.1 - -MAJORVERSION= 1.4 -BASEWRKDIR= ${WRKDIR}/thelove@canonical.com---dists--bazaar--${MAJORVERSION} -WRKSRC= ${BASEWRKDIR}/src/=build -PATCH_WRKSRC= ${BASEWRKDIR} -LDFLAGS+= -L ${LOCALBASE}/lib -CFLAGS+= -I ${LOCALBASE}/include ${LDFLAGS} - -.include <bsd.port.pre.mk> - -pre-patch: - ${MKDIR} ${WRKSRC} - -# I know the CFLAGS export is ugly, but it's the only way i've gotten bazaars -# own autotools to detect libraries the "correct" way. -do-configure: - cd ${WRKSRC} && export CFLAGS="${CFLAGS}" \ - && ../configure --prefix ${PREFIX} \ - --with-gnu-patch gpatch \ - --with-gnu-diff gdiff \ - --with-gnu-diff3 gdiff3 \ - --with-gnu-tar gtar - -post-install: - cd ${BASEWRKDIR}/src/baz-manpage && ${PERL} generate-manpage.pl ${MAN1}\ - && \ - ${INSTALL_MAN} ${BASEWRKDIR}/src/baz-manpage/${MAN1} \ - ${MAN1PREFIX}/man/man1 - -.include <bsd.port.post.mk> diff --git a/devel/baz/distinfo b/devel/baz/distinfo deleted file mode 100644 index bffde576eb03..000000000000 --- a/devel/baz/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (bazaar_1.4.2.tar.gz) = 6e61d7aeec990a801977ee6cdc3958d5 -SHA256 (bazaar_1.4.2.tar.gz) = 4ad40013fb6572c9e7a5d14cd055ef98ca583893425c005697a5881b8ac0cc4e -SIZE (bazaar_1.4.2.tar.gz) = 6264573 diff --git a/devel/baz/files/patch-pfs-sftp.c b/devel/baz/files/patch-pfs-sftp.c deleted file mode 100644 index be725a45a68f..000000000000 --- a/devel/baz/files/patch-pfs-sftp.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/baz/libarch/pfs-sftp.c.orig Mon Jun 20 23:59:37 2005 -+++ src/baz/libarch/pfs-sftp.c Thu Apr 5 09:16:19 2007 -@@ -1496,7 +1496,7 @@ - */ - arch_uri_heuristics (&parsed_uri); - -- *user = str_save (0, parsed_uri.authinfo); -+ *user = str_save (0, parsed_uri.userinfo); - *hostname = str_save (0, parsed_uri.host); - if (parsed_uri.port) - { diff --git a/devel/baz/files/patch-pfs-signatures.c b/devel/baz/files/patch-pfs-signatures.c deleted file mode 100644 index 7952b9ff2d90..000000000000 --- a/devel/baz/files/patch-pfs-signatures.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/baz/libarch/pfs-signatures.c.old Wed Nov 2 21:46:56 2005 -+++ src/baz/libarch/pfs-signatures.c Wed Nov 2 21:47:09 2005 -@@ -29,7 +29,7 @@ - #include "libarch/namespace.h" - #include "libarch/archives.h" - #include "libarch/cached-archive.h" --#include <gpgme.h> -+#include <gpgme/gpgme.h> - #include "libarch/pfs-signatures.h" - - diff --git a/devel/baz/files/patch-pfs.c b/devel/baz/files/patch-pfs.c deleted file mode 100644 index 22399f9c314d..000000000000 --- a/devel/baz/files/patch-pfs.c +++ /dev/null @@ -1,89 +0,0 @@ ---- src/baz/libarch/pfs.c.orig Mon Jun 20 23:59:37 2005 -+++ src/baz/libarch/pfs.c Thu Apr 5 09:23:25 2007 -@@ -513,13 +513,73 @@ - char *at_pos = str_chr_index (parsed_uri->host, '@'); - if (!at_pos) - return; -- parsed_uri->authinfo = str_replace (parsed_uri->authinfo, -- str_alloc_cat (0, parsed_uri->authinfo, "@")); -- parsed_uri->authinfo = str_replace (parsed_uri->authinfo, -- str_alloc_cat_n (0, parsed_uri->authinfo, parsed_uri->host, at_pos - parsed_uri->host)); -+ parsed_uri->userinfo = str_replace (parsed_uri->userinfo, -+ str_alloc_cat (0, parsed_uri->userinfo, "@")); -+ parsed_uri->userinfo = str_replace (parsed_uri->userinfo, -+ str_alloc_cat_n (0, parsed_uri->userinfo, parsed_uri->host, at_pos - parsed_uri->host)); - parsed_uri->host = str_replace (parsed_uri->host, str_save (0, at_pos + 1)); - } - -+/* RFC2396 spake: -+ * "Data must be escaped if it does not have a representation -+ * using an unreserved character". -+ */ -+ -+/* Lookup table: character classes from 2396. (This is overkill) */ -+ -+#define SP 0 /* space = <US-ASCII coded character 20 hexadecimal> */ -+#define CO 0 /* control = <US-ASCII coded characters 00-1F and 7F hexadecimal> */ -+#define DE 0 /* delims = "<" | ">" | "#" | "%" | <"> */ -+#define UW 0 /* unwise = "{" | "}" | "|" | "\" | "^" | "[" | "]" | "`" */ -+#define MA 1 /* mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")" */ -+#define AN 2 /* alphanum = alpha | digit */ -+#define RE 2 /* reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | "," */ -+ -+static const char uri_chars[128] = { -+/* +2 +4 +6 +8 +10 +12 +14 */ -+/* 0 */ CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, -+/* 16 */ CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, CO, -+/* 32 */ SP, MA, DE, DE, RE, DE, RE, MA, MA, MA, MA, RE, RE, MA, MA, RE, -+/* 48 */ AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, RE, RE, DE, RE, DE, RE, -+/* 64 */ RE, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, -+/* 80 */ AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, UW, UW, UW, UW, MA, -+/* 96 */ UW, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, -+/* 112 */ AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, AN, UW, UW, UW, MA, CO -+}; -+ -+#define ESCAPE(ch) (((const signed char)(ch) < 0 || \ -+ uri_chars[(unsigned int)(ch)] == 0)) -+ -+char *oldneon_ne_path_escape(const char *abs_path) -+{ -+ const char *pnt; -+ char *ret, *retpos; -+ int count = 0; -+ for (pnt = abs_path; *pnt != '\0'; pnt++) { -+ if (ESCAPE(*pnt)) { -+ count++; -+ } -+ } -+ if (count == 0) { -+ return ne_strdup(abs_path); -+ } -+ /* An escaped character is "%xx", i.e., two MORE -+ * characters than the original string */ -+ retpos = ret = ne_malloc(strlen(abs_path) + 2*count + 1); -+ for (pnt = abs_path; *pnt != '\0'; pnt++) { -+ if (ESCAPE(*pnt)) { -+ /* Escape it - %<hex><hex> */ -+ sprintf(retpos, "%%%02x", (unsigned char) *pnt); -+ retpos += 3; -+ } else { -+ /* It's cool */ -+ *retpos++ = *pnt; -+ } -+ } -+ *retpos = '\0'; -+ return ret; -+} -+ - /** - * \brief escape a location - * -@@ -528,7 +588,7 @@ - t_uchar * - escape_location (t_uchar const *location) - { -- return ne_path_escape(location); -+ return oldneon_ne_path_escape(location); - } - - /** diff --git a/devel/baz/files/patch-unit-sftp.c b/devel/baz/files/patch-unit-sftp.c deleted file mode 100644 index f0a049289de8..000000000000 --- a/devel/baz/files/patch-unit-sftp.c +++ /dev/null @@ -1,20 +0,0 @@ ---- src/baz/libarch/tests/unit-sftp.c.orig Mon Jun 20 23:59:37 2005 -+++ src/baz/libarch/tests/unit-sftp.c Thu Apr 5 09:58:45 2007 -@@ -35,7 +35,7 @@ - char *host; - unsigned int port; - char *path; -- char *authinfo; -+ char *userinfo; - } ne_uri; - */ - invariant_int_cmp (ne_uri_parse ("sftp://user@email.com@host.phwoar/root/path", &parsed_uri), 0); -@@ -44,7 +44,7 @@ - invariant_str_cmp (parsed_uri.host, "email.com@host.phwoar"); - arch_uri_heuristics (&parsed_uri); - invariant_str_cmp (parsed_uri.host, "host.phwoar"); -- invariant_str_cmp (parsed_uri.authinfo, "user@email.com"); -+ invariant_str_cmp (parsed_uri.userinfo, "user@email.com"); - invariant_int_cmp (parsed_uri.port, 0); - ne_uri_free(&parsed_uri); - diff --git a/devel/baz/pkg-descr b/devel/baz/pkg-descr deleted file mode 100644 index 55e2aba86c39..000000000000 --- a/devel/baz/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Bazaar is an implementation of GNU arch in C from canonical. Arch is a version -control system, which allows you to keep old versions of files and directories -(usually source code), keep a log of who, when, and why changes occurred, etc., -like SVN, CVS, or RCS. Arch is distributed, which gives it significant -advantages and some disadvantages compared to SVN and CVS. - -WWW: http://bazaar.canonical.com/ diff --git a/devel/baz/pkg-plist b/devel/baz/pkg-plist deleted file mode 100644 index d9a6d4f384b0..000000000000 --- a/devel/baz/pkg-plist +++ /dev/null @@ -1,34 +0,0 @@ -bin/annotate -bin/baz -share/locale/af/LC_MESSAGES/bazaar.mo -share/locale/ca/LC_MESSAGES/bazaar.mo -share/locale/cs/LC_MESSAGES/bazaar.mo -share/locale/cy/LC_MESSAGES/bazaar.mo -share/locale/da/LC_MESSAGES/bazaar.mo -share/locale/de/LC_MESSAGES/bazaar.mo -share/locale/en_AU/LC_MESSAGES/bazaar.mo -share/locale/en_CA/LC_MESSAGES/bazaar.mo -share/locale/es/LC_MESSAGES/bazaar.mo -share/locale/es_AR/LC_MESSAGES/bazaar.mo -share/locale/es_ES/LC_MESSAGES/bazaar.mo -share/locale/fi/LC_MESSAGES/bazaar.mo -share/locale/fr/LC_MESSAGES/bazaar.mo -share/locale/fr_BE/LC_MESSAGES/bazaar.mo -share/locale/fr_FR/LC_MESSAGES/bazaar.mo -share/locale/hr/LC_MESSAGES/bazaar.mo -share/locale/it_IT/LC_MESSAGES/bazaar.mo -share/locale/ja/LC_MESSAGES/bazaar.mo -share/locale/lt/LC_MESSAGES/bazaar.mo -share/locale/nl/LC_MESSAGES/bazaar.mo -share/locale/nl_BE/LC_MESSAGES/bazaar.mo -share/locale/pt_BR/LC_MESSAGES/bazaar.mo -share/locale/pt_PT/LC_MESSAGES/bazaar.mo -share/locale/zh_CN/LC_MESSAGES/bazaar.mo -@dirrmtry share/locale/nl_BE/LC_MESSAGES -@dirrmtry share/locale/nl_BE -@dirrmtry share/locale/it_IT/LC_MESSAGES -@dirrmtry share/locale/it_IT -@dirrmtry share/locale/fr_BE/LC_MESSAGES -@dirrmtry share/locale/fr_BE -@dirrmtry share/locale/es_AR/LC_MESSAGES -@dirrmtry share/locale/es_AR diff --git a/devel/bugzilla3/Makefile b/devel/bugzilla3/Makefile deleted file mode 100644 index 8b6efb14c543..000000000000 --- a/devel/bugzilla3/Makefile +++ /dev/null @@ -1,182 +0,0 @@ -# New ports collection makefile for: bugzilla -# Date created: 28 September 2001 -# Whom: Alexey Zelkin <phantom@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME?= bugzilla -PORTVERSION?= 3.0.5 -CATEGORIES?= devel -MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= webtools webtools/archived - -MAINTAINER?= skv@FreeBSD.org -COMMENT?= Bug-tracking system developed by Mozilla Project - -OPTIONS= MYSQL "MySQL database support" off \ - PGSQL "PostgreSQL database support" off \ - GRAPH_REPORTS "Graphical Reports" on \ - CHARTING_MODULES "Bug charting support" on \ - PATCH_VIEWER "Patch Viewer" on \ - MORE_HTML "More HTML in Product/Group Descriptions" on \ - INBOUND_EMAIL "Inbound Email" off \ - MOVE_BUGZ "Move Bugs Between Installations" off \ - BMP2PNG "BMP Attachments to PNGs" off \ - XMLRPC "XML-RPC Interface" off \ - MODPERL2 "With mod_perl2 support" off \ - GRAPHVIZ "Use GraphViz" off \ - EXPORT_IMPORT "Import/export bugs (via XML)" off \ - CONTRIB "Install user-contributed scripts" off \ - LDAP "LDAP Authentication" off - -RUN_DEPENDS+= \ - ${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm \ - ${SITE_PERL}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate \ - ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \ - ${SITE_PERL}/${PERL_ARCH}/Template.pm:${PORTSDIR}/www/p5-Template-Toolkit \ - ${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper \ - ${SITE_PERL}/${PERL_ARCH}/File/Spec.pm:${PORTSDIR}/devel/p5-PathTools \ - ${SITE_PERL}/Email/Send.pm:${PORTSDIR}/mail/p5-Email-Send \ - ${SITE_PERL}/Email/MIME/Modifier.pm:${PORTSDIR}/mail/p5-Email-MIME-Modifier - -CONFLICTS?= ja-bugzilla-2.* - -PORTSCOUT= limitw:1,even - -USE_PERL5= yes - -BINMODE= 700 -PKGMESSAGE= ${WRKDIR}/pkg-message - -.ifndef BUGZILLADIR -.ifdef APACHE_DATADIR -BUGZILLADIR= ${APACHE_DATADIR}/data/bugzilla -.else -BUGZILLADIR= ${PREFIX}/www/data/bugzilla -.endif -.endif - -PLIST_SUB+= BUGZILLADIR=${BUGZILLADIR:S!^${PREFIX}/!!} - -DATA_DIRS_LIST= images js skins/standard skins/standard/global \ - skins/standard/index - -.include <bsd.port.pre.mk> - -.ifdef WITH_MYSQL -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql -USE_MYSQL= yes -IGNORE_WITH_MYSQL= 323 -.endif - -.ifdef WITH_PGSQL -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg -USE_PGSQL= yes -.endif - -.ifdef WITH_GRAPH_REPORTS -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD \ - ${SITE_PERL}/GD/Graph.pm:${PORTSDIR}/graphics/p5-GD-Graph \ - ${SITE_PERL}/GD/Text.pm:${PORTSDIR}/graphics/p5-GD-TextUtil \ - ${SITE_PERL}/Template/Plugin/GD/Image.pm:${PORTSDIR}/www/p5-Template-GD -.endif - -.ifdef WITH_CHARTING_MODULES -RUN_DEPENDS+= ${SITE_PERL}/Chart/Base.pm:${PORTSDIR}/graphics/p5-chart -.endif - -.ifdef WITH_PATCH_VIEWER -RUN_DEPENDS+= ${SITE_PERL}/PatchReader.pm:${PORTSDIR}/devel/p5-PatchReader \ - interdiff:${PORTSDIR}/misc/patchutils -.endif - -.ifdef WITH_MORE_HTML -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/HTML/Parser.pm:${PORTSDIR}/www/p5-HTML-Parser \ - ${SITE_PERL}/HTML/Scrubber.pm:${PORTSDIR}/www/p5-HTML-Scrubber -.endif - -.ifdef WITH_INBOUND_EMAIL -RUN_DEPENDS+= ${SITE_PERL}/Email/MIME/Attachment/Stripper.pm:${PORTSDIR}/mail/p5-Email-MIME-Attachment-Stripper \ - ${SITE_PERL}/Email/Reply.pm:${PORTSDIR}/mail/p5-Email-Reply -.endif - -.ifdef WITH_MOVE_BUGZ -RUN_DEPENDS+= ${SITE_PERL}/MIME/Parser.pm:${PORTSDIR}/mail/p5-MIME-Tools \ - ${SITE_PERL}/XML/Twig.pm:${PORTSDIR}/textproc/p5-XML-Twig -.endif - -.ifdef WITH_BMP2PNG -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Image/Magick.pm:${PORTSDIR}/graphics/ImageMagick -.endif - -.ifdef WITH_XMLRPC -RUN_DEPENDS+= ${SITE_PERL}/SOAP/Lite.pm:${PORTSDIR}/net/p5-SOAP-Lite -.endif - -.ifdef WITH_MODPERL2 -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/mod_perl2.pm:${PORTSDIR}/www/mod_perl2 \ - ${SITE_PERL}/Apache/DBI.pm:${PORTSDIR}/www/p5-Apache-DBI -.endif - -.ifdef WITH_GRAPHVIZ -RUN_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz -.endif - -.ifdef WITH_EXPORT_IMPORT -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \ - ${SITE_PERL}/XML/Twig.pm:${PORTSDIR}/textproc/p5-XML-Twig -.endif - -.ifdef WITH_CONTRIB -PLIST_SUB+= CONTRIB="" -.else -PLIST_SUB+= CONTRIB="@comment " -.endif - -.ifdef WITH_LDAP -RUN_DEPENDS+= ${SITE_PERL}/Net/LDAP.pm:${PORTSDIR}/net/p5-perl-ldap -.endif - -post-patch: - @${PERL} -pi -e "s!(?<=webservergroup_default = ')apache!www!" \ - ${WRKSRC}/checksetup.pl - @${FIND} ${WRKSRC} \( -name "CVS" -or -name ".cvsignore" -or -name "*.orig" \ - -or -name "README.docs" \) | ${XARGS} ${RM} -rf - ${FIND} ${WRKSRC} -type f -exec ${REINPLACE_CMD} -i '' \ - -e 's!/usr/lib/sendmail!/usr/sbin/sendmail!g; s=/usr/bin/perl=${PERL}=g' {} \+ - @${FIND} ${WRKSRC}/docs -type f | \ - ${XARGS} ${REINPLACE_CMD} -i '' -e "s!/var/www/html/bugzilla!${BUGZILLADIR}!" - -do-build: - @${SED} -e "s:%%BUGZILLADIR%%:${BUGZILLADIR}:g; s:%%DOCSDIR%%:${DOCSDIR}:g" \ - ${MASTERDIR}/pkg-message >${PKGMESSAGE} - -do-install: - ${MKDIR} ${BUGZILLADIR} - ${FIND} ${WRKSRC} \! -type d -maxdepth 1 \! -name "UPGRADING*" -exec \ - ${INSTALL_SCRIPT} {} ${BUGZILLADIR} \; - @${MKDIR} ${DATA_DIRS_LIST:S!^!${BUGZILLADIR}/!} -.for D in ${DATA_DIRS_LIST} - ${INSTALL_DATA} ${WRKSRC}/${D}/*.* ${BUGZILLADIR}/${D} -.endfor - ${TAR} -C ${WRKSRC} -cf - Bugzilla template | ${TAR} --unlink -C ${BUGZILLADIR} -xf - -.ifndef NOPORTDOCS -.for D in html images/callouts images pdf txt xml "" - ${MKDIR} ${DOCSDIR}/${D} - ${INSTALL_DATA} ${WRKSRC}/docs/${D}/*.* ${DOCSDIR}/${D}/ -.endfor -.endif -.ifdef WITH_CONTRIB - ${MKDIR} ${BUGZILLADIR}/contrib - @cd ${WRKSRC}/contrib && \ - ${FIND} . -type d -exec ${MKDIR} "${BUGZILLADIR}/contrib/{}" \; && \ - ${FIND} . -type f -exec ${INSTALL_DATA} "{}" "${BUGZILLADIR}/contrib/{}" \; -.endif -.if !defined(BATCH) - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.endif - -.include <bsd.port.post.mk> diff --git a/devel/bugzilla3/distinfo b/devel/bugzilla3/distinfo deleted file mode 100644 index 39a5e4571c67..000000000000 --- a/devel/bugzilla3/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (bugzilla-3.0.5.tar.gz) = 126dd1778f4599ec804582bb57464e2b -SHA256 (bugzilla-3.0.5.tar.gz) = ca6b015930eefe46ebcc08d1734189aef8787b3a1a583486f92d5cb4bdc14ba8 -SIZE (bugzilla-3.0.5.tar.gz) = 2419287 diff --git a/devel/bugzilla3/pkg-descr b/devel/bugzilla3/pkg-descr deleted file mode 100644 index eab95354d1eb..000000000000 --- a/devel/bugzilla3/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -Bugzilla is one example of a class of programs called "Defect Tracking -Systems", or, more commonly, "Bug-Tracking Systems". Defect Tracking -Systems allow individual or groups of developers to keep track of -outstanding bugs in their product effectively. - -Bugzilla has matured immensely, and now boasts many advanced features. -These include: - - * integrated, product-based granular security schema - * inter-bug dependencies and dependency graphing - * advanced reporting capabilities - * a robust, stable RDBMS back-end - * extensive configurability - * a very well-understood and well-thought-out natural bug resolution - protocol - * email, XML, console, and HTTP APIs - * available integration with automated software configuration - management systems, including Perforce and CVS (through the - Bugzilla email interface and checkin/checkout scripts) - * too many more features to list - -WWW: http://www.bugzilla.org/ diff --git a/devel/bugzilla3/pkg-message b/devel/bugzilla3/pkg-message deleted file mode 100644 index bc3951aebbe1..000000000000 --- a/devel/bugzilla3/pkg-message +++ /dev/null @@ -1,24 +0,0 @@ -========================================================================== - Bugzilla has now been installed. To quick setup you have to: - - 1. Create database user who has rights on bugs database manipulation - by following mysql commands (for MySQL 4.0 or later): - - GRANT SELECT, INSERT, UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES, - CREATE TEMPORARY TABLES, DROP, REFERENCES - ON <database>.* TO <dbuser>@<host> - IDENTIFIED BY '<password>'; - FLUSH PRIVILEGES; - - where <database> is a bugs database name; <dbuser> is a bugs database - owner; <host> is a host there bugzilla is being setup; - <password> is a database owner's password; - - 2. Change working directory to %%BUGZILLADIR%% - 3. Run "./checksetup.pl" script as root user - 4. Read output carefully and follow all instructions - - For more complete database setup and post-installation instructions - and security tips/notes please read "Bugzilla Guide" in - %%DOCSDIR%%/html/ (chapter 2: "Installing Bugzilla") -========================================================================== diff --git a/devel/bugzilla3/pkg-plist b/devel/bugzilla3/pkg-plist deleted file mode 100644 index 379cd813f0e0..000000000000 --- a/devel/bugzilla3/pkg-plist +++ /dev/null @@ -1,672 +0,0 @@ -%%PORTDOCS%%%%DOCSDIR%%/html/Bugzilla-Guide.html -%%PORTDOCS%%%%DOCSDIR%%/html/about.html -%%PORTDOCS%%%%DOCSDIR%%/html/administration.html -%%PORTDOCS%%%%DOCSDIR%%/html/attachments.html -%%PORTDOCS%%%%DOCSDIR%%/html/bug_page.html -%%PORTDOCS%%%%DOCSDIR%%/html/bugreports.html -%%PORTDOCS%%%%DOCSDIR%%/html/classifications.html -%%PORTDOCS%%%%DOCSDIR%%/html/cmdline-bugmail.html -%%PORTDOCS%%%%DOCSDIR%%/html/cmdline.html -%%PORTDOCS%%%%DOCSDIR%%/html/components.html -%%PORTDOCS%%%%DOCSDIR%%/html/configuration.html -%%PORTDOCS%%%%DOCSDIR%%/html/conventions.html -%%PORTDOCS%%%%DOCSDIR%%/html/copyright.html -%%PORTDOCS%%%%DOCSDIR%%/html/credits.html -%%PORTDOCS%%%%DOCSDIR%%/html/cust-change-permissions.html -%%PORTDOCS%%%%DOCSDIR%%/html/cust-hooks.html -%%PORTDOCS%%%%DOCSDIR%%/html/cust-skins.html -%%PORTDOCS%%%%DOCSDIR%%/html/cust-templates.html -%%PORTDOCS%%%%DOCSDIR%%/html/customization.html -%%PORTDOCS%%%%DOCSDIR%%/html/custom-fields.html -%%PORTDOCS%%%%DOCSDIR%%/html/disclaimer.html -%%PORTDOCS%%%%DOCSDIR%%/html/edit-values.html -%%PORTDOCS%%%%DOCSDIR%%/html/extraconfig.html -%%PORTDOCS%%%%DOCSDIR%%/html/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/flags-overview.html -%%PORTDOCS%%%%DOCSDIR%%/html/flags.html -%%PORTDOCS%%%%DOCSDIR%%/html/general-advice.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-0.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-1.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-10.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-2.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-3.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-4.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-5.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-6.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-7.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-8.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-9.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl-howto.html -%%PORTDOCS%%%%DOCSDIR%%/html/gfdl.html -%%PORTDOCS%%%%DOCSDIR%%/html/glossary.html -%%PORTDOCS%%%%DOCSDIR%%/html/groups.html -%%PORTDOCS%%%%DOCSDIR%%/html/hintsandtips.html -%%PORTDOCS%%%%DOCSDIR%%/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/html/install-perlmodules-manual.html -%%PORTDOCS%%%%DOCSDIR%%/html/installation.html -%%PORTDOCS%%%%DOCSDIR%%/html/installing-bugzilla.html -%%PORTDOCS%%%%DOCSDIR%%/html/integration.html -%%PORTDOCS%%%%DOCSDIR%%/html/keywords.html -%%PORTDOCS%%%%DOCSDIR%%/html/lifecycle.html -%%PORTDOCS%%%%DOCSDIR%%/html/milestones.html -%%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-download.html -%%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-instructions.html -%%PORTDOCS%%%%DOCSDIR%%/html/modules-manual-optional.html -%%PORTDOCS%%%%DOCSDIR%%/html/multiple-bz-dbs.html -%%PORTDOCS%%%%DOCSDIR%%/html/myaccount.html -%%PORTDOCS%%%%DOCSDIR%%/html/newversions.html -%%PORTDOCS%%%%DOCSDIR%%/html/nonroot.html -%%PORTDOCS%%%%DOCSDIR%%/html/os-specific.html -%%PORTDOCS%%%%DOCSDIR%%/html/parameters.html -%%PORTDOCS%%%%DOCSDIR%%/html/paranoid-security.html -%%PORTDOCS%%%%DOCSDIR%%/html/patches.html -%%PORTDOCS%%%%DOCSDIR%%/html/products.html -%%PORTDOCS%%%%DOCSDIR%%/html/query.html -%%PORTDOCS%%%%DOCSDIR%%/html/quips.html -%%PORTDOCS%%%%DOCSDIR%%/html/reporting.html -%%PORTDOCS%%%%DOCSDIR%%/html/sanitycheck.html -%%PORTDOCS%%%%DOCSDIR%%/html/security-bugzilla.html -%%PORTDOCS%%%%DOCSDIR%%/html/security-mysql.html -%%PORTDOCS%%%%DOCSDIR%%/html/security-os.html -%%PORTDOCS%%%%DOCSDIR%%/html/security-webserver.html -%%PORTDOCS%%%%DOCSDIR%%/html/security.html -%%PORTDOCS%%%%DOCSDIR%%/html/timetracking.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-dbdsponge.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-index.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-passwd-encryption.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-perlmodule.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-relogin-everyone.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-relogin-some.html -%%PORTDOCS%%%%DOCSDIR%%/html/trbl-testserver.html -%%PORTDOCS%%%%DOCSDIR%%/html/troubleshooting.html -%%PORTDOCS%%%%DOCSDIR%%/html/upgrade.html -%%PORTDOCS%%%%DOCSDIR%%/html/useradmin.html -%%PORTDOCS%%%%DOCSDIR%%/html/userpreferences.html -%%PORTDOCS%%%%DOCSDIR%%/html/using-intro.html -%%PORTDOCS%%%%DOCSDIR%%/html/using.html -%%PORTDOCS%%%%DOCSDIR%%/html/versions.html -%%PORTDOCS%%%%DOCSDIR%%/html/voting.html -%%PORTDOCS%%%%DOCSDIR%%/html/whining.html -%%PORTDOCS%%%%DOCSDIR%%/images/bzLifecycle.png -%%PORTDOCS%%%%DOCSDIR%%/images/bzLifecycle.xml -%%PORTDOCS%%%%DOCSDIR%%/images/callouts/1.gif -%%PORTDOCS%%%%DOCSDIR%%/images/callouts/2.gif -%%PORTDOCS%%%%DOCSDIR%%/images/callouts/3.gif -%%PORTDOCS%%%%DOCSDIR%%/images/caution.gif -%%PORTDOCS%%%%DOCSDIR%%/images/note.gif -%%PORTDOCS%%%%DOCSDIR%%/images/tip.gif -%%PORTDOCS%%%%DOCSDIR%%/images/warning.gif -%%PORTDOCS%%%%DOCSDIR%%/makedocs.pl -%%PORTDOCS%%%%DOCSDIR%%/pdf/Bugzilla-Guide.pdf -%%PORTDOCS%%%%DOCSDIR%%/rel_notes.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/Bugzilla-Guide.txt -%%PORTDOCS%%%%DOCSDIR%%/xml/Bugzilla-Guide.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/about.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/administration.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/bugzilla.ent -%%PORTDOCS%%%%DOCSDIR%%/xml/conventions.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/customization.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/faq.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/gfdl.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/glossary.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/index.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/installation.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/integration.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/introduction.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/modules.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/patches.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/requiredsoftware.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/security.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/troubleshooting.xml -%%PORTDOCS%%%%DOCSDIR%%/xml/using.xml -%%BUGZILLADIR%%/Bugzilla/Attachment.pm -%%BUGZILLADIR%%/Bugzilla/Attachment/PatchReader.pm -%%BUGZILLADIR%%/Bugzilla/Auth.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Login.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Verify.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Login/CGI.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Login/Cookie.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Login/Env.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Login/Stack.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Persist/Cookie.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Verify/DB.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Verify/LDAP.pm -%%BUGZILLADIR%%/Bugzilla/Auth/Verify/Stack.pm -%%BUGZILLADIR%%/Bugzilla/Bug.pm -%%BUGZILLADIR%%/Bugzilla/BugMail.pm -%%BUGZILLADIR%%/Bugzilla/CGI.pm -%%BUGZILLADIR%%/Bugzilla/Chart.pm -%%BUGZILLADIR%%/Bugzilla/Classification.pm -%%BUGZILLADIR%%/Bugzilla/Component.pm -%%BUGZILLADIR%%/Bugzilla/Config.pm -%%BUGZILLADIR%%/Bugzilla/Config/Admin.pm -%%BUGZILLADIR%%/Bugzilla/Config/Attachment.pm -%%BUGZILLADIR%%/Bugzilla/Config/Auth.pm -%%BUGZILLADIR%%/Bugzilla/Config/BugChange.pm -%%BUGZILLADIR%%/Bugzilla/Config/BugFields.pm -%%BUGZILLADIR%%/Bugzilla/Config/BugMove.pm -%%BUGZILLADIR%%/Bugzilla/Config/Common.pm -%%BUGZILLADIR%%/Bugzilla/Config/Core.pm -%%BUGZILLADIR%%/Bugzilla/Config/DependencyGraph.pm -%%BUGZILLADIR%%/Bugzilla/Config/GroupSecurity.pm -%%BUGZILLADIR%%/Bugzilla/Config/L10n.pm -%%BUGZILLADIR%%/Bugzilla/Config/LDAP.pm -%%BUGZILLADIR%%/Bugzilla/Config/MTA.pm -%%BUGZILLADIR%%/Bugzilla/Config/PatchViewer.pm -%%BUGZILLADIR%%/Bugzilla/Config/Query.pm -%%BUGZILLADIR%%/Bugzilla/Config/ShadowDB.pm -%%BUGZILLADIR%%/Bugzilla/Config/UserMatch.pm -%%BUGZILLADIR%%/Bugzilla/Constants.pm -%%BUGZILLADIR%%/Bugzilla/DB.pm -%%BUGZILLADIR%%/Bugzilla/DB/Mysql.pm -%%BUGZILLADIR%%/Bugzilla/DB/Pg.pm -%%BUGZILLADIR%%/Bugzilla/DB/Schema.pm -%%BUGZILLADIR%%/Bugzilla/DB/Schema/Mysql.pm -%%BUGZILLADIR%%/Bugzilla/DB/Schema/Pg.pm -%%BUGZILLADIR%%/Bugzilla/Error.pm -%%BUGZILLADIR%%/Bugzilla/Field.pm -%%BUGZILLADIR%%/Bugzilla/Flag.pm -%%BUGZILLADIR%%/Bugzilla/FlagType.pm -%%BUGZILLADIR%%/Bugzilla/Group.pm -%%BUGZILLADIR%%/Bugzilla/Hook.pm -%%BUGZILLADIR%%/Bugzilla/Install.pm -%%BUGZILLADIR%%/Bugzilla/Install/DB.pm -%%BUGZILLADIR%%/Bugzilla/Install/Filesystem.pm -%%BUGZILLADIR%%/Bugzilla/Install/Localconfig.pm -%%BUGZILLADIR%%/Bugzilla/Install/Requirements.pm -%%BUGZILLADIR%%/Bugzilla/Keyword.pm -%%BUGZILLADIR%%/Bugzilla/Mailer.pm -%%BUGZILLADIR%%/Bugzilla/Milestone.pm -%%BUGZILLADIR%%/Bugzilla/Object.pm -%%BUGZILLADIR%%/Bugzilla/Product.pm -%%BUGZILLADIR%%/Bugzilla/Search.pm -%%BUGZILLADIR%%/Bugzilla/Search/Quicksearch.pm -%%BUGZILLADIR%%/Bugzilla/Search/Saved.pm -%%BUGZILLADIR%%/Bugzilla/Series.pm -%%BUGZILLADIR%%/Bugzilla/Template.pm -%%BUGZILLADIR%%/Bugzilla/Template/Plugin/Bugzilla.pm -%%BUGZILLADIR%%/Bugzilla/Template/Plugin/Hook.pm -%%BUGZILLADIR%%/Bugzilla/Template/Plugin/User.pm -%%BUGZILLADIR%%/Bugzilla/Token.pm -%%BUGZILLADIR%%/Bugzilla/User.pm -%%BUGZILLADIR%%/Bugzilla/User/Setting.pm -%%BUGZILLADIR%%/Bugzilla/User/Setting/Skin.pm -%%BUGZILLADIR%%/Bugzilla/Update.pm -%%BUGZILLADIR%%/Bugzilla/Util.pm -%%BUGZILLADIR%%/Bugzilla/Version.pm -%%BUGZILLADIR%%/Bugzilla/WebService.pm -%%BUGZILLADIR%%/Bugzilla/WebService/Bugzilla.pm -%%BUGZILLADIR%%/Bugzilla/WebService/Bug.pm -%%BUGZILLADIR%%/Bugzilla/WebService/Constants.pm -%%BUGZILLADIR%%/Bugzilla/WebService/Product.pm -%%BUGZILLADIR%%/Bugzilla/WebService/User.pm -%%BUGZILLADIR%%/Bugzilla.pm -%%BUGZILLADIR%%/QUICKSTART -%%BUGZILLADIR%%/README -%%BUGZILLADIR%%/attachment.cgi -%%BUGZILLADIR%%/buglist.cgi -%%BUGZILLADIR%%/bugzilla.dtd -%%BUGZILLADIR%%/chart.cgi -%%BUGZILLADIR%%/checksetup.pl -%%BUGZILLADIR%%/colchange.cgi -%%BUGZILLADIR%%/collectstats.pl -%%BUGZILLADIR%%/config.cgi -%%BUGZILLADIR%%/js/attachment.js -%%BUGZILLADIR%%/js/duplicates.js -%%BUGZILLADIR%%/js/expanding-tree.js -%%BUGZILLADIR%%/js/productform.js -%%BUGZILLADIR%%/js/TUI.js -%%BUGZILLADIR%%/skins/standard/IE-fixes.css -%%BUGZILLADIR%%/skins/standard/admin.css -%%BUGZILLADIR%%/skins/standard/buglist.css -%%BUGZILLADIR%%/skins/standard/create_attachment.css -%%BUGZILLADIR%%/skins/standard/dependency-tree.css -%%BUGZILLADIR%%/skins/standard/duplicates.css -%%BUGZILLADIR%%/skins/standard/editusers.css -%%BUGZILLADIR%%/skins/standard/global.css -%%BUGZILLADIR%%/skins/standard/index.css -%%BUGZILLADIR%%/skins/standard/panel.css -%%BUGZILLADIR%%/skins/standard/params.css -%%BUGZILLADIR%%/skins/standard/release-notes.css -%%BUGZILLADIR%%/skins/standard/show_multiple.css -%%BUGZILLADIR%%/skins/standard/summarize-time.css -%%BUGZILLADIR%%/skins/standard/voting.css -%%BUGZILLADIR%%/skins/standard/global/body-back.gif -%%BUGZILLADIR%%/skins/standard/global/header.png -%%BUGZILLADIR%%/skins/standard/index/front.png -%%CONTRIB%%%%BUGZILLADIR%%/contrib/README -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/README -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugdata.txt -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugzilla-submit -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla-submit/bugzilla-submit.xml -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bugzilla_ldapsync.rb -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bzdbcopy.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/bz_webservice_demo.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugcount -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugids -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/buglist -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugs -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/bugslink -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/makequery -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cmdline/query.conf -%%CONTRIB%%%%BUGZILLADIR%%/contrib/cvs-update.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/gnats2bz.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/README -%%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/gnatsparse.py -%%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/magic.py -%%CONTRIB%%%%BUGZILLADIR%%/contrib/gnatsparse/specialuu.py -%%CONTRIB%%%%BUGZILLADIR%%/contrib/jb2bz.py -%%CONTRIB%%%%BUGZILLADIR%%/contrib/merge-users.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/mysqld-watcher.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/recode.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/sendbugmail.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/sendunsentbugmail.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/syncLDAP.pl -%%CONTRIB%%%%BUGZILLADIR%%/contrib/yp_nomail.sh -%%BUGZILLADIR%%/createaccount.cgi -%%BUGZILLADIR%%/describecomponents.cgi -%%BUGZILLADIR%%/describekeywords.cgi -%%BUGZILLADIR%%/duplicates.cgi -%%BUGZILLADIR%%/duplicates.xul -%%BUGZILLADIR%%/editclassifications.cgi -%%BUGZILLADIR%%/editcomponents.cgi -%%BUGZILLADIR%%/editfields.cgi -%%BUGZILLADIR%%/editflagtypes.cgi -%%BUGZILLADIR%%/editgroups.cgi -%%BUGZILLADIR%%/editkeywords.cgi -%%BUGZILLADIR%%/editmilestones.cgi -%%BUGZILLADIR%%/editparams.cgi -%%BUGZILLADIR%%/editproducts.cgi -%%BUGZILLADIR%%/editsettings.cgi -%%BUGZILLADIR%%/editusers.cgi -%%BUGZILLADIR%%/editvalues.cgi -%%BUGZILLADIR%%/editversions.cgi -%%BUGZILLADIR%%/editwhines.cgi -%%BUGZILLADIR%%/email_in.pl -%%BUGZILLADIR%%/enter_bug.cgi -%%BUGZILLADIR%%/images/padlock.png -%%BUGZILLADIR%%/importxml.pl -%%BUGZILLADIR%%/index.cgi -%%BUGZILLADIR%%/long_list.cgi -%%BUGZILLADIR%%/mod_perl.pl -%%BUGZILLADIR%%/page.cgi -%%BUGZILLADIR%%/post_bug.cgi -%%BUGZILLADIR%%/process_bug.cgi -%%BUGZILLADIR%%/productmenu.js -%%BUGZILLADIR%%/query.cgi -%%BUGZILLADIR%%/quips.cgi -%%BUGZILLADIR%%/relogin.cgi -%%BUGZILLADIR%%/report.cgi -%%BUGZILLADIR%%/reports.cgi -%%BUGZILLADIR%%/request.cgi -%%BUGZILLADIR%%/robots.txt -%%BUGZILLADIR%%/runtests.pl -%%BUGZILLADIR%%/sanitycheck.cgi -%%BUGZILLADIR%%/search_plugin.cgi -%%BUGZILLADIR%%/show_activity.cgi -%%BUGZILLADIR%%/show_bug.cgi -%%BUGZILLADIR%%/showattachment.cgi -%%BUGZILLADIR%%/showdependencygraph.cgi -%%BUGZILLADIR%%/showdependencytree.cgi -%%BUGZILLADIR%%/sidebar.cgi -%%BUGZILLADIR%%/summarize_time.cgi -%%BUGZILLADIR%%/template/en/default/account/auth/login.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/auth/login-small.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/cancel-token.txt.tmpl -%%BUGZILLADIR%%/template/en/default/account/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/email/change-new.txt.tmpl -%%BUGZILLADIR%%/template/en/default/account/email/change-old.txt.tmpl -%%BUGZILLADIR%%/template/en/default/account/email/confirm.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/email/confirm-new.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/email/request-new.txt.tmpl -%%BUGZILLADIR%%/template/en/default/account/password/forgotten-password.txt.tmpl -%%BUGZILLADIR%%/template/en/default/account/password/set-forgotten-password.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/account.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/email.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/permissions.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/prefs.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/saved-searches.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/prefs/settings.html.tmpl -%%BUGZILLADIR%%/template/en/default/account/profile-activity.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/confirm-action.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/sudo.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/table.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/add.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/del.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/new.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/reclassify.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/select.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/classifications/update.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/select-product.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/components/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/custom_fields/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/custom_fields/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/custom_fields/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/select-field.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/fieldvalues/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/flag-type/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/flag-type/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/flag-type/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/change.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/groups/remove.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/keywords/rebuild-cache.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/select-product.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/milestones/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/admin.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/attachment.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/auth.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/bugchange.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/bugfields.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/bugmove.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/common.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/core.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/dependencygraph.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/editparams.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/groupsecurity.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/index.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/l10n.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/ldap.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/mta.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/patchviewer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/query.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/shadowdb.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/params/usermatch.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/edit-common.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/list-classifications.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/products/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/settings/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/settings/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/listselectvars.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/search.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/users/userdata.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/deleted.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/select-product.html.tmpl -%%BUGZILLADIR%%/template/en/default/admin/versions/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/choose.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/confirm-delete.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/content-types.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/createformcontents.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/delete_reason.txt.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/diff-file.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/diff-footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/diff-header.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/show-multiple.html.tmpl -%%BUGZILLADIR%%/template/en/default/attachment/updated.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/activity/show.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/activity/table.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/choose.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/comments.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/comment-guided.txt.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/comment.txt.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/confirm-create-dupe.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/create-guided.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/create.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/created.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/make-template.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/create/user-message.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/dependency-graph.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/dependency-tree.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/edit.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/field.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/knob.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/navigate.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/bugmail.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/confirm-duplicate.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/header.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/midair.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/results.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/process/verify-new-product.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/show-multiple.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/show.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/show.xml.tmpl -%%BUGZILLADIR%%/template/en/default/bug/summarize-time.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/time.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/votes/delete-all.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/votes/list-for-bug.html.tmpl -%%BUGZILLADIR%%/template/en/default/bug/votes/list-for-user.html.tmpl -%%BUGZILLADIR%%/template/en/default/config.js.tmpl -%%BUGZILLADIR%%/template/en/default/config.rdf.tmpl -%%BUGZILLADIR%%/template/en/default/email/sudo.txt.tmpl -%%BUGZILLADIR%%/template/en/default/email/newchangedmail.txt.tmpl -%%BUGZILLADIR%%/template/en/default/email/votes-removed.txt.tmpl -%%BUGZILLADIR%%/template/en/default/email/whine.txt.tmpl -%%BUGZILLADIR%%/template/en/default/filterexceptions.pl -%%BUGZILLADIR%%/template/en/default/flag/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/banner.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/choose-classification.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/choose-product.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/code-error.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/common-links.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/confirm-user-match.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/docslinks.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/field-descs.none.tmpl -%%BUGZILLADIR%%/template/en/default/global/footer.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/header.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/help-header.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/help.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/hidden-fields.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/initialize.none.tmpl -%%BUGZILLADIR%%/template/en/default/global/js-products.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/message.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/messages.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/message.txt.tmpl -%%BUGZILLADIR%%/template/en/default/global/per-bug-queries.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/select-menu.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/setting-descs.none.tmpl -%%BUGZILLADIR%%/template/en/default/global/site-navigation.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/tabs.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/textarea.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/useful-links.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/user-error.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/userselect.html.tmpl -%%BUGZILLADIR%%/template/en/default/global/variables.none.tmpl -%%BUGZILLADIR%%/template/en/default/index.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/change-columns.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/edit-multiple.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/list-simple.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.atom.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.csv.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.ics.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.js.tmpl -%%BUGZILLADIR%%/template/en/default/list/list.rdf.tmpl -%%BUGZILLADIR%%/template/en/default/list/quips.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/server-push.html.tmpl -%%BUGZILLADIR%%/template/en/default/list/table.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/bug-writing.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/fields.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/linked.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/linkify.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/quicksearch.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/quicksearchhack.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/release-notes.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/sudo.html.tmpl -%%BUGZILLADIR%%/template/en/default/pages/voting.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/chart.csv.tmpl -%%BUGZILLADIR%%/template/en/default/reports/chart.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/chart.png.tmpl -%%BUGZILLADIR%%/template/en/default/reports/components.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/create-chart.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/duplicates-simple.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/duplicates-table.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/duplicates.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/duplicates.rdf.tmpl -%%BUGZILLADIR%%/template/en/default/reports/edit-series.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/keywords.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/menu.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/old-charts.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-bar.png.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-line.png.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-pie.png.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-simple.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-table.csv.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report-table.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report.csv.tmpl -%%BUGZILLADIR%%/template/en/default/reports/report.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/series-common.html.tmpl -%%BUGZILLADIR%%/template/en/default/reports/series.html.tmpl -%%BUGZILLADIR%%/template/en/default/request/email.txt.tmpl -%%BUGZILLADIR%%/template/en/default/request/queue.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/boolean-charts.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/form.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/knob.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-advanced.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-create-series.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-help.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-plugin.xml.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-report-graph.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-report-select.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-report-table.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/search-specific.html.tmpl -%%BUGZILLADIR%%/template/en/default/search/tabs.html.tmpl -%%BUGZILLADIR%%/template/en/default/sidebar.xul.tmpl -%%BUGZILLADIR%%/template/en/default/welcome-admin.html.tmpl -%%BUGZILLADIR%%/template/en/default/whine/mail.html.tmpl -%%BUGZILLADIR%%/template/en/default/whine/mail.txt.tmpl -%%BUGZILLADIR%%/template/en/default/whine/multipart-mime.txt.tmpl -%%BUGZILLADIR%%/template/en/default/whine/schedule.html.tmpl -%%BUGZILLADIR%%/template/en/extension/filterexceptions.pl -%%BUGZILLADIR%%/testagent.cgi -%%BUGZILLADIR%%/testserver.pl -%%BUGZILLADIR%%/token.cgi -%%BUGZILLADIR%%/userprefs.cgi -%%BUGZILLADIR%%/votes.cgi -%%BUGZILLADIR%%/whine.pl -%%BUGZILLADIR%%/whineatnews.pl -%%BUGZILLADIR%%/xml.cgi -%%BUGZILLADIR%%/xmlrpc.cgi -@dirrm %%BUGZILLADIR%%/template/en/extension -@dirrm %%BUGZILLADIR%%/template/en/default/whine -@dirrm %%BUGZILLADIR%%/template/en/default/search -@dirrm %%BUGZILLADIR%%/template/en/default/request -@dirrm %%BUGZILLADIR%%/template/en/default/reports -@dirrm %%BUGZILLADIR%%/template/en/default/pages -@dirrm %%BUGZILLADIR%%/template/en/default/list -@dirrm %%BUGZILLADIR%%/template/en/default/global -@dirrm %%BUGZILLADIR%%/template/en/default/flag -@dirrm %%BUGZILLADIR%%/template/en/default/email -@dirrm %%BUGZILLADIR%%/template/en/default/bug/votes -@dirrm %%BUGZILLADIR%%/template/en/default/bug/process -@dirrm %%BUGZILLADIR%%/template/en/default/bug/create -@dirrm %%BUGZILLADIR%%/template/en/default/bug/activity -@dirrm %%BUGZILLADIR%%/template/en/default/bug -@dirrm %%BUGZILLADIR%%/template/en/default/attachment -@dirrm %%BUGZILLADIR%%/template/en/default/admin/versions -@dirrm %%BUGZILLADIR%%/template/en/default/admin/users -@dirrm %%BUGZILLADIR%%/template/en/default/admin/settings -@dirrm %%BUGZILLADIR%%/template/en/default/admin/products/groupcontrol -@dirrm %%BUGZILLADIR%%/template/en/default/admin/products -@dirrm %%BUGZILLADIR%%/template/en/default/admin/params -@dirrm %%BUGZILLADIR%%/template/en/default/admin/milestones -@dirrm %%BUGZILLADIR%%/template/en/default/admin/keywords -@dirrm %%BUGZILLADIR%%/template/en/default/admin/groups -@dirrm %%BUGZILLADIR%%/template/en/default/admin/fieldvalues -@dirrm %%BUGZILLADIR%%/template/en/default/admin/flag-type -@dirrm %%BUGZILLADIR%%/template/en/default/admin/custom_fields -@dirrm %%BUGZILLADIR%%/template/en/default/admin/components -@dirrm %%BUGZILLADIR%%/template/en/default/admin/classifications -@dirrm %%BUGZILLADIR%%/template/en/default/admin -@dirrm %%BUGZILLADIR%%/template/en/default/account/prefs -@dirrm %%BUGZILLADIR%%/template/en/default/account/password -@dirrm %%BUGZILLADIR%%/template/en/default/account/email -@dirrm %%BUGZILLADIR%%/template/en/default/account/auth -@dirrm %%BUGZILLADIR%%/template/en/default/account -@dirrm %%BUGZILLADIR%%/template/en/default -@dirrm %%BUGZILLADIR%%/template/en -@dirrmtry %%BUGZILLADIR%%/template -%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/gnatsparse -%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/cmdline -%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib/bugzilla-submit -%%CONTRIB%%@dirrm %%BUGZILLADIR%%/contrib -@dirrm %%BUGZILLADIR%%/Bugzilla/WebService -@dirrm %%BUGZILLADIR%%/Bugzilla/User/Setting -@dirrm %%BUGZILLADIR%%/Bugzilla/User -@dirrm %%BUGZILLADIR%%/Bugzilla/Template/Plugin -@dirrm %%BUGZILLADIR%%/Bugzilla/Template -@dirrm %%BUGZILLADIR%%/Bugzilla/Search -@dirrm %%BUGZILLADIR%%/Bugzilla/Install -@dirrm %%BUGZILLADIR%%/Bugzilla/DB/Schema -@dirrm %%BUGZILLADIR%%/Bugzilla/DB -@dirrm %%BUGZILLADIR%%/Bugzilla/Config -@dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Verify -@dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Persist -@dirrm %%BUGZILLADIR%%/Bugzilla/Auth/Login -@dirrm %%BUGZILLADIR%%/Bugzilla/Auth -@dirrm %%BUGZILLADIR%%/Bugzilla/Attachment -@dirrmtry %%BUGZILLADIR%%/Bugzilla -@dirrmtry %%BUGZILLADIR%%/data -@dirrmtry %%BUGZILLADIR%%/graphs -@dirrm %%BUGZILLADIR%%/images -@dirrm %%BUGZILLADIR%%/js -@dirrm %%BUGZILLADIR%%/skins/standard/index -@dirrm %%BUGZILLADIR%%/skins/standard/global -@dirrm %%BUGZILLADIR%%/skins/standard -@dirrm %%BUGZILLADIR%%/skins -@dirrmtry %%BUGZILLADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/xml -%%PORTDOCS%%@dirrm %%DOCSDIR%%/txt -%%PORTDOCS%%@dirrm %%DOCSDIR%%/pdf -%%PORTDOCS%%@dirrm %%DOCSDIR%%/images/callouts -%%PORTDOCS%%@dirrm %%DOCSDIR%%/images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrmtry www/data diff --git a/devel/bzr/Makefile b/devel/bzr/Makefile deleted file mode 100644 index 7a5f3773c9b9..000000000000 --- a/devel/bzr/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# Ports collection makefile for: bazaar-ng -# Date created: 10 October 2005 -# Whom: Ulf Lilleengen -# -# $FreeBSD$ -# - -PORTNAME= bazaar-ng -PORTVERSION= 1.6.1 -CATEGORIES= devel -MASTER_SITES= http://bazaar-vcs.org/releases/src/ \ - https://launchpad.net/bzr/1.6/${PORTVERSION}/+download/ -DISTNAME= bzr-${PORTVERSION} - -MAINTAINER= fullermd@over-yonder.net -COMMENT= Distributed version control system by Canonical - -OPTIONS= SFTP "Enable Paramiko for SFTP support" on - -USE_PYTHON= 2.4+ -USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= bzr - -MAN1= bzr.1 - -.include <bsd.port.pre.mk> - -# Included in 2.5 -.if (${PYTHON_VERSION} == python2.4) -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/cElementTree.so:${PORTSDIR}/devel/py-celementtree -.endif - -.if !defined(WITHOUT_SFTP) -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/paramiko/__init__.py:${PORTSDIR}/security/py-paramiko -.endif - -post-install: - ${INSTALL_MAN} ${WRKSRC}/bzr.1 ${MAN1PREFIX}/man/man1/ - -test: build - cd ${WRKSRC} && ./bzr selftest - -.include <bsd.port.post.mk> diff --git a/devel/bzr/distinfo b/devel/bzr/distinfo deleted file mode 100644 index d68a6b43d2d2..000000000000 --- a/devel/bzr/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (bzr-1.6.1.tar.gz) = 84b73e5b52c6b58887b02987849cdbc9 -SHA256 (bzr-1.6.1.tar.gz) = 3a8715eeaffafb8b09cf5f072037ee19e48015043e894163c5a2c2de94e316ba -SIZE (bzr-1.6.1.tar.gz) = 3671113 diff --git a/devel/bzr/pkg-descr b/devel/bzr/pkg-descr deleted file mode 100644 index 2c105dd260a5..000000000000 --- a/devel/bzr/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Bazaar-NG is a distributed version control system from Canonical. -Bazaar-NG allows you to keep old versions of files and directories (usually -source code), keep a log of who, when, and why changes occurred, etc., like SVN, -CVS, or RCS. Bazaar-NG is distributed, which gives it significant advantages and -some disadvantages compared to SVN and CVS. The bzr implementation is the next -Bazaar version from Canonical called Bazaar-NG. - -WWW: http://bazaar-vcs.org/ diff --git a/devel/bzr/pkg-plist b/devel/bzr/pkg-plist deleted file mode 100644 index 3bd9eca956ff..000000000000 --- a/devel/bzr/pkg-plist +++ /dev/null @@ -1,1821 +0,0 @@ -bin/bzr -%%PYTHON_SITELIBDIR%%/bzrlib/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/_dirstate_helpers_c.so -%%PYTHON_SITELIBDIR%%/bzrlib/_dirstate_helpers_py.py -%%PYTHON_SITELIBDIR%%/bzrlib/_dirstate_helpers_py.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/_dirstate_helpers_py.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/_knit_load_data_c.so -%%PYTHON_SITELIBDIR%%/bzrlib/_knit_load_data_py.py -%%PYTHON_SITELIBDIR%%/bzrlib/_knit_load_data_py.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/_knit_load_data_py.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/_patiencediff_c.so -%%PYTHON_SITELIBDIR%%/bzrlib/_patiencediff_py.py -%%PYTHON_SITELIBDIR%%/bzrlib/_patiencediff_py.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/_patiencediff_py.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/add.py -%%PYTHON_SITELIBDIR%%/bzrlib/add.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/add.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/annotate.py -%%PYTHON_SITELIBDIR%%/bzrlib/annotate.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/annotate.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/api.py -%%PYTHON_SITELIBDIR%%/bzrlib/api.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/api.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/atomicfile.py -%%PYTHON_SITELIBDIR%%/bzrlib/atomicfile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/atomicfile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_add.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_add.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_add.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_bench.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_bench.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_bench.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_bundle.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_bundle.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_bundle.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_cache_utf8.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_cache_utf8.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_cache_utf8.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_checkout.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_checkout.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_checkout.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_commit.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_commit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_commit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_dirstate.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_dirstate.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_dirstate.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_info.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_info.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_info.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_inventory.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_inventory.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_inventory.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_knit.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_knit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_knit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_log.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_log.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_log.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_osutils.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_osutils.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_osutils.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_pack.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_pack.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_pack.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_rocks.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_rocks.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_rocks.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_sftp.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_sftp.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_sftp.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_startup.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_startup.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_startup.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_status.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_status.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_status.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_transform.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_transform.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_transform.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_workingtree.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_workingtree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_workingtree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_xml.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_xml.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/bench_xml.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/heavily_merged.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/heavily_merged.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/heavily_merged.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/kernel_like.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/kernel_like.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/kernel_like.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/many_commit.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/many_commit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/many_commit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/simple_many_commit.py -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/simple_many_commit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator/simple_many_commit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/bisect_multi.py -%%PYTHON_SITELIBDIR%%/bzrlib/bisect_multi.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/bisect_multi.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/branch.py -%%PYTHON_SITELIBDIR%%/bzrlib/branch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/branch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/branchbuilder.py -%%PYTHON_SITELIBDIR%%/bzrlib/branchbuilder.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/branchbuilder.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/breakin.py -%%PYTHON_SITELIBDIR%%/bzrlib/breakin.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/breakin.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/bugtracker.py -%%PYTHON_SITELIBDIR%%/bzrlib/bugtracker.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/bugtracker.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/builtins.py -%%PYTHON_SITELIBDIR%%/bzrlib/builtins.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/builtins.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/apply_bundle.py -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/apply_bundle.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/apply_bundle.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/bundle_data.py -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/bundle_data.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/bundle_data.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/commands.py -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/commands.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/commands.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/v08.py -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/v08.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/v08.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/v09.py -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/v09.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/v09.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/v4.py -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/v4.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer/v4.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/bzrdir.py -%%PYTHON_SITELIBDIR%%/bzrlib/bzrdir.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/bzrdir.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/cache_utf8.py -%%PYTHON_SITELIBDIR%%/bzrlib/cache_utf8.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/cache_utf8.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/check.py -%%PYTHON_SITELIBDIR%%/bzrlib/check.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/check.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/cmd_version_info.py -%%PYTHON_SITELIBDIR%%/bzrlib/cmd_version_info.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/cmd_version_info.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/commands.py -%%PYTHON_SITELIBDIR%%/bzrlib/commands.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/commands.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/commit.py -%%PYTHON_SITELIBDIR%%/bzrlib/commit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/commit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/config.py -%%PYTHON_SITELIBDIR%%/bzrlib/config.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/config.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/conflicts.py -%%PYTHON_SITELIBDIR%%/bzrlib/conflicts.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/conflicts.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/counted_lock.py -%%PYTHON_SITELIBDIR%%/bzrlib/counted_lock.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/counted_lock.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/debug.py -%%PYTHON_SITELIBDIR%%/bzrlib/debug.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/debug.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/decorators.py -%%PYTHON_SITELIBDIR%%/bzrlib/decorators.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/decorators.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/delta.py -%%PYTHON_SITELIBDIR%%/bzrlib/delta.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/delta.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/deprecated_graph.py -%%PYTHON_SITELIBDIR%%/bzrlib/deprecated_graph.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/deprecated_graph.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/diff.py -%%PYTHON_SITELIBDIR%%/bzrlib/diff.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/diff.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/directory_service.py -%%PYTHON_SITELIBDIR%%/bzrlib/directory_service.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/directory_service.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/dirstate.py -%%PYTHON_SITELIBDIR%%/bzrlib/dirstate.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/dirstate.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/doc/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/doc/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/doc/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/doc/api/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/doc/api/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/doc/api/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/doc/api/branch.txt -%%PYTHON_SITELIBDIR%%/bzrlib/doc/api/transport.txt -%%PYTHON_SITELIBDIR%%/bzrlib/email_message.py -%%PYTHON_SITELIBDIR%%/bzrlib/email_message.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/email_message.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/errors.py -%%PYTHON_SITELIBDIR%%/bzrlib/errors.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/errors.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/export/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/export/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/export/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/export/dir_exporter.py -%%PYTHON_SITELIBDIR%%/bzrlib/export/dir_exporter.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/export/dir_exporter.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/export/tar_exporter.py -%%PYTHON_SITELIBDIR%%/bzrlib/export/tar_exporter.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/export/tar_exporter.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/export/zip_exporter.py -%%PYTHON_SITELIBDIR%%/bzrlib/export/zip_exporter.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/export/zip_exporter.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/externalcommand.py -%%PYTHON_SITELIBDIR%%/bzrlib/externalcommand.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/externalcommand.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/fetch.py -%%PYTHON_SITELIBDIR%%/bzrlib/fetch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/fetch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/generate_ids.py -%%PYTHON_SITELIBDIR%%/bzrlib/generate_ids.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/generate_ids.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/globbing.py -%%PYTHON_SITELIBDIR%%/bzrlib/globbing.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/globbing.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/gpg.py -%%PYTHON_SITELIBDIR%%/bzrlib/gpg.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/gpg.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/graph.py -%%PYTHON_SITELIBDIR%%/bzrlib/graph.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/graph.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/hashcache.py -%%PYTHON_SITELIBDIR%%/bzrlib/hashcache.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/hashcache.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/help.py -%%PYTHON_SITELIBDIR%%/bzrlib/help.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/help.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/help_topics/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/help_topics/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/help_topics/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/help_topics/en/authentication.txt -%%PYTHON_SITELIBDIR%%/bzrlib/help_topics/en/configuration.txt -%%PYTHON_SITELIBDIR%%/bzrlib/help_topics/en/conflicts.txt -%%PYTHON_SITELIBDIR%%/bzrlib/help_topics/en/hooks.txt -%%PYTHON_SITELIBDIR%%/bzrlib/help_topics/en/patterns.txt -%%PYTHON_SITELIBDIR%%/bzrlib/help_topics/en/rules.txt -%%PYTHON_SITELIBDIR%%/bzrlib/hooks.py -%%PYTHON_SITELIBDIR%%/bzrlib/hooks.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/hooks.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/identitymap.py -%%PYTHON_SITELIBDIR%%/bzrlib/identitymap.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/identitymap.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/ignores.py -%%PYTHON_SITELIBDIR%%/bzrlib/ignores.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/ignores.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/index.py -%%PYTHON_SITELIBDIR%%/bzrlib/index.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/index.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/info.py -%%PYTHON_SITELIBDIR%%/bzrlib/info.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/info.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/inspect_for_copy.py -%%PYTHON_SITELIBDIR%%/bzrlib/inspect_for_copy.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/inspect_for_copy.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/inter.py -%%PYTHON_SITELIBDIR%%/bzrlib/inter.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/inter.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/intset.py -%%PYTHON_SITELIBDIR%%/bzrlib/intset.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/intset.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/inventory.py -%%PYTHON_SITELIBDIR%%/bzrlib/inventory.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/inventory.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/iterablefile.py -%%PYTHON_SITELIBDIR%%/bzrlib/iterablefile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/iterablefile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/knit.py -%%PYTHON_SITELIBDIR%%/bzrlib/knit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/knit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/lazy_import.py -%%PYTHON_SITELIBDIR%%/bzrlib/lazy_import.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/lazy_import.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/lazy_regex.py -%%PYTHON_SITELIBDIR%%/bzrlib/lazy_regex.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/lazy_regex.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/lock.py -%%PYTHON_SITELIBDIR%%/bzrlib/lock.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/lock.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/lockable_files.py -%%PYTHON_SITELIBDIR%%/bzrlib/lockable_files.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/lockable_files.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/lockdir.py -%%PYTHON_SITELIBDIR%%/bzrlib/lockdir.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/lockdir.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/log.py -%%PYTHON_SITELIBDIR%%/bzrlib/log.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/log.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/lru_cache.py -%%PYTHON_SITELIBDIR%%/bzrlib/lru_cache.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/lru_cache.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/lsprof.py -%%PYTHON_SITELIBDIR%%/bzrlib/lsprof.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/lsprof.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/mail_client.py -%%PYTHON_SITELIBDIR%%/bzrlib/mail_client.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/mail_client.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/memorytree.py -%%PYTHON_SITELIBDIR%%/bzrlib/memorytree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/memorytree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/merge.py -%%PYTHON_SITELIBDIR%%/bzrlib/merge.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/merge.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/merge3.py -%%PYTHON_SITELIBDIR%%/bzrlib/merge3.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/merge3.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/merge_directive.py -%%PYTHON_SITELIBDIR%%/bzrlib/merge_directive.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/merge_directive.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/missing.py -%%PYTHON_SITELIBDIR%%/bzrlib/missing.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/missing.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/msgeditor.py -%%PYTHON_SITELIBDIR%%/bzrlib/msgeditor.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/msgeditor.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/multiparent.py -%%PYTHON_SITELIBDIR%%/bzrlib/multiparent.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/multiparent.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/mutabletree.py -%%PYTHON_SITELIBDIR%%/bzrlib/mutabletree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/mutabletree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/option.py -%%PYTHON_SITELIBDIR%%/bzrlib/option.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/option.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/osutils.py -%%PYTHON_SITELIBDIR%%/bzrlib/osutils.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/osutils.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/pack.py -%%PYTHON_SITELIBDIR%%/bzrlib/pack.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/pack.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/patch.py -%%PYTHON_SITELIBDIR%%/bzrlib/patch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/patch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/patches.py -%%PYTHON_SITELIBDIR%%/bzrlib/patches.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/patches.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/patiencediff.py -%%PYTHON_SITELIBDIR%%/bzrlib/patiencediff.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/patiencediff.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/plugin.py -%%PYTHON_SITELIBDIR%%/bzrlib/plugin.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/plugin.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/account.py -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/account.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/account.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/lp_directory.py -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/lp_directory.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/lp_directory.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/lp_registration.py -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/lp_registration.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/lp_registration.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_account.py -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_account.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_account.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_lp_directory.py -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_lp_directory.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_lp_directory.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_lp_service.py -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_lp_service.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_lp_service.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_register.py -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_register.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad/test_register.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/progress.py -%%PYTHON_SITELIBDIR%%/bzrlib/progress.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/progress.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/push.py -%%PYTHON_SITELIBDIR%%/bzrlib/push.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/push.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/reconcile.py -%%PYTHON_SITELIBDIR%%/bzrlib/reconcile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/reconcile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/reconfigure.py -%%PYTHON_SITELIBDIR%%/bzrlib/reconfigure.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/reconfigure.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/registry.py -%%PYTHON_SITELIBDIR%%/bzrlib/registry.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/registry.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/remote.py -%%PYTHON_SITELIBDIR%%/bzrlib/remote.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/remote.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/knitrepo.py -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/knitrepo.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/knitrepo.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/pack_repo.py -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/pack_repo.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/pack_repo.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/weaverepo.py -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/weaverepo.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/repofmt/weaverepo.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/repository.py -%%PYTHON_SITELIBDIR%%/bzrlib/repository.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/repository.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/revision.py -%%PYTHON_SITELIBDIR%%/bzrlib/revision.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/revision.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/revisionspec.py -%%PYTHON_SITELIBDIR%%/bzrlib/revisionspec.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/revisionspec.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/revisiontree.py -%%PYTHON_SITELIBDIR%%/bzrlib/revisiontree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/revisiontree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/rio.py -%%PYTHON_SITELIBDIR%%/bzrlib/rio.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/rio.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/rules.py -%%PYTHON_SITELIBDIR%%/bzrlib/rules.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/rules.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/shellcomplete.py -%%PYTHON_SITELIBDIR%%/bzrlib/shellcomplete.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/shellcomplete.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/sign_my_commits.py -%%PYTHON_SITELIBDIR%%/bzrlib/sign_my_commits.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/sign_my_commits.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smart/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/smart/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smart/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smart/branch.py -%%PYTHON_SITELIBDIR%%/bzrlib/smart/branch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smart/branch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smart/bzrdir.py -%%PYTHON_SITELIBDIR%%/bzrlib/smart/bzrdir.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smart/bzrdir.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smart/client.py -%%PYTHON_SITELIBDIR%%/bzrlib/smart/client.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smart/client.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smart/medium.py -%%PYTHON_SITELIBDIR%%/bzrlib/smart/medium.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smart/medium.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smart/message.py -%%PYTHON_SITELIBDIR%%/bzrlib/smart/message.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smart/message.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smart/protocol.py -%%PYTHON_SITELIBDIR%%/bzrlib/smart/protocol.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smart/protocol.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smart/repository.py -%%PYTHON_SITELIBDIR%%/bzrlib/smart/repository.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smart/repository.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smart/request.py -%%PYTHON_SITELIBDIR%%/bzrlib/smart/request.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smart/request.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smart/server.py -%%PYTHON_SITELIBDIR%%/bzrlib/smart/server.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smart/server.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smart/vfs.py -%%PYTHON_SITELIBDIR%%/bzrlib/smart/vfs.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smart/vfs.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/smtp_connection.py -%%PYTHON_SITELIBDIR%%/bzrlib/smtp_connection.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/smtp_connection.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/status.py -%%PYTHON_SITELIBDIR%%/bzrlib/status.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/status.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/store/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/store/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/store/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/store/text.py -%%PYTHON_SITELIBDIR%%/bzrlib/store/text.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/store/text.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/store/versioned/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/store/versioned/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/store/versioned/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/strace.py -%%PYTHON_SITELIBDIR%%/bzrlib/strace.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/strace.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/switch.py -%%PYTHON_SITELIBDIR%%/bzrlib/switch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/switch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/symbol_versioning.py -%%PYTHON_SITELIBDIR%%/bzrlib/symbol_versioning.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/symbol_versioning.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tag.py -%%PYTHON_SITELIBDIR%%/bzrlib/tag.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tag.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/testament.py -%%PYTHON_SITELIBDIR%%/bzrlib/testament.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/testament.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/EncodingAdapter.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/EncodingAdapter.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/EncodingAdapter.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/TestUtil.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/TestUtil.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/TestUtil.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_add.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_add.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_add.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_added.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_added.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_added.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_alias.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_alias.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_alias.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_aliases.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_aliases.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_aliases.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ancestry.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ancestry.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ancestry.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_annotate.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_annotate.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_annotate.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_bound_branches.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_bound_branches.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_bound_branches.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_branch.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_branch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_branch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_break_lock.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_break_lock.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_break_lock.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_breakin.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_breakin.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_breakin.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_bundle_info.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_bundle_info.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_bundle_info.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_cat.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_cat.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_cat.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_cat_revision.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_cat_revision.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_cat_revision.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_check.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_check.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_check.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_checkout.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_checkout.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_checkout.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_command_encoding.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_command_encoding.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_command_encoding.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_commit.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_commit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_commit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_conflicts.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_conflicts.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_conflicts.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_debug.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_debug.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_debug.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_diff.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_diff.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_diff.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_exceptions.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_exceptions.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_exceptions.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_export.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_export.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_export.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_find_merge_base.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_find_merge_base.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_find_merge_base.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_help.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_help.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_help.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_hooks.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_hooks.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_hooks.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ignore.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ignore.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ignore.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ignored.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ignored.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ignored.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_info.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_info.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_info.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_init.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_init.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_init.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_inventory.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_inventory.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_inventory.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_join.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_join.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_join.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_locale.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_locale.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_locale.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_log.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_log.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_log.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_logformats.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_logformats.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_logformats.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ls.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ls.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_ls.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_lsprof.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_lsprof.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_lsprof.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_merge.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_merge.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_merge.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_merge_directive.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_merge_directive.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_merge_directive.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_missing.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_missing.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_missing.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_modified.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_modified.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_modified.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_mv.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_mv.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_mv.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_nick.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_nick.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_nick.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_non_ascii.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_non_ascii.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_non_ascii.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_outside_wt.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_outside_wt.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_outside_wt.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_pack.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_pack.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_pack.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_pull.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_pull.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_pull.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_push.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_push.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_push.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_re_sign.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_re_sign.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_re_sign.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_reconcile.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_reconcile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_reconcile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_reconfigure.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_reconfigure.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_reconfigure.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_remerge.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_remerge.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_remerge.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_remove.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_remove.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_remove.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_remove_tree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_remove_tree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_remove_tree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revert.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revert.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revert.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revision_history.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revision_history.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revision_history.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revision_info.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revision_info.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revision_info.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revno.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revno.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_revno.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_selftest.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_selftest.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_selftest.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_send.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_send.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_send.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_serve.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_serve.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_serve.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_shared_repository.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_shared_repository.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_shared_repository.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_sign_my_commits.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_sign_my_commits.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_sign_my_commits.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_split.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_split.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_split.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_status.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_status.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_status.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_switch.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_switch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_switch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_tags.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_tags.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_tags.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_testament.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_testament.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_testament.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_too_much.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_too_much.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_too_much.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_uncommit.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_uncommit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_uncommit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_unknowns.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_unknowns.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_unknowns.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_update.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_update.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_update.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_upgrade.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_upgrade.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_upgrade.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_version.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_version.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_version.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_version_info.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_version_info.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_version_info.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_versioning.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_versioning.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_versioning.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_whoami.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_whoami.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox/test_whoami.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_bound_sftp.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_bound_sftp.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_bound_sftp.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_branch.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_branch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_branch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_break_lock.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_break_lock.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_break_lock.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_check.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_check.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_check.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_commit.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_commit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_commit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_create_checkout.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_create_checkout.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_create_checkout.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_get_revision_id_to_revno_map.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_get_revision_id_to_revno_map.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_get_revision_id_to_revno_map.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_hooks.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_hooks.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_hooks.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_http.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_http.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_http.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_last_revision_info.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_last_revision_info.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_last_revision_info.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_locking.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_locking.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_locking.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_parent.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_parent.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_parent.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_permissions.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_permissions.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_permissions.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_pull.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_pull.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_pull.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_push.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_push.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_push.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_reconcile.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_reconcile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_reconcile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_revision_history.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_revision_history.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_revision_history.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_revision_id_to_revno.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_revision_id_to_revno.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_revision_id_to_revno.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_sprout.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_sprout.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_sprout.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_stacking.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_stacking.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_stacking.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_tags.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_tags.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_tags.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_uncommit.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_uncommit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_uncommit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_update.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_update.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations/test_update.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/bzrdir_implementations/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/bzrdir_implementations/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/bzrdir_implementations/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/bzrdir_implementations/test_bzrdir.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/bzrdir_implementations/test_bzrdir.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/bzrdir_implementations/test_bzrdir.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_branch.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_branch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_branch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_cat.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_cat.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_cat.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_checkout.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_checkout.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_checkout.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_commit.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_commit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_commit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_init.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_init.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_init.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_init_repository.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_init_repository.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_init_repository.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_merge.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_merge.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_merge.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_missing.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_missing.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_missing.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_pull.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_pull.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_pull.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_push.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_push.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_push.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_update.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_update.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/commands/test_update.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/file_utils.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/file_utils.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/file_utils.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/ftp_server.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/ftp_server.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/ftp_server.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/http_server.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/http_server.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/http_server.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/http_utils.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/http_utils.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/http_utils.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/interrepository_implementations/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/interrepository_implementations/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/interrepository_implementations/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/interrepository_implementations/test_fetch.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/interrepository_implementations/test_fetch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/interrepository_implementations/test_fetch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/interrepository_implementations/test_interrepository.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/interrepository_implementations/test_interrepository.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/interrepository_implementations/test_interrepository.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/intertree_implementations/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/intertree_implementations/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/intertree_implementations/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/intertree_implementations/test_compare.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/intertree_implementations/test_compare.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/intertree_implementations/test_compare.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/inventory_implementations/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/inventory_implementations/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/inventory_implementations/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/inventory_implementations/basics.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/inventory_implementations/basics.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/inventory_implementations/basics.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/lock_helpers.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/lock_helpers.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/lock_helpers.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_lock/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_lock/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_lock/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_lock/test_lock.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_lock/test_lock.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_lock/test_lock.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_lock/test_temporary_write_lock.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_lock/test_temporary_write_lock.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_lock/test_temporary_write_lock.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_add_inventory.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_add_inventory.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_add_inventory.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_add_revision.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_add_revision.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_add_revision.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_add_signature_text.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_add_signature_text.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_add_signature_text.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_all_revision_ids.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_all_revision_ids.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_all_revision_ids.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_break_lock.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_break_lock.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_break_lock.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_check.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_check.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/test_check.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/helpers.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/helpers.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/helpers.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test__generate_text_key_index.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test__generate_text_key_index.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test__generate_text_key_index.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_add_fallback_repository.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_add_fallback_repository.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_add_fallback_repository.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_break_lock.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_break_lock.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_break_lock.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_check.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_check.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_check.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_check_reconcile.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_check_reconcile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_check_reconcile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_commit_builder.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_commit_builder.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_commit_builder.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_fetch.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_fetch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_fetch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_fileid_involved.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_fileid_involved.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_fileid_involved.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_find_text_key_references.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_find_text_key_references.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_find_text_key_references.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_get_parent_map.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_get_parent_map.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_get_parent_map.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_has_revisions.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_has_revisions.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_has_revisions.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_has_same_location.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_has_same_location.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_has_same_location.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_is_write_locked.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_is_write_locked.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_is_write_locked.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_iter_reverse_revision_history.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_iter_reverse_revision_history.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_iter_reverse_revision_history.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_pack.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_pack.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_pack.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_reconcile.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_reconcile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_reconcile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_repository.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_repository.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_repository.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_revision.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_revision.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_revision.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_statistics.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_statistics.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_statistics.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_write_group.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_write_group.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations/test_write_group.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/stub_sftp.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/stub_sftp.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/stub_sftp.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test__dirstate_helpers.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test__dirstate_helpers.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test__dirstate_helpers.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test__walkdirs_win32.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test__walkdirs_win32.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test__walkdirs_win32.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ancestry.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ancestry.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ancestry.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_annotate.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_annotate.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_annotate.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_api.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_api.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_api.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_atomicfile.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_atomicfile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_atomicfile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bad_files.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bad_files.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bad_files.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bisect_multi.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bisect_multi.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bisect_multi.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_branch.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_branch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_branch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_branchbuilder.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_branchbuilder.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_branchbuilder.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bugtracker.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bugtracker.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bugtracker.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bundle.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bundle.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bundle.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bzrdir.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bzrdir.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_bzrdir.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_cache_utf8.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_cache_utf8.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_cache_utf8.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_commands.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_commands.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_commands.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_commit.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_commit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_commit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_commit_merge.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_commit_merge.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_commit_merge.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_config.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_config.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_config.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_conflicts.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_conflicts.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_conflicts.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_counted_lock.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_counted_lock.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_counted_lock.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_decorators.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_decorators.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_decorators.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_delta.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_delta.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_delta.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_deprecated_graph.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_deprecated_graph.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_deprecated_graph.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_diff.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_diff.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_diff.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_directory_service.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_directory_service.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_directory_service.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_dirstate.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_dirstate.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_dirstate.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_email_message.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_email_message.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_email_message.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_errors.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_errors.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_errors.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_extract.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_extract.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_extract.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_fetch.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_fetch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_fetch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ftp_transport.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ftp_transport.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ftp_transport.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_generate_docs.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_generate_docs.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_generate_docs.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_generate_ids.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_generate_ids.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_generate_ids.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_globbing.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_globbing.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_globbing.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_gpg.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_gpg.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_gpg.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_graph.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_graph.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_graph.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_hashcache.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_hashcache.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_hashcache.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_help.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_help.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_help.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_hooks.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_hooks.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_hooks.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_http.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_http.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_http.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_http_implementations.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_http_implementations.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_http_implementations.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_http_response.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_http_response.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_http_response.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_https_ca_bundle.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_https_ca_bundle.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_https_ca_bundle.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_identitymap.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_identitymap.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_identitymap.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ignores.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ignores.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ignores.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_index.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_index.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_index.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_info.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_info.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_info.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_inv.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_inv.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_inv.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_knit.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_knit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_knit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lazy_import.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lazy_import.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lazy_import.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lazy_regex.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lazy_regex.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lazy_regex.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lockable_files.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lockable_files.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lockable_files.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lockdir.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lockdir.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lockdir.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_log.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_log.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_log.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lru_cache.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lru_cache.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lru_cache.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lsprof.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lsprof.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_lsprof.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_mail_client.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_mail_client.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_mail_client.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_memorytree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_memorytree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_memorytree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge3.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge3.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge3.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge_core.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge_core.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge_core.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge_directive.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge_directive.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_merge_directive.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_missing.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_missing.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_missing.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_msgeditor.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_msgeditor.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_msgeditor.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_multiparent.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_multiparent.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_multiparent.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_mutabletree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_mutabletree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_mutabletree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_nonascii.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_nonascii.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_nonascii.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_options.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_options.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_options.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_osutils.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_osutils.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_osutils.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_osutils_encodings.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_osutils_encodings.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_osutils_encodings.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_pack.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_pack.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_pack.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_pack_repository.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_pack_repository.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_pack_repository.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patch.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/diff -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/diff-2 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/diff-3 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/diff-4 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/diff-5 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/diff-6 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/insert_top.patch -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/mod -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/mod-2 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/mod-3 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/mod-4 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/mod-5 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/mod-6 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/orig -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/orig-2 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/orig-3 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/orig-4 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/orig-5 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/orig-6 -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data/patchtext.patch -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_permissions.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_permissions.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_permissions.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_plugins.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_plugins.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_plugins.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_progress.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_progress.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_progress.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_read_bundle.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_read_bundle.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_read_bundle.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_reconcile.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_reconcile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_reconcile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_reconfigure.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_reconfigure.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_reconfigure.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_registry.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_registry.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_registry.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_remote.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_remote.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_remote.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_repository.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_repository.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_repository.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revert.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revert.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revert.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revision.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revision.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revision.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revisionspec.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revisionspec.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revisionspec.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revisiontree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revisiontree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_revisiontree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_rio.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_rio.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_rio.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_rules.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_rules.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_rules.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_sampler.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_sampler.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_sampler.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_selftest.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_selftest.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_selftest.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_setup.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_setup.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_setup.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_sftp_transport.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_sftp_transport.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_sftp_transport.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smart.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smart.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smart.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smart_add.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smart_add.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smart_add.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smart_transport.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smart_transport.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smart_transport.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smtp_connection.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smtp_connection.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_smtp_connection.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_source.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_source.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_source.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ssh_transport.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ssh_transport.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ssh_transport.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_status.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_status.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_status.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_store.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_store.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_store.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_strace.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_strace.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_strace.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_subsume.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_subsume.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_subsume.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_switch.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_switch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_switch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_symbol_versioning.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_symbol_versioning.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_symbol_versioning.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tag.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tag.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tag.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_testament.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_testament.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_testament.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_textfile.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_textfile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_textfile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_textmerge.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_textmerge.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_textmerge.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_timestamp.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_timestamp.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_timestamp.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_trace.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_trace.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_trace.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transactions.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transactions.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transactions.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transform.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transform.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transform.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transport.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transport.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transport.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transport_implementations.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transport_implementations.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_transport_implementations.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_treebuilder.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_treebuilder.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_treebuilder.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tsort.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tsort.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tsort.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tuned_gzip.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tuned_gzip.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_tuned_gzip.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ui.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ui.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_ui.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_uncommit.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_uncommit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_uncommit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_upgrade.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_upgrade.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_upgrade.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_upgrade_stacked.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_upgrade_stacked.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_upgrade_stacked.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_urlutils.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_urlutils.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_urlutils.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_version.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_version.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_version.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_version_info.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_version_info.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_version_info.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_versionedfile.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_versionedfile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_versionedfile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_weave.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_weave.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_weave.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_whitebox.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_whitebox.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_whitebox.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_win32utils.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_win32utils.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_win32utils.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_workingtree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_workingtree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_workingtree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_workingtree_4.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_workingtree_4.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_workingtree_4.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_wsgi.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_wsgi.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_wsgi.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_xml.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_xml.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/test_xml.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/transport_util.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/transport_util.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/transport_util.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_annotate_iter.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_annotate_iter.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_annotate_iter.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_get_file_mtime.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_get_file_mtime.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_get_file_mtime.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_get_root_id.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_get_root_id.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_get_root_id.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_get_symlink_target.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_get_symlink_target.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_get_symlink_target.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_inv.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_inv.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_inv.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_iter_search_rules.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_iter_search_rules.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_iter_search_rules.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_list_files.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_list_files.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_list_files.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_path_content_summary.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_path_content_summary.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_path_content_summary.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_revision_tree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_revision_tree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_revision_tree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_test_trees.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_test_trees.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_test_trees.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_tree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_tree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_tree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_walkdirs.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_walkdirs.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations/test_walkdirs.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/treeshape.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/treeshape.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/treeshape.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_add.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_add.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_add.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_add_reference.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_add_reference.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_add_reference.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_basis_inventory.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_basis_inventory.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_basis_inventory.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_basis_tree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_basis_tree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_basis_tree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_break_lock.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_break_lock.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_break_lock.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_changes_from.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_changes_from.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_changes_from.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_commit.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_commit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_commit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_executable.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_executable.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_executable.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_flush.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_flush.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_flush.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_get_file_mtime.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_get_file_mtime.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_get_file_mtime.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_get_parent_ids.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_get_parent_ids.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_get_parent_ids.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_inv.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_inv.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_inv.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_is_control_filename.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_is_control_filename.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_is_control_filename.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_is_ignored.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_is_ignored.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_is_ignored.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_locking.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_locking.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_locking.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_merge_from_branch.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_merge_from_branch.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_merge_from_branch.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_mkdir.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_mkdir.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_mkdir.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_move.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_move.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_move.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_nested_specifics.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_nested_specifics.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_nested_specifics.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_parents.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_parents.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_parents.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_paths2ids.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_paths2ids.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_paths2ids.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_pull.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_pull.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_pull.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_put_file.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_put_file.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_put_file.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_read_working_inventory.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_read_working_inventory.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_read_working_inventory.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_readonly.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_readonly.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_readonly.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_remove.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_remove.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_remove.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_rename_one.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_rename_one.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_rename_one.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_revision_tree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_revision_tree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_revision_tree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_set_root_id.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_set_root_id.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_set_root_id.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_smart_add.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_smart_add.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_smart_add.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_uncommit.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_uncommit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_uncommit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_unversion.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_unversion.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_unversion.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_walkdirs.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_walkdirs.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_walkdirs.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_workingtree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_workingtree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations/test_workingtree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/textfile.py -%%PYTHON_SITELIBDIR%%/bzrlib/textfile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/textfile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/textinv.py -%%PYTHON_SITELIBDIR%%/bzrlib/textinv.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/textinv.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/textmerge.py -%%PYTHON_SITELIBDIR%%/bzrlib/textmerge.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/textmerge.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/textui.py -%%PYTHON_SITELIBDIR%%/bzrlib/textui.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/textui.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/timestamp.py -%%PYTHON_SITELIBDIR%%/bzrlib/timestamp.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/timestamp.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/trace.py -%%PYTHON_SITELIBDIR%%/bzrlib/trace.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/trace.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transactions.py -%%PYTHON_SITELIBDIR%%/bzrlib/transactions.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transactions.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transform.py -%%PYTHON_SITELIBDIR%%/bzrlib/transform.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transform.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/brokenrename.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/brokenrename.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/brokenrename.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/chroot.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/chroot.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/chroot.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/decorator.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/decorator.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/decorator.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/fakenfs.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/fakenfs.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/fakenfs.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/fakevfat.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/fakevfat.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/fakevfat.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/ftp.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/ftp.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/ftp.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/_pycurl.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/_pycurl.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/_pycurl.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/_urllib.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/_urllib.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/_urllib.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/_urllib2_wrappers.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/_urllib2_wrappers.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/_urllib2_wrappers.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/ca_bundle.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/ca_bundle.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/ca_bundle.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/response.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/response.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/response.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/wsgi.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/wsgi.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/http/wsgi.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/local.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/local.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/local.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/memory.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/memory.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/memory.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/nosmart.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/nosmart.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/nosmart.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/readonly.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/readonly.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/readonly.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/remote.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/remote.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/remote.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/sftp.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/sftp.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/sftp.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/ssh.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/ssh.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/ssh.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/trace.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/trace.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/trace.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/transport/unlistable.py -%%PYTHON_SITELIBDIR%%/bzrlib/transport/unlistable.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/transport/unlistable.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tree.py -%%PYTHON_SITELIBDIR%%/bzrlib/tree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/treebuilder.py -%%PYTHON_SITELIBDIR%%/bzrlib/treebuilder.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/treebuilder.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tsort.py -%%PYTHON_SITELIBDIR%%/bzrlib/tsort.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tsort.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/tuned_gzip.py -%%PYTHON_SITELIBDIR%%/bzrlib/tuned_gzip.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/tuned_gzip.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/ui/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/ui/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/ui/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/ui/text.py -%%PYTHON_SITELIBDIR%%/bzrlib/ui/text.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/ui/text.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/uncommit.py -%%PYTHON_SITELIBDIR%%/bzrlib/uncommit.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/uncommit.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/upgrade.py -%%PYTHON_SITELIBDIR%%/bzrlib/upgrade.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/upgrade.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/urlutils.py -%%PYTHON_SITELIBDIR%%/bzrlib/urlutils.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/urlutils.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/bencode.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/bencode.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/bencode.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/configobj/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/configobj/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/configobj/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/configobj/configobj.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/configobj/configobj.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/configobj/configobj.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/gzip_consumer.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/gzip_consumer.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/gzip_consumer.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/http_client.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/http_client.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/http_client.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/http_manager.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/http_manager.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org/http_manager.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/elementtree/ElementTree.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/elementtree/ElementTree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/elementtree/ElementTree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/elementtree/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/elementtree/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/elementtree/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/simplemapi.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/simplemapi.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/simplemapi.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/tests/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/util/tests/test_bencode.py -%%PYTHON_SITELIBDIR%%/bzrlib/util/tests/test_bencode.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/util/tests/test_bencode.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/version.py -%%PYTHON_SITELIBDIR%%/bzrlib/version.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/version.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/__init__.py -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/__init__.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/__init__.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/format_custom.py -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/format_custom.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/format_custom.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/format_python.py -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/format_python.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/format_python.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/format_rio.py -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/format_rio.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats/format_rio.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/versionedfile.py -%%PYTHON_SITELIBDIR%%/bzrlib/versionedfile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/versionedfile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/weave.py -%%PYTHON_SITELIBDIR%%/bzrlib/weave.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/weave.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/weave_commands.py -%%PYTHON_SITELIBDIR%%/bzrlib/weave_commands.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/weave_commands.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/weavefile.py -%%PYTHON_SITELIBDIR%%/bzrlib/weavefile.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/weavefile.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/win32utils.py -%%PYTHON_SITELIBDIR%%/bzrlib/win32utils.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/win32utils.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/workingtree.py -%%PYTHON_SITELIBDIR%%/bzrlib/workingtree.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/workingtree.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/workingtree_4.py -%%PYTHON_SITELIBDIR%%/bzrlib/workingtree_4.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/workingtree_4.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/xml4.py -%%PYTHON_SITELIBDIR%%/bzrlib/xml4.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/xml4.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/xml5.py -%%PYTHON_SITELIBDIR%%/bzrlib/xml5.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/xml5.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/xml6.py -%%PYTHON_SITELIBDIR%%/bzrlib/xml6.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/xml6.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/xml7.py -%%PYTHON_SITELIBDIR%%/bzrlib/xml7.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/xml7.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/xml8.py -%%PYTHON_SITELIBDIR%%/bzrlib/xml8.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/xml8.pyo -%%PYTHON_SITELIBDIR%%/bzrlib/xml_serializer.py -%%PYTHON_SITELIBDIR%%/bzrlib/xml_serializer.pyc -%%PYTHON_SITELIBDIR%%/bzrlib/xml_serializer.pyo -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/benchmarks/tree_creator -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/benchmarks -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/bundle/serializer -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/bundle -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/doc/api -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/doc -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/export -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/help_topics/en -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/help_topics -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/plugins/launchpad -@dirrmtry %%PYTHON_SITELIBDIR%%/bzrlib/plugins -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/repofmt -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/smart -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/store/versioned -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/store -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/blackbox -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/branch_implementations -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/bzrdir_implementations -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/commands -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/interrepository_implementations -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/intertree_implementations -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/inventory_implementations -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/per_lock -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/per_repository_reference/ -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/repository_implementations -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/test_patches_data -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/tree_implementations -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests/workingtree_implementations -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/tests -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/transport/http -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/transport -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/ui -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/util/configobj -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/util/effbot/org -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/util/effbot -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/util/elementtree -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/util/tests -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/util -@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/version_info_formats -@dirrmtry %%PYTHON_SITELIBDIR%%/bzrlib diff --git a/devel/flex-sdk35/Makefile b/devel/flex-sdk35/Makefile deleted file mode 100644 index 9ba58d3993ec..000000000000 --- a/devel/flex-sdk35/Makefile +++ /dev/null @@ -1,54 +0,0 @@ -# New ports collection makefile for: Adobe Flex SDK -# Date created: 18 Oct 2007 -# Whom: Jun Kuriyama <kuriyama@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= flex-sdk -PORTVERSION= 3.1.0.2710 -CATEGORIES= devel java -MASTER_SITES= http://flexorg.wip3.adobe.com/flexsdk/${PORTVERSION}/ -DISTFILES= flex_sdk_${PORTVERSION}_mpl.zip - -MAINTAINER= kuriyama@FreeBSD.org -COMMENT= Adobe Flex SDK - -RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper - -CONFLICTS= ja-flex-sdk-2.* flex-sdk-2.* -USE_ZIP= YES -USE_JAVA= YES -JAVA_VERSION= 1.4+ -WRKSRC= ${WRKDIR} -SUB_FILES= ${SCRIPTS:C/\$/.sh/g} -NO_BUILD= YES -PLIST_SUB= PORTNAME=${PORTNAME} -SUB_LIST= PORTNAME=${PORTNAME} -SCRIPTS= aasdoc acompc amxmlc asdoc compc copylocale digest \ - fcsh fdb mxmlc optimizer - -.include <bsd.port.pre.mk> - -post-extract: - ${RM} ${WRKSRC}/bin/*.bat ${WRKSRC}/bin/*.exe - -do-install: -.for i in ${SCRIPTS} - ${INSTALL_SCRIPT} ${WRKSRC}/${i}.sh ${PREFIX}/bin/${i} -.endfor - - ${MKDIR} ${JAVAJARDIR}/${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/lib/*.jar ${JAVAJARDIR}/${PORTNAME}/ - ${INSTALL_DATA} ${WRKSRC}/ant/lib/*.jar ${JAVAJARDIR}/${PORTNAME}/ - - ${MKDIR} ${DATADIR}/frameworks - ${CP} -r ${WRKSRC}/frameworks/ ${DATADIR}/frameworks/ - - ${MKDIR} ${DATADIR}/asdoc/templates - ${CP} -r ${WRKSRC}/asdoc/templates/ ${DATADIR}/asdoc/templates/ - - ${MKDIR} ${DOCSDIR} - ${CP} -r ${WRKSRC}/*.htm ${DOCSDIR}/ - -.include <bsd.port.post.mk> diff --git a/devel/flex-sdk35/distinfo b/devel/flex-sdk35/distinfo deleted file mode 100644 index 10d207c07143..000000000000 --- a/devel/flex-sdk35/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (flex_sdk_3.1.0.2710_mpl.zip) = a3a223ded509ff07324e34fbaf5c5dfc -SHA256 (flex_sdk_3.1.0.2710_mpl.zip) = e739d21b319099da250e2312e299a11e1f129c21fd0cf965685d90161cb78201 -SIZE (flex_sdk_3.1.0.2710_mpl.zip) = 24458514 diff --git a/devel/flex-sdk35/files/aasdoc.sh.in b/devel/flex-sdk35/files/aasdoc.sh.in deleted file mode 100644 index 0fce54443b0e..000000000000 --- a/devel/flex-sdk35/files/aasdoc.sh.in +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%" -[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/%%PORTNAME%%" -[ -z "${DATADIR}" ] && DATADIR="%%DATADIR%%" - -VMARGS="-Xmx1024m -Dsun.io.useCanonCaches=false -Xbootclasspath/p:$JAVAJARDIR/xalan.jar" - -java $VMARGS -classpath "$JAVAJARDIR/asdoc.jar" flex2.tools.ASDoc +flexlib="$DATADIR/frameworks" +configname=air $* diff --git a/devel/flex-sdk35/files/acompc.sh.in b/devel/flex-sdk35/files/acompc.sh.in deleted file mode 100644 index a4e4baff9a73..000000000000 --- a/devel/flex-sdk35/files/acompc.sh.in +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%" -[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/%%PORTNAME%%" -[ -z "${DATADIR}" ] && DATADIR="%%DATADIR%%" - -VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false" - -java $VMARGS -jar "$JAVAJARDIR/compc.jar" +flexlib="$DATADIR/frameworks" +configname=air $* diff --git a/devel/flex-sdk35/files/amxmlc.sh.in b/devel/flex-sdk35/files/amxmlc.sh.in deleted file mode 100644 index c1e14d392ec8..000000000000 --- a/devel/flex-sdk35/files/amxmlc.sh.in +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%" -[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/%%PORTNAME%%" -[ -z "${DATADIR}" ] && DATADIR="%%DATADIR%%" - -VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false" - -java $VMARGS -jar "$JAVAJARDIR/mxmlc.jar" +flexlib="$DATADIR/frameworks" +configname=air $* diff --git a/devel/flex-sdk35/files/asdoc.sh.in b/devel/flex-sdk35/files/asdoc.sh.in deleted file mode 100644 index f6e201436aca..000000000000 --- a/devel/flex-sdk35/files/asdoc.sh.in +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%" -[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/%%PORTNAME%%" -[ -z "${DATADIR}" ] && DATADIR="%%DATADIR%%" - -VMARGS="-Xmx1024m -Dsun.io.useCanonCaches=false -Xbootclasspath/p:$JAVAJARDIR/xalan.jar" - -java $VMARGS -classpath "$JAVAJARDIR/asdoc.jar" flex2.tools.ASDoc +flexlib="$DATADIR/frameworks" $* diff --git a/devel/flex-sdk35/files/compc.sh.in b/devel/flex-sdk35/files/compc.sh.in deleted file mode 100644 index 5dedd10b8c0c..000000000000 --- a/devel/flex-sdk35/files/compc.sh.in +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%" -[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/%%PORTNAME%%" -[ -z "${DATADIR}" ] && DATADIR="%%DATADIR%%" - -VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false" - -java $VMARGS -jar "$JAVAJARDIR/compc.jar" +flexlib="$DATADIR/frameworks" $* diff --git a/devel/flex-sdk35/files/copylocale.sh.in b/devel/flex-sdk35/files/copylocale.sh.in deleted file mode 100644 index be8587867643..000000000000 --- a/devel/flex-sdk35/files/copylocale.sh.in +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%" -[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/%%PORTNAME%%" -[ -z "${DATADIR}" ] && DATADIR="%%DATADIR%%" - -VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false" - -java $VMARGS "-Dapplication.home=$FLEX_HOME" -jar "$JAVAJARDIR/copylocale.jar" $* diff --git a/devel/flex-sdk35/files/digest.sh.in b/devel/flex-sdk35/files/digest.sh.in deleted file mode 100644 index 1dfa9761d270..000000000000 --- a/devel/flex-sdk35/files/digest.sh.in +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%" -[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/%%PORTNAME%%" -[ -z "${DATADIR}" ] && DATADIR="%%DATADIR%%" - -VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false" - -java $VMARGS -jar "$JAVAJARDIR/digest.jar" +flexlib="$DATADIR/frameworks" $* diff --git a/devel/flex-sdk35/files/fcsh.sh.in b/devel/flex-sdk35/files/fcsh.sh.in deleted file mode 100644 index bdebb9463c83..000000000000 --- a/devel/flex-sdk35/files/fcsh.sh.in +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%" -[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/%%PORTNAME%%" -[ -z "${DATADIR}" ] && DATADIR="%%DATADIR%%" - -VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false" - -java $VMARGS "-Dapplication.home=$FLEX_HOME" -jar "$JAVAJARDIR/fcsh.jar" $* diff --git a/devel/flex-sdk35/files/fdb.sh.in b/devel/flex-sdk35/files/fdb.sh.in deleted file mode 100644 index 98b344ccba51..000000000000 --- a/devel/flex-sdk35/files/fdb.sh.in +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%" -[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/%%PORTNAME%%" -[ -z "${DATADIR}" ] && DATADIR="%%DATADIR%%" - -VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false" - -java $VMARGS "-Dapplication.home=$FLEX_HOME" -jar "$JAVAJARDIR/fdb.jar" $* diff --git a/devel/flex-sdk35/files/mxmlc.sh.in b/devel/flex-sdk35/files/mxmlc.sh.in deleted file mode 100644 index d96d6145e920..000000000000 --- a/devel/flex-sdk35/files/mxmlc.sh.in +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%" -[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/%%PORTNAME%%" -[ -z "${DATADIR}" ] && DATADIR="%%DATADIR%%" - -VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false" - -java $VMARGS -jar "$JAVAJARDIR/mxmlc.jar" +flexlib="$DATADIR/frameworks" $* diff --git a/devel/flex-sdk35/files/optimizer.sh.in b/devel/flex-sdk35/files/optimizer.sh.in deleted file mode 100644 index 5fe969162ae4..000000000000 --- a/devel/flex-sdk35/files/optimizer.sh.in +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -[ -z "${PREFIX}" ] && PREFIX="%%PREFIX%%" -[ -z "${JAVAJARDIR}" ] && JAVAJARDIR="%%JAVAJARDIR%%/%%PORTNAME%%" -[ -z "${DATADIR}" ] && DATADIR="%%DATADIR%%" - -VMARGS="-Xmx384m -Dsun.io.useCanonCaches=false" - -java $VMARGS -jar "$JAVAJARDIR/optimizer.jar" +flexlib="$DATADIR/frameworks" $* diff --git a/devel/flex-sdk35/pkg-descr b/devel/flex-sdk35/pkg-descr deleted file mode 100644 index 4b51e9f26a64..000000000000 --- a/devel/flex-sdk35/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -The Flex SDK provides a highly productive, open source framework for -building and maintaining expressive web applications that deploy -consistently on all major browsers, desktops and operating systems. - -It provides a modern, standards-based language and programming model -that supports common design patterns suitable for developers from many -backgrounds. - -Flex applications run in the ubiquitous Adobe Flash Player and Adobe -AIR. - -WWW: http://opensource.adobe.com/wiki/display/flexsdk/Flex+3 diff --git a/devel/flex-sdk35/pkg-plist b/devel/flex-sdk35/pkg-plist deleted file mode 100644 index f69b3082a11e..000000000000 --- a/devel/flex-sdk35/pkg-plist +++ /dev/null @@ -1,1336 +0,0 @@ -bin/aasdoc -bin/acompc -bin/amxmlc -bin/asdoc -bin/compc -bin/copylocale -bin/digest -bin/fcsh -bin/fdb -bin/mxmlc -bin/optimizer -%%JAVAJARDIR%%/%%PORTNAME%%/asc.jar -%%JAVAJARDIR%%/%%PORTNAME%%/asdoc.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-awt-util.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-bridge.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-css.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-dom.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-ext.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-gvt.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-parser.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-script.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-svg-dom.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-svggen.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-transcoder.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-util.jar -%%JAVAJARDIR%%/%%PORTNAME%%/batik-xml.jar -%%JAVAJARDIR%%/%%PORTNAME%%/commons-collections.jar -%%JAVAJARDIR%%/%%PORTNAME%%/commons-discovery.jar -%%JAVAJARDIR%%/%%PORTNAME%%/commons-logging.jar -%%JAVAJARDIR%%/%%PORTNAME%%/compc.jar -%%JAVAJARDIR%%/%%PORTNAME%%/copylocale.jar -%%JAVAJARDIR%%/%%PORTNAME%%/digest.jar -%%JAVAJARDIR%%/%%PORTNAME%%/fcsh.jar -%%JAVAJARDIR%%/%%PORTNAME%%/fdb.jar -%%JAVAJARDIR%%/%%PORTNAME%%/flex-compiler-oem.jar -%%JAVAJARDIR%%/%%PORTNAME%%/flex-messaging-common.jar -%%JAVAJARDIR%%/%%PORTNAME%%/flexTasks.jar -%%JAVAJARDIR%%/%%PORTNAME%%/mm-velocity-1.4.jar -%%JAVAJARDIR%%/%%PORTNAME%%/mxmlc.jar -%%JAVAJARDIR%%/%%PORTNAME%%/optimizer.jar -%%JAVAJARDIR%%/%%PORTNAME%%/swfutils.jar -%%JAVAJARDIR%%/%%PORTNAME%%/xalan.jar -%%JAVAJARDIR%%/%%PORTNAME%%/xercesImpl.jar -%%JAVAJARDIR%%/%%PORTNAME%%/xercesPatch.jar -%%JAVAJARDIR%%/%%PORTNAME%%/xmlParserAPIs.jar -%%DATADIR%%/asdoc/templates/ASDoc_Config_Base.xml -%%DATADIR%%/asdoc/templates/Overviews_Base.xml -%%DATADIR%%/asdoc/templates/all-classes.xsl -%%DATADIR%%/asdoc/templates/all-index.xsl -%%DATADIR%%/asdoc/templates/appendixes.xsl -%%DATADIR%%/asdoc/templates/asDocHelper -%%DATADIR%%/asdoc/templates/asDocHelper.exe -%%DATADIR%%/asdoc/templates/asDocHelper.linux -%%DATADIR%%/asdoc/templates/asdoc-util.xsl -%%DATADIR%%/asdoc/templates/asdoc.js -%%DATADIR%%/asdoc/templates/class-files.xsl -%%DATADIR%%/asdoc/templates/class-list.xsl -%%DATADIR%%/asdoc/templates/class-parts.xsl -%%DATADIR%%/asdoc/templates/class-summary.xsl -%%DATADIR%%/asdoc/templates/cookies.js -%%DATADIR%%/asdoc/templates/images/collapsed.gif -%%DATADIR%%/asdoc/templates/images/detailHeaderRule.jpg -%%DATADIR%%/asdoc/templates/images/detailSectionHeader.jpg -%%DATADIR%%/asdoc/templates/images/expanded.gif -%%DATADIR%%/asdoc/templates/images/inherit-arrow.gif -%%DATADIR%%/asdoc/templates/images/inheritedSummary.gif -%%DATADIR%%/asdoc/templates/images/logo.jpg -%%DATADIR%%/asdoc/templates/images/titleTableBottom.jpg -%%DATADIR%%/asdoc/templates/images/titleTableMiddle.jpg -%%DATADIR%%/asdoc/templates/images/titleTableTop.jpg -%%DATADIR%%/asdoc/templates/index-list.html -%%DATADIR%%/asdoc/templates/index.html -%%DATADIR%%/asdoc/templates/mxml-tags.html -%%DATADIR%%/asdoc/templates/package-detail.xsl -%%DATADIR%%/asdoc/templates/package-frame.html -%%DATADIR%%/asdoc/templates/package-list.xsl -%%DATADIR%%/asdoc/templates/package-summary.xsl -%%DATADIR%%/asdoc/templates/package.xsl -%%DATADIR%%/asdoc/templates/print.css -%%DATADIR%%/asdoc/templates/processHTML.xsl -%%DATADIR%%/asdoc/templates/style.css -%%DATADIR%%/asdoc/templates/title-bar.html -%%DATADIR%%/frameworks/air-config.xml -%%DATADIR%%/frameworks/build.xml -%%DATADIR%%/frameworks/flash-unicode-table.xml -%%DATADIR%%/frameworks/flex-config.xml -%%DATADIR%%/frameworks/javascript/fabridge/license.txt -%%DATADIR%%/frameworks/javascript/fabridge/samples/EmptySwf.as -%%DATADIR%%/frameworks/javascript/fabridge/samples/EmptySwf.swf -%%DATADIR%%/frameworks/javascript/fabridge/samples/FABridgeSample.html -%%DATADIR%%/frameworks/javascript/fabridge/samples/FABridgeSample.js -%%DATADIR%%/frameworks/javascript/fabridge/samples/SimpleSample.html -%%DATADIR%%/frameworks/javascript/fabridge/samples/app.mxml -%%DATADIR%%/frameworks/javascript/fabridge/samples/app.swf -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/AC_OETags.js -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/SourceIndex.xml -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/SourceStyles.css -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/SourceTree.html -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/SourceTree.swf -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/fabridge.zip -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/index.html -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/playerProductInstall.swf -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source/EmptySwf.as.html -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source/FABridgeSample.html -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source/FABridgeSample.js -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source/SimpleSample.html -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source/app.mxml.html -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source/fabridge/actionscript/bridge/FABridge.as.html -%%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source/fabridge/javascript/FABridge.js -%%DATADIR%%/frameworks/javascript/fabridge/src/bridge/FABridge.as -%%DATADIR%%/frameworks/javascript/fabridge/src/bridge/FABridge.js -%%DATADIR%%/frameworks/libs/air/AIRIntrospector.js -%%DATADIR%%/frameworks/libs/air/AIRLocalizer.js -%%DATADIR%%/frameworks/libs/air/AIRMenuBuilder.js -%%DATADIR%%/frameworks/libs/air/AIRSourceViewer.js -%%DATADIR%%/frameworks/libs/air/airframework.swc -%%DATADIR%%/frameworks/libs/air/airglobal.swc -%%DATADIR%%/frameworks/libs/air/servicemonitor.swc -%%DATADIR%%/frameworks/libs/flex.swc -%%DATADIR%%/frameworks/libs/framework.swc -%%DATADIR%%/frameworks/libs/player/10/playerglobal.swc -%%DATADIR%%/frameworks/libs/player/9/playerglobal.swc -%%DATADIR%%/frameworks/libs/rpc.swc -%%DATADIR%%/frameworks/libs/utilities.swc -%%DATADIR%%/frameworks/localFonts.ser -%%DATADIR%%/frameworks/locale/en_US/airframework_rb.swc -%%DATADIR%%/frameworks/locale/en_US/framework_rb.swc -%%DATADIR%%/frameworks/locale/en_US/rpc_rb.swc -%%DATADIR%%/frameworks/macFonts.ser -%%DATADIR%%/frameworks/mxml-manifest.xml -%%DATADIR%%/frameworks/projects/airframework/assets/win_restore_up.png -%%DATADIR%%/frameworks/projects/airframework/assets/ComputerIcon.ai -%%DATADIR%%/frameworks/projects/airframework/assets/ComputerIcon.swf -%%DATADIR%%/frameworks/projects/airframework/assets/gripper_up.png -%%DATADIR%%/frameworks/projects/airframework/assets/mac_close_down.png -%%DATADIR%%/frameworks/projects/airframework/assets/mac_close_over.png -%%DATADIR%%/frameworks/projects/airframework/assets/mac_close_up.png -%%DATADIR%%/frameworks/projects/airframework/assets/mac_max_dis.png -%%DATADIR%%/frameworks/projects/airframework/assets/mac_max_down.png -%%DATADIR%%/frameworks/projects/airframework/assets/mac_max_over.png -%%DATADIR%%/frameworks/projects/airframework/assets/mac_max_up.png -%%DATADIR%%/frameworks/projects/airframework/assets/mac_min_dis.png -%%DATADIR%%/frameworks/projects/airframework/assets/mac_min_down.png -%%DATADIR%%/frameworks/projects/airframework/assets/mac_min_over.png -%%DATADIR%%/frameworks/projects/airframework/assets/mac_min_up.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_close_down.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_close_over.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_close_up.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_max_dis.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_max_down.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_max_over.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_max_up.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_min_dis.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_min_down.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_min_over.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_min_up.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_restore_down.png -%%DATADIR%%/frameworks/projects/airframework/assets/win_restore_over.png -%%DATADIR%%/frameworks/projects/airframework/assets/Assets.swf -%%DATADIR%%/frameworks/projects/airframework/bundles/en_US/src/aircontrols.properties -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/fileSystemClasses/FileSystemControlHelper.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/fileSystemClasses/FileSystemTreeDataDescriptor.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemComboBox.png -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemDataGrid.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemDataGrid.png -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemEnumerationMode.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemHistoryButton.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemHistoryButton.png -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemList.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemComboBox.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemSizeDisplayMode.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemTree.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemTree.png -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FlexNativeMenu.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/HTML.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/HTML.png -%%DATADIR%%/frameworks/projects/airframework/src/mx/controls/FileSystemList.png -%%DATADIR%%/frameworks/projects/airframework/src/mx/core/windowClasses/StatusBar.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/core/windowClasses/TitleBar.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/core/IWindow.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/core/Version.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/core/FlexHTMLLoader.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/core/Window.png -%%DATADIR%%/frameworks/projects/airframework/src/mx/core/WindowedApplication.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/core/Window.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/events/AIREvent.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/events/FileEvent.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/events/FlexNativeMenuEvent.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/events/FlexNativeWindowBoundsEvent.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/managers/NativeDragManagerImpl.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/managers/WindowedSystemChildrenList.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/managers/WindowedSystemManager.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/managers/WindowedSystemRawChildrenList.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/skins/halo/WindowCloseButtonSkin.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/skins/halo/StatusBarBackgroundSkin.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/skins/halo/WindowBackground.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/skins/halo/ApplicationTitleBarBackgroundSkin.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/skins/halo/WindowMaximizeButtonSkin.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/skins/halo/WindowMinimizeButtonSkin.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/skins/halo/WindowRestoreButtonSkin.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/utils/DirectoryEnumeration.as -%%DATADIR%%/frameworks/projects/airframework/src/mx/utils/DirectoryEnumerationMode.as -%%DATADIR%%/frameworks/projects/airframework/src/AIRFrameworkClasses.as -%%DATADIR%%/frameworks/projects/airframework/bundles.properties -%%DATADIR%%/frameworks/projects/airframework/defaults.css -%%DATADIR%%/frameworks/projects/airframework/manifest.xml -%%DATADIR%%/frameworks/projects/flex/src/FlexClasses.as -%%DATADIR%%/frameworks/projects/flex/bundles.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/validators.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/collections.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/containers.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/controls.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/core.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/effects.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/formatters.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/logging.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/skins.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/states.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/styles.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/utils.properties -%%DATADIR%%/frameworks/projects/framework/bundles/en_US/src/SharedResources.properties -%%DATADIR%%/frameworks/projects/framework/assets/Assets.fla -%%DATADIR%%/frameworks/projects/framework/assets/Assets.swf -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/errors/InvalidCategoryError.as -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/errors/InvalidFilterError.as -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/targets/LineFormattedTarget.as -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/targets/MiniDebugTarget.as -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/targets/TraceTarget.as -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/ILoggingTarget.as -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/Log.as -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/AbstractTarget.as -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/LogEventLevel.as -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/LogLogger.as -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/LogEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/logging/ILogger.as -%%DATADIR%%/frameworks/projects/framework/src/mx/automation/Automation.as -%%DATADIR%%/frameworks/projects/framework/src/mx/automation/IAutomationObject.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/utils/BindingUtils.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/utils/ChangeWatcher.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/BindabilityInfo.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/Binding.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/BindingManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/EvalBindingResponder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/FunctionReturnWatcher.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/IBindingClient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/IWatcherSetupUtil.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/ArrayElementWatcher.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/RepeatableBinding.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/RepeaterComponentWatcher.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/RepeaterItemWatcher.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/StaticPropertyWatcher.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/Watcher.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/XMLWatcher.as -%%DATADIR%%/frameworks/projects/framework/src/mx/binding/PropertyWatcher.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/errors/CollectionViewError.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/errors/CursorError.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/errors/ItemPendingError.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/errors/SortError.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/ArrayList.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/CursorBookmark.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/ICollectionView.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/IList.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/IViewCursor.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/ItemResponder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/ArrayCollection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/ListCollectionView.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/ModifiedCollectionView.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/Sort.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/SortField.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/XMLListAdapter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/XMLListCollection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/collections/ItemWrapper.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/accordionClasses/AccordionHeader.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/dividedBoxClasses/BoxDivider.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/errors/ConstraintError.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/gridClasses/GridColumnInfo.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/gridClasses/GridRowInfo.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/utilityClasses/Layout.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/utilityClasses/BoxLayout.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/utilityClasses/CanvasLayout.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintColumn.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/utilityClasses/ConstraintRow.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/utilityClasses/Flex.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/utilityClasses/FlexChildInfo.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/utilityClasses/IConstraintLayout.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/utilityClasses/ApplicationLayout.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Box.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/BoxDirection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Canvas.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Canvas.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/ControlBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/ControlBar.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/DividedBox.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/DividedBox.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/DividerState.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Form.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Form.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/FormHeading.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/FormHeading.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/FormItem.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/FormItem.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Grid.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Grid.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/FormItemDirection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/GridItem.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/GridRow.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/HBox.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/HBox.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/HDividedBox.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/HDividedBox.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Panel.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Panel.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/TabNavigator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/TabNavigator.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Tile.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Tile.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/TileDirection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/TitleWindow.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/TitleWindow.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/VBox.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/VBox.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/VDividedBox.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/VDividedBox.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Accordion.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/ViewStack.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Box.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/ViewStack.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/Accordion.png -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/ApplicationControlBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/containers/ApplicationControlBar.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/richTextEditorClasses/ToolBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/assets/icon_style_underline.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/assets/icon_align_center.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/assets/icon_align_justify.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/assets/icon_align_left.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/assets/icon_align_right.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/assets/icon_bullet.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/assets/icon_style_bold.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/assets/icon_style_italic.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/assets/divider_vertical.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/buttonBarClasses/ButtonBarButton.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/colorPickerClasses/SwatchPanel.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/colorPickerClasses/SwatchPanel.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/colorPickerClasses/WebSafePalette.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridLockedRowContentHolder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridColumn.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridDragProxy.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridHeader.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridHeaderBase.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridItemRenderer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridListData.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridBase.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/TileListItemRenderer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/IDropInListItemRenderer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/IListItemRenderer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/ListBase.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseContentHolder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseFindPending.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseSeekPending.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseSelectionData.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseSelectionDataPending.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseSelectionPending.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/ListData.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/ListItemDragProxy.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/ListItemRenderer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/ListRowInfo.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/TileBase.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/TileBaseDirection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses/BaseListData.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/menuClasses/IMenuBarItemRenderer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/menuClasses/IMenuDataDescriptor.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/menuClasses/IMenuItemRenderer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/menuClasses/MenuBarItem.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/menuClasses/MenuItemRenderer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/menuClasses/MenuListData.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/alertClasses/AlertForm.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/scrollClasses/ScrollBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/scrollClasses/ScrollBarDirection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/scrollClasses/ScrollThumb.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/sliderClasses/Slider.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/sliderClasses/SliderDataTip.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/sliderClasses/SliderDirection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/sliderClasses/SliderLabel.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/sliderClasses/SliderThumb.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/tabBarClasses/Tab.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/textClasses/TextRange.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/treeClasses/ITreeDataDescriptor.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/treeClasses/HierarchicalCollectionView.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/treeClasses/HierarchicalViewCursor.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/treeClasses/DefaultDataDescriptor.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/treeClasses/ITreeDataDescriptor2.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/treeClasses/TreeItemRenderer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/treeClasses/TreeListData.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/videoClasses/VideoPlayerQueuedCommand.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/videoClasses/INCManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/videoClasses/NCManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/videoClasses/NCManagerConnectClient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/videoClasses/NCManagerReconnectClient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/videoClasses/VideoError.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/videoClasses/VideoPlayer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/videoClasses/CuePointManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ComboBox.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/DataGrid.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/DataGrid.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/DateChooser.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/DateChooser.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/DateField.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/HRule.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/DateField.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/FormItemLabel.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/HRule.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/HScrollBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/HScrollBar.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/HSlider.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/HSlider.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/HorizontalList.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/HorizontalList.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/IFlexContextMenu.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Image.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Image.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Label.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Label.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/LinkBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/LinkBar.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/LinkButton.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/LinkButton.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/List.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/List.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Menu.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Menu.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/MenuBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/MenuBar.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/NavBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/NumericStepper.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/NumericStepper.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/PopUpButton.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/PopUpMenuButton.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ProgressBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ProgressBar.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ProgressBarDirection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ProgressBarLabelPlacement.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ProgressBarMode.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/RadioButton.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/RadioButton.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/RadioButtonGroup.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/RadioButtonGroup.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/RichTextEditor.mxml -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/RichTextEditor.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/SWFLoader.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Alert.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Spacer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Spacer.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/TabBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/TabBar.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Text.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Text.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/TextArea.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/TextArea.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/TextInput.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/TextInput.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/TileList.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/TileList.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ToggleButtonBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ToolTip.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Tree.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Tree.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/VRule.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/VRule.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/VScrollBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/VScrollBar.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/VSlider.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/VSlider.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/VideoDisplay.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/SWFLoader.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/VideoDisplay.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Button.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/Button.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ButtonBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ButtonBar.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ButtonLabelPlacement.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ButtonPhase.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/CalendarLayout.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/CheckBox.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/CheckBox.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ColorPicker.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ColorPicker.png -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ComboBase.as -%%DATADIR%%/frameworks/projects/framework/src/mx/controls/ComboBox.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/mx_internal.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ApplicationGlobals.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/BitmapAsset.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ButtonAsset.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ByteArrayAsset.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ClassFactory.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ComponentDescriptor.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/Container.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ContainerCreationPolicy.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ContainerGlobals.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ContainerLayout.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ContainerRawChildrenList.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ContextualClassFactory.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/CrossDomainRSLItem.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/DeferredInstanceFromClass.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/DeferredInstanceFromFunction.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/DragSource.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/EdgeMetrics.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/EmbeddedFont.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/EmbeddedFontRegistry.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/EventPriority.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/FlexApplicationBootstrap.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/FlexBitmap.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/FlexLoader.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/FlexModuleFactory.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/FlexMovieClip.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/FlexShape.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/FlexSimpleButton.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/FlexSprite.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/FlexTextField.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/FlexVersion.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/FontAsset.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IBorder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IButton.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IChildList.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IFactory.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IConstraintClient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IContainer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IDataRenderer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IDeferredInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IDeferredInstantiationUIComponent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IDisplayObjectContainerInterface.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IDisplayObjectInterface.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IEmbeddedFontRegistry.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IFlexAsset.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IFlexDisplayObject.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IFlexModule.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IFlexModuleFactory.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IFontContextComponent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IIMESupport.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IInteractiveObjectInterface.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IToolTip.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IInvalidating.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IMXMLObject.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IProgrammaticSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IPropertyChangeNotifier.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IRawChildrenContainer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IRectangularBorder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IRepeater.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IRepeaterClient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ISpriteInterface.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IStateClient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ITextFieldFactory.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ITextFieldInterface.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IUIComponent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IUID.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/IUITextField.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/LayoutContainer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/MXMLObjectAdapter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/MovieClipAsset.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/MovieClipLoaderAsset.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/RSLItem.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/RSLListLoader.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/Repeater.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/Repeater.png -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ResourceModuleRSLItem.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ScrollControlBase.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/ScrollPolicy.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/SimpleApplication.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/Singleton.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/SoundAsset.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/SpriteAsset.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/TextFieldAsset.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/TextFieldFactory.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/UIComponent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/UIComponentCachePolicy.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/UIComponentDescriptor.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/UIComponentGlobals.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/UITextField.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/UITextFormat.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/Version.as -%%DATADIR%%/frameworks/projects/framework/src/mx/core/Application.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/easing_readme.txt -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/Bounce.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/Circular.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/Cubic.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/Elastic.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/Exponential.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/Linear.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/Quadratic.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/Quartic.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/Quintic.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/Sine.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing/Back.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/WipeUpInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/AddChildActionInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/AddItemActionInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/AddRemoveEffectTargetFilter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/AnimatePropertyInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/BlurInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/CompositeEffectInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/DissolveInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/FadeInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/GlowInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/HideShowEffectTargetFilter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/IrisInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/MaskEffectInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/MoveInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/ParallelInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/ZoomInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/PauseInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/PropertyChanges.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/RemoveChildActionInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/RemoveItemActionInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/ResizeInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/RotateInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/SequenceInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/SetPropertyActionInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/SetStyleActionInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/SoundEffectInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/TweenEffectInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/UnconstrainItemActionInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/WipeDownInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/WipeLeftInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/WipeRightInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses/ActionEffectInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/AnimateProperty.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Blur.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/CompositeEffect.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/DefaultListEffect.mxml -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/DefaultTileListEffect.mxml -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Dissolve.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Effect.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/EffectInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/EffectManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/EffectTargetFilter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Fade.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Glow.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/IAbstractEffect.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/IEffect.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/IEffectInstance.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/IEffectTargetHost.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Iris.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/MaskEffect.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Move.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Parallel.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Pause.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/RemoveChildAction.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/RemoveItemAction.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Resize.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Rotate.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Sequence.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/SetPropertyAction.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/SetStyleAction.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/SoundEffect.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Tween.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/TweenEffect.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/UnconstrainItemAction.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/WipeDown.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/AddChildAction.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/WipeRight.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/WipeUp.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/Zoom.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/WipeLeft.as -%%DATADIR%%/frameworks/projects/framework/src/mx/effects/AddItemAction.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/VideoEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/CalendarLayoutChangeEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ChildExistenceChangedEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/CloseEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/CollectionEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/CollectionEventKind.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ColorPickerEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/CuePointEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/DataGridEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/DataGridEventReason.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/DateChooserEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/DateChooserEventDetail.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/DividerEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/DragEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/DropdownEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/DynamicEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/RSLEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/EffectEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/FlexEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/FlexMouseEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/IndexChangedEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ItemClickEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ListEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ListEventReason.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/MenuEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/MetadataEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ModuleEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/MoveEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/NumericStepperEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/PropertyChangeEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/PropertyChangeEventKind.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ResizeEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ResourceEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ScrollEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/SliderEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/StyleEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ScrollEventDetail.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ScrollEventDirection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/SliderEventClickTarget.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/StateChangeEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ToolTipEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/TreeEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/TweenEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/ValidationResultEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/events/BrowserChangeEvent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/formatters/ZipCodeFormatter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/formatters/DateBase.as -%%DATADIR%%/frameworks/projects/framework/src/mx/formatters/DateFormatter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/formatters/Formatter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/formatters/NumberBase.as -%%DATADIR%%/frameworks/projects/framework/src/mx/formatters/NumberBaseRoundType.as -%%DATADIR%%/frameworks/projects/framework/src/mx/formatters/NumberFormatter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/formatters/PhoneFormatter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/formatters/StringFormatter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/formatters/SwitchSymbolFormatter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/formatters/CurrencyFormatter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/codec/IImageEncoder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/codec/JPEGEncoder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/codec/PNGEncoder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/GradientBase.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/GradientEntry.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/IFill.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/IStroke.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/ImageSnapshot.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/LinearGradient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/BitmapFill.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/RadialGradient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/RectangularDropShadow.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/RoundedRectangle.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/SolidColor.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/Stroke.as -%%DATADIR%%/frameworks/projects/framework/src/mx/graphics/LinearGradientStroke.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/object_proxy.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/Base64Decoder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/Base64Encoder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/ColorUtil.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/DescribeTypeCache.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/DescribeTypeCacheRecord.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/DisplayUtil.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/GraphicsUtil.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/IXMLNotifiable.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/LoaderUtil.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/NameUtil.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/ObjectProxy.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/ObjectUtil.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/SHA256.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/StringUtil.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/UIDUtil.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/XMLNotifier.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/XMLUtil.as -%%DATADIR%%/frameworks/projects/framework/src/mx/utils/ArrayUtil.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/UIComponentAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/AccordionHeaderAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/AlertAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/ButtonAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/CheckBoxAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/ColorPickerAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/ComboBaseAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/ComboBoxAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/DataGridAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/DateChooserAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/DateFieldAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/LinkButtonAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/ListAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/ListBaseAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/MenuAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/MenuBarAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/PanelAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/RadioButtonAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/SliderAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/TabBarAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/TitleWindowAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/TreeAccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/accessibility/AccImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/messaging/config/LoaderConfig.as -%%DATADIR%%/frameworks/projects/framework/src/mx/modules/IModuleInfo.as -%%DATADIR%%/frameworks/projects/framework/src/mx/modules/Module.as -%%DATADIR%%/frameworks/projects/framework/src/mx/modules/ModuleBase.as -%%DATADIR%%/frameworks/projects/framework/src/mx/modules/ModuleLoader.as -%%DATADIR%%/frameworks/projects/framework/src/mx/modules/ModuleManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/modules/ModuleManagerGlobals.as -%%DATADIR%%/frameworks/projects/framework/src/mx/preloaders/DownloadProgressBar.as -%%DATADIR%%/frameworks/projects/framework/src/mx/preloaders/IPreloaderDisplay.as -%%DATADIR%%/frameworks/projects/framework/src/mx/preloaders/Preloader.as -%%DATADIR%%/frameworks/projects/framework/src/mx/printing/FlexPrintJob.as -%%DATADIR%%/frameworks/projects/framework/src/mx/printing/FlexPrintJobScaleType.as -%%DATADIR%%/frameworks/projects/framework/src/mx/printing/PrintDataGrid.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/ZipCodeValidatorDomainType.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/CreditCardValidatorCardType.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/CurrencyValidator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/CurrencyValidatorAlignSymbol.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/DateValidator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/EmailValidator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/IValidatorListener.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/NumberValidator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/PhoneNumberValidator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/RegExpValidationResult.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/RegExpValidator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/SocialSecurityValidator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/StringValidator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/ValidationResult.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/Validator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/ZipCodeValidator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/validators/CreditCardValidator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/resources/IResourceManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/resources/IResourceModule.as -%%DATADIR%%/frameworks/projects/framework/src/mx/resources/Locale.as -%%DATADIR%%/frameworks/projects/framework/src/mx/resources/LocaleSorter.as -%%DATADIR%%/frameworks/projects/framework/src/mx/resources/ResourceBundle.as -%%DATADIR%%/frameworks/projects/framework/src/mx/resources/ResourceManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/resources/IResourceBundle.as -%%DATADIR%%/frameworks/projects/framework/src/mx/rpc/IResponder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ToolTipBorder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ActivatorSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ApplicationBackground.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/BrokenImageBorderSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/BusyCursor.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ButtonBarButtonSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ButtonSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/CheckBoxIcon.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ColorPickerSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ComboBoxArrowSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/DataGridColumnDropIndicator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/DataGridColumnResizeSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/DataGridHeaderBackgroundSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/DataGridHeaderSeparator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/DataGridSortArrow.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/DateChooserIndicator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/DateChooserMonthArrowSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/DateChooserYearArrowSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/DefaultDragImage.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/HaloBorder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/HaloColors.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/HaloFocusRect.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/LinkButtonSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/LinkSeparator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ListDropIndicator.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/MenuBarBackgroundSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/NumericStepperDownSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/NumericStepperUpSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/PanelSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/PopUpButtonSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/PopUpIcon.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/PopUpMenuIcon.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ProgressBarSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ProgressIndeterminateSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ProgressMaskSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ProgressTrackSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/RadioButtonIcon.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ScrollArrowSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ScrollThumbSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/ScrollTrackSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/SliderHighlightSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/SliderThumbSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/SliderTrackSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/SwatchPanelSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/SwatchSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/TabSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/TitleBackground.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo/AccordionHeaderSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/Border.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/ProgrammaticSkin.as -%%DATADIR%%/frameworks/projects/framework/src/mx/skins/RectangularBorder.as -%%DATADIR%%/frameworks/projects/framework/src/mx/states/Transition.as -%%DATADIR%%/frameworks/projects/framework/src/mx/states/IOverride.as -%%DATADIR%%/frameworks/projects/framework/src/mx/states/RemoveChild.as -%%DATADIR%%/frameworks/projects/framework/src/mx/states/SetEventHandler.as -%%DATADIR%%/frameworks/projects/framework/src/mx/states/SetProperty.as -%%DATADIR%%/frameworks/projects/framework/src/mx/states/SetStyle.as -%%DATADIR%%/frameworks/projects/framework/src/mx/states/State.as -%%DATADIR%%/frameworks/projects/framework/src/mx/states/AddChild.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/TextStyles.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/AnchorStyles.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/BarColorStyle.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/BorderStyles.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/FillStyles.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/FocusStyles.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/GapStyles.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/IconColorStyles.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/LeadingStyle.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/ModalTransparencyStyles.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/PaddingStyles.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/SelectedFillColorsStyle.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/SkinStyles.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata/AlignStyles.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/ISimpleStyleClient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/IStyleClient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/IStyleManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/IStyleManager2.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/CSSStyleDeclaration.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/StyleManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/StyleManagerImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/StyleProxy.as -%%DATADIR%%/frameworks/projects/framework/src/mx/styles/IStyleModule.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/dragClasses/DragProxy.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/layoutClasses/PriorityQueue.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/CursorManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/CursorManagerImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/CursorManagerPriority.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/DragManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/DragManagerImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/FocusManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/HistoryManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/HistoryManagerGlobals.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/HistoryManagerImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IBrowserManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/ICursorManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IDragManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IFocusManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IFocusManagerComplexComponent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/PopUpManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IFocusManagerComponent.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IFocusManagerContainer.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IFocusManagerGroup.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IHistoryManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IHistoryManagerClient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/ILayoutManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/ILayoutManagerClient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IPopUpManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/ISystemManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IToolTipManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IToolTipManager2.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/IToolTipManagerClient.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/InitLocalConnection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/LayoutManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/MainLocalConnection.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/PopUpManagerChildList.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/SystemChildrenList.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/BrowserManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/SystemManagerGlobals.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/SystemRawChildrenList.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/ToolTipManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/ToolTipManagerImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/SystemManager.as -%%DATADIR%%/frameworks/projects/framework/src/mx/managers/BrowserManagerImpl.as -%%DATADIR%%/frameworks/projects/framework/src/mx/readme.txt -%%DATADIR%%/frameworks/projects/framework/src/FrameworkClasses.as -%%DATADIR%%/frameworks/projects/framework/defaults-2.0.0.css -%%DATADIR%%/frameworks/projects/framework/defaults-2.0.1.css -%%DATADIR%%/frameworks/projects/framework/defaults.css -%%DATADIR%%/frameworks/projects/framework/manifest.xml -%%DATADIR%%/frameworks/projects/framework/bundles.properties -%%DATADIR%%/frameworks/projects/haloclassic/assets/Assets.fla -%%DATADIR%%/frameworks/projects/haloclassic/assets/Assets.swf -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ToolTipBorder.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ActivatorSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/BusyCursor.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ButtonBarButtonSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ButtonSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/CheckBoxIcon.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ColorPickerSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ComboBoxArrowSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/DataGridColumnResizeSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/DataGridHeaderSeparator.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/DataGridSortArrow.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/DateChooserBackArrowSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/DateChooserDownArrowSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/DateChooserFwdArrowSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/DateChooserUpArrowSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/RedX.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/DefaultDragImage.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/HaloColors.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/HaloFocusRect.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/HaloRectBorder.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/LinkButtonSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/LinkSeparator.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ListDropIndicator.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/MenuBarBackgroundSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/NumericStepperDownSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/NumericStepperUpSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/PopUpButtonSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/PopUpIcon.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/PopUpIconTypeB.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ProgressBarSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ProgressIndeterminateSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ProgressTrackSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/RadioButtonIcon.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ScrollArrowDownSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ScrollArrowUpSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ScrollThumbSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/ScrollTrackSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/SliderHighlightSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/SliderThumbSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/SliderTrackSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/SliderVThumbSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/SwatchPanelSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/SwatchSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/TabSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/TitleBackground.as -%%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic/AccordionHeaderSkin.as -%%DATADIR%%/frameworks/projects/haloclassic/src/mx/core/Version.as -%%DATADIR%%/frameworks/projects/haloclassic/src/HaloClassicClasses.as -%%DATADIR%%/frameworks/projects/haloclassic/bundles.properties -%%DATADIR%%/frameworks/projects/haloclassic/defaults.css -%%DATADIR%%/frameworks/projects/rpc/bundles/en_US/src/messaging.properties -%%DATADIR%%/frameworks/projects/rpc/bundles/en_US/src/rpc.properties -%%DATADIR%%/frameworks/projects/rpc/bundles/en_US/build.properties -%%DATADIR%%/frameworks/projects/rpc/bundles/en_US/build.xml -%%DATADIR%%/frameworks/projects/rpc/src/mx/core/Version.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/amfx/AMFXContext.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/amfx/AMFXDecoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/amfx/AMFXEncoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/amfx/AMFXHeader.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/amfx/AMFXResult.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/DirectHTTPChannel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/HTTPChannel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/NetConnectionChannel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/PollingChannel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/SecureAMFChannel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/AMFChannel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/SecureStreamingAMFChannel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/SecureStreamingHTTPChannel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/StreamingAMFChannel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/StreamingConnectionHandler.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/StreamingHTTPChannel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/SecureHTTPChannel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/config/ConfigMap.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/config/ServerConfig.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/errors/ChannelError.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/errors/InvalidChannelError.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/errors/InvalidDestinationError.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/errors/MessageSerializationError.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/errors/MessagingError.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/errors/NoChannelAvailableError.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/events/ChannelEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/events/ChannelFaultEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/events/MessageAckEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/events/MessageEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/events/MessageFaultEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/events/MessagePersisterEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/management/ObjectName.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/management/MBeanAttributeInfo.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/management/MBeanConstructorInfo.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/management/MBeanFeatureInfo.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/management/MBeanInfo.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/management/MBeanOperationInfo.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/management/MBeanParameterInfo.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/management/ObjectInstance.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/management/Attribute.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/SOAPMessage.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/AcknowledgeMessage.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/AcknowledgeMessageExt.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/AsyncMessage.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/AsyncMessageExt.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/CommandMessage.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/CommandMessageExt.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/ErrorMessage.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/HTTPRequestMessage.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/IMessage.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/ISmallMessage.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/MessagePerformanceInfo.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/MessagePerformanceUtils.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/RemotingMessage.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages/AbstractMessage.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/ConsumerMessageDispatcher.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/FlexClient.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/MessageAgent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/MessageResponder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/AbstractConsumer.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/MultiTopicProducer.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/Producer.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/SubscriptionInfo.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/MultiTopicConsumer.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/AbstractMessageStore.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/AbstractProducer.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/Channel.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/ChannelSet.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/Consumer.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/remoting/mxml/Operation.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/remoting/mxml/RemoteObject.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/remoting/Operation.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/remoting/RemoteObject.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/http/mxml/HTTPService.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/http/HTTPService.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/mxml/Concurrency.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/mxml/IMXMLSupport.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/events/XMLLoadEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/events/FaultEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/events/HeaderEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/events/InvokeEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/events/ResultEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/events/SchemaLoadEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/events/WSDLLoadEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/events/AbstractEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/mxml/Operation.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/mxml/WebService.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/types/MapType.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/types/DataSetType.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/types/ICustomSOAPType.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/types/ApacheDocumentType.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/types/QueryBeanType.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/types/RowSetType.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/types/SOAPArrayType.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/ISOAPEncoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/LoadEvent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/Operation.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/SOAPConstants.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/SOAPDecoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/AbstractWebService.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/SOAPFault.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/SOAPHeader.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/SOAPResult.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/WebService.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/SOAPEncoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/ISOAPDecoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLService.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLBinding.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLConstants.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLEncoding.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLLoader.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLMessage.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLMessagePart.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLOperation.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLPort.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDLPortType.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl/WSDL.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/XMLLoader.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/ContentProxy.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/DecodingContext.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/IXMLDecoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/IXMLEncoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/IXMLSchemaInstance.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/NamespaceUtil.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/QualifiedResourceManager.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/Schema.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/SchemaConstants.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/SchemaDatatypes.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/SchemaLoader.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/SchemaManager.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/SchemaMarshaller.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/SchemaProcessor.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/SchemaTypeRegistry.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/SimpleContent.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/TypeIterator.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/SimpleXMLDecoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/SimpleXMLEncoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/XMLDecoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/XMLEncoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml/ComplexString.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/AsyncToken.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/Fault.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/AbstractInvoker.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/Responder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/IResponder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/AbstractOperation.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/AbstractService.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/ActiveCalls.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/AsyncDispatcher.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/AsyncRequest.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/AsyncResponder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/utils/HashUtil.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/utils/HexDecoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/utils/HexEncoder.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/utils/Translator.as -%%DATADIR%%/frameworks/projects/rpc/src/mx/utils/URLUtil.as -%%DATADIR%%/frameworks/projects/rpc/src/RPCClasses.as -%%DATADIR%%/frameworks/projects/rpc/bundles.properties -%%DATADIR%%/frameworks/projects/rpc/manifest.xml -%%DATADIR%%/frameworks/projects/utilities/src/com/adobe/viewsource/ViewSource.as -%%DATADIR%%/frameworks/projects/utilities/src/UtilitiesClasses.as -%%DATADIR%%/frameworks/projects/utilities/bundles.properties -%%DATADIR%%/frameworks/themes/AeonGraphical/src/AeonGraphical.fla -%%DATADIR%%/frameworks/themes/AeonGraphical/AeonGraphical.css -%%DATADIR%%/frameworks/themes/AeonGraphical/AeonGraphical.swf -%%DATADIR%%/frameworks/themes/HaloClassic/haloclassic.swc -%%DATADIR%%/frameworks/themes/Ice/Ice.css -%%DATADIR%%/frameworks/themes/Institutional/Institutional.css -%%DATADIR%%/frameworks/themes/Smoke/Smoke.css -%%DATADIR%%/frameworks/themes/Smoke/smoke_bg.jpg -%%DATADIR%%/frameworks/themes/Wooden/Wooden.css -%%DATADIR%%/frameworks/themes/Wooden/wooden_bg.jpg -%%DATADIR%%/frameworks/rsls/framework_3.1.0.2710.swf -%%DATADIR%%/frameworks/rsls/rpc_3.1.0.2710.swf -%%DATADIR%%/frameworks/winFonts.ser -%%DOCSDIR%%/license-mpl.htm -%%DOCSDIR%%/readme.htm -@dirrm %%DOCSDIR%% -@dirrm %%DATADIR%%/frameworks/projects/utilities/src/com/adobe/viewsource -@dirrm %%DATADIR%%/frameworks/projects/utilities/src/com/adobe -@dirrm %%DATADIR%%/frameworks/projects/utilities/src/com -@dirrm %%DATADIR%%/frameworks/projects/utilities/src -@dirrm %%DATADIR%%/frameworks/projects/utilities -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/utils -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/xml -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/wsdl -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/types -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap/mxml -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/soap -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/remoting/mxml -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/remoting -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/mxml -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/http/mxml -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/http -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc/events -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/rpc -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/messages -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/management -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/events -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/errors -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/config -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels/amfx -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/messaging/channels -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/messaging -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx/core -@dirrm %%DATADIR%%/frameworks/projects/rpc/src/mx -@dirrm %%DATADIR%%/frameworks/projects/rpc/src -@dirrm %%DATADIR%%/frameworks/projects/rpc/bundles/en_US/src -@dirrm %%DATADIR%%/frameworks/projects/rpc/bundles/en_US -@dirrm %%DATADIR%%/frameworks/projects/rpc/bundles -@dirrm %%DATADIR%%/frameworks/projects/rpc -@dirrm %%DATADIR%%/frameworks/projects/haloclassic/src/mx/core -@dirrm %%DATADIR%%/frameworks/projects/haloclassic/src/mx -@dirrm %%DATADIR%%/frameworks/projects/haloclassic/src/haloclassic -@dirrm %%DATADIR%%/frameworks/projects/haloclassic/src -@dirrm %%DATADIR%%/frameworks/projects/haloclassic/assets -@dirrm %%DATADIR%%/frameworks/projects/haloclassic -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/validators -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/utils -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/styles/metadata -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/styles -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/states -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/skins/halo -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/skins -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/rpc -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/resources -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/printing -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/preloaders -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/modules -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/messaging/config -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/messaging -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/managers/layoutClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/managers/dragClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/managers -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/logging/targets -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/logging/errors -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/logging -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/graphics/codec -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/graphics -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/formatters -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/events -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/effects/effectClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/effects/easing -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/effects -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/core -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/videoClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/treeClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/textClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/tabBarClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/sliderClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/scrollClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/richTextEditorClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/menuClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/listClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/dataGridClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/colorPickerClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/buttonBarClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/assets -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls/alertClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/controls -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/containers/utilityClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/containers/gridClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/containers/errors -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/containers/dividedBoxClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/containers/accordionClasses -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/containers -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/collections/errors -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/collections -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/binding/utils -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/binding -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/automation -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx/accessibility -@dirrm %%DATADIR%%/frameworks/projects/framework/src/mx -@dirrm %%DATADIR%%/frameworks/projects/framework/src -@dirrm %%DATADIR%%/frameworks/projects/framework/bundles/en_US/src -@dirrm %%DATADIR%%/frameworks/projects/framework/bundles/en_US -@dirrm %%DATADIR%%/frameworks/projects/framework/bundles -@dirrm %%DATADIR%%/frameworks/projects/framework/assets -@dirrm %%DATADIR%%/frameworks/projects/framework -@dirrm %%DATADIR%%/frameworks/projects/flex/src -@dirrm %%DATADIR%%/frameworks/projects/flex -@dirrm %%DATADIR%%/frameworks/projects/airframework/src/mx/utils -@dirrm %%DATADIR%%/frameworks/projects/airframework/src/mx/skins/halo -@dirrm %%DATADIR%%/frameworks/projects/airframework/src/mx/skins -@dirrm %%DATADIR%%/frameworks/projects/airframework/src/mx/managers -@dirrm %%DATADIR%%/frameworks/projects/airframework/src/mx/events -@dirrm %%DATADIR%%/frameworks/projects/airframework/src/mx/core/windowClasses -@dirrm %%DATADIR%%/frameworks/projects/airframework/src/mx/core -@dirrm %%DATADIR%%/frameworks/projects/airframework/src/mx/controls/fileSystemClasses -@dirrm %%DATADIR%%/frameworks/projects/airframework/src/mx/controls -@dirrm %%DATADIR%%/frameworks/projects/airframework/src/mx -@dirrm %%DATADIR%%/frameworks/projects/airframework/src -@dirrm %%DATADIR%%/frameworks/projects/airframework/bundles/en_US/src -@dirrm %%DATADIR%%/frameworks/projects/airframework/bundles/en_US -@dirrm %%DATADIR%%/frameworks/projects/airframework/bundles -@dirrm %%DATADIR%%/frameworks/projects/airframework/assets -@dirrm %%DATADIR%%/frameworks/projects/airframework -@dirrm %%DATADIR%%/frameworks/projects -@dirrm %%DATADIR%%/frameworks/rsls -@dirrm %%DATADIR%%/frameworks/themes/Wooden -@dirrm %%DATADIR%%/frameworks/themes/Smoke -@dirrm %%DATADIR%%/frameworks/themes/Institutional -@dirrm %%DATADIR%%/frameworks/themes/Ice -@dirrm %%DATADIR%%/frameworks/themes/HaloClassic -@dirrm %%DATADIR%%/frameworks/themes/AeonGraphical/src -@dirrm %%DATADIR%%/frameworks/themes/AeonGraphical -@dirrm %%DATADIR%%/frameworks/themes -@dirrm %%DATADIR%%/frameworks/locale/en_US -@dirrm %%DATADIR%%/frameworks/locale -@dirrm %%DATADIR%%/frameworks/libs/player/10 -@dirrm %%DATADIR%%/frameworks/libs/player/9 -@dirrm %%DATADIR%%/frameworks/libs/player -@dirrm %%DATADIR%%/frameworks/libs/air -@dirrm %%DATADIR%%/frameworks/libs -@dirrm %%DATADIR%%/frameworks/javascript/fabridge/src/bridge -@dirrm %%DATADIR%%/frameworks/javascript/fabridge/src -@dirrm %%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source/fabridge/javascript -@dirrm %%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source/fabridge/actionscript/bridge -@dirrm %%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source/fabridge/actionscript -@dirrm %%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source/fabridge -@dirrm %%DATADIR%%/frameworks/javascript/fabridge/samples/srcview/source -@dirrm %%DATADIR%%/frameworks/javascript/fabridge/samples/srcview -@dirrm %%DATADIR%%/frameworks/javascript/fabridge/samples -@dirrm %%DATADIR%%/frameworks/javascript/fabridge -@dirrm %%DATADIR%%/frameworks/javascript -@dirrm %%DATADIR%%/frameworks -@dirrm %%DATADIR%%/asdoc/templates/images -@dirrm %%DATADIR%%/asdoc/templates -@dirrm %%DATADIR%%/asdoc -@dirrm %%DATADIR%% -@dirrm %%JAVAJARDIR%%/%%PORTNAME%% diff --git a/devel/flyspray/Makefile b/devel/flyspray/Makefile index 5942e2fb3210..5dd9dab0c9b1 100644 --- a/devel/flyspray/Makefile +++ b/devel/flyspray/Makefile @@ -6,23 +6,24 @@ # PORTNAME= flyspray -PORTVERSION= 0.9.9.2 -PORTREVISION= 1 +PORTVERSION= 0.9.9.5.1 CATEGORIES= devel www -MASTER_SITES= http://www.flyspray.org/ +MASTER_SITES= http://twinkie.foobar.org/files/ MAINTAINER= nick@foobar.org COMMENT= A simple, easy-to-use web based bug tracking system RUN_DEPENDS= ${LOCALBASE}/share/adodb/adodb.inc.php:${PORTSDIR}/databases/adodb -USE_PHP= mysql pcre session zlib xml gd +USE_PHP= pcre session zlib xml gd USE_BZIP2= yes WANT_PHP_WEB= yes NO_BUILD= yes -OPTIONS= GRAPHVIZ "Install Graphviz for task dependency graphs" off +OPTIONS= GRAPHVIZ "Install Graphviz for task dependency graphs" off \ + MYSQLI "Use MySQLi Database Interface" on \ + MYSQL "Use MySQL Database Interface" off FLYSPRAYDIR= ${PREFIX}/share/${PORTNAME} ATTACHMENTDIR= ${DBDIR}/${PORTNAME}/attachments @@ -52,6 +53,14 @@ SUB_LIST+= FLYSPRAYDIR="${FLYSPRAYDIR}" \ .include <bsd.port.pre.mk> +.if !defined(WITHOUT_MYSQL) +USE_PHP+= mysql +.endif + +.if !defined(WITHOUT_MYSQLI) +USE_PHP+= mysqli +.endif + .ifdef WITH_GRAPHVIZ RUN_DEPENDS+= ${LOCALBASE}/bin/dot:${PORTSDIR}/graphics/graphviz .endif @@ -66,13 +75,14 @@ post-patch: do-install: ${MKDIR} ${FLYSPRAYDIR} ${CHMOD} 755 ${FLYSPRAYDIR} - ${CP} ${WRKSRC}/setup/upgrade/${PORTVERSION}/flyspray.conf.php ${WRKSRC}/flyspray.conf.php-dist + ${CP} ${WRKSRC}/setup/upgrade/0.9.9.5/flyspray.conf.php ${WRKSRC}/flyspray.conf.php-dist + ${TOUCH} ${FLYSPRAYDIR}/flyspray.conf.php cd ${WRKSRC} && \ ${TAR} cf - ${FLYSPRAY_FILES} | \ (cd ${FLYSPRAYDIR} && ${TAR} -xf -) ${LN} -s ${ATTACHMENTDIR} ${FLYSPRAYDIR}/attachments ${LN} -s ${PREFIX}/share/adodb ${FLYSPRAYDIR} - ${CHOWN} ${WWWOWN}:${WWWGRP} ${FLYSPRAYDIR}/cache + ${CHOWN} ${WWWOWN}:${WWWGRP} ${FLYSPRAYDIR}/cache ${FLYSPRAYDIR}/flyspray.conf.php PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL post-install: install-doc diff --git a/devel/flyspray/distinfo b/devel/flyspray/distinfo index a5fc92935b95..20c2d3be32b2 100644 --- a/devel/flyspray/distinfo +++ b/devel/flyspray/distinfo @@ -1,3 +1,3 @@ -MD5 (flyspray-0.9.9.2.tar.bz2) = 84e8e2a11ccf3ff4e95e182c6751ddf7 -SHA256 (flyspray-0.9.9.2.tar.bz2) = 8960525b7777d919f665be1c94785fa2f76083b3eee43b0da3166d12f0bbb947 -SIZE (flyspray-0.9.9.2.tar.bz2) = 945582 +MD5 (flyspray-0.9.9.5.1.tar.bz2) = 54c5327b507349f2963a3d899f5b9d91 +SHA256 (flyspray-0.9.9.5.1.tar.bz2) = 6bd3d9bee474feb2e75cdf181bba750655068ad35b05ba677e632dbd5e5bfd4a +SIZE (flyspray-0.9.9.5.1.tar.bz2) = 971055 diff --git a/devel/flyspray/files/README.FreeBSD b/devel/flyspray/files/README.FreeBSD index c452a45296bc..0a09b41cc22a 100644 --- a/devel/flyspray/files/README.FreeBSD +++ b/devel/flyspray/files/README.FreeBSD @@ -41,6 +41,7 @@ Configuration Instructions for Flyspray 7) Report any bugs you find back to http://bugs.flyspray.org/ or the mailing list linked from the Flyspray homepage. +8) Note that this version of Flyspray does not support PostgreSQL. Upgrading from previous versions of Flyspray ============================================ @@ -52,7 +53,11 @@ You can upgrade from a previous version of Flyspray by doing the following: 1) back up your old flyspray task database using "mysqldump". No, really, you seriously run the risk of losing data if you don't do this. -2) load http://yourserver.example.com/flyspray/setup/upgrade.php in your +2) save a copy of %%FLYSPRAYDIR%%/flyspray.conf.php before running + portupgrade. This will need to be restored after you've upgraded the + package. + +3) load http://yourserver.example.com/flyspray/setup/upgrade.php in your browser and follow the instructions. If upgrading from 0.9.9beta2, manually change the value of "fs_ver" in the {dbprefix}prefs table of your Flyspray DB to "0.9.9 dev". You can do this using the folowing SQL @@ -60,7 +65,7 @@ You can upgrade from a previous version of Flyspray by doing the following: sql> update flyspray_prefs set pref_value = "0.9.9 dev" where pref_name = "fs_ver"; -3) That's it! Flyspray has been upgraded to 0.9.9.2. If you messed up +4) That's it! Flyspray has been upgraded to the current version. If you messed up somehow, you will probably have lost data in the process, and may need to re-install your database from your backup, but that's ok because you took a backup, right? diff --git a/devel/flyspray/pkg-plist b/devel/flyspray/pkg-plist index 681f5d2e90f9..2738cc140c78 100644 --- a/devel/flyspray/pkg-plist +++ b/devel/flyspray/pkg-plist @@ -7,6 +7,7 @@ %%DATADIR%%/header.php %%DATADIR%%/htaccess.dist %%DATADIR%%/flyspray.conf.php-dist +%%DATADIR%%/flyspray.conf.php %%DATADIR%%/includes/.htaccess %%DATADIR%%/includes/class.backend.php %%DATADIR%%/includes/class.database.php @@ -20,6 +21,7 @@ %%DATADIR%%/includes/constants.inc.php %%DATADIR%%/includes/events.inc.php %%DATADIR%%/includes/external/Validate.php +%%DATADIR%%/includes/external/http_build_query.php %%DATADIR%%/includes/external/swift-mailer/Swift/Events/ListenerMapper.php %%DATADIR%%/includes/external/swift-mailer/Swift/Events/ResponseEvent.php %%DATADIR%%/includes/external/swift-mailer/Swift/Events/CommandEvent.php @@ -36,7 +38,6 @@ %%DATADIR%%/includes/external/swift-mailer/Swift/Connection/Multi.php %%DATADIR%%/includes/external/swift-mailer/Swift/Connection/Rotator.php %%DATADIR%%/includes/external/swift-mailer/Swift/Connection/SMTP.php -%%DATADIR%%/includes/external/swift-mailer/Swift/Connection/Exception.php %%DATADIR%%/includes/external/swift-mailer/Swift/CacheFactory.php %%DATADIR%%/includes/external/swift-mailer/Swift/Message/EmbeddedFile.php %%DATADIR%%/includes/external/swift-mailer/Swift/Message/Encoder.php @@ -52,16 +53,18 @@ %%DATADIR%%/includes/external/swift-mailer/Swift/Errors.php %%DATADIR%%/includes/external/swift-mailer/Swift/Log.php %%DATADIR%%/includes/external/swift-mailer/Swift/ConnectionBase.php +%%DATADIR%%/includes/external/swift-mailer/Swift/ConnectionException.php %%DATADIR%%/includes/external/swift-mailer/Swift/FileException.php %%DATADIR%%/includes/external/swift-mailer/Swift/File.php %%DATADIR%%/includes/external/swift-mailer/Swift/Authenticator/PopB4Smtp/Pop3Connection.php %%DATADIR%%/includes/external/swift-mailer/Swift/Authenticator/PLAIN.php %%DATADIR%%/includes/external/swift-mailer/Swift/Authenticator/CRAMMD5.php %%DATADIR%%/includes/external/swift-mailer/Swift/Authenticator/LOGIN.php -%%DATADIR%%/includes/external/swift-mailer/Swift/Authenticator/$PopB4Smtp$.php +%%DATADIR%%/includes/external/swift-mailer/Swift/Authenticator/@PopB4Smtp.php %%DATADIR%%/includes/external/swift-mailer/Swift/BadResponseException.php %%DATADIR%%/includes/external/swift-mailer/Swift/Iterator/Array.php %%DATADIR%%/includes/external/swift-mailer/Swift/Iterator/MySQLResult.php +%%DATADIR%%/includes/external/swift-mailer/Swift/LogContainer.php %%DATADIR%%/includes/external/swift-mailer/Swift/Message.php %%DATADIR%%/includes/external/swift-mailer/Swift/Exception.php %%DATADIR%%/includes/external/swift-mailer/Swift/Address.php @@ -78,7 +81,6 @@ %%DATADIR%%/includes/external/swift-mailer/Swift/Plugin/VerboseSending.php %%DATADIR%%/includes/external/swift-mailer/Swift/Plugin/BandwidthMonitor.php %%DATADIR%%/includes/external/swift-mailer/Swift/Plugin/MailSend.php -%%DATADIR%%/includes/external/swift-mailer/Swift/Log/Base.php %%DATADIR%%/includes/external/swift-mailer/Swift/Log/DefaultLog.php %%DATADIR%%/includes/external/swift-mailer/Swift/Cache/OutputStream.php %%DATADIR%%/includes/external/swift-mailer/Swift/Cache/JointOutputStream.php @@ -99,7 +101,6 @@ %%DATADIR%%/javascript/callbacks/getsearches.php %%DATADIR%%/javascript/callbacks/savesearches.php %%DATADIR%%/javascript/callbacks/searchnames.php -%%DATADIR%%/javascript/callbacks/useradd.php %%DATADIR%%/javascript/callbacks/usersearch.php %%DATADIR%%/javascript/details.js %%DATADIR%%/javascript/functions.js @@ -195,6 +196,7 @@ %%DATADIR%%/lang/en.php %%DATADIR%%/lang/es.php %%DATADIR%%/lang/fr.php +%%DATADIR%%/lang/hu.php %%DATADIR%%/lang/it.php %%DATADIR%%/lang/ja.php %%DATADIR%%/lang/nl.php @@ -390,6 +392,7 @@ %%DATADIR%%/plugins/dokuwiki/lib/images/smileys/icon_wink.gif %%DATADIR%%/plugins/dokuwiki/lib/plugins/changelinks/syntax.php %%DATADIR%%/plugins/dokuwiki/lib/plugins/fslink/syntax.php +%%DATADIR%%/plugins/dokuwiki/lib/plugins/newline/syntax.php %%DATADIR%%/plugins/dokuwiki/lib/plugins/syntax.php %%DATADIR%%/robots.txt %%DATADIR%%/schedule.php @@ -441,6 +444,14 @@ %%DATADIR%%/setup/upgrade/0.9.9.2/upgrade.info %%DATADIR%%/setup/upgrade/0.9.9.2/flyspray.conf.php %%DATADIR%%/setup/upgrade/0.9.9.2/flyspray-install.xml +%%DATADIR%%/setup/upgrade/0.9.9.4/flyspray-install.xml +%%DATADIR%%/setup/upgrade/0.9.9.4/flyspray.conf.php +%%DATADIR%%/setup/upgrade/0.9.9.4/upgrade.info +%%DATADIR%%/setup/upgrade/0.9.9.4/upgrade.xml +%%DATADIR%%/setup/upgrade/0.9.9.5/flyspray-install.xml +%%DATADIR%%/setup/upgrade/0.9.9.5/flyspray.conf.php +%%DATADIR%%/setup/upgrade/0.9.9.5/upgrade.info +%%DATADIR%%/setup/upgrade/0.9.9.5/upgrade.xml %%DATADIR%%/templates/.htaccess %%DATADIR%%/templates/admin.cat.tpl %%DATADIR%%/templates/admin.editgroup.tpl @@ -634,6 +645,7 @@ @dirrm %%DATADIR%%/plugins/dokuwiki/lib/images @dirrm %%DATADIR%%/plugins/dokuwiki/lib/plugins/changelinks @dirrm %%DATADIR%%/plugins/dokuwiki/lib/plugins/fslink +@dirrm %%DATADIR%%/plugins/dokuwiki/lib/plugins/newline @dirrm %%DATADIR%%/plugins/dokuwiki/lib/plugins @dirrm %%DATADIR%%/plugins/dokuwiki/lib @dirrm %%DATADIR%%/plugins/dokuwiki @@ -644,6 +656,8 @@ @dirrm %%DATADIR%%/setup/templates @dirrm %%DATADIR%%/setup/upgrade/0.9.9 @dirrm %%DATADIR%%/setup/upgrade/0.9.9.2 +@dirrm %%DATADIR%%/setup/upgrade/0.9.9.4 +@dirrm %%DATADIR%%/setup/upgrade/0.9.9.5 @dirrm %%DATADIR%%/setup/upgrade @dirrm %%DATADIR%%/setup @dirrm %%DATADIR%%/templates diff --git a/devel/fpc-fcl-async/Makefile b/devel/fpc-fcl-async/Makefile deleted file mode 100644 index 3d5a0bcd5f8c..000000000000 --- a/devel/fpc-fcl-async/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# New ports collection makefile for: fpc-libasync -# Date created: 2006-06-05 -# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> -# -# $FreeBSD$ -# - -PORTREVISION= 1 -CATEGORIES= net lang -PKGNAMESUFFIX= -libasync - -MAINTAINER= acm@FreeBSD.org -COMMENT= Free Pascal interface to async library - -USE_FPC= yes - -MASTERDIR= ${.CURDIR}/../../lang/fpc -WRKUNITDIR= ${FPCSRCDIR}/packages/base/${PKGNAMESUFFIX:S/-//} -EXTRACTUNITDIR+= ${WRKUNITDIR} - -.include "${MASTERDIR}/Makefile" diff --git a/devel/fpc-fcl-async/pkg-plist b/devel/fpc-fcl-async/pkg-plist deleted file mode 100644 index 2404d918a667..000000000000 --- a/devel/fpc-fcl-async/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libasync/Package.fpc -lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libasync/libasync.ppu -lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libasync/libasync.o -lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libasync/libplibasync.a -@dirrm lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libasync -@dirrmtry lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%% -@dirrmtry lib/fpc/%%PORTVERSION%%/units -@dirrmtry lib/fpc/%%PORTVERSION%% -@dirrmtry lib/fpc diff --git a/devel/gdb66/Makefile b/devel/gdb66/Makefile deleted file mode 100644 index 2ee5c8f73757..000000000000 --- a/devel/gdb66/Makefile +++ /dev/null @@ -1,106 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: GDB 6 -# Date created: 30 March 2001 -# Whom: David O'Brien <obrien@NUXI.com> -# -# $FreeBSD$ -# - -PORTNAME= gdb -PORTVERSION= 6.6 -PORTREVISION= 1 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU:S,$,:gdb,} \ - http://aldan.algebra.com/~mi/:gdbtk -MASTER_SITE_SUBDIR=gdb/:gdb -DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:gdb - -MAINTAINER= mi@aldan.algebra.com -COMMENT= GNU GDB of newer version than comes with the system - -OPTIONS= INSIGHT "Build the Tcl/Tk GUI (experimental!)" off - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GETTEXT= yes -USE_ICONV= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV+= CONFIGURED_M4=m4 CONFIGURED_BISON=byacc -CONFIGURE_ARGS= --program-suffix=${PORTVERSION:S/.//g} \ - --enable-target=all \ - --enable-tui --with-libiconv-prefix=${LOCALBASE} -CFLAGS:= ${CFLAGS:C/ +$//} # blanks at EOL creep in sometimes -CFLAGS+= -DRL_NO_COMPAT -EXCLUDE= dejagnu expect readline sim texinfo intl -EXTRACT_AFTER_ARGS=| ${TAR} -xf - ${EXCLUDE:S/^/--exclude /} -VER= ${PORTVERSION:S/.//} -PLIST_SUB= VER=${VER} -MAN1= gdb${VER}.1 - -#ONLY_FOR_ARCHS= i386 amd64 # untested elsewhere, might work - -.include <bsd.port.pre.mk> - -.if defined(WITH_INSIGHT) -LIB_DEPENDS= itk:${PORTSDIR}/x11-toolkits/itk -RUN_DEPENDS= ${LOCALBASE}/lib/iwidgets:${PORTSDIR}/x11-toolkits/iwidgets -DISTFILES+= gdbtk-6.6${EXTRACT_SUFX}:gdbtk -PLIST_SUB+= INSIGHT='' -EXTRA_PATCHES= ${FILESDIR}/itcl33-patch -CONFIGURE_ARGS+=--enable-gdbtk \ - --with-tclconfig=${LOCALBASE}/lib/tcl8.4 \ - --with-tclinclude=${LOCALBASE}/include/tcl8.4/generic \ - --with-tkconfig=${LOCALBASE}/lib/tk8.4 \ - --with-tkinclude=${LOCALBASE}/include/tk8.4/generic \ - --with-itclconfig=${LOCALBASE}/lib/itcl3.3 \ - --with-itkconfig=${LOCALBASE}/lib/itk3.3 - -pre-everything:: - # - # The Tk-based GUI (Insight) is patched to work with [incr tcl] - # version 3.3 and is currently experimental. Bug reports should - # be accompanied by patches. - # - -pre-configure: - ${MKDIR} ${WRKSRC}/itcl/generic - ${LN} -s ${LOCALBASE}/include/it*3.3/*.h ${WRKSRC}/itcl/generic/ -.else -PLIST_SUB+= INSIGHT='@comment ' -.endif - -.if ${ARCH} == "amd64" -CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} -.endif - -post-patch: - @${REINPLACE_CMD} -e 's/$$/ [GDB v${PORTVERSION} for FreeBSD]/' \ - ${WRKSRC}/gdb/version.in - @${REINPLACE_CMD} -e 's/^READLINE/#READLINE/' \ - -e 's/^readline/#readline/' \ - -e 's,^LIBICONV =.*,LIBICONV=-L${LOCALBASE}/lib -liconv,' \ - ${WRKSRC}/gdb/Makefile.in - ${ECHO} 'READLINE = -lreadline' >> ${WRKSRC}/gdb/Makefile.in - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/gdb/gdb ${PREFIX}/bin/gdb${VER} - ${LN} ${PREFIX}/bin/gdb${VER} ${PREFIX}/bin/gdbtui${VER} - ${INSTALL_MAN} ${WRKSRC}/gdb/gdb.1 ${MAN1PREFIX}/man/man1/gdb${VER}.1 -.if defined(WITH_INSIGHT) - ${LN} ${PREFIX}/bin/gdb${VER} ${PREFIX}/bin/insight - ${MKDIR} ${PREFIX}/share/redhat/gui - ${CP} -p ${WRKSRC}/libgui/library/*.tcl \ - ${WRKSRC}/libgui/library/tclIndex \ - ${PREFIX}/share/redhat/gui/ - ${MKDIR} ${PREFIX}/lib/insight1.0 - ${CP} -Rp ${WRKSRC}/gdb/gdbtk/library/*.tcl \ - ${WRKSRC}/gdb/gdbtk/library/*.itcl \ - ${WRKSRC}/gdb/gdbtk/library/*.ith \ - ${WRKSRC}/gdb/gdbtk/library/*.itb \ - ${WRKSRC}/gdb/gdbtk/library/help \ - ${WRKSRC}/gdb/gdbtk/library/images* \ - ${WRKSRC}/gdb/gdbtk/library/tclIndex \ - ${PREFIX}/lib/insight1.0 -.endif - -.include <bsd.port.post.mk> diff --git a/devel/gdb66/distinfo b/devel/gdb66/distinfo deleted file mode 100644 index 11fdc87e2144..000000000000 --- a/devel/gdb66/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (gdb-6.6.tar.bz2) = a4df41d28dd514d64e8ccbfe125fd9a6 -SHA256 (gdb-6.6.tar.bz2) = 6e602987298db5ddb479bbb84ce653eabd9c304957a49552245f65cdc70d43bd -SIZE (gdb-6.6.tar.bz2) = 14535755 -MD5 (gdbtk-6.6.tar.bz2) = deb691fe9c05dfefcf2f66653be702a0 -SHA256 (gdbtk-6.6.tar.bz2) = 7dbbcb530f59ad93fd1566c38a29c4ff682243948297549ac37161427bdba9d8 -SIZE (gdbtk-6.6.tar.bz2) = 845174 diff --git a/devel/gdb66/files/itcl33-patch b/devel/gdb66/files/itcl33-patch deleted file mode 100644 index 9a1d4d0d94c3..000000000000 --- a/devel/gdb66/files/itcl33-patch +++ /dev/null @@ -1,189 +0,0 @@ ---- gdb/gdbtk/library/tfind_args.tcl Sun Feb 6 19:19:42 2000 -+++ gdb/gdbtk/library/tfind_args.tcl Wed May 17 00:11:49 2006 -@@ -29,9 +29,10 @@ - # ---------------------------------------------------------------------- - --itcl_class TfindArgs { -+itcl::class TfindArgs { - # ------------------------------------------------------------------ - # CONSTRUCTOR - create new tfind arguments dialog - # ------------------------------------------------------------------ -- constructor {config} { -+ constructor args { -+ eval configure $args - # - # Create a window with the same name as this object ---- gdb/gdbtk/library/ehandler.itb Tue Oct 15 17:19:51 2002 -+++ gdb/gdbtk/library/ehandler.itb Wed May 17 00:12:55 2006 -@@ -23,5 +23,5 @@ - - # invoke event handlers -- foreach w [itcl_info objects -isa GDBEventHandler] { -+ foreach w [itcl::find objects -isa GDBEventHandler] { - dbug I "posting event \"$handler\" to \"$w\"" - if {[catch {$w $handler $event}]} { ---- gdb/gdbtk/library/managedwin.itb Fri Aug 27 19:13:14 2004 -+++ gdb/gdbtk/library/managedwin.itb Wed May 17 00:13:32 2006 -@@ -76,5 +76,5 @@ - itcl::body ManagedWin::window_instance {ins} { - set win_instance $ins -- foreach obj [itcl_info objects -isa ManagedWin] { -+ foreach obj [itcl::find objects -isa ManagedWin] { - debug "$obj ManagedWin::_wname" - $obj window_name "" -@@ -134,5 +134,5 @@ - - # call the reconfig method for each object -- foreach obj [itcl_info objects -isa ManagedWin] { -+ foreach obj [itcl::find objects -isa ManagedWin] { - if {[catch {$obj reconfig} msg]} { - dbug W "reconfig failed for $obj - $msg" -@@ -148,5 +148,5 @@ - itcl::body ManagedWin::shutdown {} { - set activeWins {} -- foreach win [itcl_info objects -isa ManagedWin] { -+ foreach win [itcl::find objects -isa ManagedWin] { - if {![$win isa ModalDialog] && ![$win _ignore_on_save]} { - set g [wm geometry [winfo toplevel [namespace tail $win]]] -@@ -221,5 +221,5 @@ - if {!$force} { - # check all windows for one of this type -- foreach obj [itcl_info objects -isa ManagedWin] { -+ foreach obj [itcl::find objects -isa ManagedWin] { - if {[$obj isa $class]} { - $obj reveal -@@ -364,5 +364,5 @@ - debug "$win" - set res "" -- foreach obj [itcl_info objects -isa ManagedWin] { -+ foreach obj [itcl::find objects -isa ManagedWin] { - if {[$obj isa $win]} { - lappend res $obj ---- libgui/library/balloon.tcl Mon Feb 10 04:21:40 2003 -+++ libgui/library/balloon.tcl Thu Jun 28 15:39:09 2007 -@@ -8,34 +8,34 @@ - # * Likewise, balloon positioning on Windows is a hack. - --itcl_class Balloon { -+itcl::class Balloon { - # Name of associated global variable which should be set whenever - # the help is shown. -- public variable {} -+ public variable variable {} - - # Name of associated toplevel. Private variable. -- protected _top {} -+ protected variable _top {} - - # This is non-empty if there is an after script pending. Private - # method. -- protected _after_id {} -+ protected variable _after_id {} - - # This is an array mapping window name to help text. -- protected _help_text -+ protected variable _help_text - - # This is an array mapping window name to notification proc. -- protected _notifiers -+ protected variable _notifiers - - # This is set to the name of the parent widget whenever the mouse is - # in a widget with balloon help. -- protected _active {} -+ protected variable _active {} - - # This is true when we're already calling a notification proc. - # Private variable. -- protected _in_notifier 0 -+ protected variable _in_notifier 0 - - # This holds the parent of the most recently entered widget. It is - # used to determine when the user is moving through a toolbar. - # Private variable. -- protected _recent_parent {} -+ protected variable _recent_parent {} - - constructor {top} { ---- libgui/library/cframe.tcl Sat Sep 8 18:34:46 2001 -+++ libgui/library/cframe.tcl Thu Jun 28 15:39:50 2007 -@@ -3,5 +3,5 @@ - # Written by Tom Tromey <tromey@cygnus.com>. - --itcl_class Checkframe { -+itcl::class Checkframe { - inherit Widgetframe - -@@ -14,5 +14,5 @@ - # trace when the variable changes (or is deleted). Private - # variable. -- protected _saved_variable {} -+ protected variable _saved_variable {} - - # The checkbutton variable. -@@ -45,5 +45,5 @@ - # This holds a list of all widgets which should be immune to - # enabling/disabling. Private variable. -- protected _avoid {} -+ protected variable _avoid {} - - constructor {config} { ---- libgui/library/lframe.tcl Sat Sep 8 18:34:46 2001 -+++ libgui/library/lframe.tcl Thu Jun 28 15:32:04 2007 -@@ -3,5 +3,5 @@ - # Written by Tom Tromey <tromey@cygnus.com>. - --itcl_class Labelledframe { -+itcl::class Labelledframe { - inherit Widgetframe - ---- libgui/library/multibox.tcl Sat Sep 8 18:34:46 2001 -+++ libgui/library/multibox.tcl Thu Jun 28 15:39:58 2007 -@@ -7,5 +7,5 @@ - # * Should support itemcget, itemconfigure. - --itcl_class Multibox { -+itcl::class Multibox { - # The selection mode. - public selectmode browse { -@@ -20,5 +20,5 @@ - # This is a list of all the listbox widgets we've created. Private - # variable. -- protected _listboxen {} -+ protected variable _listboxen {} - - # Tricky: take the class bindings for the Listbox widget and turn ---- libgui/library/sendpr.tcl Tue Feb 5 18:16:14 2002 -+++ libgui/library/sendpr.tcl Thu Jun 28 15:32:04 2007 -@@ -14,5 +14,5 @@ - defarray SENDPR_state - --itcl_class Sendpr { -+itcl::class Sendpr { - inherit Ide_window - ---- libgui/library/ventry.tcl Sat Sep 8 18:34:46 2001 -+++ libgui/library/ventry.tcl Thu Jun 28 15:32:04 2007 -@@ -3,5 +3,5 @@ - # Written by Tom Tromey <tromey@cygnus.com>. - --itcl_class Validated_entry { -+itcl::class Validated_entry { - # The validation command. It is passed the contents of the entry. - # It should throw an error if there is a problem; the error text ---- libgui/library/wframe.tcl Sat Sep 8 18:34:46 2001 -+++ libgui/library/wframe.tcl Thu Jun 28 15:40:07 2007 -@@ -3,5 +3,5 @@ - # Written by Tom Tromey <tromey@cygnus.com>. - --itcl_class Widgetframe { -+itcl::class Widgetframe { - # Where to put the widget. For now, we don't support many anchors. - # Augment as you like. -@@ -15,5 +15,5 @@ - # The name of the widget to put on the frame. This is set by some - # subclass calling the _add method. Private variable. -- protected _widget {} -+ protected variable _widget {} - - constructor {config} { diff --git a/devel/gdb66/files/patch-unified b/devel/gdb66/files/patch-unified deleted file mode 100644 index 19ef04213ee0..000000000000 --- a/devel/gdb66/files/patch-unified +++ /dev/null @@ -1,25 +0,0 @@ ---- gdb/gdb.c Thu Feb 13 13:07:24 2003 -+++ gdb/gdb.c Wed May 17 00:24:39 2006 -@@ -23,4 +23,5 @@ - #include "gdb_string.h" - #include "interps.h" -+#include <libgen.h> - - int -@@ -31,6 +32,14 @@ - args.argc = argc; - args.argv = argv; -- args.use_windows = 0; -- args.interpreter_p = INTERP_CONSOLE; -+ if (strncmp(basename(argv[0]), "insight", 7) == 0) { -+ args.use_windows = 1; -+ args.interpreter_p = "insight"; -+ } else if (strncmp(basename(argv[0]), "gdbtui", 6) == 0) { -+ args.use_windows = 0; -+ args.interpreter_p = INTERP_TUI; -+ } else { -+ args.use_windows = 0; -+ args.interpreter_p = INTERP_CONSOLE; -+ } - return gdb_main (&args); - } diff --git a/devel/gdb66/pkg-descr b/devel/gdb66/pkg-descr deleted file mode 100644 index 1e832359933d..000000000000 --- a/devel/gdb66/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -GNU GDB - the latest version - -WWW: http://www.gnu.org/software/gdb/ diff --git a/devel/gdb66/pkg-plist b/devel/gdb66/pkg-plist deleted file mode 100644 index be617efdb079..000000000000 --- a/devel/gdb66/pkg-plist +++ /dev/null @@ -1,260 +0,0 @@ -bin/gdb%%VER%% -bin/gdbtui%%VER%% -%%INSIGHT%%bin/insight -%%INSIGHT%%share/redhat/gui/advice.tcl -%%INSIGHT%%share/redhat/gui/balloon.tcl -%%INSIGHT%%share/redhat/gui/bbox.tcl -%%INSIGHT%%share/redhat/gui/bgerror.tcl -%%INSIGHT%%share/redhat/gui/bindings.tcl -%%INSIGHT%%share/redhat/gui/canvas.tcl -%%INSIGHT%%share/redhat/gui/center.tcl -%%INSIGHT%%share/redhat/gui/cframe.tcl -%%INSIGHT%%share/redhat/gui/combobox.tcl -%%INSIGHT%%share/redhat/gui/debug.tcl -%%INSIGHT%%share/redhat/gui/def.tcl -%%INSIGHT%%share/redhat/gui/font.tcl -%%INSIGHT%%share/redhat/gui/gensym.tcl -%%INSIGHT%%share/redhat/gui/gettext.tcl -%%INSIGHT%%share/redhat/gui/hooks.tcl -%%INSIGHT%%share/redhat/gui/internet.tcl -%%INSIGHT%%share/redhat/gui/lframe.tcl -%%INSIGHT%%share/redhat/gui/list.tcl -%%INSIGHT%%share/redhat/gui/looknfeel.tcl -%%INSIGHT%%share/redhat/gui/menu.tcl -%%INSIGHT%%share/redhat/gui/mono.tcl -%%INSIGHT%%share/redhat/gui/multibox.tcl -%%INSIGHT%%share/redhat/gui/pane.tcl -%%INSIGHT%%share/redhat/gui/panedwindow.tcl -%%INSIGHT%%share/redhat/gui/parse_args.tcl -%%INSIGHT%%share/redhat/gui/path.tcl -%%INSIGHT%%share/redhat/gui/pkgIndex.tcl -%%INSIGHT%%share/redhat/gui/postghost.tcl -%%INSIGHT%%share/redhat/gui/prefs.tcl -%%INSIGHT%%share/redhat/gui/print.tcl -%%INSIGHT%%share/redhat/gui/sendpr.tcl -%%INSIGHT%%share/redhat/gui/toolbar.tcl -%%INSIGHT%%share/redhat/gui/topbind.tcl -%%INSIGHT%%share/redhat/gui/ulset.tcl -%%INSIGHT%%share/redhat/gui/ventry.tcl -%%INSIGHT%%share/redhat/gui/wframe.tcl -%%INSIGHT%%share/redhat/gui/wingrab.tcl -%%INSIGHT%%share/redhat/gui/tclIndex -%%INSIGHT%%@dirrm share/redhat/gui -%%INSIGHT%%@dirrm share/redhat -%%INSIGHT%%lib/insight1.0/about.tcl -%%INSIGHT%%lib/insight1.0/actiondlg.tcl -%%INSIGHT%%lib/insight1.0/attachdlg.itb -%%INSIGHT%%lib/insight1.0/attachdlg.ith -%%INSIGHT%%lib/insight1.0/blockframe.itb -%%INSIGHT%%lib/insight1.0/blockframe.ith -%%INSIGHT%%lib/insight1.0/bpwin.itb -%%INSIGHT%%lib/insight1.0/bpwin.ith -%%INSIGHT%%lib/insight1.0/browserwin.itb -%%INSIGHT%%lib/insight1.0/browserwin.ith -%%INSIGHT%%lib/insight1.0/console.itb -%%INSIGHT%%lib/insight1.0/console.ith -%%INSIGHT%%lib/insight1.0/cspref.itb -%%INSIGHT%%lib/insight1.0/cspref.ith -%%INSIGHT%%lib/insight1.0/debugwin.itb -%%INSIGHT%%lib/insight1.0/debugwin.ith -%%INSIGHT%%lib/insight1.0/download.itb -%%INSIGHT%%lib/insight1.0/download.ith -%%INSIGHT%%lib/insight1.0/editor.tcl -%%INSIGHT%%lib/insight1.0/ehandler.itb -%%INSIGHT%%lib/insight1.0/ehandler.ith -%%INSIGHT%%lib/insight1.0/embeddedwin.ith -%%INSIGHT%%lib/insight1.0/gdbevent.itb -%%INSIGHT%%lib/insight1.0/gdbevent.ith -%%INSIGHT%%lib/insight1.0/gdbmenubar.itcl -%%INSIGHT%%lib/insight1.0/gdbtoolbar.itcl -%%INSIGHT%%lib/insight1.0/gdbwin.ith -%%INSIGHT%%lib/insight1.0/globalpref.itb -%%INSIGHT%%lib/insight1.0/globalpref.ith -%%INSIGHT%%lib/insight1.0/help/breakpoint.html -%%INSIGHT%%lib/insight1.0/help/browser.html -%%INSIGHT%%lib/insight1.0/help/console.html -%%INSIGHT%%lib/insight1.0/help/debug.html -%%INSIGHT%%lib/insight1.0/help/gbl_pref.html -%%INSIGHT%%lib/insight1.0/help/help.html -%%INSIGHT%%lib/insight1.0/help/images/browser1.png -%%INSIGHT%%lib/insight1.0/help/images/browser2.png -%%INSIGHT%%lib/insight1.0/help/images/frame_info.gif -%%INSIGHT%%lib/insight1.0/help/images/insightbwr.png -%%INSIGHT%%lib/insight1.0/help/images/mem_menu.gif -%%INSIGHT%%lib/insight1.0/help/images/mem_popup.gif -%%INSIGHT%%lib/insight1.0/help/images/mem_pref.gif -%%INSIGHT%%lib/insight1.0/help/images/reg.png -%%INSIGHT%%lib/insight1.0/help/images/reg_menu.png -%%INSIGHT%%lib/insight1.0/help/images/src_bal.gif -%%INSIGHT%%lib/insight1.0/help/images/src_bp_bal.gif -%%INSIGHT%%lib/insight1.0/help/images/src_bpop.gif -%%INSIGHT%%lib/insight1.0/help/images/src_menu.gif -%%INSIGHT%%lib/insight1.0/help/images/src_pop.gif -%%INSIGHT%%lib/insight1.0/help/images/src_stat.gif -%%INSIGHT%%lib/insight1.0/help/images/src_thread.gif -%%INSIGHT%%lib/insight1.0/help/images/src_toolbar.gif -%%INSIGHT%%lib/insight1.0/help/images/watch.png -%%INSIGHT%%lib/insight1.0/help/index.html -%%INSIGHT%%lib/insight1.0/help/license.html -%%INSIGHT%%lib/insight1.0/help/locals.html -%%INSIGHT%%lib/insight1.0/help/memory.html -%%INSIGHT%%lib/insight1.0/help/register.html -%%INSIGHT%%lib/insight1.0/help/session.html -%%INSIGHT%%lib/insight1.0/help/source.html -%%INSIGHT%%lib/insight1.0/help/src_pref.html -%%INSIGHT%%lib/insight1.0/help/stack.html -%%INSIGHT%%lib/insight1.0/help/target.html -%%INSIGHT%%lib/insight1.0/help/thread.html -%%INSIGHT%%lib/insight1.0/help/trace/console.html -%%INSIGHT%%lib/insight1.0/help/trace/gbl_pref.html -%%INSIGHT%%lib/insight1.0/help/trace/help.html -%%INSIGHT%%lib/insight1.0/help/trace/index.toc -%%INSIGHT%%lib/insight1.0/help/trace/license.html -%%INSIGHT%%lib/insight1.0/help/trace/locals.html -%%INSIGHT%%lib/insight1.0/help/trace/memory.html -%%INSIGHT%%lib/insight1.0/help/trace/reg_pref.html -%%INSIGHT%%lib/insight1.0/help/trace/register.html -%%INSIGHT%%lib/insight1.0/help/trace/source.html -%%INSIGHT%%lib/insight1.0/help/trace/src_pref.html -%%INSIGHT%%lib/insight1.0/help/trace/stack.html -%%INSIGHT%%lib/insight1.0/help/trace/target.html -%%INSIGHT%%lib/insight1.0/help/trace/tdump.html -%%INSIGHT%%lib/insight1.0/help/trace/tp.html -%%INSIGHT%%lib/insight1.0/help/trace/tracedlg.html -%%INSIGHT%%lib/insight1.0/help/trace/watch.html -%%INSIGHT%%lib/insight1.0/help/watch.html -%%INSIGHT%%lib/insight1.0/helpviewer.tcl -%%INSIGHT%%lib/insight1.0/images/Movie_off.gif -%%INSIGHT%%lib/insight1.0/images/Movie_on.gif -%%INSIGHT%%lib/insight1.0/images/bottom.gif -%%INSIGHT%%lib/insight1.0/images/bp.gif -%%INSIGHT%%lib/insight1.0/images/check.gif -%%INSIGHT%%lib/insight1.0/images/console.gif -%%INSIGHT%%lib/insight1.0/images/continue.gif -%%INSIGHT%%lib/insight1.0/images/down.gif -%%INSIGHT%%lib/insight1.0/images/edit.gif -%%INSIGHT%%lib/insight1.0/images/finish.gif -%%INSIGHT%%lib/insight1.0/images/gdbtk_icon.gif -%%INSIGHT%%lib/insight1.0/images/help.gif -%%INSIGHT%%lib/insight1.0/images/home.gif -%%INSIGHT%%lib/insight1.0/images/icons.txt -%%INSIGHT%%lib/insight1.0/images/insight.gif -%%INSIGHT%%lib/insight1.0/images/less.gif -%%INSIGHT%%lib/insight1.0/images/memory.gif -%%INSIGHT%%lib/insight1.0/images/more.gif -%%INSIGHT%%lib/insight1.0/images/next.gif -%%INSIGHT%%lib/insight1.0/images/next_check.gif -%%INSIGHT%%lib/insight1.0/images/next_frame.gif -%%INSIGHT%%lib/insight1.0/images/next_hit.gif -%%INSIGHT%%lib/insight1.0/images/next_line.gif -%%INSIGHT%%lib/insight1.0/images/nexti.gif -%%INSIGHT%%lib/insight1.0/images/open.gif -%%INSIGHT%%lib/insight1.0/images/prev_hit.gif -%%INSIGHT%%lib/insight1.0/images/reg.gif -%%INSIGHT%%lib/insight1.0/images/rewind.gif -%%INSIGHT%%lib/insight1.0/images/run.gif -%%INSIGHT%%lib/insight1.0/images/run_expt.gif -%%INSIGHT%%lib/insight1.0/images/src.gif -%%INSIGHT%%lib/insight1.0/images/stack.gif -%%INSIGHT%%lib/insight1.0/images/step.gif -%%INSIGHT%%lib/insight1.0/images/stepi.gif -%%INSIGHT%%lib/insight1.0/images/stop.gif -%%INSIGHT%%lib/insight1.0/images/tdump.gif -%%INSIGHT%%lib/insight1.0/images/tp.gif -%%INSIGHT%%lib/insight1.0/images/up.gif -%%INSIGHT%%lib/insight1.0/images/vars.gif -%%INSIGHT%%lib/insight1.0/images/watch.gif -%%INSIGHT%%lib/insight1.0/images/watch_movie.gif -%%INSIGHT%%lib/insight1.0/images2/Movie_off.gif -%%INSIGHT%%lib/insight1.0/images2/Movie_on.gif -%%INSIGHT%%lib/insight1.0/images2/bottom.gif -%%INSIGHT%%lib/insight1.0/images2/bp.gif -%%INSIGHT%%lib/insight1.0/images2/check.gif -%%INSIGHT%%lib/insight1.0/images2/console.gif -%%INSIGHT%%lib/insight1.0/images2/continue.gif -%%INSIGHT%%lib/insight1.0/images2/down.gif -%%INSIGHT%%lib/insight1.0/images2/edit.gif -%%INSIGHT%%lib/insight1.0/images2/finish.gif -%%INSIGHT%%lib/insight1.0/images2/function.gif -%%INSIGHT%%lib/insight1.0/images2/gdbtk_icon.gif -%%INSIGHT%%lib/insight1.0/images2/help.gif -%%INSIGHT%%lib/insight1.0/images2/home.gif -%%INSIGHT%%lib/insight1.0/images2/icons.txt -%%INSIGHT%%lib/insight1.0/images2/insight.gif -%%INSIGHT%%lib/insight1.0/images2/less.gif -%%INSIGHT%%lib/insight1.0/images2/memory.gif -%%INSIGHT%%lib/insight1.0/images2/more.gif -%%INSIGHT%%lib/insight1.0/images2/next.gif -%%INSIGHT%%lib/insight1.0/images2/next_check.gif -%%INSIGHT%%lib/insight1.0/images2/next_frame.gif -%%INSIGHT%%lib/insight1.0/images2/next_hit.gif -%%INSIGHT%%lib/insight1.0/images2/next_line.gif -%%INSIGHT%%lib/insight1.0/images2/nexti.gif -%%INSIGHT%%lib/insight1.0/images2/open.gif -%%INSIGHT%%lib/insight1.0/images2/prev_hit.gif -%%INSIGHT%%lib/insight1.0/images2/reg.gif -%%INSIGHT%%lib/insight1.0/images2/rewind.gif -%%INSIGHT%%lib/insight1.0/images2/run.gif -%%INSIGHT%%lib/insight1.0/images2/run_expt.gif -%%INSIGHT%%lib/insight1.0/images2/src.gif -%%INSIGHT%%lib/insight1.0/images2/stack.gif -%%INSIGHT%%lib/insight1.0/images2/step.gif -%%INSIGHT%%lib/insight1.0/images2/stepi.gif -%%INSIGHT%%lib/insight1.0/images2/stop.gif -%%INSIGHT%%lib/insight1.0/images2/target.gif -%%INSIGHT%%lib/insight1.0/images2/tdump.gif -%%INSIGHT%%lib/insight1.0/images2/tp.gif -%%INSIGHT%%lib/insight1.0/images2/up.gif -%%INSIGHT%%lib/insight1.0/images2/vars.gif -%%INSIGHT%%lib/insight1.0/images2/watch.gif -%%INSIGHT%%lib/insight1.0/images2/watch_movie.gif -%%INSIGHT%%lib/insight1.0/interface.tcl -%%INSIGHT%%lib/insight1.0/ipc.tcl -%%INSIGHT%%lib/insight1.0/ipcpref.itb -%%INSIGHT%%lib/insight1.0/ipcpref.ith -%%INSIGHT%%lib/insight1.0/kod.itb -%%INSIGHT%%lib/insight1.0/kod.ith -%%INSIGHT%%lib/insight1.0/locals.tcl -%%INSIGHT%%lib/insight1.0/main.tcl -%%INSIGHT%%lib/insight1.0/managedwin.itb -%%INSIGHT%%lib/insight1.0/managedwin.ith -%%INSIGHT%%lib/insight1.0/mempref.itb -%%INSIGHT%%lib/insight1.0/mempref.ith -%%INSIGHT%%lib/insight1.0/memwin.itb -%%INSIGHT%%lib/insight1.0/memwin.ith -%%INSIGHT%%lib/insight1.0/modal.tcl -%%INSIGHT%%lib/insight1.0/pluginwin.itcl -%%INSIGHT%%lib/insight1.0/prefs.tcl -%%INSIGHT%%lib/insight1.0/process.itb -%%INSIGHT%%lib/insight1.0/process.ith -%%INSIGHT%%lib/insight1.0/regwin.itb -%%INSIGHT%%lib/insight1.0/regwin.ith -%%INSIGHT%%lib/insight1.0/session.tcl -%%INSIGHT%%lib/insight1.0/srcbar.itcl -%%INSIGHT%%lib/insight1.0/srcpref.itb -%%INSIGHT%%lib/insight1.0/srcpref.ith -%%INSIGHT%%lib/insight1.0/srctextwin.itb -%%INSIGHT%%lib/insight1.0/srctextwin.ith -%%INSIGHT%%lib/insight1.0/srcwin.itb -%%INSIGHT%%lib/insight1.0/srcwin.ith -%%INSIGHT%%lib/insight1.0/stackwin.itb -%%INSIGHT%%lib/insight1.0/stackwin.ith -%%INSIGHT%%lib/insight1.0/targetselection.itb -%%INSIGHT%%lib/insight1.0/targetselection.ith -%%INSIGHT%%lib/insight1.0/tdump.tcl -%%INSIGHT%%lib/insight1.0/tfind_args.tcl -%%INSIGHT%%lib/insight1.0/toplevelwin.ith -%%INSIGHT%%lib/insight1.0/tracedlg.tcl -%%INSIGHT%%lib/insight1.0/tty.tcl -%%INSIGHT%%lib/insight1.0/util.tcl -%%INSIGHT%%lib/insight1.0/vartree.itb -%%INSIGHT%%lib/insight1.0/vartree.ith -%%INSIGHT%%lib/insight1.0/warning.tcl -%%INSIGHT%%lib/insight1.0/watch.tcl -%%INSIGHT%%lib/insight1.0/tclIndex -%%INSIGHT%%@dirrm lib/insight1.0/images2 -%%INSIGHT%%@dirrm lib/insight1.0/images -%%INSIGHT%%@dirrm lib/insight1.0/help/trace -%%INSIGHT%%@dirrm lib/insight1.0/help/images -%%INSIGHT%%@dirrm lib/insight1.0/help -%%INSIGHT%%@dirrm lib/insight1.0 diff --git a/devel/gmake381/Makefile b/devel/gmake381/Makefile deleted file mode 100644 index 062923a53bfb..000000000000 --- a/devel/gmake381/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# New ports collection makefile for: GNU make -# Date created: 11 September 1994 -# Whom: jkh -# -# $FreeBSD$ -# - -PORTNAME= gmake -PORTVERSION= 3.81 -PORTREVISION= 3 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= make -DISTNAME= make-${PORTVERSION} - -MAINTAINER= ade@FreeBSD.org -COMMENT= GNU version of 'make' utility - -USE_BZIP2= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--program-prefix=g -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -CONFIGURE_ARGS+=--with-libiconv-prefix=${LOCALBASE} \ - --with-libintl-prefix=${LOCALBASE} -PLIST_SUB= NLS="" -.else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB= NLS="@comment " -.endif -CONFIGURE_ENV+= MAKEINFO="makeinfo --no-split" - -MAN1= gmake.1 -INFO= make - -.ifdef USE_GMAKE -.error You have `USE_GMAKE' variable defined either in environment or in make(1) arguments. Please undefine and try again. -.endif - -post-patch: - @${RM} ${WRKSRC}/doc/make.info* - -# joerg@freebsd.org says our getloadavg() no longer requires setgid kmem - -post-install: - @${CHMOD} g-s ${PREFIX}/bin/gmake - @chgrp ${BINGRP} ${PREFIX}/bin/gmake - -.include <bsd.port.mk> diff --git a/devel/gmake381/distinfo b/devel/gmake381/distinfo deleted file mode 100644 index a6410079661f..000000000000 --- a/devel/gmake381/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (make-3.81.tar.bz2) = 354853e0b2da90c527e35aabb8d6f1e6 -SHA256 (make-3.81.tar.bz2) = f3e69023771e23908f5d5592954d8271d3d6af09693cecfd29cee6fde8550dc8 -SIZE (make-3.81.tar.bz2) = 1151445 diff --git a/devel/gmake381/files/patch-ab b/devel/gmake381/files/patch-ab deleted file mode 100644 index 4d7d9551e18b..000000000000 --- a/devel/gmake381/files/patch-ab +++ /dev/null @@ -1,14 +0,0 @@ ---- doc/make.texi.orig Mon Oct 7 22:57:59 2002 -+++ doc/make.texi Mon Oct 7 22:58:03 2002 -@@ -25,9 +25,9 @@ - @c Combine the program and concept indices: - @syncodeindex pg cp - --@dircategory GNU Packages -+@dircategory Programming & development tools - @direntry --* Make: (make). Remake files automatically. -+* GNU make: (make). Remake files automatically. - @end direntry - - @ifinfo diff --git a/devel/gmake381/files/patch-make.h b/devel/gmake381/files/patch-make.h deleted file mode 100644 index 28a63d2eb076..000000000000 --- a/devel/gmake381/files/patch-make.h +++ /dev/null @@ -1,12 +0,0 @@ ---- make.h.orig Wed Sep 11 18:55:44 2002 -+++ make.h Mon Oct 21 22:05:11 2002 -@@ -33,7 +33,7 @@ - # ifdef _AIX - #pragma alloca - # else --# ifndef alloca /* predefined by HP cc +Olibcalls */ -+# if !defined (alloca) && !defined (__FreeBSD__) /* predefined by HP cc +Olibcalls, part of stdlib.h on FreeBSD */ - char *alloca (); - # endif - # endif - diff --git a/devel/gmake381/pkg-descr b/devel/gmake381/pkg-descr deleted file mode 100644 index d7f5370aeb8b..000000000000 --- a/devel/gmake381/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -GNU make is a tool that controls the generation of executables and other -non-source files from source files. Its purpose is the same as that -of the utility make(1). - -WWW: http://www.gnu.org/software/make/make.html diff --git a/devel/gmake381/pkg-plist b/devel/gmake381/pkg-plist deleted file mode 100644 index 596ac18a9553..000000000000 --- a/devel/gmake381/pkg-plist +++ /dev/null @@ -1,26 +0,0 @@ -bin/gmake -%%NLS%%share/locale/be/LC_MESSAGES/make.mo -%%NLS%%share/locale/da/LC_MESSAGES/make.mo -%%NLS%%share/locale/de/LC_MESSAGES/make.mo -%%NLS%%share/locale/es/LC_MESSAGES/make.mo -%%NLS%%share/locale/fi/LC_MESSAGES/make.mo -%%NLS%%share/locale/fr/LC_MESSAGES/make.mo -%%NLS%%share/locale/ga/LC_MESSAGES/make.mo -%%NLS%%share/locale/gl/LC_MESSAGES/make.mo -%%NLS%%share/locale/he/LC_MESSAGES/make.mo -%%NLS%%share/locale/hr/LC_MESSAGES/make.mo -%%NLS%%share/locale/id/LC_MESSAGES/make.mo -%%NLS%%share/locale/ja/LC_MESSAGES/make.mo -%%NLS%%share/locale/ko/LC_MESSAGES/make.mo -%%NLS%%share/locale/nl/LC_MESSAGES/make.mo -%%NLS%%share/locale/pl/LC_MESSAGES/make.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/make.mo -%%NLS%%share/locale/ru/LC_MESSAGES/make.mo -%%NLS%%share/locale/rw/LC_MESSAGES/make.mo -%%NLS%%share/locale/sv/LC_MESSAGES/make.mo -%%NLS%%share/locale/tr/LC_MESSAGES/make.mo -%%NLS%%share/locale/uk/LC_MESSAGES/make.mo -%%NLS%%share/locale/vi/LC_MESSAGES/make.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/make.mo -%%NLS%%@dirrmtry share/locale/rw/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/rw diff --git a/devel/hs-BNFC/Makefile b/devel/hs-BNFC/Makefile deleted file mode 100644 index 0193f06b64b9..000000000000 --- a/devel/hs-BNFC/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: bnfc -# Date created: 2007-02-11 -# Whom: Kai Wang <kaiw27@gmail.com> -# -# $FreeBSD$ -# - -PORTNAME= bnfc -PORTVERSION= 2.4b -PORTREVISION= 1 -CATEGORIES= devel -MASTER_SITES= http://www.cs.chalmers.se/Cs/Research/Language-technology/BNFC/download/ \ - http://web.student.chalmers.se/~kaiw/FreeBSD/disfiles/ -DISTNAME= BNFC-${PORTVERSION} -EXTRACT_SUFX= .tgz - -MAINTAINER= kaiw27@gmail.com -COMMENT= A Labelled BNF converter - -BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc - -WRKSRC= ${WRKDIR}/BNFC -USE_GMAKE= yes - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bnfc ${PREFIX}/bin - -post-install: - ${MKDIR} ${EXAMPLESDIR} - ${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${CP} -R ${WRKSRC}/doc/* ${DOCSDIR} -.endif - -.include <bsd.port.mk> diff --git a/devel/hs-BNFC/distinfo b/devel/hs-BNFC/distinfo deleted file mode 100644 index d76c688498db..000000000000 --- a/devel/hs-BNFC/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (BNFC-2.4b.tgz) = 8eac71d4883e5209a6c78fbad2c2c5fd -SHA256 (BNFC-2.4b.tgz) = fba3ae8546f37bed3ca224db336e6417b5ead442570f09e15be0507334c01772 -SIZE (BNFC-2.4b.tgz) = 1073563 diff --git a/devel/hs-BNFC/pkg-descr b/devel/hs-BNFC/pkg-descr deleted file mode 100644 index 6f9ec8f2a61a..000000000000 --- a/devel/hs-BNFC/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -The BNF Converter is a compiler construction tool generating a -compiler front-end from a Labeled BNF grammar. It was originally -written to generate Haskell, but starting from Version 2.0, it can -also be used for generating Java, C++, and C. - -Given a Labeled BNF grammar the tool produces: - - * an abstract syntax as a Haskell/C++/C module or Java directory - * a case skeleton for the abstract syntax in the same language - * an Alex, JLex, or Flex lexer generator file - * a Happy, CUP, or Bison parser generator file - * a pretty-printer as a Haskell/Java/C++/C module - * a Latex file containing a readable specification of the language - -WWW: http://www.cs.chalmers.se/~markus/BNFC/ diff --git a/devel/hs-BNFC/pkg-plist b/devel/hs-BNFC/pkg-plist deleted file mode 100644 index a0e908079abd..000000000000 --- a/devel/hs-BNFC/pkg-plist +++ /dev/null @@ -1,126 +0,0 @@ -bin/bnfc -%%PORTDOCS%%%%DOCSDIR%%/BNF.jpg -%%PORTDOCS%%%%DOCSDIR%%/BNFC_XML.html -%%PORTDOCS%%%%DOCSDIR%%/BNFConv.bib -%%PORTDOCS%%%%DOCSDIR%%/BNF_Converter_CPP_Mode.html -%%PORTDOCS%%%%DOCSDIR%%/BNF_Converter_C_Mode.html -%%PORTDOCS%%%%DOCSDIR%%/BNF_Converter_Haskell_Mode.html -%%PORTDOCS%%%%DOCSDIR%%/BNF_Converter_Java1_5_Mode.html -%%PORTDOCS%%%%DOCSDIR%%/BNF_Converter_Java_Mode.html -%%PORTDOCS%%%%DOCSDIR%%/BNF_Converter_OCaml_Mode.html -%%PORTDOCS%%%%DOCSDIR%%/BNF_Report.tex -%%PORTDOCS%%%%DOCSDIR%%/CC-2004.bib -%%PORTDOCS%%%%DOCSDIR%%/CC-2004.tex -%%PORTDOCS%%%%DOCSDIR%%/HW-tooldemo.tex -%%PORTDOCS%%%%DOCSDIR%%/HW2004.pdf -%%PORTDOCS%%%%DOCSDIR%%/HW2004.sxi -%%PORTDOCS%%%%DOCSDIR%%/HW2004_slides.tex -%%PORTDOCS%%%%DOCSDIR%%/LBNF-report.pdf -%%PORTDOCS%%%%DOCSDIR%%/LBNF-report.tex -%%PORTDOCS%%%%DOCSDIR%%/LBNF.tex -%%PORTDOCS%%%%DOCSDIR%%/Makefile -%%PORTDOCS%%%%DOCSDIR%%/bnf-converter.html -%%PORTDOCS%%%%DOCSDIR%%/bnfc_1.1.html -%%PORTDOCS%%%%DOCSDIR%%/c.tex -%%PORTDOCS%%%%DOCSDIR%%/cc-2004/BNFConv.bib -%%PORTDOCS%%%%DOCSDIR%%/cc-2004/CC-2004.bib -%%PORTDOCS%%%%DOCSDIR%%/cc-2004/CC-2004.tex -%%PORTDOCS%%%%DOCSDIR%%/cc-2004/LBNF.tex -%%PORTDOCS%%%%DOCSDIR%%/cc-2004/c.tex -%%PORTDOCS%%%%DOCSDIR%%/cc-2004/cpp.tex -%%PORTDOCS%%%%DOCSDIR%%/cc-2004/haskell.tex -%%PORTDOCS%%%%DOCSDIR%%/cc-2004/java.tex -%%PORTDOCS%%%%DOCSDIR%%/cc-2004/lbnf_spec.tex -%%PORTDOCS%%%%DOCSDIR%%/cc-2004/llncs.cls -%%PORTDOCS%%%%DOCSDIR%%/cc-2004/prototyping.tex -%%PORTDOCS%%%%DOCSDIR%%/cpp.tex -%%PORTDOCS%%%%DOCSDIR%%/default.css -%%PORTDOCS%%%%DOCSDIR%%/examples/Alfa.cf -%%PORTDOCS%%%%DOCSDIR%%/examples/C.cf -%%PORTDOCS%%%%DOCSDIR%%/examples/DefinedRules.cf -%%PORTDOCS%%%%DOCSDIR%%/examples/LBNF.cf -%%PORTDOCS%%%%DOCSDIR%%/examples/Sorting.alfa -%%PORTDOCS%%%%DOCSDIR%%/examples/runtime.c -%%PORTDOCS%%%%DOCSDIR%%/glr-bnfc.html -%%PORTDOCS%%%%DOCSDIR%%/gpce-04/GPCE-2004.bib -%%PORTDOCS%%%%DOCSDIR%%/gpce-04/GPCE-2004.tex -%%PORTDOCS%%%%DOCSDIR%%/gpce-04/LBNF.tex -%%PORTDOCS%%%%DOCSDIR%%/gpce-04/Makefile -%%PORTDOCS%%%%DOCSDIR%%/gpce-04/c.tex -%%PORTDOCS%%%%DOCSDIR%%/gpce-04/cpp.tex -%%PORTDOCS%%%%DOCSDIR%%/gpce-04/haskell.tex -%%PORTDOCS%%%%DOCSDIR%%/gpce-04/java.tex -%%PORTDOCS%%%%DOCSDIR%%/gpce-04/lbnf_spec.tex -%%PORTDOCS%%%%DOCSDIR%%/gpce-04/llncs.cls -%%PORTDOCS%%%%DOCSDIR%%/gpce-04/prototyping.tex -%%PORTDOCS%%%%DOCSDIR%%/haskell.tex -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/java.tex -%%PORTDOCS%%%%DOCSDIR%%/lbnf_spec.tex -%%PORTDOCS%%%%DOCSDIR%%/llncs.cls -%%PORTDOCS%%%%DOCSDIR%%/pragmas.html -%%PORTDOCS%%%%DOCSDIR%%/prototyping.tex -%%PORTDOCS%%%%DOCSDIR%%/quick.html -%%PORTDOCS%%%%DOCSDIR%%/retrospect2006.txt -%%PORTDOCS%%%%DOCSDIR%%/sig-alt.cls -%%PORTDOCS%%%%DOCSDIR%%/tech-2004/BNFC_tech_2004.bib -%%PORTDOCS%%%%DOCSDIR%%/tech-2004/BNFC_tech_2004.tex -%%PORTDOCS%%%%DOCSDIR%%/tech-2004/ChalmGUmarke.eps -%%PORTDOCS%%%%DOCSDIR%%/tech-2004/ChalmGUtextsvEng.eps -%%PORTDOCS%%%%DOCSDIR%%/tech-2004/Makefile -%%PORTDOCS%%%%DOCSDIR%%/tech-2004/tech2004.tex -%%PORTDOCS%%%%DOCSDIR%%/tutorial/Makefile -%%PORTDOCS%%%%DOCSDIR%%/tutorial/bnfc-tutorial.html -%%PORTDOCS%%%%DOCSDIR%%/tutorial/bnfc-tutorial.txt -%%PORTDOCS%%%%DOCSDIR%%/tutorial/calc/Calc.cf -%%PORTDOCS%%%%DOCSDIR%%/tutorial/calc/c/Interpret.c -%%PORTDOCS%%%%DOCSDIR%%/tutorial/calc/c/Interpreter.c -%%PORTDOCS%%%%DOCSDIR%%/tutorial/calc/c/Interpreter.h -%%PORTDOCS%%%%DOCSDIR%%/tutorial/calc/ex1.calc -%%PORTDOCS%%%%DOCSDIR%%/tutorial/calc/haskell/Compile.hs -%%PORTDOCS%%%%DOCSDIR%%/tutorial/calc/haskell/Compiler.hs -%%PORTDOCS%%%%DOCSDIR%%/tutorial/calc/haskell/Interpret.hs -%%PORTDOCS%%%%DOCSDIR%%/tutorial/calc/haskell/Interpreter.hs -%%PORTDOCS%%%%DOCSDIR%%/tutorial/calc/java/Calc/Interpret.java -%%PORTDOCS%%%%DOCSDIR%%/tutorial/calc/java/Calc/Interpreter.java -%%PORTDOCS%%%%DOCSDIR%%/tutorial/cmm/CMM.cf -%%PORTDOCS%%%%DOCSDIR%%/tutorial/cmm/fibonacci.cmm -%%PORTDOCS%%%%DOCSDIR%%/tutorial/tuttree.dot -%%PORTDOCS%%%%DOCSDIR%%/tutorial/tuttree.png -%%PORTDOCS%%%%DOCSDIR%%/user.html -%%EXAMPLESDIR%%/C4.cf -%%EXAMPLESDIR%%/JavaletteLight.cf -%%EXAMPLESDIR%%/OCL.cf -%%EXAMPLESDIR%%/Prolog.cf -%%EXAMPLESDIR%%/fstStudio.cf -%%EXAMPLESDIR%%/haskell-core/AbsCore.hcr -%%EXAMPLESDIR%%/haskell-core/Core.cf -%%EXAMPLESDIR%%/haskell-core/Hello.hcr -%%EXAMPLESDIR%%/haskell-core/ParCore.hcr -%%EXAMPLESDIR%%/haskell-core/README -%%EXAMPLESDIR%%/haskell-core/TopCore.hs -%%EXAMPLESDIR%%/haskell-core/notes.txt -%%EXAMPLESDIR%%/koe.jll -%%EXAMPLESDIR%%/koe2.c -%%EXAMPLESDIR%%/multi/Arithm.cf -%%EXAMPLESDIR%%/multi/TestArithm.hs -%%EXAMPLESDIR%%/multi/types/Types.cf -%%EXAMPLESDIR%%/multi/types/ex.old -%%EXAMPLESDIR%%/prolog.pl -%%EXAMPLESDIR%%/small.pl -@dirrm %%EXAMPLESDIR%%/multi/types -@dirrm %%EXAMPLESDIR%%/multi -@dirrm %%EXAMPLESDIR%%/haskell-core -@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial/cmm -%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial/calc/java/Calc -%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial/calc/java -%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial/calc/haskell -%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial/calc/c -%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial/calc -%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial -%%PORTDOCS%%@dirrm %%DOCSDIR%%/tech-2004 -%%PORTDOCS%%@dirrm %%DOCSDIR%%/gpce-04 -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples -%%PORTDOCS%%@dirrm %%DOCSDIR%%/cc-2004 -%%PORTDOCS%%@dirrm %%DOCSDIR%% diff --git a/devel/hs-darcs/Makefile b/devel/hs-darcs/Makefile deleted file mode 100644 index b21db785a83c..000000000000 --- a/devel/hs-darcs/Makefile +++ /dev/null @@ -1,62 +0,0 @@ -# New ports collection makefile for: darcs -# Date created: 13 April 2003 -# Whom: Oliver Braun <obraun@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= darcs -PORTVERSION= 2.0.2 -CATEGORIES= devel -MASTER_SITES= http://darcs.net/ - -MAINTAINER= haskell@FreeBSD.org -COMMENT= Yet another replacement for CVS, written in Haskell - -BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl \ - gmp.7:${PORTSDIR}/math/libgmp4 - -OPTIONS= SERVER "install server" on -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib -L${PREFIX}/lib/ ${PTHREAD_LIBS}" \ - CFLAGS="" -USE_GMAKE= yes -MAKEFILE= GNUmakefile -INSTALL_TARGET= installbin - -.include <bsd.port.pre.mk> - -.if defined(WITH_SERVER) -BUILD_DEPENDS+= xsltproc:${PORTSDIR}/textproc/libxslt -RUN_DEPENDS+= xsltproc:${PORTSDIR}/textproc/libxslt -INSTALL_TARGET+= installserver -.if !exists(${PREFIX}/www) && exists(${PREFIX}/share/apache) -CGIDIR?= share/apache/cgi-bin -.else -CGIDIR?= www/cgi-bin -.endif -PLIST_SUB+= CGIDIR=${CGIDIR} SERVER="" -.else -PLIST_SUB+= SERVER="@comment " -.endif -.if !defined(NOPORTDOCS) -BUILD_DEPENDS+= latex:${PORTSDIR}/print/teTeX-base -ALL_TARGET+= doc/manual/darcs.ps doc/manual/patch-theory.pdf doc/manual/index.html -INSTALL_TARGET+= installdocs -.endif - -MAN1= darcs.1 - -.if defined(WITH_SERVER) -post-patch: - @${REINPLACE_CMD} -e 's|$$(libexecdir)/cgi-bin|${PREFIX}/${CGIDIR}| ; \ - s|darcs/cgi.conf|darcs/cgi.conf.sample|' \ - ${WRKSRC}/${MAKEFILE} -.endif - -post-install: - @${STRIP_CMD} ${PREFIX}/bin/darcs - -.include <bsd.port.post.mk> diff --git a/devel/hs-darcs/distinfo b/devel/hs-darcs/distinfo deleted file mode 100644 index 5b0575a252aa..000000000000 --- a/devel/hs-darcs/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (darcs-2.0.2.tar.gz) = f216b019dc9fc83cf920f715b1da375c -SHA256 (darcs-2.0.2.tar.gz) = 164c87bb7e41d1e81c4423432804b634862269291fa495f25e7f67f1b95bf49e -SIZE (darcs-2.0.2.tar.gz) = 1800653 diff --git a/devel/hs-darcs/pkg-descr b/devel/hs-darcs/pkg-descr deleted file mode 100644 index 83782f2a970f..000000000000 --- a/devel/hs-darcs/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -David's Advanced Revision Control System is yet another replacement for CVS. It -is written in haskell. - -WWW: http://darcs.net/ diff --git a/devel/hs-darcs/pkg-plist b/devel/hs-darcs/pkg-plist deleted file mode 100644 index 6414940ddcd3..000000000000 --- a/devel/hs-darcs/pkg-plist +++ /dev/null @@ -1,94 +0,0 @@ -bin/darcs -etc/bash_completion.d/darcs -%%SERVER%%%%CGIDIR%%/darcs.cgi -%%SERVER%%etc/darcs/cgi.conf.sample -%%SERVER%%etc/darcs/styles.css -%%SERVER%%share/darcs/xslt/annotate.xslt -%%SERVER%%share/darcs/xslt/browse.xslt -%%SERVER%%share/darcs/xslt/common.xslt -%%SERVER%%share/darcs/xslt/errors.xslt -%%SERVER%%share/darcs/xslt/errors.xml -%%SERVER%%share/darcs/xslt/patches.xslt -%%SERVER%%share/darcs/xslt/repos.xslt -%%SERVER%%share/darcs/xslt/rss.xslt -%%SERVER%%share/darcs/xslt/styles.css -%%PORTDOCS%%%%DOCSDIR%%/examples/zsh_completion_new -%%PORTDOCS%%%%DOCSDIR%%/examples/zsh_completion_old -%%PORTDOCS%%%%DOCSDIR%%/manual/WARNINGS -%%PORTDOCS%%%%DOCSDIR%%/manual/contents.png -%%PORTDOCS%%%%DOCSDIR%%/manual/crossref.png -%%PORTDOCS%%%%DOCSDIR%%/manual/darcs.css -%%PORTDOCS%%%%DOCSDIR%%/manual/darcs.html -%%PORTDOCS%%%%DOCSDIR%%/manual/darcs.pdf -%%PORTDOCS%%%%DOCSDIR%%/manual/darcs.ps -%%PORTDOCS%%%%DOCSDIR%%/manual/footnode.html -%%PORTDOCS%%%%DOCSDIR%%/manual/images.aux -%%PORTDOCS%%%%DOCSDIR%%/manual/images.log -%%PORTDOCS%%%%DOCSDIR%%/manual/images.pl -%%PORTDOCS%%%%DOCSDIR%%/manual/images.tex -%%PORTDOCS%%%%DOCSDIR%%/manual/img1.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img10.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img11.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img12.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img13.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img14.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img15.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img16.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img17.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img18.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img19.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img2.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img20.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img21.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img22.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img23.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img24.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img25.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img26.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img27.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img28.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img29.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img3.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img30.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img31.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img32.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img33.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img34.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img35.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img36.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img4.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img5.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img6.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img7.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img8.png -%%PORTDOCS%%%%DOCSDIR%%/manual/img9.png -%%PORTDOCS%%%%DOCSDIR%%/manual/index.html -%%PORTDOCS%%%%DOCSDIR%%/manual/internals.pl -%%PORTDOCS%%%%DOCSDIR%%/manual/labels.pl -%%PORTDOCS%%%%DOCSDIR%%/manual/next.png -%%PORTDOCS%%%%DOCSDIR%%/manual/next_g.png -%%PORTDOCS%%%%DOCSDIR%%/manual/node1.html -%%PORTDOCS%%%%DOCSDIR%%/manual/node10.html -%%PORTDOCS%%%%DOCSDIR%%/manual/node11.html -%%PORTDOCS%%%%DOCSDIR%%/manual/node2.html -%%PORTDOCS%%%%DOCSDIR%%/manual/node3.html -%%PORTDOCS%%%%DOCSDIR%%/manual/node4.html -%%PORTDOCS%%%%DOCSDIR%%/manual/node5.html -%%PORTDOCS%%%%DOCSDIR%%/manual/node6.html -%%PORTDOCS%%%%DOCSDIR%%/manual/node7.html -%%PORTDOCS%%%%DOCSDIR%%/manual/node8.html -%%PORTDOCS%%%%DOCSDIR%%/manual/node9.html -%%PORTDOCS%%%%DOCSDIR%%/manual/nx_grp_g.png -%%PORTDOCS%%%%DOCSDIR%%/manual/patch-theory.pdf -%%PORTDOCS%%%%DOCSDIR%%/manual/prev.png -%%PORTDOCS%%%%DOCSDIR%%/manual/prev_g.png -%%PORTDOCS%%%%DOCSDIR%%/manual/up.png -%%PORTDOCS%%%%DOCSDIR%%/manual/up_g.png -@dirrm etc/bash_completion.d -%%SERVER%%@dirrmtry etc/darcs -%%SERVER%%@dirrmtry www/cgi-bin -%%SERVER%%@dirrm share/darcs/xslt -%%SERVER%%@dirrm share/darcs -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples -%%PORTDOCS%%@dirrm %%DOCSDIR%%/manual -%%PORTDOCS%%@dirrm %%DOCSDIR%% diff --git a/devel/icu4/Makefile b/devel/icu4/Makefile deleted file mode 100644 index 2a4fd5892604..000000000000 --- a/devel/icu4/Makefile +++ /dev/null @@ -1,83 +0,0 @@ -# New ports collection makefile for: icu -# Date created: 22 Jan 2001 -# Whom: dwm -# -# $FreeBSD$ -# - -PORTNAME= icu -PORTVERSION= 3.8.1 -PORTREVISION= 1 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR=${PORTNAME} -DISTNAME= icu4c-${PORTVERSION:S/./_/g} -EXTRACT_SUFX= -src.tgz - -MAINTAINER= mi@aldan.algebra.com -COMMENT= International Components for Unicode (from IBM) - -OPTIONS= THREADS "Build thread-safe version of the library" on -CONFLICTS= icu2-[0-9]* - -USE_LDCONFIG= yes - -WRKSRC= ${WRKDIR}/icu/source - -GNU_CONFIGURE= yes -CONFIGURE_SCRIPT= runConfigureICU -CONFIGURE_ARGS+= ${OPSYS} -CONFIGURE_ARGS+= --enable-shared -CONFIGURE_ARGS+= --enable-static -CONFIGURE_ARGS+= --enable-samples=no -ALL_TARGET= -j`${SYSCTL} -n hw.ncpu` - -USE_GMAKE= yes - -MAN1+= derb.1 -MAN1+= genbrk.1 -MAN1+= gencnval.1 -MAN1+= genctd.1 -MAN1+= genrb.1 -MAN1+= icu-config.1 -MAN1+= makeconv.1 -MAN1+= pkgdata.1 -MAN1+= uconv.1 -MAN8+= icupkg.8 -MAN8+= genccode.8 -MAN8+= gencmn.8 -MAN8+= gensprep.8 -MAN8+= genuca.8 - -ICUMAJOR= ${PORTVERSION:S/.//:R} -PLIST_SUB+= ICUMAJOR=${ICUMAJOR} ICUMINOR=1 -PLIST_SUB+= ICUVER=${PORTVERSION} - -.include <bsd.port.pre.mk> - -.if ${CC:T} == "cc" -CFLAGS:= ${CFLAGS:N-funroll-loops:N-O*:N-*strict-aliasing} -O2 -fno-strict-aliasing -.endif -.if ${CXX:T} == "c++" -CXXFLAGS:= ${CXXFLAGS:N-funroll-loops:N-O*:N-*strict-aliasing} -O2 -fno-strict-aliasing -.endif -CONFIGURE_ENV+= CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" - -.if defined(WITHOUT_THREADS) -CONFIGURE_ARGS+= --enable-threads=no -.else -# This builds thread-safe, but not the thread-using version: -CONFIGURE_ARGS+= --enable-weak-threads -post-patch: - ${REINPLACE_CMD} -e 's,\(THREADSC.*FLAGS\).*,\1=${PTHREAD_CFLAGS},g' ${WRKSRC}/config/mh-bsd-gcc -.endif - -iotest cintltst intltest: - -${GMAKE} -C ${WRKSRC}/test - cd ${WRKSRC}/test/${.TARGET} && ${SETENV} \ - LD_LIBRARY_PATH=${WRKSRC}/lib:${WRKSRC}/tools/ctestfw \ - ./${.TARGET} - -post-build test: iotest cintltst intltest - -.include <bsd.port.post.mk> diff --git a/devel/icu4/distinfo b/devel/icu4/distinfo deleted file mode 100644 index 0f8fe7c770f0..000000000000 --- a/devel/icu4/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (icu4c-3_8_1-src.tgz) = a827dbc9d909febd4ec39b90386868ba -SHA256 (icu4c-3_8_1-src.tgz) = 16dda09dff3f770e629313a4c50a82fee88baf87d89a3bb2a28806be07766cee -SIZE (icu4c-3_8_1-src.tgz) = 10998841 diff --git a/devel/icu4/files/patch-CVE-2007-4770 b/devel/icu4/files/patch-CVE-2007-4770 deleted file mode 100644 index 7d6cdf43766d..000000000000 --- a/devel/icu4/files/patch-CVE-2007-4770 +++ /dev/null @@ -1,304 +0,0 @@ -Index: /icu/branches/maint/maint-3-8/source/i18n/regexcmp.cpp -=================================================================== ---- i18n/regexcmp.cpp (revision 21805) -+++ i18n/regexcmp.cpp (revision 23292) -@@ -3,5 +3,5 @@ - // file: regexcmp.cpp - // --// Copyright (C) 2002-2007 International Business Machines Corporation and others. -+// Copyright (C) 2002-2008 International Business Machines Corporation and others. - // All Rights Reserved. - // -@@ -1187,12 +1187,15 @@ - // we fill the operand with the capture group number. At the end - // of compilation, it will be changed to the variable's location. -- U_ASSERT(groupNum > 0); -- int32_t op; -- if (fModeFlags & UREGEX_CASE_INSENSITIVE) { -- op = URX_BUILD(URX_BACKREF_I, groupNum); -+ if (groupNum < 1) { -+ error(U_REGEX_INVALID_BACK_REF); - } else { -- op = URX_BUILD(URX_BACKREF, groupNum); -- } -- fRXPat->fCompiledPat->addElement(op, *fStatus); -+ int32_t op; -+ if (fModeFlags & UREGEX_CASE_INSENSITIVE) { -+ op = URX_BUILD(URX_BACKREF_I, groupNum); -+ } else { -+ op = URX_BUILD(URX_BACKREF, groupNum); -+ } -+ fRXPat->fCompiledPat->addElement(op, *fStatus); -+ } - } - break; -Index: /icu/branches/maint/maint-3-8/source/i18n/rematch.cpp -=================================================================== ---- i18n/rematch.cpp (revision 21973) -+++ i18n/rematch.cpp (revision 23292) -@@ -1,5 +1,5 @@ - /* - ************************************************************************** --* Copyright (C) 2002-2007 International Business Machines Corporation * -+* Copyright (C) 2002-2008 International Business Machines Corporation * - * and others. All rights reserved. * - ************************************************************************** -@@ -30,4 +30,13 @@ - - U_NAMESPACE_BEGIN -+ -+// Limit the size of the back track stack, to avoid system failures caused -+// by heap exhaustion. Units are in 32 bit words, not bytes. -+// This value puts ICU's limits higher than most other regexp implementations, -+// which use recursion rather than the heap, and take more storage per -+// backtrack point. -+// This constant is _temporary_. Proper API to control the value will added. -+// -+static const int32_t BACKTRACK_STACK_CAPACITY = 8000000; - - //----------------------------------------------------------------------------- -@@ -54,6 +63,7 @@ - if (fStack == NULL || fData == NULL) { - fDeferredStatus = U_MEMORY_ALLOCATION_ERROR; -- } -- -+ } else { -+ fStack->setMaxCapacity(BACKTRACK_STACK_CAPACITY); -+ } - reset(RegexStaticSets::gStaticSets->fEmptyString); - } -@@ -79,4 +89,6 @@ - if (fStack == NULL || fData == NULL) { - status = U_MEMORY_ALLOCATION_ERROR; -+ } else { -+ fStack->setMaxCapacity(BACKTRACK_STACK_CAPACITY); - } - reset(input); -@@ -103,4 +115,6 @@ - if (fStack == NULL || fData == NULL) { - status = U_MEMORY_ALLOCATION_ERROR; -+ } else { -+ fStack->setMaxCapacity(BACKTRACK_STACK_CAPACITY); - } - reset(RegexStaticSets::gStaticSets->fEmptyString); -@@ -1015,4 +1029,12 @@ - // push storage for a new frame. - int32_t *newFP = fStack->reserveBlock(frameSize, status); -+ if (newFP == NULL) { -+ // Heap allocation error on attempted stack expansion. -+ // We need to return a writable stack frame, so just return the -+ // previous frame. The match operation will stop quickly -+ // becuase of the error status, after which the frame will never -+ // be looked at again. -+ return fp; -+ } - fp = (REStackFrame *)(newFP - frameSize); // in case of realloc of stack. - -@@ -1030,6 +1052,6 @@ - return (REStackFrame *)newFP; - } -- -- -+ -+ - //-------------------------------------------------------------------------------- - // -@@ -2262,4 +2284,5 @@ - - if (U_FAILURE(status)) { -+ isMatch = FALSE; - break; - } -Index: /icu/branches/maint/maint-3-8/source/test/intltest/regextst.h -=================================================================== ---- test/intltest/regextst.h (revision 22001) -+++ test/intltest/regextst.h (revision 23292) -@@ -1,5 +1,5 @@ - /******************************************************************** - * COPYRIGHT: -- * Copyright (c) 2002-2007, International Business Machines Corporation and -+ * Copyright (c) 2002-2008, International Business Machines Corporation and - * others. All Rights Reserved. - ********************************************************************/ -@@ -31,4 +31,5 @@ - virtual void Errors(); - virtual void PerlTests(); -+ virtual void Bug6149(); - - // The following functions are internal to the regexp tests. -Index: /icu/branches/maint/maint-3-8/source/test/intltest/regextst.cpp -=================================================================== ---- test/intltest/regextst.cpp (revision 22057) -+++ test/intltest/regextst.cpp (revision 23292) -@@ -1,5 +1,5 @@ - /******************************************************************** - * COPYRIGHT: -- * Copyright (c) 2002-2007, International Business Machines Corporation and -+ * Copyright (c) 2002-2008, International Business Machines Corporation and - * others. All Rights Reserved. - ********************************************************************/ -@@ -67,4 +67,8 @@ - if (exec) PerlTests(); - break; -+ case 7: name = "Bug 6149"; -+ if (exec) Bug6149(); -+ break; -+ - - -@@ -1640,4 +1644,10 @@ - // Ticket 5389 - REGEX_ERR("*c", 1, 1, U_REGEX_RULE_SYNTAX); -+ -+ // Invalid Back Reference \0 -+ // For ICU 3.8 and earlier -+ // For ICU versions newer than 3.8, \0 introduces an octal escape. -+ // -+ REGEX_ERR("(ab)\\0", 1, 6, U_REGEX_INVALID_BACK_REF); - - } -@@ -2123,4 +2133,24 @@ - - -+//-------------------------------------------------------------- -+// -+// Bug6149 Verify limits to heap expansion for backtrack stack. -+// Use this pattern, -+// "(a?){1,}" -+// The zero-length match will repeat forever. -+// (That this goes into a loop is another bug) -+// -+//--------------------------------------------------------------- -+void RegexTest::Bug6149() { -+ UnicodeString pattern("(a?){1,}"); -+ UnicodeString s("xyz"); -+ uint32_t flags = 0; -+ UErrorCode status = U_ZERO_ERROR; -+ -+ RegexMatcher matcher(pattern, s, flags, status); -+ UBool result = false; -+ REGEX_ASSERT_FAIL(result=matcher.matches(status), U_BUFFER_OVERFLOW_ERROR); -+ REGEX_ASSERT(result == FALSE); -+ } - - #endif /* !UCONFIG_NO_REGULAR_EXPRESSIONS */ -Index: /icu/branches/maint/maint-3-8/source/common/uvectr32.cpp -=================================================================== ---- common/uvectr32.cpp (revision 12958) -+++ common/uvectr32.cpp (revision 23292) -@@ -1,5 +1,5 @@ - /* - ****************************************************************************** --* Copyright (C) 1999-2003, International Business Machines Corporation and * -+* Copyright (C) 1999-2008, International Business Machines Corporation and * - * others. All Rights Reserved. * - ****************************************************************************** -@@ -27,4 +27,5 @@ - count(0), - capacity(0), -+ maxCapacity(0), - elements(NULL) - { -@@ -35,4 +36,5 @@ - count(0), - capacity(0), -+ maxCapacity(0), - elements(0) - { -@@ -46,4 +48,7 @@ - if (initialCapacity < 1) { - initialCapacity = DEFUALT_CAPACITY; -+ } -+ if (maxCapacity>0 && maxCapacity<initialCapacity) { -+ initialCapacity = maxCapacity; - } - elements = (int32_t *)uprv_malloc(sizeof(int32_t)*initialCapacity); -@@ -190,19 +195,33 @@ - if (capacity >= minimumCapacity) { - return TRUE; -- } else { -- int32_t newCap = capacity * 2; -- if (newCap < minimumCapacity) { -- newCap = minimumCapacity; -- } -- int32_t* newElems = (int32_t *)uprv_malloc(sizeof(int32_t)*newCap); -- if (newElems == 0) { -- status = U_MEMORY_ALLOCATION_ERROR; -- return FALSE; -- } -- uprv_memcpy(newElems, elements, sizeof(elements[0]) * count); -- uprv_free(elements); -- elements = newElems; -- capacity = newCap; -- return TRUE; -+ } -+ if (maxCapacity>0 && minimumCapacity>maxCapacity) { -+ status = U_BUFFER_OVERFLOW_ERROR; -+ return FALSE; -+ } -+ int32_t newCap = capacity * 2; -+ if (newCap < minimumCapacity) { -+ newCap = minimumCapacity; -+ } -+ if (maxCapacity > 0 && newCap > maxCapacity) { -+ newCap = maxCapacity; -+ } -+ int32_t* newElems = (int32_t *)uprv_malloc(sizeof(int32_t)*newCap); -+ if (newElems == 0) { -+ status = U_MEMORY_ALLOCATION_ERROR; -+ return FALSE; -+ } -+ uprv_memcpy(newElems, elements, sizeof(elements[0]) * count); -+ uprv_free(elements); -+ elements = newElems; -+ capacity = newCap; -+ return TRUE; -+} -+ -+void UVector32::setMaxCapacity(int32_t limit) { -+ U_ASSERT(limit >= 0); -+ maxCapacity = limit; -+ if (maxCapacity < 0) { -+ maxCapacity = 0; - } - } -Index: /icu/branches/maint/maint-3-8/source/common/uvectr32.h -=================================================================== ---- common/uvectr32.h (revision 19000) -+++ common/uvectr32.h (revision 23292) -@@ -1,5 +1,5 @@ - /* - ********************************************************************** --* Copyright (C) 1999-2006, International Business Machines -+* Copyright (C) 1999-2008, International Business Machines - * Corporation and others. All Rights Reserved. - ********************************************************************** -@@ -62,4 +62,6 @@ - - int32_t capacity; -+ -+ int32_t maxCapacity; // Limit beyond which capacity is not permitted to grow. - - int32_t* elements; -@@ -161,4 +163,12 @@ - */ - int32_t *getBuffer() const; -+ -+ /** -+ * Set the maximum allowed buffer capacity for this vector/stack. -+ * Default with no limit set is unlimited, go until malloc() fails. -+ * A Limit of zero means unlimited capacity. -+ * Units are vector elements (32 bits each), not bytes. -+ */ -+ void setMaxCapacity(int32_t limit); - - /** -@@ -222,5 +232,7 @@ - - inline int32_t *UVector32::reserveBlock(int32_t size, UErrorCode &status) { -- ensureCapacity(count+size, status); -+ if (ensureCapacity(count+size, status) == FALSE) { -+ return NULL; -+ } - int32_t *rp = elements+count; - count += size; diff --git a/devel/icu4/files/patch-cc-flags b/devel/icu4/files/patch-cc-flags deleted file mode 100644 index 7de91a1a6aa6..000000000000 --- a/devel/icu4/files/patch-cc-flags +++ /dev/null @@ -1,27 +0,0 @@ ---- runConfigureICU Fri Jan 16 17:26:40 2004 -+++ runConfigureICU Mon Nov 15 11:05:50 2004 -@@ -289,7 +289,7 @@ - *BSD) -- THE_OS="BSD" -+ THE_OS="$platform" -- THE_COMP="the GNU C++" -- CC=gcc; export CC -- CXX=g++; export CXX -+ CC=${CC:=cc}; export CC -+ CXX=${CXX:=c++}; export CXX -+ THE_COMP="`$CC -v | fgrep -i ver`" # works with icc and gcc at least - ;; - QNX) -@@ -358,12 +358,4 @@ - if test $release -eq 1 - then -- if test "$RELEASE_CFLAGS" = "" -- then -- case $CC in -- gcc|*/gcc|*-gcc-*|*/*-gcc-*) -- RELEASE_CFLAGS=-O3 -- ;; -- esac -- fi - if test "$RELEASE_CFLAGS" != "" - then diff --git a/devel/icu4/files/patch-install b/devel/icu4/files/patch-install deleted file mode 100644 index 9af0afc80593..000000000000 --- a/devel/icu4/files/patch-install +++ /dev/null @@ -1,8 +0,0 @@ ---- Makefile.in 2007-12-12 13:58:06.000000000 -0500 -+++ Makefile.in 2008-01-28 15:20:56.000000000 -0500 -@@ -126,5 +126,4 @@ - $(INSTALL_DATA) @platform_make_fragment@ $(DESTDIR)$(pkgdatadir)/config/@platform_make_fragment_name@ - $(INSTALL_SCRIPT) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(pkgdatadir)/mkinstalldirs -- $(INSTALL_SCRIPT) $(top_srcdir)/install-sh $(DESTDIR)$(pkgdatadir)/install-sh - $(INSTALL_DATA) $(top_srcdir)/../license.html $(DESTDIR)$(pkgdatadir)/license.html - $(INSTALL_SCRIPT) $(top_builddir)/config/icu-config $(DESTDIR)$(bindir)/icu-config diff --git a/devel/icu4/files/patch-putil b/devel/icu4/files/patch-putil deleted file mode 100644 index f102043ddb96..000000000000 --- a/devel/icu4/files/patch-putil +++ /dev/null @@ -1,9 +0,0 @@ ---- common/putil.c 2007-12-12 13:57:26.000000000 -0500 -+++ common/putil.c 2008-01-28 13:04:02.000000000 -0500 -@@ -577,5 +577,5 @@ - /* These platforms are likely to use Olson timezone IDs. */ - #define CHECK_LOCALTIME_LINK 1 --#if defined(U_LINUX) -+#if defined(U_LINUX) || defined(U_BSD) - #define TZDEFAULT "/etc/localtime" - #define TZZONEINFO "/usr/share/zoneinfo/" diff --git a/devel/icu4/pkg-descr b/devel/icu4/pkg-descr deleted file mode 100644 index 917de707e9a0..000000000000 --- a/devel/icu4/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -The International Components for Unicode (ICU) is a C and C++ library -providing Unicode support (p.ex. character set conversions, locales, -normalization, transliteration, etc.). - -More information on ICU can be found on the homepage - -WWW: http://icu.sourceforge.net/ -WWW: http://ibm.com/software/globalization/icu - -- Bjoern A. Zeeb -bzeeb+freebsdports@zabbadoz.net diff --git a/devel/icu4/pkg-plist b/devel/icu4/pkg-plist deleted file mode 100644 index 2b9df0bd0602..000000000000 --- a/devel/icu4/pkg-plist +++ /dev/null @@ -1,187 +0,0 @@ -bin/derb -bin/genbrk -bin/gencnval -bin/genctd -bin/genrb -bin/icu-config -bin/makeconv -bin/pkgdata -bin/uconv -sbin/genccode -sbin/gencmn -sbin/gensprep -sbin/genuca -sbin/icupkg -sbin/icuswap -include/layout/LEFontInstance.h -include/layout/LEGlyphFilter.h -include/layout/LEGlyphStorage.h -include/layout/LEInsertionList.h -include/layout/LELanguages.h -include/layout/LEScripts.h -include/layout/LESwaps.h -include/layout/LETypes.h -include/layout/LayoutEngine.h -include/layout/ParagraphLayout.h -include/layout/RunArrays.h -include/layout/loengine.h -@dirrm include/layout -include/unicode/basictz.h -include/unicode/brkiter.h -include/unicode/calendar.h -include/unicode/caniter.h -include/unicode/chariter.h -include/unicode/choicfmt.h -include/unicode/coleitr.h -include/unicode/coll.h -include/unicode/curramt.h -include/unicode/currunit.h -include/unicode/datefmt.h -include/unicode/dbbi.h -include/unicode/dcfmtsym.h -include/unicode/decimfmt.h -include/unicode/docmain.h -include/unicode/dtfmtsym.h -include/unicode/dtptngen.h -include/unicode/dtrule.h -include/unicode/fieldpos.h -include/unicode/fmtable.h -include/unicode/format.h -include/unicode/gregocal.h -include/unicode/locid.h -include/unicode/measfmt.h -include/unicode/measunit.h -include/unicode/measure.h -include/unicode/msgfmt.h -include/unicode/normlzr.h -include/unicode/numfmt.h -include/unicode/parseerr.h -include/unicode/parsepos.h -include/unicode/platform.h -include/unicode/ppalmos.h -include/unicode/putil.h -include/unicode/pwin32.h -include/unicode/rbbi.h -include/unicode/rbnf.h -include/unicode/rbtz.h -include/unicode/regex.h -include/unicode/rep.h -include/unicode/resbund.h -include/unicode/schriter.h -include/unicode/search.h -include/unicode/simpletz.h -include/unicode/smpdtfmt.h -include/unicode/sortkey.h -include/unicode/strenum.h -include/unicode/stsearch.h -include/unicode/symtable.h -include/unicode/tblcoll.h -include/unicode/timezone.h -include/unicode/translit.h -include/unicode/tzrule.h -include/unicode/tztrans.h -include/unicode/ubidi.h -include/unicode/ubrk.h -include/unicode/ucal.h -include/unicode/ucasemap.h -include/unicode/ucat.h -include/unicode/uchar.h -include/unicode/uchriter.h -include/unicode/uclean.h -include/unicode/ucnv.h -include/unicode/ucnv_cb.h -include/unicode/ucnv_err.h -include/unicode/ucol.h -include/unicode/ucoleitr.h -include/unicode/uconfig.h -include/unicode/ucsdet.h -include/unicode/ucurr.h -include/unicode/udat.h -include/unicode/udata.h -include/unicode/udatpg.h -include/unicode/udeprctd.h -include/unicode/udraft.h -include/unicode/uenum.h -include/unicode/uidna.h -include/unicode/uintrnal.h -include/unicode/uiter.h -include/unicode/uloc.h -include/unicode/ulocdata.h -include/unicode/umachine.h -include/unicode/umisc.h -include/unicode/umsg.h -include/unicode/unifilt.h -include/unicode/unifunct.h -include/unicode/unimatch.h -include/unicode/unirepl.h -include/unicode/uniset.h -include/unicode/unistr.h -include/unicode/unorm.h -include/unicode/unum.h -include/unicode/uobject.h -include/unicode/uobslete.h -include/unicode/uregex.h -include/unicode/urename.h -include/unicode/urep.h -include/unicode/ures.h -include/unicode/uscript.h -include/unicode/usearch.h -include/unicode/uset.h -include/unicode/usetiter.h -include/unicode/ushape.h -include/unicode/usprep.h -include/unicode/ustdio.h -include/unicode/ustream.h -include/unicode/ustring.h -include/unicode/usystem.h -include/unicode/utext.h -include/unicode/utf.h -include/unicode/utf16.h -include/unicode/utf32.h -include/unicode/utf8.h -include/unicode/utf_old.h -include/unicode/utmscale.h -include/unicode/utrace.h -include/unicode/utrans.h -include/unicode/utypes.h -include/unicode/uversion.h -include/unicode/vtzone.h -@dirrm include/unicode -lib/icu/%%ICUVER%%/Makefile.inc -lib/icu/current -lib/icu/Makefile.inc -lib/libsicudata.a -lib/libicudata.so.%%ICUMAJOR%%.%%ICUMINOR%% -lib/libicudata.so -lib/libicudata.so.%%ICUMAJOR%% -lib/libsicuuc.a -lib/libicuuc.so.%%ICUMAJOR%%.%%ICUMINOR%% -lib/libicuuc.so -lib/libicuuc.so.%%ICUMAJOR%% -lib/libsicui18n.a -lib/libicui18n.so.%%ICUMAJOR%%.%%ICUMINOR%% -lib/libicui18n.so -lib/libicui18n.so.%%ICUMAJOR%% -lib/libsicule.a -lib/libicule.so.%%ICUMAJOR%%.%%ICUMINOR%% -lib/libicule.so -lib/libicule.so.%%ICUMAJOR%% -lib/libsiculx.a -lib/libiculx.so.%%ICUMAJOR%%.%%ICUMINOR%% -lib/libiculx.so -lib/libiculx.so.%%ICUMAJOR%% -lib/libsicuio.a -lib/libicuio.so.%%ICUMAJOR%%.%%ICUMINOR%% -lib/libicuio.so -lib/libicuio.so.%%ICUMAJOR%% -lib/libicutu.so.%%ICUMAJOR%%.%%ICUMINOR%% -lib/libicutu.so.%%ICUMAJOR%% -lib/libicutu.so -%%DATADIR%%/%%ICUVER%%/config/mh-bsd-gcc -%%DATADIR%%/%%ICUVER%%/mkinstalldirs -%%DATADIR%%/%%ICUVER%%/license.html -@dirrm %%DATADIR%%/%%ICUVER%%/config -@dirrm %%DATADIR%%/%%ICUVER%% -@dirrm %%DATADIR%% -@dirrm lib/icu/%%ICUVER%% -@dirrm lib/icu diff --git a/devel/idutils/Makefile b/devel/idutils/Makefile deleted file mode 100644 index c5f71703b4cb..000000000000 --- a/devel/idutils/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: id-utils -# Date created: 22 Aug 1996 -# Whom: pst@freebsd.org -# -# $FreeBSD$ -# - -PORTNAME= id-utils -PORTVERSION= 4.0 -PORTREVISION= 2 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU_ALPHA} -MASTER_SITE_SUBDIR= idutils - -MAINTAINER= ports@FreeBSD.org -COMMENT= The classic Berkeley gid/lid tools for looking up variables in code - -CONFLICTS= coreutils-[0-9]* linux-gid-[0-9]* sh-utils-[0-9]* - -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" - -INFO= id-utils - -CPPFLAGS= -I${LOCALBASE}/include -LDFLAGS= -L${LOCALBASE}/lib - -.if defined(WITHOUT_NLS) -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " -.else -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.endif - -post-extract: - @${RM} -f ${WRKSRC}/lib/getopt.h - -post-install: - ${INSTALL_DATA} ${WRKSRC}/lisp/id-utils.el ${PREFIX}/share/emacs/site-lisp - -.include <bsd.port.mk> diff --git a/devel/idutils/distinfo b/devel/idutils/distinfo deleted file mode 100644 index c90f6d664dba..000000000000 --- a/devel/idutils/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (id-utils-4.0.tar.gz) = 2053522dab62f2286579eecf2d0252e9 -SHA256 (id-utils-4.0.tar.gz) = 92dbf05578c94d46f7f1b2ebb6288e78ce1c3c8dd7fcb4f66fd8f5d30156c5f5 -SIZE (id-utils-4.0.tar.gz) = 643191 diff --git a/devel/idutils/pkg-descr b/devel/idutils/pkg-descr deleted file mode 100644 index c62caea6dfd7..000000000000 --- a/devel/idutils/pkg-descr +++ /dev/null @@ -1,18 +0,0 @@ -`mkid' is a simple, fast, high-capacity, language-independent -identifier database tool. Actually, the term `identifier' is too -limiting--`mkid' stores tokens, be they program identifiers of any -form, literal numbers, or words of human-readable text. Database -queries can be issued from the command-line, or from within emacs, -serving as an augmented tags facility. - -`mkid' was originally written by Greg McGary <gkm@gnu.ai.mit.edu> -and posted to comp.sources.unix in September 1987. It was then -maintained and enhanced by a loose knit group of programmers on the -Internet led by Tom Horsley <Tom.Horsley@mail.hcsc.com>. Tom released -`mkid2' on comp.sources.unix in March, 1991. Since then, Greg McGary -has resumed maintenance and is releasing an improved version 3 under GPL. - -Version 3 is an interim release. Version 4 will follow in the coming -months and include a cscope clone plus other improvements. This -version is an improved version of version 3 (which hasn't been updated -since 1996!), it now understands C++. diff --git a/devel/idutils/pkg-plist b/devel/idutils/pkg-plist deleted file mode 100644 index f39563823369..000000000000 --- a/devel/idutils/pkg-plist +++ /dev/null @@ -1,15 +0,0 @@ -bin/aid -bin/defid -bin/eid -bin/fid -bin/fnid -bin/gid -bin/lid -bin/mkid -bin/xtokid -share/emacs/site-lisp/id-utils.el -share/id-lang.map -%%NLS%%share/locale/de/LC_MESSAGES/id-utils.mo -%%NLS%%share/locale/fr/LC_MESSAGES/id-utils.mo -%%NLS%%share/locale/nl/LC_MESSAGES/id-utils.mo -%%NLS%%share/locale/pl/LC_MESSAGES/id-utils.mo diff --git a/devel/kBuild-devel/Makefile b/devel/kBuild-devel/Makefile deleted file mode 100644 index 246745736d9f..000000000000 --- a/devel/kBuild-devel/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: kbuild -# Date created: Mon Jul 28 14:34:33 BST 2008 -# Whom: Bruce Simpson -# -# $FreeBSD$ -# - -PORTNAME= kBuild -PORTVERSION= 0.1.3 -CATEGORIES= devel -MASTER_SITES= ftp://ftp.netlabs.org/pub/kbuild/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-src - -MAINTAINER= bms@FreeBSD.org -COMMENT= Makefile framework - -# XXX: This case is not handled by USE_AUTOTOOLS as kmk bootstrap involves -# running these directly. -BUILD_DEPENDS= automake-1.9:${PORTSDIR}/devel/automake19 \ - autoconf-2.62:${PORTSDIR}/devel/autoconf262 - -BROKEN= changes permissions on already installed binaries - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - -USE_GMAKE= yes - -do-build: - cd ${WRKSRC} && ${SETENV} ACLOCAL=aclocal-1.9 AUTOMAKE=automake-1.9 AUTORECONF=autoreconf-2.62 ./kBuild/env.sh --full ${GMAKE} -f bootstrap.gmk - cd ${WRKSRC} && ${RM} -rf out - cd ${WRKSRC} && ./kBuild/env.sh kmk - cd ${WRKSRC} && ./kBuild/env.sh kmk NIX_INSTALL_DIR=${PREFIX} BUILD_TYPE=release -C ${WRKSRC} - -do-install: - (cd ${WRKSRC}/out/freebsd.${MACHINE_ARCH}/release${PREFIX}/bin && ${COPYTREE_BIN} \* ${PREFIX}/bin) - ${MKDIR) ${DATADIR} - (cd ${WRKSRC}/out/freebsd.${MACHINE_ARCH}/release${PREFIX}/share/kBuild && ${COPYTREE_SHARE} \* ${DATADIR}) - -.include <bsd.port.mk> diff --git a/devel/kBuild-devel/distinfo b/devel/kBuild-devel/distinfo deleted file mode 100644 index 10764616ff88..000000000000 --- a/devel/kBuild-devel/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (kBuild-0.1.3-src.tar.gz) = eef91473ea68e6ea189999ed64cd80a5 -SHA256 (kBuild-0.1.3-src.tar.gz) = 79d085b395b87fdf06d24bbf4e03801b5c35d61c7f41d5b0df6fa0b275b6b1b1 -SIZE (kBuild-0.1.3-src.tar.gz) = 10070233 diff --git a/devel/kBuild-devel/pkg-descr b/devel/kBuild-devel/pkg-descr deleted file mode 100644 index e42b9bf5e022..000000000000 --- a/devel/kBuild-devel/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -kBuild is a makefile framework for writing simple makefiles for complex tasks. diff --git a/devel/kBuild-devel/pkg-plist b/devel/kBuild-devel/pkg-plist deleted file mode 100644 index f072904480f9..000000000000 --- a/devel/kBuild-devel/pkg-plist +++ /dev/null @@ -1,80 +0,0 @@ -bin/kmk -bin/kmk_append -bin/kmk_cat -bin/kmk_cp -bin/kmk_cmp -bin/kmk_echo -bin/kmk_md5sum -bin/kmk_mkdir -bin/kmk_mv -bin/kmk_install -bin/kmk_ln -bin/kmk_printf -bin/kmk_redirect -bin/kmk_rm -bin/kmk_rmdir -bin/kmk_test -bin/kDepIDB -bin/kmk_gmake -bin/kmk_sed -bin/kDepPre -bin/kObjCache -bin/kmk_ash -%%DATADIR%%/footer.kmk -%%DATADIR%%/header.kmk -%%DATADIR%%/rules.kmk -%%DATADIR%%/subfooter.kmk -%%DATADIR%%/subheader.kmk -%%DATADIR%%/up.kmk -%%DATADIR%%/tools/ALP.kmk -%%DATADIR%%/tools/FLEX.kmk -%%DATADIR%%/tools/GCC.kmk -%%DATADIR%%/tools/GCC3.kmk -%%DATADIR%%/tools/GCC32.kmk -%%DATADIR%%/tools/GCC3OMF.kmk -%%DATADIR%%/tools/GCC3PLAIN.kmk -%%DATADIR%%/tools/GCC4MACHO.kmk -%%DATADIR%%/tools/GCC64.kmk -%%DATADIR%%/tools/GXX.kmk -%%DATADIR%%/tools/GXX3.kmk -%%DATADIR%%/tools/GXX32.kmk -%%DATADIR%%/tools/GXX3OMF.kmk -%%DATADIR%%/tools/GXX3PLAIN.kmk -%%DATADIR%%/tools/GXX4MACHO.kmk -%%DATADIR%%/tools/GXX64.kmk -%%DATADIR%%/tools/MINGW32.kmk -%%DATADIR%%/tools/NASM.kmk -%%DATADIR%%/tools/TAR.kmk -%%DATADIR%%/tools/TARGZ.kmk -%%DATADIR%%/tools/VAC308.kmk -%%DATADIR%%/tools/VCC70.kmk -%%DATADIR%%/tools/VCC80.kmk -%%DATADIR%%/tools/VCC80AMD64.kmk -%%DATADIR%%/tools/VCC80X86.kmk -%%DATADIR%%/tools/WGET.kmk -%%DATADIR%%/tools/XGCCAMD64LINUX.kmk -%%DATADIR%%/tools/YASM.kmk -%%DATADIR%%/tools/ZIP.kmk -%%DATADIR%%/sdks/DXSDK.kmk -%%DATADIR%%/sdks/DXSDKAMD64.kmk -%%DATADIR%%/sdks/DXSDKX86.kmk -%%DATADIR%%/sdks/LIBSDL.kmk -%%DATADIR%%/sdks/MACOSX104.kmk -%%DATADIR%%/sdks/MACOSX104INCS.kmk -%%DATADIR%%/sdks/MACOSX105.kmk -%%DATADIR%%/sdks/MACOSX105INCS.kmk -%%DATADIR%%/sdks/NT4DDK.kmk -%%DATADIR%%/sdks/W2K3DDK.kmk -%%DATADIR%%/sdks/W2K3DDKAMD64.kmk -%%DATADIR%%/sdks/W2K3DDKX86.kmk -%%DATADIR%%/sdks/W32API.kmk -%%DATADIR%%/sdks/WIN32SDK.kmk -%%DATADIR%%/sdks/WIN32SDK2002.kmk -%%DATADIR%%/sdks/WIN64SDK.kmk -%%DATADIR%%/sdks/WINPSDK.kmk -%%DATADIR%%/sdks/WINPSDKINCS.kmk -%%DATADIR%%/msgstyles/brief.kmk -@dirrm %%DATADIR%%/tools -@dirrm %%DATADIR%%/sdks -@dirrm %%DATADIR%%/msgstyles -@dirrm %%DATADIR%% diff --git a/devel/kdesvn-kde4/Makefile b/devel/kdesvn-kde4/Makefile deleted file mode 100644 index d672ef1fcfe9..000000000000 --- a/devel/kdesvn-kde4/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# New ports collection makefile for: kdesvn -# Date created: 08 April 2006 -# Whom: Yuan Jue <yuanjue@yuanjue.net> -# -# $FreeBSD$ - -PORTNAME= kdesvn -PORTVERSION= 0.14.4 -CATEGORIES= devel kde -MASTER_SITES= http://kdesvn.alwins-world.de/trac.fcgi/downloads/ - -MAINTAINER= yuanjue@FreeBSD.org -COMMENT= KDE frontend for Subversion - -LIB_DEPENDS+= apr-1:${PORTSDIR}/devel/apr-svn \ - svn_client-1:${PORTSDIR}/devel/subversion \ - neon:${PORTSDIR}/www/neon28 - -USE_CMAKE= yes -USE_BZIP2= yes -USE_KDELIBS_VER=3 -USE_LDCONFIG= yes -INSTALLS_ICONS= yes - -CMAKE_ARGS= -DLIB_SUFFIX= - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else -PLIST_SUB+= NLS="@comment " -EXTRA_PATCHES= ${FILESDIR}/nls-patch-CMakeLists.txt -.endif - -DOCSDIR= ${PREFIX}/share/doc/HTML/en/${PORTNAME} - -MAN1= kdesvn.1 kdesvnaskpass.1 - -post-extract: - ${MKDIR} ${WRKSRC} -.if defined(NOPORTDOCS) - ${RM} -f ${PATCH_WRKSRC}/doc/CMakeLists.txt - ${ECHO} "ADD_SUBDIRECTORY(man)" > ${PATCH_WRKSRC}/doc/CMakeLists.txt -.endif - -.include <bsd.port.mk> diff --git a/devel/kdesvn-kde4/distinfo b/devel/kdesvn-kde4/distinfo deleted file mode 100644 index 161c7bdfb46e..000000000000 --- a/devel/kdesvn-kde4/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (kdesvn-0.14.4.tar.bz2) = 70901a2450f74702dff99f7c0fe00a8c -SHA256 (kdesvn-0.14.4.tar.bz2) = e4f5359cd088c960d0522e06a76165aafd002d3cd041b58a2c65c2786442f319 -SIZE (kdesvn-0.14.4.tar.bz2) = 1277228 diff --git a/devel/kdesvn-kde4/files/nls-patch-CMakeLists.txt b/devel/kdesvn-kde4/files/nls-patch-CMakeLists.txt deleted file mode 100644 index 8e17a904f722..000000000000 --- a/devel/kdesvn-kde4/files/nls-patch-CMakeLists.txt +++ /dev/null @@ -1,23 +0,0 @@ ---- CMakeLists.txt.orig Tue Oct 30 21:23:29 2007 -+++ CMakeLists.txt Fri Jan 4 20:09:17 2008 -@@ -90,20 +90,4 @@ - - - ADD_SUBDIRECTORY(src) --ADD_SUBDIRECTORY(po) - ADD_SUBDIRECTORY(doc) -- --FILE(GLOB _POFILES po/*.po) --FOREACH(_p ${_POFILES}) -- SET(POFILES "${_p} ${POFILES}") --ENDFOREACH(_p) -- --SET(MESSAGES_DIR ${CMAKE_SOURCE_DIR}/src) --CONFIGURE_FILE( -- "${CMAKE_CURRENT_SOURCE_DIR}/cmakemodules/package_messages.sh.in" -- "${CMAKE_CURRENT_BINARY_DIR}/package_messages.sh" -- IMMEDIATE -- @ONLY) --ADD_CUSTOM_TARGET(package-messages -- "${CMAKE_CURRENT_BINARY_DIR}/package_messages.sh") -- diff --git a/devel/kdesvn-kde4/files/patch-doc-man-CMakeLists.txt b/devel/kdesvn-kde4/files/patch-doc-man-CMakeLists.txt deleted file mode 100644 index 86ebe7091b2f..000000000000 --- a/devel/kdesvn-kde4/files/patch-doc-man-CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ ---- doc/man/CMakeLists.txt.orig Fri Aug 25 05:29:36 2006 -+++ doc/man/CMakeLists.txt Sun Oct 22 10:25:58 2006 -@@ -4,5 +4,5 @@ - - INSTALL(FILES - ${MANFILES} -- DESTINATION share/man/man1) -+ DESTINATION man/man1) - diff --git a/devel/kdesvn-kde4/pkg-descr b/devel/kdesvn-kde4/pkg-descr deleted file mode 100644 index 7f07a3c2fe91..000000000000 --- a/devel/kdesvn-kde4/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -KDESvn is a frontend to the subversion vcs. In difference to most other -tools it uses the subversion C-Api direct via a c++ wrapper made by -Rapid SVN and doesn't parse the output of the subversion client. So it is -a real client itself instead of a frontend to the command line tool. - -WWW: http://www.alwins-world.de/programs/kdesvn/ - -- Yuan Jue -yuanjue@FreeBSD.org diff --git a/devel/kdesvn-kde4/pkg-plist b/devel/kdesvn-kde4/pkg-plist deleted file mode 100644 index eb1d1f72a8ed..000000000000 --- a/devel/kdesvn-kde4/pkg-plist +++ /dev/null @@ -1,283 +0,0 @@ -bin/kdesvn -bin/kdesvnaskpass -include/svnqt/annotate_line.hpp -include/svnqt/apr.hpp -include/svnqt/check.hpp -include/svnqt/client.hpp -include/svnqt/commititem.hpp -include/svnqt/context.hpp -include/svnqt/context_listener.hpp -include/svnqt/datetime.hpp -include/svnqt/dirent.hpp -include/svnqt/entry.hpp -include/svnqt/exception.hpp -include/svnqt/info_entry.hpp -include/svnqt/lock_entry.hpp -include/svnqt/log_entry.hpp -include/svnqt/path.hpp -include/svnqt/pool.hpp -include/svnqt/repository.hpp -include/svnqt/repositorylistener.hpp -include/svnqt/revision.hpp -include/svnqt/shared_pointer.hpp -include/svnqt/smart_pointer.hpp -include/svnqt/status.hpp -include/svnqt/svnfilestream.hpp -include/svnqt/svnqt_defines.hpp -include/svnqt/svnqttypes.hpp -include/svnqt/svnstream.hpp -include/svnqt/targets.hpp -include/svnqt/url.hpp -include/svnqt/version_check.hpp -include/svnqt/wc.hpp -lib/kde3/kded_kdesvnd.la -lib/kde3/kded_kdesvnd.so -lib/kde3/kio_ksvn.la -lib/kde3/kio_ksvn.so -lib/kde3/libkdesvnpart.la -lib/kde3/libkdesvnpart.so -lib/libsvnqt.so -lib/libsvnqt.so.4 -lib/libsvnqt.so.4.1.1 -share/applications/kde/kdesvn.desktop -share/apps/kconf_update/kdesvnpartrc-use-external.upd -share/apps/kconf_update/kdesvn-use-external-update.sh -share/apps/kdesvn/kdesvnui.rc -share/apps/kdesvnpart/kdesvn_part.rc -share/apps/konqueror/servicemenus/kdesvn_subversion.desktop -share/config.kcfg/kdesvn_part.kcfg -%%PORTDOCS%%%%DOCSDIR%%/common -%%PORTDOCS%%%%DOCSDIR%%/hi128-filesys-kdesvnadded.png -%%PORTDOCS%%%%DOCSDIR%%/hi128-filesys-kdesvnconflicted.png -%%PORTDOCS%%%%DOCSDIR%%/hi128-filesys-kdesvndeleted.png -%%PORTDOCS%%%%DOCSDIR%%/hi128-filesys-kdesvnlocked.png -%%PORTDOCS%%%%DOCSDIR%%/hi128-filesys-kdesvnmodified.png -%%PORTDOCS%%%%DOCSDIR%%/hi128-filesys-kdesvnneedlock.png -%%PORTDOCS%%%%DOCSDIR%%/hi128-filesys-kdesvnupdates.png -%%PORTDOCS%%%%DOCSDIR%%/index.cache.bz2 -%%PORTDOCS%%%%DOCSDIR%%/index.docbook -share/icons/hicolor/128x128/actions/kdesvnadd.png -share/icons/hicolor/128x128/actions/kdesvnaddrecursive.png -share/icons/hicolor/128x128/actions/kdesvnblame.png -share/icons/hicolor/128x128/actions/kdesvncat.png -share/icons/hicolor/128x128/actions/kdesvncheckout.png -share/icons/hicolor/128x128/actions/kdesvncheckupdates.png -share/icons/hicolor/128x128/actions/kdesvncleanup.png -share/icons/hicolor/128x128/actions/kdesvncommit.png -share/icons/hicolor/128x128/actions/kdesvncopy.png -share/icons/hicolor/128x128/actions/kdesvndelete.png -share/icons/hicolor/128x128/actions/kdesvndiff.png -share/icons/hicolor/128x128/actions/kdesvnexport.png -share/icons/hicolor/128x128/actions/kdesvninfo.png -share/icons/hicolor/128x128/actions/kdesvnlock.png -share/icons/hicolor/128x128/actions/kdesvnlog.png -share/icons/hicolor/128x128/actions/kdesvnmerge.png -share/icons/hicolor/128x128/actions/kdesvnrelocate.png -share/icons/hicolor/128x128/actions/kdesvnswitch.png -share/icons/hicolor/128x128/actions/kdesvnunlock.png -share/icons/hicolor/128x128/actions/kdesvnupdate.png -share/icons/hicolor/128x128/apps/kdesvn.png -share/icons/hicolor/128x128/filesystems/kdesvnadded.png -share/icons/hicolor/128x128/filesystems/kdesvnconflicted.png -share/icons/hicolor/128x128/filesystems/kdesvndeleted.png -share/icons/hicolor/128x128/filesystems/kdesvnlocked.png -share/icons/hicolor/128x128/filesystems/kdesvnmodified.png -share/icons/hicolor/128x128/filesystems/kdesvnneedlock.png -share/icons/hicolor/128x128/filesystems/kdesvnupdates.png -share/icons/hicolor/16x16/actions/kdesvnadd.png -share/icons/hicolor/16x16/actions/kdesvnaddrecursive.png -share/icons/hicolor/16x16/actions/kdesvnblame.png -share/icons/hicolor/16x16/actions/kdesvncat.png -share/icons/hicolor/16x16/actions/kdesvncheckout.png -share/icons/hicolor/16x16/actions/kdesvncheckupdates.png -share/icons/hicolor/16x16/actions/kdesvncleanup.png -share/icons/hicolor/16x16/actions/kdesvncommit.png -share/icons/hicolor/16x16/actions/kdesvncopy.png -share/icons/hicolor/16x16/actions/kdesvndelete.png -share/icons/hicolor/16x16/actions/kdesvndiff.png -share/icons/hicolor/16x16/actions/kdesvnexport.png -share/icons/hicolor/16x16/actions/kdesvninfo.png -share/icons/hicolor/16x16/actions/kdesvnlock.png -share/icons/hicolor/16x16/actions/kdesvnlog.png -share/icons/hicolor/16x16/actions/kdesvnmerge.png -share/icons/hicolor/16x16/actions/kdesvnrelocate.png -share/icons/hicolor/16x16/actions/kdesvnswitch.png -share/icons/hicolor/16x16/actions/kdesvnunlock.png -share/icons/hicolor/16x16/actions/kdesvnupdate.png -share/icons/hicolor/16x16/apps/kdesvn.png -share/icons/hicolor/16x16/filesystems/kdesvnadded.png -share/icons/hicolor/16x16/filesystems/kdesvnconflicted.png -share/icons/hicolor/16x16/filesystems/kdesvndeleted.png -share/icons/hicolor/16x16/filesystems/kdesvnlocked.png -share/icons/hicolor/16x16/filesystems/kdesvnmodified.png -share/icons/hicolor/16x16/filesystems/kdesvnneedlock.png -share/icons/hicolor/16x16/filesystems/kdesvnupdates.png -share/icons/hicolor/22x22/actions/kdesvnadd.png -share/icons/hicolor/22x22/actions/kdesvnaddrecursive.png -share/icons/hicolor/22x22/actions/kdesvnblame.png -share/icons/hicolor/22x22/actions/kdesvncat.png -share/icons/hicolor/22x22/actions/kdesvncheckout.png -share/icons/hicolor/22x22/actions/kdesvncheckupdates.png -share/icons/hicolor/22x22/actions/kdesvncleanup.png -share/icons/hicolor/22x22/actions/kdesvncommit.png -share/icons/hicolor/22x22/actions/kdesvncopy.png -share/icons/hicolor/22x22/actions/kdesvndelete.png -share/icons/hicolor/22x22/actions/kdesvndiff.png -share/icons/hicolor/22x22/actions/kdesvnexport.png -share/icons/hicolor/22x22/actions/kdesvninfo.png -share/icons/hicolor/22x22/actions/kdesvnlock.png -share/icons/hicolor/22x22/actions/kdesvnlog.png -share/icons/hicolor/22x22/actions/kdesvnmerge.png -share/icons/hicolor/22x22/actions/kdesvnrelocate.png -share/icons/hicolor/22x22/actions/kdesvnswitch.png -share/icons/hicolor/22x22/actions/kdesvnunlock.png -share/icons/hicolor/22x22/actions/kdesvnupdate.png -share/icons/hicolor/22x22/apps/kdesvn.png -share/icons/hicolor/22x22/filesystems/kdesvnadded.png -share/icons/hicolor/22x22/filesystems/kdesvnconflicted.png -share/icons/hicolor/22x22/filesystems/kdesvndeleted.png -share/icons/hicolor/22x22/filesystems/kdesvnlocked.png -share/icons/hicolor/22x22/filesystems/kdesvnmodified.png -share/icons/hicolor/22x22/filesystems/kdesvnneedlock.png -share/icons/hicolor/22x22/filesystems/kdesvnupdates.png -share/icons/hicolor/32x32/actions/kdesvnadd.png -share/icons/hicolor/32x32/actions/kdesvnaddrecursive.png -share/icons/hicolor/32x32/actions/kdesvnblame.png -share/icons/hicolor/32x32/actions/kdesvncat.png -share/icons/hicolor/32x32/actions/kdesvncheckout.png -share/icons/hicolor/32x32/actions/kdesvncheckupdates.png -share/icons/hicolor/32x32/actions/kdesvncleanup.png -share/icons/hicolor/32x32/actions/kdesvncommit.png -share/icons/hicolor/32x32/actions/kdesvncopy.png -share/icons/hicolor/32x32/actions/kdesvndelete.png -share/icons/hicolor/32x32/actions/kdesvndiff.png -share/icons/hicolor/32x32/actions/kdesvnexport.png -share/icons/hicolor/32x32/actions/kdesvninfo.png -share/icons/hicolor/32x32/actions/kdesvnlock.png -share/icons/hicolor/32x32/actions/kdesvnlog.png -share/icons/hicolor/32x32/actions/kdesvnmerge.png -share/icons/hicolor/32x32/actions/kdesvnrelocate.png -share/icons/hicolor/32x32/actions/kdesvnswitch.png -share/icons/hicolor/32x32/actions/kdesvnunlock.png -share/icons/hicolor/32x32/actions/kdesvnupdate.png -share/icons/hicolor/32x32/apps/kdesvn.png -share/icons/hicolor/32x32/filesystems/kdesvnadded.png -share/icons/hicolor/32x32/filesystems/kdesvnconflicted.png -share/icons/hicolor/32x32/filesystems/kdesvndeleted.png -share/icons/hicolor/32x32/filesystems/kdesvnlocked.png -share/icons/hicolor/32x32/filesystems/kdesvnmodified.png -share/icons/hicolor/32x32/filesystems/kdesvnneedlock.png -share/icons/hicolor/32x32/filesystems/kdesvnupdates.png -share/icons/hicolor/48x48/actions/kdesvnadd.png -share/icons/hicolor/48x48/actions/kdesvnaddrecursive.png -share/icons/hicolor/48x48/actions/kdesvnblame.png -share/icons/hicolor/48x48/actions/kdesvncat.png -share/icons/hicolor/48x48/actions/kdesvncheckout.png -share/icons/hicolor/48x48/actions/kdesvncheckupdates.png -share/icons/hicolor/48x48/actions/kdesvncleanup.png -share/icons/hicolor/48x48/actions/kdesvncommit.png -share/icons/hicolor/48x48/actions/kdesvncopy.png -share/icons/hicolor/48x48/actions/kdesvndelete.png -share/icons/hicolor/48x48/actions/kdesvndiff.png -share/icons/hicolor/48x48/actions/kdesvnexport.png -share/icons/hicolor/48x48/actions/kdesvninfo.png -share/icons/hicolor/48x48/actions/kdesvnlock.png -share/icons/hicolor/48x48/actions/kdesvnlog.png -share/icons/hicolor/48x48/actions/kdesvnmerge.png -share/icons/hicolor/48x48/actions/kdesvnrelocate.png -share/icons/hicolor/48x48/actions/kdesvnswitch.png -share/icons/hicolor/48x48/actions/kdesvnunlock.png -share/icons/hicolor/48x48/actions/kdesvnupdate.png -share/icons/hicolor/48x48/apps/kdesvn.png -share/icons/hicolor/48x48/filesystems/kdesvnadded.png -share/icons/hicolor/48x48/filesystems/kdesvnconflicted.png -share/icons/hicolor/48x48/filesystems/kdesvndeleted.png -share/icons/hicolor/48x48/filesystems/kdesvnlocked.png -share/icons/hicolor/48x48/filesystems/kdesvnmodified.png -share/icons/hicolor/48x48/filesystems/kdesvnneedlock.png -share/icons/hicolor/48x48/filesystems/kdesvnupdates.png -share/icons/hicolor/64x64/actions/kdesvnadd.png -share/icons/hicolor/64x64/actions/kdesvnaddrecursive.png -share/icons/hicolor/64x64/actions/kdesvnblame.png -share/icons/hicolor/64x64/actions/kdesvncat.png -share/icons/hicolor/64x64/actions/kdesvncheckout.png -share/icons/hicolor/64x64/actions/kdesvncheckupdates.png -share/icons/hicolor/64x64/actions/kdesvncleanup.png -share/icons/hicolor/64x64/actions/kdesvncommit.png -share/icons/hicolor/64x64/actions/kdesvncopy.png -share/icons/hicolor/64x64/actions/kdesvndelete.png -share/icons/hicolor/64x64/actions/kdesvndiff.png -share/icons/hicolor/64x64/actions/kdesvnexport.png -share/icons/hicolor/64x64/actions/kdesvninfo.png -share/icons/hicolor/64x64/actions/kdesvnlock.png -share/icons/hicolor/64x64/actions/kdesvnlog.png -share/icons/hicolor/64x64/actions/kdesvnmerge.png -share/icons/hicolor/64x64/actions/kdesvnrelocate.png -share/icons/hicolor/64x64/actions/kdesvnswitch.png -share/icons/hicolor/64x64/actions/kdesvnunlock.png -share/icons/hicolor/64x64/actions/kdesvnupdate.png -share/icons/hicolor/64x64/apps/kdesvn.png -share/icons/hicolor/64x64/filesystems/kdesvnadded.png -share/icons/hicolor/64x64/filesystems/kdesvnconflicted.png -share/icons/hicolor/64x64/filesystems/kdesvndeleted.png -share/icons/hicolor/64x64/filesystems/kdesvnlocked.png -share/icons/hicolor/64x64/filesystems/kdesvnmodified.png -share/icons/hicolor/64x64/filesystems/kdesvnneedlock.png -share/icons/hicolor/64x64/filesystems/kdesvnupdates.png -share/icons/hicolor/scalable/actions/kdesvnadd.svgz -share/icons/hicolor/scalable/actions/kdesvnaddrecursive.svgz -share/icons/hicolor/scalable/actions/kdesvnblame.svgz -share/icons/hicolor/scalable/actions/kdesvncat.svgz -share/icons/hicolor/scalable/actions/kdesvncheckout.svgz -share/icons/hicolor/scalable/actions/kdesvncheckupdates.svgz -share/icons/hicolor/scalable/actions/kdesvncleanup.svgz -share/icons/hicolor/scalable/actions/kdesvncommit.svgz -share/icons/hicolor/scalable/actions/kdesvncopy.svgz -share/icons/hicolor/scalable/actions/kdesvndelete.svgz -share/icons/hicolor/scalable/actions/kdesvndiff.svgz -share/icons/hicolor/scalable/actions/kdesvnexport.svgz -share/icons/hicolor/scalable/actions/kdesvninfo.svgz -share/icons/hicolor/scalable/actions/kdesvnlock.svgz -share/icons/hicolor/scalable/actions/kdesvnlog.svgz -share/icons/hicolor/scalable/actions/kdesvnmerge.svgz -share/icons/hicolor/scalable/actions/kdesvnrelocate.svgz -share/icons/hicolor/scalable/actions/kdesvnswitch.svgz -share/icons/hicolor/scalable/actions/kdesvnunlock.svgz -share/icons/hicolor/scalable/actions/kdesvnupdate.svgz -share/icons/hicolor/scalable/apps/kdesvn.svgz -share/icons/hicolor/scalable/filesystems/kdesvnadded.svgz -share/icons/hicolor/scalable/filesystems/kdesvnconflicted.svgz -share/icons/hicolor/scalable/filesystems/kdesvndeleted.svgz -share/icons/hicolor/scalable/filesystems/kdesvnlocked.svgz -share/icons/hicolor/scalable/filesystems/kdesvnmodified.svgz -share/icons/hicolor/scalable/filesystems/kdesvnneedlock.svgz -share/icons/hicolor/scalable/filesystems/kdesvnupdates.svgz -%%NLS%%share/locale/ca/LC_MESSAGES/kdesvn.mo -%%NLS%%share/locale/cs/LC_MESSAGES/kdesvn.mo -%%NLS%%share/locale/de/LC_MESSAGES/kdesvn.mo -%%NLS%%share/locale/es/LC_MESSAGES/kdesvn.mo -%%NLS%%share/locale/fr/LC_MESSAGES/kdesvn.mo -%%NLS%%share/locale/gl/LC_MESSAGES/kdesvn.mo -%%NLS%%share/locale/it/LC_MESSAGES/kdesvn.mo -%%NLS%%share/locale/lt/LC_MESSAGES/kdesvn.mo -%%NLS%%share/locale/nl/LC_MESSAGES/kdesvn.mo -%%NLS%%share/locale/pa/LC_MESSAGES/kdesvn.mo -%%NLS%%share/locale/ru/LC_MESSAGES/kdesvn.mo -%%NLS%%share/locale/sv/LC_MESSAGES/kdesvn.mo -share/services/kded/kdesvnd.desktop -share/services/ksvn+file.protocol -share/services/ksvn+http.protocol -share/services/ksvn+https.protocol -share/services/ksvn+ssh.protocol -share/services/ksvn.protocol -share/services/svn+file.protocol -share/services/svn+http.protocol -share/services/svn+https.protocol -share/services/svn+ssh.protocol -share/services/svn.protocol -@dirrmtry share/services/kded -@dirrm share/apps/kdesvnpart -@dirrm share/apps/kdesvn -@dirrmtry share/applications/kde -@dirrm include/svnqt -%%PORTDOCS%%@dirrm %%DOCSDIR%% diff --git a/devel/libgtop/Makefile b/devel/libgtop/Makefile index c73507fd4d4d..92b116051652 100644 --- a/devel/libgtop/Makefile +++ b/devel/libgtop/Makefile @@ -40,6 +40,9 @@ RUN_DEPENDS+= lsof:${PORTSDIR}/sysutils/lsof PKGMESSAGE= ${FILESDIR}/pkg-message .endif +post-patch: + @${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH} -f + post-install: @${CHGRP} kmem ${PREFIX}/bin/libgtop_server2 @${CHMOD} 2555 ${PREFIX}/bin/libgtop_server2 diff --git a/devel/libgtop/files/patch-config.h.in b/devel/libgtop/files/patch-config.h.in new file mode 100644 index 000000000000..8fc4a10b1a63 --- /dev/null +++ b/devel/libgtop/files/patch-config.h.in @@ -0,0 +1,12 @@ +--- config.h.in.orig 2008-12-06 16:05:23.000000000 -0500 ++++ config.h.in 2008-12-06 16:05:27.000000000 -0500 +@@ -115,6 +115,9 @@ + /* defined if you have linux/isdn.h */ + #undef HAVE_ISDN_H + ++/* Define if you have the kinfo_getfile function */ ++#undef HAVE_KINFO_GETFILE ++ + /* Define to 1 if you have the `lchown' function. */ + #undef HAVE_LCHOWN + diff --git a/devel/libgtop/files/patch-configure b/devel/libgtop/files/patch-configure index b1d3375703fd..baf610abc525 100644 --- a/devel/libgtop/files/patch-configure +++ b/devel/libgtop/files/patch-configure @@ -1,6 +1,7839 @@ ---- configure.orig 2008-04-05 01:45:43.000000000 -0400 -+++ configure 2008-04-05 01:45:50.000000000 -0400 -@@ -21523,6 +21523,8 @@ echo $ECHO_N "checking for libgtop sysde +--- configure.orig 2008-12-06 16:04:20.000000000 -0500 ++++ configure 2008-12-06 16:04:34.000000000 -0500 +@@ -1,11 +1,11 @@ + #! /bin/sh + # Guess values for system-dependent variables and create Makefiles. +-# Generated by GNU Autoconf 2.61 for libgtop 2.22.3. ++# Generated by GNU Autoconf 2.62 for libgtop 2.22.3. + # + # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop>. + # + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +-# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ++# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + # This configure script is free software; the Free Software Foundation + # gives unlimited permission to copy, distribute and modify it. + ## --------------------- ## +@@ -17,7 +17,7 @@ DUALCASE=1; export DUALCASE # for MKS sh + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +@@ -39,17 +39,45 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTE + as_cr_digits='0123456789' + as_cr_alnum=$as_cr_Letters$as_cr_digits + ++as_nl=' ++' ++export as_nl ++# Printing a long string crashes Solaris 7 /usr/bin/printf. ++as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ++as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo ++as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo ++if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='printf %s\n' ++ as_echo_n='printf %s' ++else ++ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then ++ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ++ as_echo_n='/usr/ucb/echo -n' ++ else ++ as_echo_body='eval expr "X$1" : "X\\(.*\\)"' ++ as_echo_n_body='eval ++ arg=$1; ++ case $arg in ++ *"$as_nl"*) ++ expr "X$arg" : "X\\(.*\\)$as_nl"; ++ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; ++ esac; ++ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ++ ' ++ export as_echo_n_body ++ as_echo_n='sh -c $as_echo_n_body as_echo' ++ fi ++ export as_echo_body ++ as_echo='sh -c $as_echo_body as_echo' ++fi ++ + # The user is always right. + if test "${PATH_SEPARATOR+set}" != set; then +- echo "#! /bin/sh" >conf$$.sh +- echo "exit 0" >>conf$$.sh +- chmod +x conf$$.sh +- if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then +- PATH_SEPARATOR=';' +- else +- PATH_SEPARATOR=: +- fi +- rm -f conf$$.sh ++ PATH_SEPARATOR=: ++ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { ++ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || ++ PATH_SEPARATOR=';' ++ } + fi + + # Support unset when possible. +@@ -65,8 +93,6 @@ fi + # there to prevent editors from complaining about space-tab. + # (If _AS_PATH_WALK were called with IFS unset, it would disable word + # splitting by setting IFS to empty value.) +-as_nl=' +-' + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. +@@ -89,7 +115,7 @@ if test "x$as_myself" = x; then + as_myself=$0 + fi + if test ! -f "$as_myself"; then +- echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ++ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + { (exit 1); exit 1; } + fi + +@@ -102,17 +128,10 @@ PS2='> ' + PS4='+ ' + + # NLS nuisances. +-for as_var in \ +- LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ +- LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ +- LC_TELEPHONE LC_TIME +-do +- if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then +- eval $as_var=C; export $as_var +- else +- ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +- fi +-done ++LC_ALL=C ++export LC_ALL ++LANGUAGE=C ++export LANGUAGE + + # Required to use basename. + if expr a : '\(a\)' >/dev/null 2>&1 && +@@ -134,7 +153,7 @@ as_me=`$as_basename -- "$0" || + $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +-echo X/"$0" | ++$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q +@@ -160,7 +179,7 @@ else + as_have_required=no + fi + +- if test $as_have_required = yes && (eval ": ++ if test $as_have_required = yes && (eval ": + (as_func_return () { + (exit \$1) + } +@@ -242,7 +261,7 @@ IFS=$as_save_IFS + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +@@ -263,7 +282,7 @@ _ASEOF + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +@@ -343,10 +362,10 @@ fi + + if test "x$CONFIG_SHELL" != x; then + for as_var in BASH_ENV ENV +- do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +- done +- export CONFIG_SHELL +- exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} ++ do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++ done ++ export CONFIG_SHELL ++ exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} + fi + + +@@ -415,9 +434,10 @@ fi + + test \$exitcode = 0") || { + echo No shell found that supports shell functions. +- echo Please tell autoconf@gnu.org about your system, +- echo including any error possibly output before this +- echo message ++ echo Please tell bug-autoconf@gnu.org about your system, ++ echo including any error possibly output before this message. ++ echo This can help us improve future autoconf versions. ++ echo Configuration will now proceed without shell functions. + } + + +@@ -453,7 +473,7 @@ test \$exitcode = 0") || { + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || +- { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 ++ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 + { (exit 1); exit 1; }; } + + # Don't try to exec as it changes $[0], causing all sort of problems +@@ -481,7 +501,6 @@ case `echo -n x` in + *) + ECHO_N='-n';; + esac +- + if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +@@ -494,19 +513,22 @@ if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file + else + rm -f conf$$.dir +- mkdir conf$$.dir ++ mkdir conf$$.dir 2>/dev/null + fi +-echo >conf$$.file +-if ln -s conf$$.file conf$$ 2>/dev/null; then +- as_ln_s='ln -s' +- # ... but there are two gotchas: +- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. +- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. +- # In both cases, we have to default to `cp -p'. +- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || ++if (echo >conf$$.file) 2>/dev/null; then ++ if ln -s conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s='ln -s' ++ # ... but there are two gotchas: ++ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ++ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ++ # In both cases, we have to default to `cp -p'. ++ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || ++ as_ln_s='cp -p' ++ elif ln conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s=ln ++ else + as_ln_s='cp -p' +-elif ln conf$$.file conf$$ 2>/dev/null; then +- as_ln_s=ln ++ fi + else + as_ln_s='cp -p' + fi +@@ -531,10 +553,10 @@ else + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then +- test -d "$1/."; ++ test -d "$1/."; + else + case $1 in +- -*)set "./$1";; ++ -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + ???[sx]*):;;*)false;;esac;fi +@@ -980,6 +1002,25 @@ GTK_DOC_USE_LIBTOOL_TRUE + GTK_DOC_USE_LIBTOOL_FALSE + LTLIBOBJS' + ac_subst_files='' ++ac_user_opts=' ++enable_option_checking ++enable_dependency_tracking ++enable_shared ++enable_static ++enable_fast_install ++with_gnu_ld ++enable_libtool_lock ++with_pic ++with_tags ++with_libgtop_examples ++enable_hacker_mode ++with_libgtop_smp ++with_x ++enable_debug ++enable_fatal_warnings ++with_html_dir ++enable_gtk_doc ++' + ac_precious_vars='build_alias + host_alias + target_alias +@@ -1004,6 +1045,8 @@ XMKMF' + # Initialize some variables set by options. + ac_init_help= + ac_init_version=false ++ac_unrecognized_opts= ++ac_unrecognized_sep= + # The variables have the same names as the options, with + # dashes changed to underlines. + cache_file=/dev/null +@@ -1102,13 +1145,21 @@ do + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) +- ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid feature name: $ac_feature" >&2 ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 + { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` +- eval enable_$ac_feature=no ;; ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"enable_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; ++ esac ++ eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; +@@ -1121,13 +1172,21 @@ do + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) +- ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid feature name: $ac_feature" >&2 ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 + { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` +- eval enable_$ac_feature=\$ac_optarg ;; ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"enable_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; ++ esac ++ eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ +@@ -1318,22 +1377,38 @@ do + ac_init_version=: ;; + + -with-* | --with-*) +- ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid package name: $ac_package" >&2 ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 + { (exit 1); exit 1; }; } +- ac_package=`echo $ac_package | sed 's/[-.]/_/g'` +- eval with_$ac_package=\$ac_optarg ;; ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"with_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; ++ esac ++ eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) +- ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid package name: $ac_package" >&2 ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 + { (exit 1); exit 1; }; } +- ac_package=`echo $ac_package | sed 's/[-.]/_/g'` +- eval with_$ac_package=no ;; ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"with_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; ++ esac ++ eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. +@@ -1353,7 +1428,7 @@ do + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + +- -*) { echo "$as_me: error: unrecognized option: $ac_option ++ -*) { $as_echo "$as_me: error: unrecognized option: $ac_option + Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; } + ;; +@@ -1362,16 +1437,16 @@ Try \`$0 --help' for more information." + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 ++ { $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2 + { (exit 1); exit 1; }; } + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. +- echo "$as_me: WARNING: you should use --build, --host, --target" >&2 ++ $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && +- echo "$as_me: WARNING: invalid host type: $ac_option" >&2 ++ $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} + ;; + +@@ -1380,22 +1455,38 @@ done + + if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` +- { echo "$as_me: error: missing argument to $ac_option" >&2 ++ { $as_echo "$as_me: error: missing argument to $ac_option" >&2 + { (exit 1); exit 1; }; } + fi + +-# Be sure to have absolute directory names. ++if test -n "$ac_unrecognized_opts"; then ++ case $enable_option_checking in ++ no) ;; ++ fatal) { $as_echo "$as_me: error: Unrecognized options: $ac_unrecognized_opts" >&2 ++ { (exit 1); exit 1; }; } ;; ++ *) $as_echo "$as_me: WARNING: Unrecognized options: $ac_unrecognized_opts" >&2 ;; ++ esac ++fi ++ ++# Check all directory arguments for consistency. + for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir + do + eval ac_val=\$$ac_var ++ # Remove trailing slashes. ++ case $ac_val in ++ */ ) ++ ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` ++ eval $ac_var=\$ac_val;; ++ esac ++ # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac +- { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 ++ { $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 + { (exit 1); exit 1; }; } + done + +@@ -1410,7 +1501,7 @@ target=$target_alias + if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe +- echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. ++ $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used." >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes +@@ -1426,10 +1517,10 @@ test "$silent" = yes && exec 6>/dev/null + ac_pwd=`pwd` && test -n "$ac_pwd" && + ac_ls_di=`ls -di .` && + ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || +- { echo "$as_me: error: Working directory cannot be determined" >&2 ++ { $as_echo "$as_me: error: Working directory cannot be determined" >&2 + { (exit 1); exit 1; }; } + test "X$ac_ls_di" = "X$ac_pwd_ls_di" || +- { echo "$as_me: error: pwd does not report name of working directory" >&2 ++ { $as_echo "$as_me: error: pwd does not report name of working directory" >&2 + { (exit 1); exit 1; }; } + + +@@ -1437,12 +1528,12 @@ test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. +- ac_confdir=`$as_dirname -- "$0" || +-$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$0" : 'X\(//\)[^/]' \| \ +- X"$0" : 'X\(//\)$' \| \ +- X"$0" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$0" | ++ ac_confdir=`$as_dirname -- "$as_myself" || ++$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_myself" : 'X\(//\)[^/]' \| \ ++ X"$as_myself" : 'X\(//\)$' \| \ ++ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -1469,12 +1560,12 @@ else + fi + if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." +- { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 ++ { $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 + { (exit 1); exit 1; }; } + fi + ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" + ac_abs_confdir=`( +- cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 ++ cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2 + { (exit 1); exit 1; }; } + pwd)` + # When building in place, set srcdir=. +@@ -1523,9 +1614,9 @@ Configuration: + + Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX +- [$ac_default_prefix] ++ [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX +- [PREFIX] ++ [PREFIX] + + By default, \`make install' will install all the files in + \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +@@ -1535,25 +1626,25 @@ for instance \`--prefix=\$HOME'. + For better control, use the options below. + + Fine tuning of the installation directories: +- --bindir=DIR user executables [EPREFIX/bin] +- --sbindir=DIR system admin executables [EPREFIX/sbin] +- --libexecdir=DIR program executables [EPREFIX/libexec] +- --sysconfdir=DIR read-only single-machine data [PREFIX/etc] +- --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] +- --localstatedir=DIR modifiable single-machine data [PREFIX/var] +- --libdir=DIR object code libraries [EPREFIX/lib] +- --includedir=DIR C header files [PREFIX/include] +- --oldincludedir=DIR C header files for non-gcc [/usr/include] +- --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] +- --datadir=DIR read-only architecture-independent data [DATAROOTDIR] +- --infodir=DIR info documentation [DATAROOTDIR/info] +- --localedir=DIR locale-dependent data [DATAROOTDIR/locale] +- --mandir=DIR man documentation [DATAROOTDIR/man] +- --docdir=DIR documentation root [DATAROOTDIR/doc/libgtop] +- --htmldir=DIR html documentation [DOCDIR] +- --dvidir=DIR dvi documentation [DOCDIR] +- --pdfdir=DIR pdf documentation [DOCDIR] +- --psdir=DIR ps documentation [DOCDIR] ++ --bindir=DIR user executables [EPREFIX/bin] ++ --sbindir=DIR system admin executables [EPREFIX/sbin] ++ --libexecdir=DIR program executables [EPREFIX/libexec] ++ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] ++ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] ++ --localstatedir=DIR modifiable single-machine data [PREFIX/var] ++ --libdir=DIR object code libraries [EPREFIX/lib] ++ --includedir=DIR C header files [PREFIX/include] ++ --oldincludedir=DIR C header files for non-gcc [/usr/include] ++ --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] ++ --datadir=DIR read-only architecture-independent data [DATAROOTDIR] ++ --infodir=DIR info documentation [DATAROOTDIR/info] ++ --localedir=DIR locale-dependent data [DATAROOTDIR/locale] ++ --mandir=DIR man documentation [DATAROOTDIR/man] ++ --docdir=DIR documentation root [DATAROOTDIR/doc/libgtop] ++ --htmldir=DIR html documentation [DOCDIR] ++ --dvidir=DIR dvi documentation [DOCDIR] ++ --pdfdir=DIR pdf documentation [DOCDIR] ++ --psdir=DIR ps documentation [DOCDIR] + _ACEOF + + cat <<\_ACEOF +@@ -1581,6 +1672,7 @@ if test -n "$ac_init_help"; then + cat <<\_ACEOF + + Optional Features: ++ --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --disable-dependency-tracking speeds up one-time build +@@ -1637,15 +1729,17 @@ fi + if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue +- test -d "$ac_dir" || continue ++ test -d "$ac_dir" || ++ { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || ++ continue + ac_builddir=. + + case "$ac_dir" in + .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) +- ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ++ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. +- ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` ++ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; +@@ -1681,7 +1775,7 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_ + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else +- echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 ++ $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +@@ -1691,10 +1785,10 @@ test -n "$ac_init_help" && exit $ac_stat + if $ac_init_version; then + cat <<\_ACEOF + libgtop configure 2.22.3 +-generated by GNU Autoconf 2.61 ++generated by GNU Autoconf 2.62 + + Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +-2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ++2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + This configure script is free software; the Free Software Foundation + gives unlimited permission to copy, distribute and modify it. + _ACEOF +@@ -1705,7 +1799,7 @@ This file contains any messages produced + running configure, to aid debugging if configure makes a mistake. + + It was created by libgtop $as_me 2.22.3, which was +-generated by GNU Autoconf 2.61. Invocation command line was ++generated by GNU Autoconf 2.62. Invocation command line was + + $ $0 $@ + +@@ -1741,7 +1835,7 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- echo "PATH: $as_dir" ++ $as_echo "PATH: $as_dir" + done + IFS=$as_save_IFS + +@@ -1776,7 +1870,7 @@ do + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) +- ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; +@@ -1828,11 +1922,12 @@ _ASBOX + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( +- *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 +-echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; ++ *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 ++$as_echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( ++ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) $as_unset $ac_var ;; + esac ;; + esac +@@ -1862,9 +1957,9 @@ _ASBOX + do + eval ac_val=\$$ac_var + case $ac_val in +- *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac +- echo "$ac_var='\''$ac_val'\''" ++ $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + +@@ -1879,9 +1974,9 @@ _ASBOX + do + eval ac_val=\$$ac_var + case $ac_val in +- *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac +- echo "$ac_var='\''$ac_val'\''" ++ $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi +@@ -1897,8 +1992,8 @@ _ASBOX + echo + fi + test "$ac_signal" != 0 && +- echo "$as_me: caught signal $ac_signal" +- echo "$as_me: exit $exit_status" ++ $as_echo "$as_me: caught signal $ac_signal" ++ $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && +@@ -1940,21 +2035,24 @@ _ACEOF + + + # Let the site file select an alternate cache file if it wants to. +-# Prefer explicitly selected file to automatically selected ones. ++# Prefer an explicitly selected file to automatically selected ones. ++ac_site_file1=NONE ++ac_site_file2=NONE + if test -n "$CONFIG_SITE"; then +- set x "$CONFIG_SITE" ++ ac_site_file1=$CONFIG_SITE + elif test "x$prefix" != xNONE; then +- set x "$prefix/share/config.site" "$prefix/etc/config.site" ++ ac_site_file1=$prefix/share/config.site ++ ac_site_file2=$prefix/etc/config.site + else +- set x "$ac_default_prefix/share/config.site" \ +- "$ac_default_prefix/etc/config.site" ++ ac_site_file1=$ac_default_prefix/share/config.site ++ ac_site_file2=$ac_default_prefix/etc/config.site + fi +-shift +-for ac_site_file ++for ac_site_file in "$ac_site_file1" "$ac_site_file2" + do ++ test "x$ac_site_file" = xNONE && continue + if test -r "$ac_site_file"; then +- { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 +-echo "$as_me: loading site script $ac_site_file" >&6;} ++ { $as_echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 ++$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" + fi +@@ -1964,16 +2062,16 @@ if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special + # files actually), so we avoid doing that. + if test -f "$cache_file"; then +- { echo "$as_me:$LINENO: loading cache $cache_file" >&5 +-echo "$as_me: loading cache $cache_file" >&6;} ++ { $as_echo "$as_me:$LINENO: loading cache $cache_file" >&5 ++$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi + else +- { echo "$as_me:$LINENO: creating cache $cache_file" >&5 +-echo "$as_me: creating cache $cache_file" >&6;} ++ { $as_echo "$as_me:$LINENO: creating cache $cache_file" >&5 ++$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file + fi + +@@ -1987,29 +2085,38 @@ for ac_var in $ac_precious_vars; do + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) +- { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +-echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ++ { $as_echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 ++$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) +- { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 +-echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ++ { $as_echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 ++$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then +- { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 +-echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} +- { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 +-echo "$as_me: former value: $ac_old_val" >&2;} +- { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 +-echo "$as_me: current value: $ac_new_val" >&2;} +- ac_cache_corrupted=: ++ # differences in whitespace do not lead to failure. ++ ac_old_val_w=`echo x $ac_old_val` ++ ac_new_val_w=`echo x $ac_new_val` ++ if test "$ac_old_val_w" != "$ac_new_val_w"; then ++ { $as_echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 ++$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ++ ac_cache_corrupted=: ++ else ++ { $as_echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 ++$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} ++ eval $ac_var=\$ac_old_val ++ fi ++ { $as_echo "$as_me:$LINENO: former value: \`$ac_old_val'" >&5 ++$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} ++ { $as_echo "$as_me:$LINENO: current value: \`$ac_new_val'" >&5 ++$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in +- *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; ++ *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in +@@ -2019,10 +2126,10 @@ echo "$as_me: current value: $ac_new_v + fi + done + if $ac_cache_corrupted; then +- { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 +-echo "$as_me: error: changes in the environment can compromise the build" >&2;} +- { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 +-echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} ++ { $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 ++$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 ++$as_echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} + { (exit 1); exit 1; }; } + fi + +@@ -2078,8 +2185,8 @@ for ac_dir in "$srcdir" "$srcdir/.." "$s + fi + done + if test -z "$ac_aux_dir"; then +- { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 +-echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 ++$as_echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} + { (exit 1); exit 1; }; } + fi + +@@ -2094,34 +2201,34 @@ ac_configure="$SHELL $ac_aux_dir/configu + + # Make sure we can run config.sub. + $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || +- { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 +-echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 ++$as_echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} + { (exit 1); exit 1; }; } + +-{ echo "$as_me:$LINENO: checking build system type" >&5 +-echo $ECHO_N "checking build system type... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking build system type" >&5 ++$as_echo_n "checking build system type... " >&6; } + if test "${ac_cv_build+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_build_alias=$build_alias + test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` + test "x$ac_build_alias" = x && +- { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 +-echo "$as_me: error: cannot guess build type; you must specify one" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 ++$as_echo "$as_me: error: cannot guess build type; you must specify one" >&2;} + { (exit 1); exit 1; }; } + ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || +- { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 +-echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 ++$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} + { (exit 1); exit 1; }; } + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5 +-echo "${ECHO_T}$ac_cv_build" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_build" >&5 ++$as_echo "$ac_cv_build" >&6; } + case $ac_cv_build in + *-*-*) ;; +-*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 +-echo "$as_me: error: invalid value of canonical build" >&2;} ++*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 ++$as_echo "$as_me: error: invalid value of canonical build" >&2;} + { (exit 1); exit 1; }; };; + esac + build=$ac_cv_build +@@ -2138,27 +2245,27 @@ IFS=$ac_save_IFS + case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +-{ echo "$as_me:$LINENO: checking host system type" >&5 +-echo $ECHO_N "checking host system type... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking host system type" >&5 ++$as_echo_n "checking host system type... " >&6; } + if test "${ac_cv_host+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build + else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || +- { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 +-echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 ++$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} + { (exit 1); exit 1; }; } + fi + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5 +-echo "${ECHO_T}$ac_cv_host" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_host" >&5 ++$as_echo "$ac_cv_host" >&6; } + case $ac_cv_host in + *-*-*) ;; +-*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 +-echo "$as_me: error: invalid value of canonical host" >&2;} ++*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 ++$as_echo "$as_me: error: invalid value of canonical host" >&2;} + { (exit 1); exit 1; }; };; + esac + host=$ac_cv_host +@@ -2175,27 +2282,27 @@ IFS=$ac_save_IFS + case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +-{ echo "$as_me:$LINENO: checking target system type" >&5 +-echo $ECHO_N "checking target system type... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking target system type" >&5 ++$as_echo_n "checking target system type... " >&6; } + if test "${ac_cv_target+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test "x$target_alias" = x; then + ac_cv_target=$ac_cv_host + else + ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || +- { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5 +-echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5 ++$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;} + { (exit 1); exit 1; }; } + fi + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_target" >&5 +-echo "${ECHO_T}$ac_cv_target" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_target" >&5 ++$as_echo "$ac_cv_target" >&6; } + case $ac_cv_target in + *-*-*) ;; +-*) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5 +-echo "$as_me: error: invalid value of canonical target" >&2;} ++*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical target" >&5 ++$as_echo "$as_me: error: invalid value of canonical target" >&2;} + { (exit 1); exit 1; }; };; + esac + target=$ac_cv_target +@@ -2233,11 +2340,12 @@ am__api_version="1.9" + # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" + # OS/2's system install, which has a completely different semantic + # ./install, which can be erroneously created by make from ./install.sh. +-{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 +-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } ++# Reject install programs that cannot install multiple files. ++{ $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 ++$as_echo_n "checking for a BSD-compatible install... " >&6; } + if test -z "$INSTALL"; then + if test "${ac_cv_path_install+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH +@@ -2266,17 +2374,29 @@ case $as_dir/ in + # program-specific install script used by HP pwplus--don't use. + : + else +- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" +- break 3 ++ rm -rf conftest.one conftest.two conftest.dir ++ echo one > conftest.one ++ echo two > conftest.two ++ mkdir conftest.dir ++ if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && ++ test -s conftest.one && test -s conftest.two && ++ test -s conftest.dir/conftest.one && ++ test -s conftest.dir/conftest.two ++ then ++ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" ++ break 3 ++ fi + fi + fi + done + done + ;; + esac ++ + done + IFS=$as_save_IFS + ++rm -rf conftest.one conftest.two conftest.dir + + fi + if test "${ac_cv_path_install+set}" = set; then +@@ -2289,8 +2409,8 @@ fi + INSTALL=$ac_install_sh + fi + fi +-{ echo "$as_me:$LINENO: result: $INSTALL" >&5 +-echo "${ECHO_T}$INSTALL" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5 ++$as_echo "$INSTALL" >&6; } + + # Use test -z because SunOS4 sh mishandles braces in ${var-val}. + # It thinks the first close brace ends the variable substitution. +@@ -2300,8 +2420,8 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCR + + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +-{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5 +-echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether build environment is sane" >&5 ++$as_echo_n "checking whether build environment is sane... " >&6; } + # Just in case + sleep 1 + echo timestamp > conftest.file +@@ -2324,9 +2444,9 @@ if ( + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". +- { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken ++ { { $as_echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken + alias in your environment" >&5 +-echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken ++$as_echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken + alias in your environment" >&2;} + { (exit 1); exit 1; }; } + fi +@@ -2337,26 +2457,23 @@ then + # Ok. + : + else +- { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! ++ { { $as_echo "$as_me:$LINENO: error: newly created file is older than distributed files! + Check your system clock" >&5 +-echo "$as_me: error: newly created file is older than distributed files! ++$as_echo "$as_me: error: newly created file is older than distributed files! + Check your system clock" >&2;} + { (exit 1); exit 1; }; } + fi +-{ echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++{ $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" + # Use a double $ so make ignores it. + test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +-# Double any \ or $. echo might interpret backslashes. ++# Double any \ or $. + # By default was `s,x,x', remove it if useless. +-cat <<\_ACEOF >conftest.sed +-s/[\\$]/&&/g;s/;s,x,x,$// +-_ACEOF +-program_transform_name=`echo $program_transform_name | sed -f conftest.sed` +-rm -f conftest.sed ++ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' ++program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + + # expand $ac_aux_dir to an absolute path + am_aux_dir=`cd $ac_aux_dir && pwd` +@@ -2367,8 +2484,8 @@ if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " + else + am_missing_run= +- { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 +-echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 ++$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} + fi + + if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then +@@ -2408,10 +2525,10 @@ for ac_prog in gawk mawk nawk awk + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_AWK+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +@@ -2424,7 +2541,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -2435,22 +2552,23 @@ fi + fi + AWK=$ac_cv_prog_AWK + if test -n "$AWK"; then +- { echo "$as_me:$LINENO: result: $AWK" >&5 +-echo "${ECHO_T}$AWK" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $AWK" >&5 ++$as_echo "$AWK" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + test -n "$AWK" && break + done + +-{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +-echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } +-set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` ++{ $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 ++$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } ++set x ${MAKE-make} ++ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` + if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.make <<\_ACEOF + SHELL = /bin/sh +@@ -2467,12 +2585,12 @@ esac + rm -f conftest.make + fi + if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + SET_MAKE= + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" + fi + +@@ -2488,8 +2606,8 @@ rmdir .tst 2>/dev/null + # test to see if srcdir already configured + if test "`cd $srcdir && pwd`" != "`pwd`" && + test -f $srcdir/config.status; then +- { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 +-echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 ++$as_echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} + { (exit 1); exit 1; }; } + fi + +@@ -2543,10 +2661,10 @@ if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. + set dummy ${ac_tool_prefix}strip; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_STRIP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +@@ -2559,7 +2677,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -2570,11 +2688,11 @@ fi + fi + STRIP=$ac_cv_prog_STRIP + if test -n "$STRIP"; then +- { echo "$as_me:$LINENO: result: $STRIP" >&5 +-echo "${ECHO_T}$STRIP" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $STRIP" >&5 ++$as_echo "$STRIP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -2583,10 +2701,10 @@ if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. + set dummy strip; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +@@ -2599,7 +2717,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -2610,11 +2728,11 @@ fi + fi + ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP + if test -n "$ac_ct_STRIP"; then +- { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 +-echo "${ECHO_T}$ac_ct_STRIP" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 ++$as_echo "$ac_ct_STRIP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_STRIP" = x; then +@@ -2622,10 +2740,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -2685,8 +2803,8 @@ am__doit: + .PHONY: am__doit + END + # If we don't find an include directive, just comment out the code. +-{ echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 +-echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 ++$as_echo_n "checking for style of include used by $am_make... " >&6; } + am__include="#" + am__quote= + _am_result=none +@@ -2713,8 +2831,8 @@ if test "$am__include" = "#"; then + fi + + +-{ echo "$as_me:$LINENO: result: $_am_result" >&5 +-echo "${ECHO_T}$_am_result" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $_am_result" >&5 ++$as_echo "$_am_result" >&6; } + rm -f confinc confmf + + # Check whether --enable-dependency-tracking was given. +@@ -2746,10 +2864,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. + set dummy ${ac_tool_prefix}gcc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -2762,7 +2880,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -2773,11 +2891,11 @@ fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -2786,10 +2904,10 @@ if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. + set dummy gcc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +@@ -2802,7 +2920,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -2813,11 +2931,11 @@ fi + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-echo "${ECHO_T}$ac_ct_CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++$as_echo "$ac_ct_CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_CC" = x; then +@@ -2825,10 +2943,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -2843,10 +2961,10 @@ if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. + set dummy ${ac_tool_prefix}cc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -2859,7 +2977,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -2870,11 +2988,11 @@ fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -2883,10 +3001,10 @@ fi + if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. + set dummy cc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -2904,7 +3022,7 @@ do + continue + fi + ac_cv_prog_CC="cc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -2927,11 +3045,11 @@ fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -2942,10 +3060,10 @@ if test -z "$CC"; then + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -2958,7 +3076,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -2969,11 +3087,11 @@ fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -2986,10 +3104,10 @@ if test -z "$CC"; then + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +@@ -3002,7 +3120,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -3013,11 +3131,11 @@ fi + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-echo "${ECHO_T}$ac_ct_CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++$as_echo "$ac_ct_CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -3029,10 +3147,10 @@ done + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -3044,44 +3162,48 @@ fi + fi + + +-test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH ++test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH + See \`config.log' for more details." >&5 +-echo "$as_me: error: no acceptable C compiler found in \$PATH ++$as_echo "$as_me: error: no acceptable C compiler found in \$PATH + See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + + # Provide some information about the compiler. +-echo "$as_me:$LINENO: checking for C compiler version" >&5 +-ac_compiler=`set X $ac_compile; echo $2` ++$as_echo "$as_me:$LINENO: checking for C compiler version" >&5 ++set X $ac_compile ++ac_compiler=$2 + { (ac_try="$ac_compiler --version >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler --version >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { (ac_try="$ac_compiler -v >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler -v >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { (ac_try="$ac_compiler -V >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler -V >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + + cat >conftest.$ac_ext <<_ACEOF +@@ -3100,27 +3222,22 @@ main () + } + _ACEOF + ac_clean_files_save=$ac_clean_files +-ac_clean_files="$ac_clean_files a.out a.exe b.out" ++ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" + # Try to create an executable without -o first, disregard a.out. + # It will help us diagnose broken compilers, and finding out an intuition + # of exeext. +-{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 +-echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } +-ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` +-# +-# List of possible output files, starting from the most likely. +-# The algorithm is not robust to junk in `.', hence go to wildcards (a.*) +-# only as a last resort. b.out is created by i960 compilers. +-ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' +-# +-# The IRIX 6 linker writes into existing files which may not be +-# executable, retaining their permissions. Remove them first so a +-# subsequent execution test works. ++{ $as_echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 ++$as_echo_n "checking for C compiler default output file name... " >&6; } ++ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` ++ ++# The possible output files: ++ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ++ + ac_rmfiles= + for ac_file in $ac_files + do + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac + done +@@ -3131,10 +3248,11 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. + # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +@@ -3145,7 +3263,7 @@ for ac_file in $ac_files '' + do + test -f "$ac_file" || continue + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most +@@ -3172,15 +3290,15 @@ else + ac_file='' + fi + +-{ echo "$as_me:$LINENO: result: $ac_file" >&5 +-echo "${ECHO_T}$ac_file" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_file" >&5 ++$as_echo "$ac_file" >&6; } + if test -z "$ac_file"; then +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +-{ { echo "$as_me:$LINENO: error: C compiler cannot create executables ++{ { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables + See \`config.log' for more details." >&5 +-echo "$as_me: error: C compiler cannot create executables ++$as_echo "$as_me: error: C compiler cannot create executables + See \`config.log' for more details." >&2;} + { (exit 77); exit 77; }; } + fi +@@ -3189,8 +3307,8 @@ ac_exeext=$ac_cv_exeext + + # Check that the compiler produces executables we can run. If not, either + # the compiler is broken, or we cross compile. +-{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5 +-echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether the C compiler works" >&5 ++$as_echo_n "checking whether the C compiler works... " >&6; } + # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 + # If not cross compiling, check that we can run a simple program. + if test "$cross_compiling" != yes; then +@@ -3199,49 +3317,51 @@ if test "$cross_compiling" != yes; then + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else +- { { echo "$as_me:$LINENO: error: cannot run C compiled programs. ++ { { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs. + If you meant to cross compile, use \`--host'. + See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot run C compiled programs. ++$as_echo "$as_me: error: cannot run C compiled programs. + If you meant to cross compile, use \`--host'. + See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + fi + fi + fi +-{ echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++{ $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + +-rm -f a.out a.exe conftest$ac_cv_exeext b.out ++rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out + ac_clean_files=$ac_clean_files_save + # Check that the compiler produces executables we can run. If not, either + # the compiler is broken, or we cross compile. +-{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 +-echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } +-{ echo "$as_me:$LINENO: result: $cross_compiling" >&5 +-echo "${ECHO_T}$cross_compiling" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 ++$as_echo_n "checking whether we are cross compiling... " >&6; } ++{ $as_echo "$as_me:$LINENO: result: $cross_compiling" >&5 ++$as_echo "$cross_compiling" >&6; } + +-{ echo "$as_me:$LINENO: checking for suffix of executables" >&5 +-echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for suffix of executables" >&5 ++$as_echo_n "checking for suffix of executables... " >&6; } + if { (ac_try="$ac_link" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # If both `conftest.exe' and `conftest' are `present' (well, observable) + # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +@@ -3250,31 +3370,31 @@ eval "echo \"\$as_me:$LINENO: $ac_try_ec + for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac + done + else +- { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link ++ { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link + See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot compute suffix of executables: cannot compile and link ++$as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link + See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + fi + + rm -f conftest$ac_cv_exeext +-{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 +-echo "${ECHO_T}$ac_cv_exeext" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 ++$as_echo "$ac_cv_exeext" >&6; } + + rm -f conftest.$ac_ext + EXEEXT=$ac_cv_exeext + ac_exeext=$EXEEXT +-{ echo "$as_me:$LINENO: checking for suffix of object files" >&5 +-echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for suffix of object files" >&5 ++$as_echo_n "checking for suffix of object files... " >&6; } + if test "${ac_cv_objext+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -3297,40 +3417,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac + done + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +-{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile ++{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile + See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot compute suffix of object files: cannot compile ++$as_echo "$as_me: error: cannot compute suffix of object files: cannot compile + See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + fi + + rm -f conftest.$ac_cv_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 +-echo "${ECHO_T}$ac_cv_objext" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 ++$as_echo "$ac_cv_objext" >&6; } + OBJEXT=$ac_cv_objext + ac_objext=$OBJEXT +-{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +-echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 ++$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } + if test "${ac_cv_c_compiler_gnu+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -3356,20 +3477,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_compiler_gnu=no +@@ -3379,15 +3501,19 @@ rm -f core conftest.err conftest.$ac_obj + ac_cv_c_compiler_gnu=$ac_compiler_gnu + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +-echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } +-GCC=`test $ac_compiler_gnu = yes && echo yes` ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 ++$as_echo "$ac_cv_c_compiler_gnu" >&6; } ++if test $ac_compiler_gnu = yes; then ++ GCC=yes ++else ++ GCC= ++fi + ac_test_CFLAGS=${CFLAGS+set} + ac_save_CFLAGS=$CFLAGS +-{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +-echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 ++$as_echo_n "checking whether $CC accepts -g... " >&6; } + if test "${ac_cv_prog_cc_g+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes +@@ -3414,20 +3540,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + CFLAGS="" +@@ -3452,20 +3579,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + : + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_c_werror_flag=$ac_save_c_werror_flag +@@ -3491,20 +3619,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -3519,8 +3648,8 @@ fi + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +-echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 ++$as_echo "$ac_cv_prog_cc_g" >&6; } + if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS + elif test $ac_cv_prog_cc_g = yes; then +@@ -3536,10 +3665,10 @@ else + CFLAGS= + fi + fi +-{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 +-echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 ++$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } + if test "${ac_cv_prog_cc_c89+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_cv_prog_cc_c89=no + ac_save_CC=$CC +@@ -3610,20 +3739,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_c89=$ac_arg + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -3639,15 +3769,15 @@ fi + # AC_CACHE_VAL + case "x$ac_cv_prog_cc_c89" in + x) +- { echo "$as_me:$LINENO: result: none needed" >&5 +-echo "${ECHO_T}none needed" >&6; } ;; ++ { $as_echo "$as_me:$LINENO: result: none needed" >&5 ++$as_echo "none needed" >&6; } ;; + xno) +- { echo "$as_me:$LINENO: result: unsupported" >&5 +-echo "${ECHO_T}unsupported" >&6; } ;; ++ { $as_echo "$as_me:$LINENO: result: unsupported" >&5 ++$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" +- { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 +-echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; ++ { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 ++$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; + esac + + +@@ -3659,10 +3789,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + + depcc="$CC" am_compiler_list= + +-{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +-echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 ++$as_echo_n "checking dependency style of $depcc... " >&6; } + if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up +@@ -3749,8 +3879,8 @@ else + fi + + fi +-{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +-echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 ++$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } + CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + +@@ -3767,10 +3897,10 @@ fi + + + +-{ echo "$as_me:$LINENO: checking for library containing strerror" >&5 +-echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for library containing strerror" >&5 ++$as_echo_n "checking for library containing strerror... " >&6; } + if test "${ac_cv_search_strerror+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -3808,26 +3938,30 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_search_strerror=$ac_res + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_strerror+set}" = set; then +@@ -3842,8 +3976,8 @@ fi + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 +-echo "${ECHO_T}$ac_cv_search_strerror" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 ++$as_echo "$ac_cv_search_strerror" >&6; } + ac_res=$ac_cv_search_strerror + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -3858,10 +3992,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. + set dummy ${ac_tool_prefix}gcc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -3874,7 +4008,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -3885,11 +4019,11 @@ fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -3898,10 +4032,10 @@ if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. + set dummy gcc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +@@ -3914,7 +4048,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -3925,11 +4059,11 @@ fi + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-echo "${ECHO_T}$ac_ct_CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++$as_echo "$ac_ct_CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_CC" = x; then +@@ -3937,10 +4071,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -3955,10 +4089,10 @@ if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. + set dummy ${ac_tool_prefix}cc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -3971,7 +4105,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -3982,11 +4116,11 @@ fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -3995,10 +4129,10 @@ fi + if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. + set dummy cc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -4016,7 +4150,7 @@ do + continue + fi + ac_cv_prog_CC="cc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -4039,11 +4173,11 @@ fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -4054,10 +4188,10 @@ if test -z "$CC"; then + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -4070,7 +4204,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -4081,11 +4215,11 @@ fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -4098,10 +4232,10 @@ if test -z "$CC"; then + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +@@ -4114,7 +4248,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -4125,11 +4259,11 @@ fi + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-echo "${ECHO_T}$ac_ct_CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++$as_echo "$ac_ct_CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -4141,10 +4275,10 @@ done + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -4156,50 +4290,54 @@ fi + fi + + +-test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH ++test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH + See \`config.log' for more details." >&5 +-echo "$as_me: error: no acceptable C compiler found in \$PATH ++$as_echo "$as_me: error: no acceptable C compiler found in \$PATH + See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + + # Provide some information about the compiler. +-echo "$as_me:$LINENO: checking for C compiler version" >&5 +-ac_compiler=`set X $ac_compile; echo $2` ++$as_echo "$as_me:$LINENO: checking for C compiler version" >&5 ++set X $ac_compile ++ac_compiler=$2 + { (ac_try="$ac_compiler --version >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler --version >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { (ac_try="$ac_compiler -v >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler -v >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { (ac_try="$ac_compiler -V >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler -V >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + +-{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +-echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 ++$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } + if test "${ac_cv_c_compiler_gnu+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -4225,20 +4363,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_compiler_gnu=no +@@ -4248,15 +4387,19 @@ rm -f core conftest.err conftest.$ac_obj + ac_cv_c_compiler_gnu=$ac_compiler_gnu + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +-echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } +-GCC=`test $ac_compiler_gnu = yes && echo yes` ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 ++$as_echo "$ac_cv_c_compiler_gnu" >&6; } ++if test $ac_compiler_gnu = yes; then ++ GCC=yes ++else ++ GCC= ++fi + ac_test_CFLAGS=${CFLAGS+set} + ac_save_CFLAGS=$CFLAGS +-{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +-echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 ++$as_echo_n "checking whether $CC accepts -g... " >&6; } + if test "${ac_cv_prog_cc_g+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes +@@ -4283,20 +4426,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + CFLAGS="" +@@ -4321,20 +4465,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + : + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_c_werror_flag=$ac_save_c_werror_flag +@@ -4360,20 +4505,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -4388,8 +4534,8 @@ fi + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +-echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 ++$as_echo "$ac_cv_prog_cc_g" >&6; } + if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS + elif test $ac_cv_prog_cc_g = yes; then +@@ -4405,10 +4551,10 @@ else + CFLAGS= + fi + fi +-{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 +-echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 ++$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } + if test "${ac_cv_prog_cc_c89+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_cv_prog_cc_c89=no + ac_save_CC=$CC +@@ -4479,20 +4625,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_c89=$ac_arg + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -4508,15 +4655,15 @@ fi + # AC_CACHE_VAL + case "x$ac_cv_prog_cc_c89" in + x) +- { echo "$as_me:$LINENO: result: none needed" >&5 +-echo "${ECHO_T}none needed" >&6; } ;; ++ { $as_echo "$as_me:$LINENO: result: none needed" >&5 ++$as_echo "none needed" >&6; } ;; + xno) +- { echo "$as_me:$LINENO: result: unsupported" >&5 +-echo "${ECHO_T}unsupported" >&6; } ;; ++ { $as_echo "$as_me:$LINENO: result: unsupported" >&5 ++$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" +- { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 +-echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; ++ { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 ++$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; + esac + + +@@ -4528,10 +4675,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + + depcc="$CC" am_compiler_list= + +-{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +-echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 ++$as_echo_n "checking dependency style of $depcc... " >&6; } + if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up +@@ -4618,8 +4765,8 @@ else + fi + + fi +-{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +-echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 ++$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } + CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + +@@ -4640,15 +4787,15 @@ ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_c_compiler_gnu +-{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 +-echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 ++$as_echo_n "checking how to run the C preprocessor... " >&6; } + # On Suns, sometimes $CPP names a directory. + if test -n "$CPP" && test -d "$CPP"; then + CPP= + fi + if test -z "$CPP"; then + if test "${ac_cv_prog_CPP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" +@@ -4680,20 +4827,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + : + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +@@ -4717,13 +4865,14 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err +@@ -4731,7 +4880,7 @@ eval "echo \"\$as_me:$LINENO: $ac_try_ec + # Broken: success on invalid input. + continue + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +@@ -4756,8 +4905,8 @@ fi + else + ac_cv_prog_CPP=$CPP + fi +-{ echo "$as_me:$LINENO: result: $CPP" >&5 +-echo "${ECHO_T}$CPP" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $CPP" >&5 ++$as_echo "$CPP" >&6; } + ac_preproc_ok=false + for ac_c_preproc_warn_flag in '' yes + do +@@ -4785,20 +4934,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + : + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +@@ -4822,13 +4972,14 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err +@@ -4836,7 +4987,7 @@ eval "echo \"\$as_me:$LINENO: $ac_try_ec + # Broken: success on invalid input. + continue + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +@@ -4852,9 +5003,9 @@ rm -f conftest.err conftest.$ac_ext + if $ac_preproc_ok; then + : + else +- { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check ++ { { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check + See \`config.log' for more details." >&5 +-echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check ++$as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check + See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + fi +@@ -4866,42 +5017,37 @@ ac_link='$CC -o conftest$ac_exeext $CFLA + ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +-{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 +-echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 ++$as_echo_n "checking for grep that handles long lines and -e... " >&6; } + if test "${ac_cv_path_GREP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- # Extract the first word of "grep ggrep" to use in msg output +-if test -z "$GREP"; then +-set dummy grep ggrep; ac_prog_name=$2 +-if test "${ac_cv_path_GREP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else ++ if test -z "$GREP"; then + ac_path_GREP_found=false +-# Loop through the user's path and test for each of PROGNAME-LIST +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++ # Loop through the user's path and test for each of PROGNAME-LIST ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do +- for ac_exec_ext in '' $ac_executable_extensions; do +- ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" +- { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue +- # Check for GNU ac_path_GREP and select it if it is found. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" ++ { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue ++# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP + case `"$ac_path_GREP" --version 2>&1` in + *GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; + *) + ac_count=0 +- echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" ++ $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" +- echo 'GREP' >> "conftest.nl" ++ $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + ac_count=`expr $ac_count + 1` +@@ -4916,74 +5062,60 @@ case `"$ac_path_GREP" --version 2>&1` in + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; + esac + +- +- $ac_path_GREP_found && break 3 ++ $ac_path_GREP_found && break 3 ++ done + done + done +- +-done + IFS=$as_save_IFS +- +- +-fi +- +-GREP="$ac_cv_path_GREP" +-if test -z "$GREP"; then +- { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +-echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} ++ if test -z "$ac_cv_path_GREP"; then ++ { { $as_echo "$as_me:$LINENO: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 ++$as_echo "$as_me: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} + { (exit 1); exit 1; }; } +-fi +- ++ fi + else + ac_cv_path_GREP=$GREP + fi + +- + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 +-echo "${ECHO_T}$ac_cv_path_GREP" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 ++$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +-{ echo "$as_me:$LINENO: checking for egrep" >&5 +-echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for egrep" >&5 ++$as_echo_n "checking for egrep... " >&6; } + if test "${ac_cv_path_EGREP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else +- # Extract the first word of "egrep" to use in msg output +-if test -z "$EGREP"; then +-set dummy egrep; ac_prog_name=$2 +-if test "${ac_cv_path_EGREP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else ++ if test -z "$EGREP"; then + ac_path_EGREP_found=false +-# Loop through the user's path and test for each of PROGNAME-LIST +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++ # Loop through the user's path and test for each of PROGNAME-LIST ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do +- for ac_exec_ext in '' $ac_executable_extensions; do +- ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" +- { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue +- # Check for GNU ac_path_EGREP and select it if it is found. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" ++ { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue ++# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP + case `"$ac_path_EGREP" --version 2>&1` in + *GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; + *) + ac_count=0 +- echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" ++ $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" +- echo 'EGREP' >> "conftest.nl" ++ $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + ac_count=`expr $ac_count + 1` +@@ -4998,40 +5130,31 @@ case `"$ac_path_EGREP" --version 2>&1` i + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; + esac + +- +- $ac_path_EGREP_found && break 3 ++ $ac_path_EGREP_found && break 3 ++ done + done + done +- +-done + IFS=$as_save_IFS +- +- +-fi +- +-EGREP="$ac_cv_path_EGREP" +-if test -z "$EGREP"; then +- { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +-echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} ++ if test -z "$ac_cv_path_EGREP"; then ++ { { $as_echo "$as_me:$LINENO: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 ++$as_echo "$as_me: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} + { (exit 1); exit 1; }; } +-fi +- ++ fi + else + ac_cv_path_EGREP=$EGREP + fi + +- + fi + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 +-echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 ++$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +-{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5 +-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5 ++$as_echo_n "checking for ANSI C header files... " >&6; } + if test "${ac_cv_header_stdc+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -5058,20 +5181,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_header_stdc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_header_stdc=no +@@ -5163,37 +5287,40 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + : + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++$as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ac_cv_header_stdc=no + fi ++rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 +-echo "${ECHO_T}$ac_cv_header_stdc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 ++$as_echo "$ac_cv_header_stdc" >&6; } + if test $ac_cv_header_stdc = yes; then + + cat >>confdefs.h <<\_ACEOF +@@ -5210,10 +5337,10 @@ for ac_prog in gawk awk + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_AWK+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +@@ -5226,7 +5353,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -5237,29 +5364,29 @@ fi + fi + AWK=$ac_cv_prog_AWK + if test -n "$AWK"; then +- { echo "$as_me:$LINENO: result: $AWK" >&5 +-echo "${ECHO_T}$AWK" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $AWK" >&5 ++$as_echo "$AWK" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + test -n "$AWK" && break + done + +-test -z "$AWK" && { { echo "$as_me:$LINENO: error: Sorry, you need a working awk interpreter." >&5 +-echo "$as_me: error: Sorry, you need a working awk interpreter." >&2;} ++test -z "$AWK" && { { $as_echo "$as_me:$LINENO: error: Sorry, you need a working awk interpreter." >&5 ++$as_echo "$as_me: error: Sorry, you need a working awk interpreter." >&2;} + { (exit 1); exit 1; }; } + + for ac_prog in perl5 perl + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_PERL+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$PERL"; then + ac_cv_prog_PERL="$PERL" # Let the user override the test. +@@ -5272,7 +5399,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_PERL="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -5283,28 +5410,28 @@ fi + fi + PERL=$ac_cv_prog_PERL + if test -n "$PERL"; then +- { echo "$as_me:$LINENO: result: $PERL" >&5 +-echo "${ECHO_T}$PERL" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $PERL" >&5 ++$as_echo "$PERL" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + test -n "$PERL" && break + done + +-test -z "$PERL" && { { echo "$as_me:$LINENO: error: You need to have a working perl interpreter." >&5 +-echo "$as_me: error: You need to have a working perl interpreter." >&2;} ++test -z "$PERL" && { { $as_echo "$as_me:$LINENO: error: You need to have a working perl interpreter." >&5 ++$as_echo "$as_me: error: You need to have a working perl interpreter." >&2;} + { (exit 1); exit 1; }; } + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. + set dummy ${ac_tool_prefix}gcc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -5317,7 +5444,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -5328,11 +5455,11 @@ fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -5341,10 +5468,10 @@ if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. + set dummy gcc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +@@ -5357,7 +5484,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -5368,11 +5495,11 @@ fi + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-echo "${ECHO_T}$ac_ct_CC" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++$as_echo "$ac_ct_CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_CC" = x; then +@@ -5380,10 +5507,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -5397,10 +5524,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. + set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +@@ -5413,7 +5540,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -5424,11 +5551,11 @@ fi + fi + RANLIB=$ac_cv_prog_RANLIB + if test -n "$RANLIB"; then +- { echo "$as_me:$LINENO: result: $RANLIB" >&5 +-echo "${ECHO_T}$RANLIB" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $RANLIB" >&5 ++$as_echo "$RANLIB" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -5437,10 +5564,10 @@ if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. + set dummy ranlib; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +@@ -5453,7 +5580,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_RANLIB="ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -5464,11 +5591,11 @@ fi + fi + ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB + if test -n "$ac_ct_RANLIB"; then +- { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 +-echo "${ECHO_T}$ac_ct_RANLIB" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 ++$as_echo "$ac_ct_RANLIB" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_RANLIB" = x; then +@@ -5476,10 +5603,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -5493,10 +5620,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. + set dummy ${ac_tool_prefix}as; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_AS+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$AS"; then + ac_cv_prog_AS="$AS" # Let the user override the test. +@@ -5509,7 +5636,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AS="${ac_tool_prefix}as" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -5520,11 +5647,11 @@ fi + fi + AS=$ac_cv_prog_AS + if test -n "$AS"; then +- { echo "$as_me:$LINENO: result: $AS" >&5 +-echo "${ECHO_T}$AS" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $AS" >&5 ++$as_echo "$AS" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -5533,10 +5660,10 @@ if test -z "$ac_cv_prog_AS"; then + ac_ct_AS=$AS + # Extract the first word of "as", so it can be a program name with args. + set dummy as; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_AS+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_AS"; then + ac_cv_prog_ac_ct_AS="$ac_ct_AS" # Let the user override the test. +@@ -5549,7 +5676,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_AS="as" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -5560,11 +5687,11 @@ fi + fi + ac_ct_AS=$ac_cv_prog_ac_ct_AS + if test -n "$ac_ct_AS"; then +- { echo "$as_me:$LINENO: result: $ac_ct_AS" >&5 +-echo "${ECHO_T}$ac_ct_AS" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_AS" >&5 ++$as_echo "$ac_ct_AS" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_AS" = x; then +@@ -5572,10 +5699,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -5589,10 +5716,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. + set dummy ${ac_tool_prefix}ar; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_AR+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +@@ -5605,7 +5732,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AR="${ac_tool_prefix}ar" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -5616,11 +5743,11 @@ fi + fi + AR=$ac_cv_prog_AR + if test -n "$AR"; then +- { echo "$as_me:$LINENO: result: $AR" >&5 +-echo "${ECHO_T}$AR" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $AR" >&5 ++$as_echo "$AR" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -5629,10 +5756,10 @@ if test -z "$ac_cv_prog_AR"; then + ac_ct_AR=$AR + # Extract the first word of "ar", so it can be a program name with args. + set dummy ar; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_AR+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +@@ -5645,7 +5772,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_AR="ar" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -5656,11 +5783,11 @@ fi + fi + ac_ct_AR=$ac_cv_prog_ac_ct_AR + if test -n "$ac_ct_AR"; then +- { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 +-echo "${ECHO_T}$ac_ct_AR" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 ++$as_echo "$ac_ct_AR" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_AR" = x; then +@@ -5668,10 +5795,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -5698,11 +5825,12 @@ export CC CXX RANLIB LD AS AR + # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" + # OS/2's system install, which has a completely different semantic + # ./install, which can be erroneously created by make from ./install.sh. +-{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 +-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } ++# Reject install programs that cannot install multiple files. ++{ $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 ++$as_echo_n "checking for a BSD-compatible install... " >&6; } + if test -z "$INSTALL"; then + if test "${ac_cv_path_install+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH +@@ -5731,17 +5859,29 @@ case $as_dir/ in + # program-specific install script used by HP pwplus--don't use. + : + else +- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" +- break 3 ++ rm -rf conftest.one conftest.two conftest.dir ++ echo one > conftest.one ++ echo two > conftest.two ++ mkdir conftest.dir ++ if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && ++ test -s conftest.one && test -s conftest.two && ++ test -s conftest.dir/conftest.one && ++ test -s conftest.dir/conftest.two ++ then ++ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" ++ break 3 ++ fi + fi + fi + done + done + ;; + esac ++ + done + IFS=$as_save_IFS + ++rm -rf conftest.one conftest.two conftest.dir + + fi + if test "${ac_cv_path_install+set}" = set; then +@@ -5754,8 +5894,8 @@ fi + INSTALL=$ac_install_sh + fi + fi +-{ echo "$as_me:$LINENO: result: $INSTALL" >&5 +-echo "${ECHO_T}$INSTALL" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5 ++$as_echo "$INSTALL" >&6; } + + # Use test -z because SunOS4 sh mishandles braces in ${var-val}. + # It thinks the first close brace ends the variable substitution. +@@ -5765,22 +5905,23 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCR + + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +-{ echo "$as_me:$LINENO: checking whether ln -s works" >&5 +-echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether ln -s works" >&5 ++$as_echo_n "checking whether ln -s works... " >&6; } + LN_S=$as_ln_s + if test "$LN_S" = "ln -s"; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + else +- { echo "$as_me:$LINENO: result: no, using $LN_S" >&5 +-echo "${ECHO_T}no, using $LN_S" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no, using $LN_S" >&5 ++$as_echo "no, using $LN_S" >&6; } + fi + +-{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +-echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } +-set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` ++{ $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 ++$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } ++set x ${MAKE-make} ++ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` + if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.make <<\_ACEOF + SHELL = /bin/sh +@@ -5797,12 +5938,12 @@ esac + rm -f conftest.make + fi + if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + SET_MAKE= + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" + fi + +@@ -5881,10 +6022,10 @@ else + fi + + +-{ echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 +-echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 ++$as_echo_n "checking for a sed that does not truncate output... " >&6; } + if test "${lt_cv_path_SED+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + # Loop through the user's path and test for sed and gsed. + # Then use that list of sed's as ones to test for truncation. +@@ -5937,8 +6078,8 @@ fi + + SED=$lt_cv_path_SED + +-{ echo "$as_me:$LINENO: result: $SED" >&5 +-echo "${ECHO_T}$SED" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $SED" >&5 ++$as_echo "$SED" >&6; } + + + # Check whether --with-gnu-ld was given. +@@ -5951,8 +6092,8 @@ fi + ac_prog=ld + if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. +- { echo "$as_me:$LINENO: checking for ld used by $CC" >&5 +-echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for ld used by $CC" >&5 ++$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw +@@ -5981,14 +6122,14 @@ echo $ECHO_N "checking for ld used by $C + ;; + esac + elif test "$with_gnu_ld" = yes; then +- { echo "$as_me:$LINENO: checking for GNU ld" >&5 +-echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for GNU ld" >&5 ++$as_echo_n "checking for GNU ld... " >&6; } + else +- { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 +-echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for non-GNU ld" >&5 ++$as_echo_n "checking for non-GNU ld... " >&6; } + fi + if test "${lt_cv_path_LD+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +@@ -6018,19 +6159,19 @@ fi + + LD="$lt_cv_path_LD" + if test -n "$LD"; then +- { echo "$as_me:$LINENO: result: $LD" >&5 +-echo "${ECHO_T}$LD" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $LD" >&5 ++$as_echo "$LD" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi +-test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 +-echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} ++test -z "$LD" && { { $as_echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 ++$as_echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} + { (exit 1); exit 1; }; } +-{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 +-echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 ++$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } + if test "${lt_cv_prog_gnu_ld+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + # I'd rather use --version here, but apparently some GNU lds only accept -v. + case `$LD -v 2>&1 </dev/null` in +@@ -6042,20 +6183,20 @@ case `$LD -v 2>&1 </dev/null` in + ;; + esac + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5 +-echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5 ++$as_echo "$lt_cv_prog_gnu_ld" >&6; } + with_gnu_ld=$lt_cv_prog_gnu_ld + + +-{ echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 +-echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 ++$as_echo_n "checking for $LD option to reload object files... " >&6; } + if test "${lt_cv_ld_reload_flag+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_ld_reload_flag='-r' + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 +-echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 ++$as_echo "$lt_cv_ld_reload_flag" >&6; } + reload_flag=$lt_cv_ld_reload_flag + case $reload_flag in + "" | " "*) ;; +@@ -6072,10 +6213,10 @@ case $host_os in + ;; + esac + +-{ echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5 +-echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5 ++$as_echo_n "checking for BSD-compatible nm... " >&6; } + if test "${lt_cv_path_NM+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$NM"; then + # Let the user override the test. +@@ -6121,14 +6262,14 @@ else + test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm + fi + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 +-echo "${ECHO_T}$lt_cv_path_NM" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 ++$as_echo "$lt_cv_path_NM" >&6; } + NM="$lt_cv_path_NM" + +-{ echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5 +-echo $ECHO_N "checking how to recognize dependent libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5 ++$as_echo_n "checking how to recognize dependent libraries... " >&6; } + if test "${lt_cv_deplibs_check_method+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_file_magic_cmd='$MAGIC_CMD' + lt_cv_file_magic_test_file= +@@ -6311,8 +6452,8 @@ sysv5* | sco3.2v5* | sco5v6* | unixware* + esac + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 +-echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 ++$as_echo "$lt_cv_deplibs_check_method" >&6; } + file_magic_cmd=$lt_cv_file_magic_cmd + deplibs_check_method=$lt_cv_deplibs_check_method + test -z "$deplibs_check_method" && deplibs_check_method=unknown +@@ -6345,7 +6486,7 @@ ia64-*-hpux*) + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) +@@ -6360,11 +6501,11 @@ ia64-*-hpux*) + ;; + *-*-irix6*) + # Find out which ABI we are using. +- echo '#line 6363 "configure"' > conftest.$ac_ext ++ echo '#line 6504 "configure"' > conftest.$ac_ext + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in +@@ -6402,7 +6543,7 @@ s390*-*linux*|sparc*-*linux*) + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + case `/usr/bin/file conftest.o` in + *32-bit*) +@@ -6452,10 +6593,10 @@ s390*-*linux*|sparc*-*linux*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" +- { echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 +-echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 ++$as_echo_n "checking whether the C compiler needs -belf... " >&6; } + if test "${lt_cv_cc_needs_belf+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +@@ -6484,26 +6625,30 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + lt_cv_cc_needs_belf=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + lt_cv_cc_needs_belf=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +@@ -6513,8 +6658,8 @@ ac_link='$CC -o conftest$ac_exeext $CFLA + ac_compiler_gnu=$ac_cv_c_compiler_gnu + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 +-echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 ++$as_echo "$lt_cv_cc_needs_belf" >&6; } + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" +@@ -6526,7 +6671,7 @@ sparc*-*solaris*) + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + case `/usr/bin/file conftest.o` in + *64-bit*) +@@ -6563,11 +6708,11 @@ need_locks="$enable_libtool_lock" + for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -6585,20 +6730,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "$as_ac_Header=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_Header=no" +@@ -6606,12 +6752,14 @@ fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -6622,20 +6770,21 @@ done + + for ac_header in dlfcn.h + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++$as_echo_n "checking $ac_header usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -6651,32 +6800,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++$as_echo_n "checking $ac_header presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -6690,51 +6840,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -6743,21 +6894,23 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++if test `eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -6778,10 +6931,10 @@ if test -z "$CXX"; then + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_CXX+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. +@@ -6794,7 +6947,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -6805,11 +6958,11 @@ fi + fi + CXX=$ac_cv_prog_CXX + if test -n "$CXX"; then +- { echo "$as_me:$LINENO: result: $CXX" >&5 +-echo "${ECHO_T}$CXX" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $CXX" >&5 ++$as_echo "$CXX" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -6822,10 +6975,10 @@ if test -z "$CXX"; then + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. +@@ -6838,7 +6991,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CXX="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -6849,11 +7002,11 @@ fi + fi + ac_ct_CXX=$ac_cv_prog_ac_ct_CXX + if test -n "$ac_ct_CXX"; then +- { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 +-echo "${ECHO_T}$ac_ct_CXX" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 ++$as_echo "$ac_ct_CXX" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -6865,10 +7018,10 @@ done + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -6880,43 +7033,47 @@ fi + fi + fi + # Provide some information about the compiler. +-echo "$as_me:$LINENO: checking for C++ compiler version" >&5 +-ac_compiler=`set X $ac_compile; echo $2` ++$as_echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ++set X $ac_compile ++ac_compiler=$2 + { (ac_try="$ac_compiler --version >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler --version >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { (ac_try="$ac_compiler -v >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler -v >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { (ac_try="$ac_compiler -V >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler -V >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + +-{ echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 +-echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 ++$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } + if test "${ac_cv_cxx_compiler_gnu+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -6942,20 +7099,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_compiler_gnu=no +@@ -6965,15 +7123,19 @@ rm -f core conftest.err conftest.$ac_obj + ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 +-echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; } +-GXX=`test $ac_compiler_gnu = yes && echo yes` ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 ++$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } ++if test $ac_compiler_gnu = yes; then ++ GXX=yes ++else ++ GXX= ++fi + ac_test_CXXFLAGS=${CXXFLAGS+set} + ac_save_CXXFLAGS=$CXXFLAGS +-{ echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 +-echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 ++$as_echo_n "checking whether $CXX accepts -g... " >&6; } + if test "${ac_cv_prog_cxx_g+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes +@@ -7000,20 +7162,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cxx_g=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + CXXFLAGS="" +@@ -7038,20 +7201,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + : + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cxx_werror_flag=$ac_save_cxx_werror_flag +@@ -7077,20 +7241,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cxx_g=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -7105,8 +7270,8 @@ fi + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 +-echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 ++$as_echo "$ac_cv_prog_cxx_g" >&6; } + if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS + elif test $ac_cv_prog_cxx_g = yes; then +@@ -7130,10 +7295,10 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + + depcc="$CXX" am_compiler_list= + +-{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +-echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 ++$as_echo_n "checking dependency style of $depcc... " >&6; } + if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up +@@ -7220,8 +7385,8 @@ else + fi + + fi +-{ echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 +-echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 ++$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } + CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + +@@ -7247,11 +7412,11 @@ ac_cpp='$CXXCPP $CPPFLAGS' + ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +-{ echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 +-echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 ++$as_echo_n "checking how to run the C++ preprocessor... " >&6; } + if test -z "$CXXCPP"; then + if test "${ac_cv_prog_CXXCPP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + # Double quotes because CXXCPP needs to be expanded + for CXXCPP in "$CXX -E" "/lib/cpp" +@@ -7283,20 +7448,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || + test ! -s conftest.err + }; then + : + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +@@ -7320,13 +7486,14 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || + test ! -s conftest.err +@@ -7334,7 +7501,7 @@ eval "echo \"\$as_me:$LINENO: $ac_try_ec + # Broken: success on invalid input. + continue + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +@@ -7359,8 +7526,8 @@ fi + else + ac_cv_prog_CXXCPP=$CXXCPP + fi +-{ echo "$as_me:$LINENO: result: $CXXCPP" >&5 +-echo "${ECHO_T}$CXXCPP" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $CXXCPP" >&5 ++$as_echo "$CXXCPP" >&6; } + ac_preproc_ok=false + for ac_cxx_preproc_warn_flag in '' yes + do +@@ -7388,20 +7555,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || + test ! -s conftest.err + }; then + : + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +@@ -7425,13 +7593,14 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || + test ! -s conftest.err +@@ -7439,7 +7608,7 @@ eval "echo \"\$as_me:$LINENO: $ac_try_ec + # Broken: success on invalid input. + continue + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +@@ -7455,9 +7624,9 @@ rm -f conftest.err conftest.$ac_ext + if $ac_preproc_ok; then + : + else +- { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check ++ { { $as_echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check + See \`config.log' for more details." >&5 +-echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check ++$as_echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check + See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + fi +@@ -7480,10 +7649,10 @@ if test -n "$ac_tool_prefix"; then + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_F77+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$F77"; then + ac_cv_prog_F77="$F77" # Let the user override the test. +@@ -7496,7 +7665,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_F77="$ac_tool_prefix$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -7507,11 +7676,11 @@ fi + fi + F77=$ac_cv_prog_F77 + if test -n "$F77"; then +- { echo "$as_me:$LINENO: result: $F77" >&5 +-echo "${ECHO_T}$F77" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $F77" >&5 ++$as_echo "$F77" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -7524,10 +7693,10 @@ if test -z "$F77"; then + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_F77+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_F77"; then + ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. +@@ -7540,7 +7709,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_F77="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -7551,11 +7720,11 @@ fi + fi + ac_ct_F77=$ac_cv_prog_ac_ct_F77 + if test -n "$ac_ct_F77"; then +- { echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 +-echo "${ECHO_T}$ac_ct_F77" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 ++$as_echo "$ac_ct_F77" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -7567,10 +7736,10 @@ done + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -7581,37 +7750,41 @@ fi + + + # Provide some information about the compiler. +-echo "$as_me:$LINENO: checking for Fortran 77 compiler version" >&5 +-ac_compiler=`set X $ac_compile; echo $2` ++$as_echo "$as_me:$LINENO: checking for Fortran 77 compiler version" >&5 ++set X $ac_compile ++ac_compiler=$2 + { (ac_try="$ac_compiler --version >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler --version >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { (ac_try="$ac_compiler -v >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler -v >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { (ac_try="$ac_compiler -V >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compiler -V >&5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + rm -f a.out + +@@ -7619,10 +7792,10 @@ rm -f a.out + # input file. (Note that this only needs to work for GNU compilers.) + ac_save_ext=$ac_ext + ac_ext=F +-{ echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 +-echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 ++$as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; } + if test "${ac_cv_f77_compiler_gnu+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + program main +@@ -7638,20 +7811,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_f77_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_compiler_gnu=no +@@ -7661,16 +7835,16 @@ rm -f core conftest.err conftest.$ac_obj + ac_cv_f77_compiler_gnu=$ac_compiler_gnu + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 +-echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 ++$as_echo "$ac_cv_f77_compiler_gnu" >&6; } + ac_ext=$ac_save_ext + ac_test_FFLAGS=${FFLAGS+set} + ac_save_FFLAGS=$FFLAGS + FFLAGS= +-{ echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 +-echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 ++$as_echo_n "checking whether $F77 accepts -g... " >&6; } + if test "${ac_cv_prog_f77_g+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + FFLAGS=-g + cat >conftest.$ac_ext <<_ACEOF +@@ -7684,20 +7858,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_f77_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_f77_g=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_prog_f77_g=no +@@ -7706,8 +7881,8 @@ fi + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 +-echo "${ECHO_T}$ac_cv_prog_f77_g" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 ++$as_echo "$ac_cv_prog_f77_g" >&6; } + if test "$ac_test_FFLAGS" = set; then + FFLAGS=$ac_save_FFLAGS + elif test $ac_cv_prog_f77_g = yes; then +@@ -7724,7 +7899,11 @@ else + fi + fi + +-G77=`test $ac_compiler_gnu = yes && echo yes` ++if test $ac_compiler_gnu = yes; then ++ G77=yes ++else ++ G77= ++fi + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +@@ -7735,10 +7914,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + + # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! + # find the maximum length of command line arguments +-{ echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 +-echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 ++$as_echo_n "checking the maximum length of command line arguments... " >&6; } + if test "${lt_cv_sys_max_cmd_len+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + i=0 + teststring="ABCD" +@@ -7847,11 +8026,11 @@ else + fi + + if test -n $lt_cv_sys_max_cmd_len ; then +- { echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 +-echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 ++$as_echo "$lt_cv_sys_max_cmd_len" >&6; } + else +- { echo "$as_me:$LINENO: result: none" >&5 +-echo "${ECHO_T}none" >&6; } ++ { $as_echo "$as_me:$LINENO: result: none" >&5 ++$as_echo "none" >&6; } + fi + + +@@ -7859,10 +8038,10 @@ fi + + + # Check for command to grab the raw symbol name followed by C symbol from nm. +-{ echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 +-echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 ++$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } + if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + + # These are sane defaults that work on at least a few old systems. +@@ -7967,14 +8146,14 @@ EOF + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # Now try to grab the symbols. + nlist=conftest.nm + if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 + (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then +@@ -8029,7 +8208,7 @@ EOF + if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && test -s conftest${ac_exeext}; then + pipe_works=yes + fi +@@ -8064,17 +8243,17 @@ if test -z "$lt_cv_sys_global_symbol_pip + lt_cv_sys_global_symbol_to_cdecl= + fi + if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then +- { echo "$as_me:$LINENO: result: failed" >&5 +-echo "${ECHO_T}failed" >&6; } ++ { $as_echo "$as_me:$LINENO: result: failed" >&5 ++$as_echo "failed" >&6; } + else +- { echo "$as_me:$LINENO: result: ok" >&5 +-echo "${ECHO_T}ok" >&6; } ++ { $as_echo "$as_me:$LINENO: result: ok" >&5 ++$as_echo "ok" >&6; } + fi + +-{ echo "$as_me:$LINENO: checking for objdir" >&5 +-echo $ECHO_N "checking for objdir... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for objdir" >&5 ++$as_echo_n "checking for objdir... " >&6; } + if test "${lt_cv_objdir+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + rm -f .libs 2>/dev/null + mkdir .libs 2>/dev/null +@@ -8086,8 +8265,8 @@ else + fi + rmdir .libs 2>/dev/null + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 +-echo "${ECHO_T}$lt_cv_objdir" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 ++$as_echo "$lt_cv_objdir" >&6; } + objdir=$lt_cv_objdir + + +@@ -8138,10 +8317,10 @@ with_gnu_ld="$lt_cv_prog_gnu_ld" + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. + set dummy ${ac_tool_prefix}ar; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_AR+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +@@ -8154,7 +8333,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AR="${ac_tool_prefix}ar" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -8165,11 +8344,11 @@ fi + fi + AR=$ac_cv_prog_AR + if test -n "$AR"; then +- { echo "$as_me:$LINENO: result: $AR" >&5 +-echo "${ECHO_T}$AR" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $AR" >&5 ++$as_echo "$AR" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -8178,10 +8357,10 @@ if test -z "$ac_cv_prog_AR"; then + ac_ct_AR=$AR + # Extract the first word of "ar", so it can be a program name with args. + set dummy ar; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_AR+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +@@ -8194,7 +8373,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_AR="ar" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -8205,11 +8384,11 @@ fi + fi + ac_ct_AR=$ac_cv_prog_ac_ct_AR + if test -n "$ac_ct_AR"; then +- { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 +-echo "${ECHO_T}$ac_ct_AR" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 ++$as_echo "$ac_ct_AR" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_AR" = x; then +@@ -8217,10 +8396,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -8234,10 +8413,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. + set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +@@ -8250,7 +8429,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -8261,11 +8440,11 @@ fi + fi + RANLIB=$ac_cv_prog_RANLIB + if test -n "$RANLIB"; then +- { echo "$as_me:$LINENO: result: $RANLIB" >&5 +-echo "${ECHO_T}$RANLIB" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $RANLIB" >&5 ++$as_echo "$RANLIB" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -8274,10 +8453,10 @@ if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. + set dummy ranlib; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +@@ -8290,7 +8469,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_RANLIB="ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -8301,11 +8480,11 @@ fi + fi + ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB + if test -n "$ac_ct_RANLIB"; then +- { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 +-echo "${ECHO_T}$ac_ct_RANLIB" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 ++$as_echo "$ac_ct_RANLIB" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_RANLIB" = x; then +@@ -8313,10 +8492,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -8330,10 +8509,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. + set dummy ${ac_tool_prefix}strip; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_STRIP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +@@ -8346,7 +8525,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -8357,11 +8536,11 @@ fi + fi + STRIP=$ac_cv_prog_STRIP + if test -n "$STRIP"; then +- { echo "$as_me:$LINENO: result: $STRIP" >&5 +-echo "${ECHO_T}$STRIP" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $STRIP" >&5 ++$as_echo "$STRIP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -8370,10 +8549,10 @@ if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. + set dummy strip; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +@@ -8386,7 +8565,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -8397,11 +8576,11 @@ fi + fi + ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP + if test -n "$ac_ct_STRIP"; then +- { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 +-echo "${ECHO_T}$ac_ct_STRIP" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 ++$as_echo "$ac_ct_STRIP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_STRIP" = x; then +@@ -8409,10 +8588,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -8477,10 +8656,10 @@ cc_basename=`$echo "X$cc_temp" | $Xsed - + case $deplibs_check_method in + file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then +- { echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 +-echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 ++$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } + if test "${lt_cv_path_MAGIC_CMD+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $MAGIC_CMD in + [\\/*] | ?:[\\/]*) +@@ -8530,19 +8709,19 @@ fi + + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if test -n "$MAGIC_CMD"; then +- { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 +-echo "${ECHO_T}$MAGIC_CMD" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 ++$as_echo "$MAGIC_CMD" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then +- { echo "$as_me:$LINENO: checking for file" >&5 +-echo $ECHO_N "checking for file... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for file" >&5 ++$as_echo_n "checking for file... " >&6; } + if test "${lt_cv_path_MAGIC_CMD+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $MAGIC_CMD in + [\\/*] | ?:[\\/]*) +@@ -8592,11 +8771,11 @@ fi + + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if test -n "$MAGIC_CMD"; then +- { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 +-echo "${ECHO_T}$MAGIC_CMD" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 ++$as_echo "$MAGIC_CMD" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + else +@@ -8614,10 +8793,10 @@ esac + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. + set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_DSYMUTIL+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$DSYMUTIL"; then + ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. +@@ -8630,7 +8809,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -8641,11 +8820,11 @@ fi + fi + DSYMUTIL=$ac_cv_prog_DSYMUTIL + if test -n "$DSYMUTIL"; then +- { echo "$as_me:$LINENO: result: $DSYMUTIL" >&5 +-echo "${ECHO_T}$DSYMUTIL" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $DSYMUTIL" >&5 ++$as_echo "$DSYMUTIL" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -8654,10 +8833,10 @@ if test -z "$ac_cv_prog_DSYMUTIL"; then + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. + set dummy dsymutil; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_DSYMUTIL"; then + ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. +@@ -8670,7 +8849,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -8681,11 +8860,11 @@ fi + fi + ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL + if test -n "$ac_ct_DSYMUTIL"; then +- { echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5 +-echo "${ECHO_T}$ac_ct_DSYMUTIL" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5 ++$as_echo "$ac_ct_DSYMUTIL" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_DSYMUTIL" = x; then +@@ -8693,10 +8872,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -8710,10 +8889,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. + set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_NMEDIT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$NMEDIT"; then + ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. +@@ -8726,7 +8905,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -8737,11 +8916,11 @@ fi + fi + NMEDIT=$ac_cv_prog_NMEDIT + if test -n "$NMEDIT"; then +- { echo "$as_me:$LINENO: result: $NMEDIT" >&5 +-echo "${ECHO_T}$NMEDIT" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $NMEDIT" >&5 ++$as_echo "$NMEDIT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -8750,10 +8929,10 @@ if test -z "$ac_cv_prog_NMEDIT"; then + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. + set dummy nmedit; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_NMEDIT"; then + ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. +@@ -8766,7 +8945,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_NMEDIT="nmedit" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -8777,11 +8956,11 @@ fi + fi + ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT + if test -n "$ac_ct_NMEDIT"; then +- { echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5 +-echo "${ECHO_T}$ac_ct_NMEDIT" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5 ++$as_echo "$ac_ct_NMEDIT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_NMEDIT" = x; then +@@ -8789,10 +8968,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -8804,10 +8983,10 @@ else + fi + + +- { echo "$as_me:$LINENO: checking for -single_module linker flag" >&5 +-echo $ECHO_N "checking for -single_module linker flag... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for -single_module linker flag" >&5 ++$as_echo_n "checking for -single_module linker flag... " >&6; } + if test "${lt_cv_apple_cc_single_mod+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then +@@ -8825,12 +9004,12 @@ else + rm conftest.c + fi + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5 +-echo "${ECHO_T}$lt_cv_apple_cc_single_mod" >&6; } +- { echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5 +-echo $ECHO_N "checking for -exported_symbols_list linker flag... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5 ++$as_echo "$lt_cv_apple_cc_single_mod" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5 ++$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } + if test "${lt_cv_ld_exported_symbols_list+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS +@@ -8857,33 +9036,37 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + lt_cv_ld_exported_symbols_list=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + lt_cv_ld_exported_symbols_list=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5 +-echo "${ECHO_T}$lt_cv_ld_exported_symbols_list" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5 ++$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + case $host_os in + rhapsody* | darwin1.[0123]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; +@@ -8995,10 +9178,10 @@ if test "$GCC" = yes; then + lt_prog_compiler_no_builtin_flag=' -fno-builtin' + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +-echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 ++$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } + if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext +@@ -9013,11 +9196,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9016: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:9199: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:9020: \$? = $ac_status" >&5 ++ echo "$as_me:9203: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -9030,8 +9213,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 ++$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + + if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then + lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" +@@ -9045,8 +9228,8 @@ lt_prog_compiler_wl= + lt_prog_compiler_pic= + lt_prog_compiler_static= + +-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 +-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 ++$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + if test "$GCC" = yes; then + lt_prog_compiler_wl='-Wl,' +@@ -9277,18 +9460,18 @@ echo $ECHO_N "checking for $compiler opt + esac + fi + +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 ++$as_echo "$lt_prog_compiler_pic" >&6; } + + # + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic"; then + +-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 +-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 ++$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } + if test "${lt_cv_prog_compiler_pic_works+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext +@@ -9303,11 +9486,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9306: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:9489: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:9310: \$? = $ac_status" >&5 ++ echo "$as_me:9493: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -9320,8 +9503,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_pic_works" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5 ++$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } + + if test x"$lt_cv_prog_compiler_pic_works" = xyes; then + case $lt_prog_compiler_pic in +@@ -9348,10 +9531,10 @@ esac + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ++$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } + if test "${lt_cv_prog_compiler_static_works+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_static_works=no + save_LDFLAGS="$LDFLAGS" +@@ -9376,8 +9559,8 @@ else + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_static_works" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5 ++$as_echo "$lt_cv_prog_compiler_static_works" >&6; } + + if test x"$lt_cv_prog_compiler_static_works" = xyes; then + : +@@ -9386,10 +9569,10 @@ else + fi + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 +-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 ++$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } + if test "${lt_cv_prog_compiler_c_o+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o=no + $rm -r conftest 2>/dev/null +@@ -9407,11 +9590,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9410: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:9593: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:9414: \$? = $ac_status" >&5 ++ echo "$as_me:9597: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -9433,34 +9616,34 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 ++$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + hard_links="nottested" + if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user +- { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 +-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 ++$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $rm conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no +- { echo "$as_me:$LINENO: result: $hard_links" >&5 +-echo "${ECHO_T}$hard_links" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $hard_links" >&5 ++$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then +- { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 ++$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi + else + need_locks=no + fi + +-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag= +@@ -9891,18 +10074,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -9917,12 +10103,13 @@ if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi +@@ -9957,18 +10144,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -9983,12 +10173,13 @@ if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi +@@ -10440,8 +10631,8 @@ if test -z "$aix_libpath"; then aix_libp + esac + fi + +-{ echo "$as_me:$LINENO: result: $ld_shlibs" >&5 +-echo "${ECHO_T}$ld_shlibs" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ld_shlibs" >&5 ++$as_echo "$ld_shlibs" >&6; } + test "$ld_shlibs" = no && can_build_shared=no + + # +@@ -10461,15 +10652,15 @@ x|xyes) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. +- { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 +-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 ++$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $rm conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } 2>conftest.err; then + soname=conftest + lib=conftest +@@ -10487,7 +10678,7 @@ echo $ECHO_N "checking whether -lc shoul + if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 + (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + then + archive_cmds_need_lc=no +@@ -10499,16 +10690,16 @@ echo $ECHO_N "checking whether -lc shoul + cat conftest.err 1>&5 + fi + $rm conftest* +- { echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 +-echo "${ECHO_T}$archive_cmds_need_lc" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 ++$as_echo "$archive_cmds_need_lc" >&6; } + ;; + esac + fi + ;; + esac + +-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 +-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 ++$as_echo_n "checking dynamic linker characteristics... " >&6; } + library_names_spec= + libname_spec='lib$name' + soname_spec= +@@ -11121,19 +11312,19 @@ uts4*) + dynamic_linker=no + ;; + esac +-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5 +-echo "${ECHO_T}$dynamic_linker" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $dynamic_linker" >&5 ++$as_echo "$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + + if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" + fi + + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" + if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" + fi +@@ -11145,8 +11336,8 @@ if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + +-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 +-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 ++$as_echo_n "checking how to hardcode library paths into programs... " >&6; } + hardcode_action= + if test -n "$hardcode_libdir_flag_spec" || \ + test -n "$runpath_var" || \ +@@ -11170,8 +11361,8 @@ else + # directories. + hardcode_action=unsupported + fi +-{ echo "$as_me:$LINENO: result: $hardcode_action" >&5 +-echo "${ECHO_T}$hardcode_action" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $hardcode_action" >&5 ++$as_echo "$hardcode_action" >&6; } + + if test "$hardcode_action" = relink; then + # Fast installation is not supported +@@ -11184,13 +11375,13 @@ fi + + striplib= + old_striplib= +-{ echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 +-echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 ++$as_echo_n "checking whether stripping libraries is possible... " >&6; } + if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + else + # FIXME - insert some real tests, host_os isn't really good enough + case $host_os in +@@ -11198,16 +11389,16 @@ else + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + ;; + *) +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + ;; + esac + fi +@@ -11239,10 +11430,10 @@ else + + darwin*) + # if libdl is installed we need to link against it +- { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 +-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 ++$as_echo_n "checking for dlopen in -ldl... " >&6; } + if test "${ac_cv_lib_dl_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldl $LIBS" +@@ -11274,32 +11465,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_dl_dlopen=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dl_dlopen=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 ++$as_echo "$ac_cv_lib_dl_dlopen" >&6; } + if test $ac_cv_lib_dl_dlopen = yes; then + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + else +@@ -11313,10 +11508,10 @@ fi + ;; + + *) +- { echo "$as_me:$LINENO: checking for shl_load" >&5 +-echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for shl_load" >&5 ++$as_echo_n "checking for shl_load... " >&6; } + if test "${ac_cv_func_shl_load+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -11369,38 +11564,42 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_shl_load=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_shl_load=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 +-echo "${ECHO_T}$ac_cv_func_shl_load" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 ++$as_echo "$ac_cv_func_shl_load" >&6; } + if test $ac_cv_func_shl_load = yes; then + lt_cv_dlopen="shl_load" + else +- { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 +-echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 ++$as_echo_n "checking for shl_load in -ldld... " >&6; } + if test "${ac_cv_lib_dld_shl_load+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldld $LIBS" +@@ -11432,39 +11631,43 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_dld_shl_load=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dld_shl_load=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 +-echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 ++$as_echo "$ac_cv_lib_dld_shl_load" >&6; } + if test $ac_cv_lib_dld_shl_load = yes; then + lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" + else +- { echo "$as_me:$LINENO: checking for dlopen" >&5 +-echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for dlopen" >&5 ++$as_echo_n "checking for dlopen... " >&6; } + if test "${ac_cv_func_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -11517,38 +11720,42 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_dlopen=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_dlopen=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_func_dlopen" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 ++$as_echo "$ac_cv_func_dlopen" >&6; } + if test $ac_cv_func_dlopen = yes; then + lt_cv_dlopen="dlopen" + else +- { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 +-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 ++$as_echo_n "checking for dlopen in -ldl... " >&6; } + if test "${ac_cv_lib_dl_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldl $LIBS" +@@ -11580,39 +11787,43 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_dl_dlopen=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dl_dlopen=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 ++$as_echo "$ac_cv_lib_dl_dlopen" >&6; } + if test $ac_cv_lib_dl_dlopen = yes; then + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + else +- { echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 +-echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 ++$as_echo_n "checking for dlopen in -lsvld... " >&6; } + if test "${ac_cv_lib_svld_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsvld $LIBS" +@@ -11644,39 +11855,43 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_svld_dlopen=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_svld_dlopen=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 ++$as_echo "$ac_cv_lib_svld_dlopen" >&6; } + if test $ac_cv_lib_svld_dlopen = yes; then + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" + else +- { echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 +-echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 ++$as_echo_n "checking for dld_link in -ldld... " >&6; } + if test "${ac_cv_lib_dld_dld_link+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldld $LIBS" +@@ -11708,32 +11923,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_dld_dld_link=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dld_dld_link=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 +-echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 ++$as_echo "$ac_cv_lib_dld_dld_link" >&6; } + if test $ac_cv_lib_dld_dld_link = yes; then + lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" + fi +@@ -11773,10 +11992,10 @@ fi + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + +- { echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 +-echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 ++$as_echo_n "checking whether a program can dlopen itself... " >&6; } + if test "${lt_cv_dlopen_self+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self=cross +@@ -11784,7 +12003,7 @@ else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<EOF +-#line 11787 "configure" ++#line 12006 "configure" + #include "confdefs.h" + + #if HAVE_DLFCN_H +@@ -11850,7 +12069,7 @@ EOF + if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? +@@ -11868,15 +12087,15 @@ rm -fr conftest* + + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 +-echo "${ECHO_T}$lt_cv_dlopen_self" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 ++$as_echo "$lt_cv_dlopen_self" >&6; } + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" +- { echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 +-echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 ++$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } + if test "${lt_cv_dlopen_self_static+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self_static=cross +@@ -11884,7 +12103,7 @@ else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<EOF +-#line 11887 "configure" ++#line 12106 "configure" + #include "confdefs.h" + + #if HAVE_DLFCN_H +@@ -11950,7 +12169,7 @@ EOF + if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? +@@ -11968,8 +12187,8 @@ rm -fr conftest* + + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 +-echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 ++$as_echo "$lt_cv_dlopen_self_static" >&6; } + fi + + CPPFLAGS="$save_CPPFLAGS" +@@ -11991,13 +12210,13 @@ fi + + + # Report which library types will actually be built +-{ echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 +-echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; } +-{ echo "$as_me:$LINENO: result: $can_build_shared" >&5 +-echo "${ECHO_T}$can_build_shared" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 ++$as_echo_n "checking if libtool supports shared libraries... " >&6; } ++{ $as_echo "$as_me:$LINENO: result: $can_build_shared" >&5 ++$as_echo "$can_build_shared" >&6; } + +-{ echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 +-echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 ++$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and +@@ -12017,15 +12236,15 @@ aix[4-9]*) + fi + ;; + esac +-{ echo "$as_me:$LINENO: result: $enable_shared" >&5 +-echo "${ECHO_T}$enable_shared" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $enable_shared" >&5 ++$as_echo "$enable_shared" >&6; } + +-{ echo "$as_me:$LINENO: checking whether to build static libraries" >&5 +-echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether to build static libraries" >&5 ++$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes +-{ echo "$as_me:$LINENO: result: $enable_static" >&5 +-echo "${ECHO_T}$enable_static" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $enable_static" >&5 ++$as_echo "$enable_static" >&6; } + + # The else clause should only fire when bootstrapping the + # libtool distribution, otherwise you forgot to ship ltmain.sh +@@ -12118,8 +12337,8 @@ if test -f "$ltmain"; then + cfgfile="${ofile}T" + trap "$rm \"$cfgfile\"; exit 1" 1 2 15 + $rm -f "$cfgfile" +- { echo "$as_me:$LINENO: creating $ofile" >&5 +-echo "$as_me: creating $ofile" >&6;} ++ { $as_echo "$as_me:$LINENO: creating $ofile" >&5 ++$as_echo "$as_me: creating $ofile" >&6;} + + cat <<__EOF__ >> "$cfgfile" + #! $SHELL +@@ -12531,18 +12750,18 @@ fi + + if test -f "$ltmain" && test -n "$tagnames"; then + if test ! -f "${ofile}"; then +- { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not exist" >&5 +-echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not exist" >&5 ++$as_echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} + fi + + if test -z "$LTCC"; then + eval "`$SHELL ${ofile} --config | grep '^LTCC='`" + if test -z "$LTCC"; then +- { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not look like a libtool script" >&5 +-echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not look like a libtool script" >&5 ++$as_echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} + else +- { echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 +-echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 ++$as_echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} + fi + fi + if test -z "$LTCFLAGS"; then +@@ -12559,16 +12778,16 @@ echo "$as_me: WARNING: using \`LTCC=$LTC + # Check whether tagname contains only valid characters + case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in + "") ;; +- *) { { echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5 +-echo "$as_me: error: invalid tag name: $tagname" >&2;} ++ *) { { $as_echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5 ++$as_echo "$as_me: error: invalid tag name: $tagname" >&2;} + { (exit 1); exit 1; }; } + ;; + esac + + if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null + then +- { { echo "$as_me:$LINENO: error: tag name \"$tagname\" already exists" >&5 +-echo "$as_me: error: tag name \"$tagname\" already exists" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: tag name \"$tagname\" already exists" >&5 ++$as_echo "$as_me: error: tag name \"$tagname\" already exists" >&2;} + { (exit 1); exit 1; }; } + fi + +@@ -12711,8 +12930,8 @@ fi + ac_prog=ld + if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. +- { echo "$as_me:$LINENO: checking for ld used by $CC" >&5 +-echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for ld used by $CC" >&5 ++$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw +@@ -12741,14 +12960,14 @@ echo $ECHO_N "checking for ld used by $C + ;; + esac + elif test "$with_gnu_ld" = yes; then +- { echo "$as_me:$LINENO: checking for GNU ld" >&5 +-echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for GNU ld" >&5 ++$as_echo_n "checking for GNU ld... " >&6; } + else +- { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 +-echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for non-GNU ld" >&5 ++$as_echo_n "checking for non-GNU ld... " >&6; } + fi + if test "${lt_cv_path_LD+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +@@ -12778,19 +12997,19 @@ fi + + LD="$lt_cv_path_LD" + if test -n "$LD"; then +- { echo "$as_me:$LINENO: result: $LD" >&5 +-echo "${ECHO_T}$LD" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $LD" >&5 ++$as_echo "$LD" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi +-test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 +-echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} ++test -z "$LD" && { { $as_echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 ++$as_echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} + { (exit 1); exit 1; }; } +-{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 +-echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 ++$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } + if test "${lt_cv_prog_gnu_ld+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + # I'd rather use --version here, but apparently some GNU lds only accept -v. + case `$LD -v 2>&1 </dev/null` in +@@ -12802,8 +13021,8 @@ case `$LD -v 2>&1 </dev/null` in + ;; + esac + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5 +-echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5 ++$as_echo "$lt_cv_prog_gnu_ld" >&6; } + with_gnu_ld=$lt_cv_prog_gnu_ld + + +@@ -12853,8 +13072,8 @@ else + fi + + # PORTME: fill in a description of your system's C++ link characteristics +-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + ld_shlibs_CXX=yes + case $host_os in + aix3*) +@@ -12971,18 +13190,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -12997,12 +13219,13 @@ if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi +@@ -13038,18 +13261,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -13064,12 +13290,13 @@ if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi +@@ -13799,8 +14026,8 @@ if test -z "$aix_libpath"; then aix_libp + ld_shlibs_CXX=no + ;; + esac +-{ echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 +-echo "${ECHO_T}$ld_shlibs_CXX" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 ++$as_echo "$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + + GCC_CXX="$GXX" +@@ -13819,7 +14046,7 @@ EOF + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. +@@ -13975,8 +14202,8 @@ lt_prog_compiler_wl_CXX= + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX= + +-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 +-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 ++$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then +@@ -14259,18 +14486,18 @@ echo $ECHO_N "checking for $compiler opt + esac + fi + +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5 ++$as_echo "$lt_prog_compiler_pic_CXX" >&6; } + + # + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic_CXX"; then + +-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 +-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 ++$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } + if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_pic_works_CXX=no + ac_outfile=conftest.$ac_objext +@@ -14285,11 +14512,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:14288: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:14515: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:14292: \$? = $ac_status" >&5 ++ echo "$as_me:14519: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -14302,8 +14529,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_CXX" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 ++$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } + + if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then + case $lt_prog_compiler_pic_CXX in +@@ -14330,10 +14557,10 @@ esac + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" +-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ++$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } + if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_static_works_CXX=no + save_LDFLAGS="$LDFLAGS" +@@ -14358,8 +14585,8 @@ else + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_CXX" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_static_works_CXX" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_CXX" >&5 ++$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } + + if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then + : +@@ -14368,10 +14595,10 @@ else + fi + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 +-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 ++$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } + if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o_CXX=no + $rm -r conftest 2>/dev/null +@@ -14389,11 +14616,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:14392: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:14619: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:14396: \$? = $ac_status" >&5 ++ echo "$as_me:14623: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -14415,34 +14642,34 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5 ++$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + hard_links="nottested" + if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user +- { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 +-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 ++$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $rm conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no +- { echo "$as_me:$LINENO: result: $hard_links" >&5 +-echo "${ECHO_T}$hard_links" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $hard_links" >&5 ++$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then +- { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 ++$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi + else + need_locks=no + fi + +-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + case $host_os in +@@ -14470,8 +14697,8 @@ echo $ECHO_N "checking whether the $comp + esac + exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + +-{ echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 +-echo "${ECHO_T}$ld_shlibs_CXX" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 ++$as_echo "$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + + # +@@ -14491,15 +14718,15 @@ x|xyes) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. +- { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 +-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 ++$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $rm conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } 2>conftest.err; then + soname=conftest + lib=conftest +@@ -14517,7 +14744,7 @@ echo $ECHO_N "checking whether -lc shoul + if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 + (eval $archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + then + archive_cmds_need_lc_CXX=no +@@ -14529,16 +14756,16 @@ echo $ECHO_N "checking whether -lc shoul + cat conftest.err 1>&5 + fi + $rm conftest* +- { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5 +-echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5 ++$as_echo "$archive_cmds_need_lc_CXX" >&6; } + ;; + esac + fi + ;; + esac + +-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 +-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 ++$as_echo_n "checking dynamic linker characteristics... " >&6; } + library_names_spec= + libname_spec='lib$name' + soname_spec= +@@ -15099,19 +15326,19 @@ uts4*) + dynamic_linker=no + ;; + esac +-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5 +-echo "${ECHO_T}$dynamic_linker" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $dynamic_linker" >&5 ++$as_echo "$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + + if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" + fi + + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" + if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" + fi +@@ -15123,8 +15350,8 @@ if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + +-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 +-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 ++$as_echo_n "checking how to hardcode library paths into programs... " >&6; } + hardcode_action_CXX= + if test -n "$hardcode_libdir_flag_spec_CXX" || \ + test -n "$runpath_var_CXX" || \ +@@ -15148,8 +15375,8 @@ else + # directories. + hardcode_action_CXX=unsupported + fi +-{ echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5 +-echo "${ECHO_T}$hardcode_action_CXX" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5 ++$as_echo "$hardcode_action_CXX" >&6; } + + if test "$hardcode_action_CXX" = relink; then + # Fast installation is not supported +@@ -15687,13 +15914,13 @@ done + cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + + +-{ echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 +-echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; } +-{ echo "$as_me:$LINENO: result: $can_build_shared" >&5 +-echo "${ECHO_T}$can_build_shared" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 ++$as_echo_n "checking if libtool supports shared libraries... " >&6; } ++{ $as_echo "$as_me:$LINENO: result: $can_build_shared" >&5 ++$as_echo "$can_build_shared" >&6; } + +-{ echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 +-echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 ++$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and +@@ -15712,15 +15939,15 @@ aix[4-9]*) + fi + ;; + esac +-{ echo "$as_me:$LINENO: result: $enable_shared" >&5 +-echo "${ECHO_T}$enable_shared" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $enable_shared" >&5 ++$as_echo "$enable_shared" >&6; } + +-{ echo "$as_me:$LINENO: checking whether to build static libraries" >&5 +-echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether to build static libraries" >&5 ++$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes +-{ echo "$as_me:$LINENO: result: $enable_static" >&5 +-echo "${ECHO_T}$enable_static" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $enable_static" >&5 ++$as_echo "$enable_static" >&6; } + + GCC_F77="$G77" + LD_F77="$LD" +@@ -15729,8 +15956,8 @@ lt_prog_compiler_wl_F77= + lt_prog_compiler_pic_F77= + lt_prog_compiler_static_F77= + +-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 +-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 ++$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + if test "$GCC" = yes; then + lt_prog_compiler_wl_F77='-Wl,' +@@ -15961,18 +16188,18 @@ echo $ECHO_N "checking for $compiler opt + esac + fi + +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_F77" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic_F77" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_F77" >&5 ++$as_echo "$lt_prog_compiler_pic_F77" >&6; } + + # + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic_F77"; then + +-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 +-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 ++$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... " >&6; } + if test "${lt_cv_prog_compiler_pic_works_F77+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_pic_works_F77=no + ac_outfile=conftest.$ac_objext +@@ -15987,11 +16214,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:15990: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:16217: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:15994: \$? = $ac_status" >&5 ++ echo "$as_me:16221: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -16004,8 +16231,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_F77" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_F77" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_F77" >&5 ++$as_echo "$lt_cv_prog_compiler_pic_works_F77" >&6; } + + if test x"$lt_cv_prog_compiler_pic_works_F77" = xyes; then + case $lt_prog_compiler_pic_F77 in +@@ -16032,10 +16259,10 @@ esac + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" +-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ++$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } + if test "${lt_cv_prog_compiler_static_works_F77+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_static_works_F77=no + save_LDFLAGS="$LDFLAGS" +@@ -16060,8 +16287,8 @@ else + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_F77" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_static_works_F77" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_F77" >&5 ++$as_echo "$lt_cv_prog_compiler_static_works_F77" >&6; } + + if test x"$lt_cv_prog_compiler_static_works_F77" = xyes; then + : +@@ -16070,10 +16297,10 @@ else + fi + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 +-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 ++$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } + if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o_F77=no + $rm -r conftest 2>/dev/null +@@ -16091,11 +16318,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:16094: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:16321: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:16098: \$? = $ac_status" >&5 ++ echo "$as_me:16325: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -16117,34 +16344,34 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_F77" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_c_o_F77" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_F77" >&5 ++$as_echo "$lt_cv_prog_compiler_c_o_F77" >&6; } + + + hard_links="nottested" + if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user +- { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 +-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 ++$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $rm conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no +- { echo "$as_me:$LINENO: result: $hard_links" >&5 +-echo "${ECHO_T}$hard_links" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $hard_links" >&5 ++$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then +- { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 ++$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi + else + need_locks=no + fi + +-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag_F77= +@@ -16565,18 +16792,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_f77_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -16591,12 +16821,13 @@ if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi +@@ -16621,18 +16852,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_f77_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -16647,12 +16881,13 @@ if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi +@@ -17104,8 +17339,8 @@ if test -z "$aix_libpath"; then aix_libp + esac + fi + +-{ echo "$as_me:$LINENO: result: $ld_shlibs_F77" >&5 +-echo "${ECHO_T}$ld_shlibs_F77" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ld_shlibs_F77" >&5 ++$as_echo "$ld_shlibs_F77" >&6; } + test "$ld_shlibs_F77" = no && can_build_shared=no + + # +@@ -17125,15 +17360,15 @@ x|xyes) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. +- { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 +-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 ++$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $rm conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } 2>conftest.err; then + soname=conftest + lib=conftest +@@ -17151,7 +17386,7 @@ echo $ECHO_N "checking whether -lc shoul + if { (eval echo "$as_me:$LINENO: \"$archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 + (eval $archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + then + archive_cmds_need_lc_F77=no +@@ -17163,16 +17398,16 @@ echo $ECHO_N "checking whether -lc shoul + cat conftest.err 1>&5 + fi + $rm conftest* +- { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_F77" >&5 +-echo "${ECHO_T}$archive_cmds_need_lc_F77" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $archive_cmds_need_lc_F77" >&5 ++$as_echo "$archive_cmds_need_lc_F77" >&6; } + ;; + esac + fi + ;; + esac + +-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 +-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 ++$as_echo_n "checking dynamic linker characteristics... " >&6; } + library_names_spec= + libname_spec='lib$name' + soname_spec= +@@ -17733,19 +17968,19 @@ uts4*) + dynamic_linker=no + ;; + esac +-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5 +-echo "${ECHO_T}$dynamic_linker" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $dynamic_linker" >&5 ++$as_echo "$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + + if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" + fi + + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" + if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" + fi +@@ -17757,8 +17992,8 @@ if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + +-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 +-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 ++$as_echo_n "checking how to hardcode library paths into programs... " >&6; } + hardcode_action_F77= + if test -n "$hardcode_libdir_flag_spec_F77" || \ + test -n "$runpath_var_F77" || \ +@@ -17782,8 +18017,8 @@ else + # directories. + hardcode_action_F77=unsupported + fi +-{ echo "$as_me:$LINENO: result: $hardcode_action_F77" >&5 +-echo "${ECHO_T}$hardcode_action_F77" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $hardcode_action_F77" >&5 ++$as_echo "$hardcode_action_F77" >&6; } + + if test "$hardcode_action_F77" = relink; then + # Fast installation is not supported +@@ -18293,10 +18528,10 @@ if test "$GCC" = yes; then + lt_prog_compiler_no_builtin_flag_GCJ=' -fno-builtin' + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +-echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 ++$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } + if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext +@@ -18311,11 +18546,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:18314: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:18549: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:18318: \$? = $ac_status" >&5 ++ echo "$as_me:18553: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -18328,8 +18563,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 ++$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + + if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then + lt_prog_compiler_no_builtin_flag_GCJ="$lt_prog_compiler_no_builtin_flag_GCJ -fno-rtti -fno-exceptions" +@@ -18343,8 +18578,8 @@ lt_prog_compiler_wl_GCJ= + lt_prog_compiler_pic_GCJ= + lt_prog_compiler_static_GCJ= + +-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 +-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 ++$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + if test "$GCC" = yes; then + lt_prog_compiler_wl_GCJ='-Wl,' +@@ -18575,18 +18810,18 @@ echo $ECHO_N "checking for $compiler opt + esac + fi + +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_GCJ" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic_GCJ" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_GCJ" >&5 ++$as_echo "$lt_prog_compiler_pic_GCJ" >&6; } + + # + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic_GCJ"; then + +-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 +-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 ++$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... " >&6; } + if test "${lt_cv_prog_compiler_pic_works_GCJ+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_pic_works_GCJ=no + ac_outfile=conftest.$ac_objext +@@ -18601,11 +18836,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:18604: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:18839: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:18608: \$? = $ac_status" >&5 ++ echo "$as_me:18843: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -18618,8 +18853,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_GCJ" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_GCJ" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_GCJ" >&5 ++$as_echo "$lt_cv_prog_compiler_pic_works_GCJ" >&6; } + + if test x"$lt_cv_prog_compiler_pic_works_GCJ" = xyes; then + case $lt_prog_compiler_pic_GCJ in +@@ -18646,10 +18881,10 @@ esac + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl_GCJ eval lt_tmp_static_flag=\"$lt_prog_compiler_static_GCJ\" +-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ++$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } + if test "${lt_cv_prog_compiler_static_works_GCJ+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_static_works_GCJ=no + save_LDFLAGS="$LDFLAGS" +@@ -18674,8 +18909,8 @@ else + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_GCJ" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_static_works_GCJ" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_GCJ" >&5 ++$as_echo "$lt_cv_prog_compiler_static_works_GCJ" >&6; } + + if test x"$lt_cv_prog_compiler_static_works_GCJ" = xyes; then + : +@@ -18684,10 +18919,10 @@ else + fi + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 +-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 ++$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } + if test "${lt_cv_prog_compiler_c_o_GCJ+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o_GCJ=no + $rm -r conftest 2>/dev/null +@@ -18705,11 +18940,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:18708: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:18943: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:18712: \$? = $ac_status" >&5 ++ echo "$as_me:18947: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -18731,34 +18966,34 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_c_o_GCJ" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 ++$as_echo "$lt_cv_prog_compiler_c_o_GCJ" >&6; } + + + hard_links="nottested" + if test "$lt_cv_prog_compiler_c_o_GCJ" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user +- { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 +-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 ++$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $rm conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no +- { echo "$as_me:$LINENO: result: $hard_links" >&5 +-echo "${ECHO_T}$hard_links" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $hard_links" >&5 ++$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then +- { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 ++$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi + else + need_locks=no + fi + +-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag_GCJ= +@@ -19189,18 +19424,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -19215,12 +19453,13 @@ if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi +@@ -19255,18 +19494,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -19281,12 +19523,13 @@ if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi +@@ -19738,8 +19981,8 @@ if test -z "$aix_libpath"; then aix_libp + esac + fi + +-{ echo "$as_me:$LINENO: result: $ld_shlibs_GCJ" >&5 +-echo "${ECHO_T}$ld_shlibs_GCJ" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ld_shlibs_GCJ" >&5 ++$as_echo "$ld_shlibs_GCJ" >&6; } + test "$ld_shlibs_GCJ" = no && can_build_shared=no + + # +@@ -19759,15 +20002,15 @@ x|xyes) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. +- { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 +-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 ++$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $rm conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } 2>conftest.err; then + soname=conftest + lib=conftest +@@ -19785,7 +20028,7 @@ echo $ECHO_N "checking whether -lc shoul + if { (eval echo "$as_me:$LINENO: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 + (eval $archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + then + archive_cmds_need_lc_GCJ=no +@@ -19797,16 +20040,16 @@ echo $ECHO_N "checking whether -lc shoul + cat conftest.err 1>&5 + fi + $rm conftest* +- { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_GCJ" >&5 +-echo "${ECHO_T}$archive_cmds_need_lc_GCJ" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $archive_cmds_need_lc_GCJ" >&5 ++$as_echo "$archive_cmds_need_lc_GCJ" >&6; } + ;; + esac + fi + ;; + esac + +-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 +-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 ++$as_echo_n "checking dynamic linker characteristics... " >&6; } + library_names_spec= + libname_spec='lib$name' + soname_spec= +@@ -20367,19 +20610,19 @@ uts4*) + dynamic_linker=no + ;; + esac +-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5 +-echo "${ECHO_T}$dynamic_linker" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $dynamic_linker" >&5 ++$as_echo "$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + + if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" + fi + + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" + if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" + fi +@@ -20391,8 +20634,8 @@ if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + +-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 +-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 ++$as_echo_n "checking how to hardcode library paths into programs... " >&6; } + hardcode_action_GCJ= + if test -n "$hardcode_libdir_flag_spec_GCJ" || \ + test -n "$runpath_var_GCJ" || \ +@@ -20416,8 +20659,8 @@ else + # directories. + hardcode_action_GCJ=unsupported + fi +-{ echo "$as_me:$LINENO: result: $hardcode_action_GCJ" >&5 +-echo "${ECHO_T}$hardcode_action_GCJ" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $hardcode_action_GCJ" >&5 ++$as_echo "$hardcode_action_GCJ" >&6; } + + if test "$hardcode_action_GCJ" = relink; then + # Fast installation is not supported +@@ -21340,8 +21583,8 @@ CC="$lt_save_CC" + ;; + + *) +- { { echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5 +-echo "$as_me: error: Unsupported tag name: $tagname" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5 ++$as_echo "$as_me: error: Unsupported tag name: $tagname" >&2;} + { (exit 1); exit 1; }; } + ;; + esac +@@ -21360,8 +21603,8 @@ echo "$as_me: error: Unsupported tag nam + chmod +x "$ofile" + else + rm -f "${ofile}T" +- { { echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5 +-echo "$as_me: error: unable to update list of available tagged configurations." >&2;} ++ { { $as_echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5 ++$as_echo "$as_me: error: unable to update list of available tagged configurations." >&2;} + { (exit 1); exit 1; }; } + fi + fi +@@ -21465,8 +21708,8 @@ fi + + + if test $libgtop_smp = auto ; then +- { echo "$as_me:$LINENO: checking whether to enable SMP support" >&5 +-echo $ECHO_N "checking whether to enable SMP support... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking whether to enable SMP support" >&5 ++$as_echo_n "checking whether to enable SMP support... " >&6; } + case "$host_os" in + linux*) + libgtop_smp=yes +@@ -21478,8 +21721,8 @@ echo $ECHO_N "checking whether to enable + libgtop_smp=no + ;; + esac +- { echo "$as_me:$LINENO: result: $libgtop_smp" >&5 +-echo "${ECHO_T}$libgtop_smp" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $libgtop_smp" >&5 ++$as_echo "$libgtop_smp" >&6; } + fi + + if test $libgtop_smp = yes ; then +@@ -21501,8 +21744,8 @@ else + fi + + +- { echo "$as_me:$LINENO: checking for libgtop sysdeps directory" >&5 +-echo $ECHO_N "checking for libgtop sysdeps directory... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for libgtop sysdeps directory" >&5 ++$as_echo_n "checking for libgtop sysdeps directory... " >&6; } + + case "$host_os" in + linux*) +@@ -21523,6 +21766,8 @@ echo $ECHO_N "checking for libgtop sysde libgtop_sysdeps_dir=freebsd libgtop_use_machine_h=yes libgtop_need_server=yes @@ -9,3 +7842,10797 @@ libgtop_postinstall='chgrp kmem $(bindir)/libgtop_server2 && chmod 2755 $(bindir)/libgtop_server2' ;; solaris*) +@@ -21576,8 +21821,8 @@ echo $ECHO_N "checking for libgtop sysde + + test -z "$libgtop_postinstall" && libgtop_postinstall=: + +- { echo "$as_me:$LINENO: result: $libgtop_sysdeps_dir" >&5 +-echo "${ECHO_T}$libgtop_sysdeps_dir" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $libgtop_sysdeps_dir" >&5 ++$as_echo "$libgtop_sysdeps_dir" >&6; } + + + +@@ -21587,10 +21832,10 @@ echo "${ECHO_T}$libgtop_sysdeps_dir" >&6 + *bsd*) + case "$host_os" in + *kfreebsd*) +- { echo "$as_me:$LINENO: checking for kvm_open in -lkvm" >&5 +-echo $ECHO_N "checking for kvm_open in -lkvm... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for kvm_open in -lkvm" >&5 ++$as_echo_n "checking for kvm_open in -lkvm... " >&6; } + if test "${ac_cv_lib_kvm_kvm_open+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lkvm -lfreebsd -lbsd $LIBS" +@@ -21622,32 +21867,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_kvm_kvm_open=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_kvm_kvm_open=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_kvm_kvm_open" >&5 +-echo "${ECHO_T}$ac_cv_lib_kvm_kvm_open" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_kvm_kvm_open" >&5 ++$as_echo "$ac_cv_lib_kvm_kvm_open" >&6; } + if test $ac_cv_lib_kvm_kvm_open = yes; then + KVM_LIBS="-lkvm -lfreebsd -lbsd" + else +@@ -21655,10 +21904,10 @@ else + fi + ;; + *) +- { echo "$as_me:$LINENO: checking for kvm_open in -lkvm" >&5 +-echo $ECHO_N "checking for kvm_open in -lkvm... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for kvm_open in -lkvm" >&5 ++$as_echo_n "checking for kvm_open in -lkvm... " >&6; } + if test "${ac_cv_lib_kvm_kvm_open+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lkvm $LIBS" +@@ -21690,32 +21939,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_kvm_kvm_open=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_kvm_kvm_open=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_kvm_kvm_open" >&5 +-echo "${ECHO_T}$ac_cv_lib_kvm_kvm_open" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_kvm_kvm_open" >&5 ++$as_echo "$ac_cv_lib_kvm_kvm_open" >&6; } + if test $ac_cv_lib_kvm_kvm_open = yes; then + KVM_LIBS=-lkvm + else +@@ -21735,6 +21988,82 @@ fi + if test -n "${osreldate}" && test ${osreldate} -ge 600000 ; then + EXTRA_SYSDEPS_LIBS="-lgeom -ldevstat" + fi ++ { $as_echo "$as_me:$LINENO: checking for kinfo_getfile in -lutil" >&5 ++$as_echo_n "checking for kinfo_getfile in -lutil... " >&6; } ++if test "${ac_cv_lib_util_kinfo_getfile+set}" = set; then ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lutil $LIBS" ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char kinfo_getfile (); ++int ++main () ++{ ++return kinfo_getfile (); ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext conftest$ac_exeext ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 ++ (eval "$ac_link") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then ++ ac_cv_lib_util_kinfo_getfile=yes ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_lib_util_kinfo_getfile=no ++fi ++ ++rm -rf conftest.dSYM ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_util_kinfo_getfile" >&5 ++$as_echo "$ac_cv_lib_util_kinfo_getfile" >&6; } ++if test $ac_cv_lib_util_kinfo_getfile = yes; then ++ EXTRA_SYSDEPS_LIBS="${EXTRA_SYSDEPS_LIBS} -lutil" ++ ++cat >>confdefs.h <<\_ACEOF ++#define HAVE_KINFO_GETFILE 1 ++_ACEOF ++ ++else ++ : ++fi ++ + ;; + esac + +@@ -21743,20 +22072,21 @@ fi + + for ac_header in net/if_var.h + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++$as_echo_n "checking $ac_header usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -21772,32 +22102,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++$as_echo_n "checking $ac_header presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -21811,51 +22142,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -21864,29 +22196,31 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++if test `eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi + + done + +- { echo "$as_me:$LINENO: checking for I4B" >&5 +-echo $ECHO_N "checking for I4B... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for I4B" >&5 ++$as_echo_n "checking for I4B... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -21929,36 +22263,37 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + have_i4b=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + have_i4b=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- { echo "$as_me:$LINENO: result: $have_i4b" >&5 +-echo "${ECHO_T}$have_i4b" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $have_i4b" >&5 ++$as_echo "$have_i4b" >&6; } + if test x$have_i4b = xyes; then + + cat >>confdefs.h <<\_ACEOF + #define HAVE_I4B 1 + _ACEOF + +- { echo "$as_me:$LINENO: checking for I4B accounting" >&5 +-echo $ECHO_N "checking for I4B accounting... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for I4B accounting" >&5 ++$as_echo_n "checking for I4B accounting... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22003,28 +22338,29 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + have_i4b_acct=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + have_i4b_acct=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- { echo "$as_me:$LINENO: result: $have_i4b_acct" >&5 +-echo "${ECHO_T}$have_i4b_acct" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $have_i4b_acct" >&5 ++$as_echo "$have_i4b_acct" >&6; } + if test x$have_i4b_acct = xyes ; then + + cat >>confdefs.h <<\_ACEOF +@@ -22032,21 +22368,21 @@ cat >>confdefs.h <<\_ACEOF + _ACEOF + + else +- { echo "$as_me:$LINENO: WARNING: ++ { $as_echo "$as_me:$LINENO: WARNING: + *** I4B accounting disabled - you won't get any PPP statistics. + *** Read \"misc/i4b_acct.txt\" in the LibGTop source directory + *** to see how to enable it." >&5 +-echo "$as_me: WARNING: ++$as_echo "$as_me: WARNING: + *** I4B accounting disabled - you won't get any PPP statistics. + *** Read \"misc/i4b_acct.txt\" in the LibGTop source directory + *** to see how to enable it." >&2;} + fi + fi + +- { echo "$as_me:$LINENO: checking what we need to define to get struct msginfo" >&5 +-echo $ECHO_N "checking what we need to define to get struct msginfo... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking what we need to define to get struct msginfo" >&5 ++$as_echo_n "checking what we need to define to get struct msginfo... " >&6; } + if test "${msginfo_needs+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + msginfo_needs= + for def in nothing KERNEL _KERNEL; do +@@ -22071,13 +22407,14 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +@@ -22100,7 +22437,7 @@ _ACEOF + + + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -22112,11 +22449,11 @@ rm -f core conftest.err conftest.$ac_obj + + fi + +- { echo "$as_me:$LINENO: result: $msginfo_needs" >&5 +-echo "${ECHO_T}$msginfo_needs" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $msginfo_needs" >&5 ++$as_echo "$msginfo_needs" >&6; } + if test -z "${msginfo_needs}"; then +- { { echo "$as_me:$LINENO: error: Could not find the definition of 'struct msginfo'" >&5 +-echo "$as_me: error: Could not find the definition of 'struct msginfo'" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: Could not find the definition of 'struct msginfo'" >&5 ++$as_echo "$as_me: error: Could not find the definition of 'struct msginfo'" >&2;} + { (exit 1); exit 1; }; } + fi + ;; +@@ -22132,20 +22469,21 @@ echo "$as_me: error: Could not find the + + for ac_header in linux/version.h + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++$as_echo_n "checking $ac_header usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22161,32 +22499,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++$as_echo_n "checking $ac_header presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22200,51 +22539,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -22253,21 +22593,23 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++if test `eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + have_linux_version_h=yes + else +@@ -22286,15 +22628,15 @@ done + os_version_code=`echo "$os_version_expr" | dc` + fi + +- { echo "$as_me:$LINENO: checking for Linux kernel version code" >&5 +-echo $ECHO_N "checking for Linux kernel version code... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for Linux kernel version code" >&5 ++$as_echo_n "checking for Linux kernel version code... " >&6; } + + cat >>confdefs.h <<_ACEOF + #define GLIBTOP_LINUX_VERSION_CODE $os_version_code + _ACEOF + +- { echo "$as_me:$LINENO: result: $os_version_code" >&5 +-echo "${ECHO_T}$os_version_code" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $os_version_code" >&5 ++$as_echo "$os_version_code" >&6; } + ;; + solaris*) + os_major_version=`uname -r | sed 's/\([0-9]*\).\([0-9]*\)\.*\([0-9]*\)/\1/'` +@@ -22304,27 +22646,27 @@ echo "${ECHO_T}$os_version_code" >&6; } + os_version_expr="$os_major_version 10000 * $os_minor_version 100 * + $os_micro_version + p q" + os_version_code=`echo "$os_version_expr" | dc` + +- { echo "$as_me:$LINENO: checking for Solaris release code" >&5 +-echo $ECHO_N "checking for Solaris release code... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for Solaris release code" >&5 ++$as_echo_n "checking for Solaris release code... " >&6; } + + cat >>confdefs.h <<_ACEOF + #define GLIBTOP_SOLARIS_RELEASE $os_version_code + _ACEOF + +- { echo "$as_me:$LINENO: result: $os_version_code" >&5 +-echo "${ECHO_T}$os_version_code" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $os_version_code" >&5 ++$as_echo "$os_version_code" >&6; } + ;; + esac + +- { echo "$as_me:$LINENO: checking for machine.h in libgtop sysdeps dir" >&5 +-echo $ECHO_N "checking for machine.h in libgtop sysdeps dir... $ECHO_C" >&6; } +- { echo "$as_me:$LINENO: result: $libgtop_use_machine_h" >&5 +-echo "${ECHO_T}$libgtop_use_machine_h" >&6; } +- +- { echo "$as_me:$LINENO: checking whether we need libgtop" >&5 +-echo $ECHO_N "checking whether we need libgtop... $ECHO_C" >&6; } +- { echo "$as_me:$LINENO: result: $libgtop_need_server" >&5 +-echo "${ECHO_T}$libgtop_need_server" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for machine.h in libgtop sysdeps dir" >&5 ++$as_echo_n "checking for machine.h in libgtop sysdeps dir... " >&6; } ++ { $as_echo "$as_me:$LINENO: result: $libgtop_use_machine_h" >&5 ++$as_echo "$libgtop_use_machine_h" >&6; } ++ ++ { $as_echo "$as_me:$LINENO: checking whether we need libgtop" >&5 ++$as_echo_n "checking whether we need libgtop... " >&6; } ++ { $as_echo "$as_me:$LINENO: result: $libgtop_need_server" >&5 ++$as_echo "$libgtop_need_server" >&6; } + + if test x$libgtop_need_server = xyes ; then + +@@ -22377,20 +22719,21 @@ fi + + for ac_header in sys/bitypes.h + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++$as_echo_n "checking $ac_header usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22406,32 +22749,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++$as_echo_n "checking $ac_header presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22445,51 +22789,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -22498,21 +22843,23 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++if test `eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -22529,10 +22876,10 @@ if test "x$ac_cv_env_PKG_CONFIG_set" != + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. + set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $PKG_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -22547,7 +22894,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -22559,11 +22906,11 @@ esac + fi + PKG_CONFIG=$ac_cv_path_PKG_CONFIG + if test -n "$PKG_CONFIG"; then +- { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 +-echo "${ECHO_T}$PKG_CONFIG" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 ++$as_echo "$PKG_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -22572,10 +22919,10 @@ if test -z "$ac_cv_path_PKG_CONFIG"; the + ac_pt_PKG_CONFIG=$PKG_CONFIG + # Extract the first word of "pkg-config", so it can be a program name with args. + set dummy pkg-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $ac_pt_PKG_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -22590,7 +22937,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -22602,11 +22949,11 @@ esac + fi + ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG + if test -n "$ac_pt_PKG_CONFIG"; then +- { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 +-echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 ++$as_echo "$ac_pt_PKG_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_pt_PKG_CONFIG" = x; then +@@ -22614,10 +22961,10 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++{ $as_echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++$as_echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools + whose name does not start with the host triplet. If you think this + configuration is useful to you, please write to autoconf@gnu.org." >&2;} + ac_tool_warned=yes ;; +@@ -22631,32 +22978,32 @@ fi + fi + if test -n "$PKG_CONFIG"; then + _pkg_min_version=0.9.0 +- { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 +-echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 ++$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + PKG_CONFIG="" + fi + + fi + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for GLIB" >&5 +-echo $ECHO_N "checking for GLIB... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for GLIB" >&5 ++$as_echo_n "checking for GLIB... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$GLIB_CFLAGS"; then + pkg_cv_GLIB_CFLAGS="$GLIB_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQUIRED\"") >&5 ++ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQUIRED\"") >&5 + ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQUIRED") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_GLIB_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQUIRED" 2>/dev/null` + else +@@ -22671,10 +23018,10 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_GLIB_LIBS="$GLIB_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQUIRED\"") >&5 ++ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQUIRED\"") >&5 + ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQUIRED") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + pkg_cv_GLIB_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQUIRED" 2>/dev/null` + else +@@ -22702,7 +23049,7 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$GLIB_PKG_ERRORS" >&5 + +- { { echo "$as_me:$LINENO: error: Package requirements (glib-2.0 >= $GLIB_REQUIRED) were not met: ++ { { $as_echo "$as_me:$LINENO: error: Package requirements (glib-2.0 >= $GLIB_REQUIRED) were not met: + + $GLIB_PKG_ERRORS + +@@ -22713,7 +23060,7 @@ Alternatively, you may set the environme + and GLIB_LIBS to avoid the need to call pkg-config. + See the pkg-config man page for more details. + " >&5 +-echo "$as_me: error: Package requirements (glib-2.0 >= $GLIB_REQUIRED) were not met: ++$as_echo "$as_me: error: Package requirements (glib-2.0 >= $GLIB_REQUIRED) were not met: + + $GLIB_PKG_ERRORS + +@@ -22726,7 +23073,7 @@ See the pkg-config man page for more det + " >&2;} + { (exit 1); exit 1; }; } + elif test $pkg_failed = untried; then +- { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it ++ { { $as_echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it + is in your PATH or set the PKG_CONFIG environment variable to the full + path to pkg-config. + +@@ -22736,7 +23083,7 @@ See the pkg-config man page for more det + + To get pkg-config, see <http://pkg-config.freedesktop.org/>. + See \`config.log' for more details." >&5 +-echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it ++$as_echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it + is in your PATH or set the PKG_CONFIG environment variable to the full + path to pkg-config. + +@@ -22750,25 +23097,25 @@ See \`config.log' for more details." >&2 + else + GLIB_CFLAGS=$pkg_cv_GLIB_CFLAGS + GLIB_LIBS=$pkg_cv_GLIB_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + : + fi + + + + if test "${ac_cv_header_ifaddrs_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for ifaddrs.h" >&5 +-echo $ECHO_N "checking for ifaddrs.h... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for ifaddrs.h" >&5 ++$as_echo_n "checking for ifaddrs.h... " >&6; } + if test "${ac_cv_header_ifaddrs_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_ifaddrs_h" >&5 +-echo "${ECHO_T}$ac_cv_header_ifaddrs_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_ifaddrs_h" >&5 ++$as_echo "$ac_cv_header_ifaddrs_h" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking ifaddrs.h usability" >&5 +-echo $ECHO_N "checking ifaddrs.h usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking ifaddrs.h usability" >&5 ++$as_echo_n "checking ifaddrs.h usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22784,32 +23131,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking ifaddrs.h presence" >&5 +-echo $ECHO_N "checking ifaddrs.h presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking ifaddrs.h presence" >&5 ++$as_echo_n "checking ifaddrs.h presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22823,51 +23171,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: ifaddrs.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: ifaddrs.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: ifaddrs.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: ifaddrs.h: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: ifaddrs.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: ifaddrs.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: ifaddrs.h: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: ifaddrs.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: ifaddrs.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: ifaddrs.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: ifaddrs.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: ifaddrs.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: ifaddrs.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: ifaddrs.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: ifaddrs.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: ifaddrs.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: ifaddrs.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: ifaddrs.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: ifaddrs.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: ifaddrs.h: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: ifaddrs.h: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: ifaddrs.h: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: ifaddrs.h: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: ifaddrs.h: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: ifaddrs.h: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: ifaddrs.h: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: ifaddrs.h: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: ifaddrs.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: ifaddrs.h: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: ifaddrs.h: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: ifaddrs.h: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: ifaddrs.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -22876,15 +23225,15 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for ifaddrs.h" >&5 +-echo $ECHO_N "checking for ifaddrs.h... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for ifaddrs.h" >&5 ++$as_echo_n "checking for ifaddrs.h... " >&6; } + if test "${ac_cv_header_ifaddrs_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_cv_header_ifaddrs_h=$ac_header_preproc + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_ifaddrs_h" >&5 +-echo "${ECHO_T}$ac_cv_header_ifaddrs_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_ifaddrs_h" >&5 ++$as_echo "$ac_cv_header_ifaddrs_h" >&6; } + + fi + if test $ac_cv_header_ifaddrs_h = yes; then +@@ -22902,10 +23251,10 @@ _ACEOF + + fi + +-{ echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 +-echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 ++$as_echo_n "checking for an ANSI C-conforming const... " >&6; } + if test "${ac_cv_c_const+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -22977,20 +23326,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_c_const=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_c_const=no +@@ -22998,20 +23348,20 @@ fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 +-echo "${ECHO_T}$ac_cv_c_const" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 ++$as_echo "$ac_cv_c_const" >&6; } + if test $ac_cv_c_const = no; then + + cat >>confdefs.h <<\_ACEOF +-#define const ++#define const /**/ + _ACEOF + + fi + +-{ echo "$as_me:$LINENO: checking for inline" >&5 +-echo $ECHO_N "checking for inline... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for inline" >&5 ++$as_echo_n "checking for inline... " >&6; } + if test "${ac_cv_c_inline+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_cv_c_inline=no + for ac_kw in inline __inline__ __inline; do +@@ -23034,20 +23384,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_c_inline=$ac_kw + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -23058,8 +23409,8 @@ rm -f core conftest.err conftest.$ac_obj + done + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 +-echo "${ECHO_T}$ac_cv_c_inline" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 ++$as_echo "$ac_cv_c_inline" >&6; } + + + case $ac_cv_c_inline in +@@ -23077,26 +23428,58 @@ _ACEOF + ;; + esac + +-{ echo "$as_me:$LINENO: checking for off_t" >&5 +-echo $ECHO_N "checking for off_t... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for off_t" >&5 ++$as_echo_n "checking for off_t... " >&6; } + if test "${ac_cv_type_off_t+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF ++ ac_cv_type_off_t=no ++cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-typedef off_t ac__type_new_; + int + main () + { +-if ((ac__type_new_ *) 0) +- return 0; +-if (sizeof (ac__type_new_)) ++if (sizeof (off_t)) ++ return 0; ++ ; + return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++int ++main () ++{ ++if (sizeof ((off_t))) ++ return 0; + ; + return 0; + } +@@ -23107,29 +23490,38 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- ac_cv_type_off_t=yes ++ : ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_off_t=yes ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_off_t=no ++ + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 +-echo "${ECHO_T}$ac_cv_type_off_t" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 ++$as_echo "$ac_cv_type_off_t" >&6; } + if test $ac_cv_type_off_t = yes; then + : + else +@@ -23140,26 +23532,58 @@ _ACEOF + + fi + +-{ echo "$as_me:$LINENO: checking for pid_t" >&5 +-echo $ECHO_N "checking for pid_t... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for pid_t" >&5 ++$as_echo_n "checking for pid_t... " >&6; } + if test "${ac_cv_type_pid_t+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF ++ ac_cv_type_pid_t=no ++cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-typedef pid_t ac__type_new_; + int + main () + { +-if ((ac__type_new_ *) 0) +- return 0; +-if (sizeof (ac__type_new_)) ++if (sizeof (pid_t)) ++ return 0; ++ ; + return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++int ++main () ++{ ++if (sizeof ((pid_t))) ++ return 0; + ; + return 0; + } +@@ -23170,29 +23594,38 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- ac_cv_type_pid_t=yes ++ : + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_pid_t=no ++ ac_cv_type_pid_t=yes ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5 +-echo "${ECHO_T}$ac_cv_type_pid_t" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5 ++$as_echo "$ac_cv_type_pid_t" >&6; } + if test $ac_cv_type_pid_t = yes; then + : + else +@@ -23203,26 +23636,58 @@ _ACEOF + + fi + +-{ echo "$as_me:$LINENO: checking for size_t" >&5 +-echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for size_t" >&5 ++$as_echo_n "checking for size_t... " >&6; } + if test "${ac_cv_type_size_t+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF ++ ac_cv_type_size_t=no ++cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-typedef size_t ac__type_new_; + int + main () + { +-if ((ac__type_new_ *) 0) +- return 0; +-if (sizeof (ac__type_new_)) ++if (sizeof (size_t)) ++ return 0; ++ ; + return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++int ++main () ++{ ++if (sizeof ((size_t))) ++ return 0; + ; + return 0; + } +@@ -23233,29 +23698,38 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- ac_cv_type_size_t=yes ++ : ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_size_t=yes ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_size_t=no ++ + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 +-echo "${ECHO_T}$ac_cv_type_size_t" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 ++$as_echo "$ac_cv_type_size_t" >&6; } + if test $ac_cv_type_size_t = yes; then + : + else +@@ -23266,10 +23740,10 @@ _ACEOF + + fi + +-{ echo "$as_me:$LINENO: checking for struct stat.st_rdev" >&5 +-echo $ECHO_N "checking for struct stat.st_rdev... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for struct stat.st_rdev" >&5 ++$as_echo_n "checking for struct stat.st_rdev... " >&6; } + if test "${ac_cv_member_struct_stat_st_rdev+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23294,20 +23768,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_stat_st_rdev=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +@@ -23333,20 +23808,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_stat_st_rdev=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_stat_st_rdev=no +@@ -23357,8 +23833,8 @@ fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_rdev" >&5 +-echo "${ECHO_T}$ac_cv_member_struct_stat_st_rdev" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_rdev" >&5 ++$as_echo "$ac_cv_member_struct_stat_st_rdev" >&6; } + if test $ac_cv_member_struct_stat_st_rdev = yes; then + + cat >>confdefs.h <<_ACEOF +@@ -23373,10 +23849,10 @@ _ACEOF + fi + + +-{ echo "$as_me:$LINENO: checking whether time.h and sys/time.h may both be included" >&5 +-echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether time.h and sys/time.h may both be included" >&5 ++$as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } + if test "${ac_cv_header_time+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23403,20 +23879,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_header_time=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_header_time=no +@@ -23424,8 +23901,8 @@ fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5 +-echo "${ECHO_T}$ac_cv_header_time" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5 ++$as_echo "$ac_cv_header_time" >&6; } + if test $ac_cv_header_time = yes; then + + cat >>confdefs.h <<\_ACEOF +@@ -23434,10 +23911,10 @@ _ACEOF + + fi + +-{ echo "$as_me:$LINENO: checking whether struct tm is in sys/time.h or time.h" >&5 +-echo $ECHO_N "checking whether struct tm is in sys/time.h or time.h... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether struct tm is in sys/time.h or time.h" >&5 ++$as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; } + if test "${ac_cv_struct_tm+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23453,7 +23930,7 @@ main () + { + struct tm tm; + int *p = &tm.tm_sec; +- return !p; ++ return !p; + ; + return 0; + } +@@ -23464,20 +23941,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_struct_tm=time.h + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_struct_tm=sys/time.h +@@ -23485,8 +23963,8 @@ fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_struct_tm" >&5 +-echo "${ECHO_T}$ac_cv_struct_tm" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_struct_tm" >&5 ++$as_echo "$ac_cv_struct_tm" >&6; } + if test $ac_cv_struct_tm = sys/time.h; then + + cat >>confdefs.h <<\_ACEOF +@@ -23495,10 +23973,10 @@ _ACEOF + + fi + +-{ echo "$as_me:$LINENO: checking for uid_t in sys/types.h" >&5 +-echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for uid_t in sys/types.h" >&5 ++$as_echo_n "checking for uid_t in sys/types.h... " >&6; } + if test "${ac_cv_type_uid_t+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23518,8 +23996,8 @@ fi + rm -f conftest* + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_uid_t" >&5 +-echo "${ECHO_T}$ac_cv_type_uid_t" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_uid_t" >&5 ++$as_echo "$ac_cv_type_uid_t" >&6; } + if test $ac_cv_type_uid_t = no; then + + cat >>confdefs.h <<\_ACEOF +@@ -23534,26 +24012,58 @@ _ACEOF + fi + + +-{ echo "$as_me:$LINENO: checking for ssize_t" >&5 +-echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for ssize_t" >&5 ++$as_echo_n "checking for ssize_t... " >&6; } + if test "${ac_cv_type_ssize_t+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF ++ ac_cv_type_ssize_t=no ++cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default +-typedef ssize_t ac__type_new_; + int + main () + { +-if ((ac__type_new_ *) 0) +- return 0; +-if (sizeof (ac__type_new_)) ++if (sizeof (ssize_t)) ++ return 0; ++ ; + return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++$ac_includes_default ++int ++main () ++{ ++if (sizeof ((ssize_t))) ++ return 0; + ; + return 0; + } +@@ -23564,29 +24074,38 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then +- ac_cv_type_ssize_t=yes ++ : ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_type_ssize_t=yes ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_type_ssize_t=no ++ + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_ssize_t" >&5 +-echo "${ECHO_T}$ac_cv_type_ssize_t" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_ssize_t" >&5 ++$as_echo "$ac_cv_type_ssize_t" >&6; } + if test $ac_cv_type_ssize_t = yes; then + : + else +@@ -23600,20 +24119,21 @@ fi + + for ac_header in memory.h + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++$as_echo_n "checking $ac_header usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -23629,32 +24149,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++$as_echo_n "checking $ac_header presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -23668,51 +24189,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -23721,21 +24243,23 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++if test `eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -23746,20 +24270,21 @@ done + + for ac_header in string.h strings.h + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++$as_echo_n "checking $ac_header usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -23775,32 +24300,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++$as_echo_n "checking $ac_header presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -23814,51 +24340,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -23867,21 +24394,23 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++if test `eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + break + fi +@@ -23891,11 +24420,11 @@ done + + for ac_func in strerror + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -23948,35 +24477,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else +@@ -23995,11 +24530,11 @@ DL_LIB= + + for ac_func in dlopen + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -24052,43 +24587,49 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else + +- { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 +-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 ++$as_echo_n "checking for dlopen in -ldl... " >&6; } + if test "${ac_cv_lib_dl_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldl $LIBS" +@@ -24120,40 +24661,44 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_dl_dlopen=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dl_dlopen=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 ++$as_echo "$ac_cv_lib_dl_dlopen" >&6; } + if test $ac_cv_lib_dl_dlopen = yes; then + DL_LIB="-ldl" + else + +- { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 +-echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 ++$as_echo_n "checking for shl_load in -ldld... " >&6; } + if test "${ac_cv_lib_dld_shl_load+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldld $LIBS" +@@ -24185,32 +24730,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_dld_shl_load=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dld_shl_load=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 +-echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 ++$as_echo "$ac_cv_lib_dld_shl_load" >&6; } + if test $ac_cv_lib_dld_shl_load = yes; then + DL_LIB="-ldld" + else +@@ -24218,11 +24767,11 @@ else + + for ac_func in dlopen + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -24275,35 +24824,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + DL_LIB="" + else +@@ -24326,11 +24881,11 @@ LIBS="$LIBS $DL_LIB" + + for ac_func in dlerror + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -24383,35 +24938,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -24421,17 +24982,17 @@ LIBS="$oLIBS" + + + if test "${ac_cv_header_linux_isdn_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for linux/isdn.h" >&5 +-echo $ECHO_N "checking for linux/isdn.h... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for linux/isdn.h" >&5 ++$as_echo_n "checking for linux/isdn.h... " >&6; } + if test "${ac_cv_header_linux_isdn_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_linux_isdn_h" >&5 +-echo "${ECHO_T}$ac_cv_header_linux_isdn_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_linux_isdn_h" >&5 ++$as_echo "$ac_cv_header_linux_isdn_h" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking linux/isdn.h usability" >&5 +-echo $ECHO_N "checking linux/isdn.h usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking linux/isdn.h usability" >&5 ++$as_echo_n "checking linux/isdn.h usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24447,32 +25008,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking linux/isdn.h presence" >&5 +-echo $ECHO_N "checking linux/isdn.h presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking linux/isdn.h presence" >&5 ++$as_echo_n "checking linux/isdn.h presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24486,51 +25048,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: linux/isdn.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: linux/isdn.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: linux/isdn.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: linux/isdn.h: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: linux/isdn.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: linux/isdn.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: linux/isdn.h: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: linux/isdn.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: linux/isdn.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: linux/isdn.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: linux/isdn.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: linux/isdn.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: linux/isdn.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: linux/isdn.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: linux/isdn.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: linux/isdn.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: linux/isdn.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: linux/isdn.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: linux/isdn.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: linux/isdn.h: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: linux/isdn.h: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: linux/isdn.h: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: linux/isdn.h: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: linux/isdn.h: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: linux/isdn.h: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: linux/isdn.h: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: linux/isdn.h: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: linux/isdn.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: linux/isdn.h: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: linux/isdn.h: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: linux/isdn.h: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: linux/isdn.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -24539,15 +25102,15 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for linux/isdn.h" >&5 +-echo $ECHO_N "checking for linux/isdn.h... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for linux/isdn.h" >&5 ++$as_echo_n "checking for linux/isdn.h... " >&6; } + if test "${ac_cv_header_linux_isdn_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_cv_header_linux_isdn_h=$ac_header_preproc + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_linux_isdn_h" >&5 +-echo "${ECHO_T}$ac_cv_header_linux_isdn_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_linux_isdn_h" >&5 ++$as_echo "$ac_cv_header_linux_isdn_h" >&6; } + + fi + if test $ac_cv_header_linux_isdn_h = yes; then +@@ -24565,10 +25128,10 @@ _ACEOF + + fi + +-{ echo "$as_me:$LINENO: checking for vmgetinfo in -lperfstat" >&5 +-echo $ECHO_N "checking for vmgetinfo in -lperfstat... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for vmgetinfo in -lperfstat" >&5 ++$as_echo_n "checking for vmgetinfo in -lperfstat... " >&6; } + if test "${ac_cv_lib_perfstat_vmgetinfo+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lperfstat $LIBS" +@@ -24600,32 +25163,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_perfstat_vmgetinfo=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_perfstat_vmgetinfo=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_perfstat_vmgetinfo" >&5 +-echo "${ECHO_T}$ac_cv_lib_perfstat_vmgetinfo" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_perfstat_vmgetinfo" >&5 ++$as_echo "$ac_cv_lib_perfstat_vmgetinfo" >&6; } + if test $ac_cv_lib_perfstat_vmgetinfo = yes; then + + cat >>confdefs.h <<\_ACEOF +@@ -24638,10 +25205,10 @@ fi + case "$host_os" in + solaris*) + +-{ echo "$as_me:$LINENO: checking for kstat_open in -lkstat" >&5 +-echo $ECHO_N "checking for kstat_open in -lkstat... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for kstat_open in -lkstat" >&5 ++$as_echo_n "checking for kstat_open in -lkstat... " >&6; } + if test "${ac_cv_lib_kstat_kstat_open+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lkstat $LIBS" +@@ -24673,32 +25240,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_kstat_kstat_open=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_kstat_kstat_open=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_kstat_kstat_open" >&5 +-echo "${ECHO_T}$ac_cv_lib_kstat_kstat_open" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_kstat_kstat_open" >&5 ++$as_echo "$ac_cv_lib_kstat_kstat_open" >&6; } + if test $ac_cv_lib_kstat_kstat_open = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBKSTAT 1 +@@ -24712,11 +25283,11 @@ fi + + for ac_func in getloadavg swapctl + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -24769,35 +25340,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -24807,20 +25384,21 @@ done + + for ac_header in procfs.h sys/procfs.h + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++$as_echo_n "checking $ac_header usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24836,32 +25414,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++$as_echo_n "checking $ac_header presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24875,51 +25454,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -24928,21 +25508,23 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++if test `eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + break + fi +@@ -24953,10 +25535,10 @@ done + + case $host_os in + solaris[8-9] | solaris2.[0-9].*) +- { echo "$as_me:$LINENO: checking for kvm_open in -lkvm" >&5 +-echo $ECHO_N "checking for kvm_open in -lkvm... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for kvm_open in -lkvm" >&5 ++$as_echo_n "checking for kvm_open in -lkvm... " >&6; } + if test "${ac_cv_lib_kvm_kvm_open+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lkvm $LIBS" +@@ -24988,41 +25570,45 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_kvm_kvm_open=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_kvm_kvm_open=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_kvm_kvm_open" >&5 +-echo "${ECHO_T}$ac_cv_lib_kvm_kvm_open" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_kvm_kvm_open" >&5 ++$as_echo "$ac_cv_lib_kvm_kvm_open" >&6; } + if test $ac_cv_lib_kvm_kvm_open = yes; then + + LIBS="-lkvm $LIBS" + + else +- { echo "$as_me:$LINENO: checking for kvm_open in -lkvm with -lelf" >&5 +-echo $ECHO_N "checking for kvm_open in -lkvm with -lelf... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for kvm_open in -lkvm with -lelf" >&5 ++$as_echo_n "checking for kvm_open in -lkvm with -lelf... " >&6; } + if test "${ac_cv_lib_kvm_with_elf+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_save_LIBS="$LIBS" + LIBS="-lkvm -lelf $LIBS" +@@ -25047,26 +25633,30 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_kvm_with_elf=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_kvm_with_elf=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$ac_save_LIBS" +@@ -25074,12 +25664,12 @@ rm -f core conftest.err conftest.$ac_obj + fi + + if test "$ac_cv_lib_kvm_with_elf" = "yes"; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + LIBS="-lkvm -lelf $LIBS" + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + fi +@@ -25090,10 +25680,10 @@ fi + esac + + +-{ echo "$as_me:$LINENO: checking for vm_statistics in -lmach" >&5 +-echo $ECHO_N "checking for vm_statistics in -lmach... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for vm_statistics in -lmach" >&5 ++$as_echo_n "checking for vm_statistics in -lmach... " >&6; } + if test "${ac_cv_lib_mach_vm_statistics+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lmach $LIBS" +@@ -25125,32 +25715,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_mach_vm_statistics=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_mach_vm_statistics=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_mach_vm_statistics" >&5 +-echo "${ECHO_T}$ac_cv_lib_mach_vm_statistics" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_mach_vm_statistics" >&5 ++$as_echo "$ac_cv_lib_mach_vm_statistics" >&6; } + if test $ac_cv_lib_mach_vm_statistics = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBMACH 1 +@@ -25163,10 +25757,10 @@ fi + + saved_CFLAGS=$CFLAGS + CFLAGS="$CFLAGS -D_GNU_SOURCE" +-{ echo "$as_me:$LINENO: checking whether program_invocation_name must be declared" >&5 +-echo $ECHO_N "checking whether program_invocation_name must be declared... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether program_invocation_name must be declared" >&5 ++$as_echo_n "checking whether program_invocation_name must be declared... " >&6; } + if test "${gcc_cv_decl_needed_program_invocation_name+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25209,20 +25803,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "gcc_cv_decl_needed_program_invocation_name=no" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "gcc_cv_decl_needed_program_invocation_name=yes" +@@ -25232,8 +25827,8 @@ rm -f core conftest.err conftest.$ac_obj + fi + + if eval "test \"`echo '$gcc_cv_decl_needed_'program_invocation_name`\" = yes"; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + gcc_need_declarations="$gcc_need_declarations program_invocation_name" + gcc_tr_decl=NEED_DECLARATION_`echo program_invocation_name | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` + +@@ -25242,17 +25837,17 @@ cat >>confdefs.h <<_ACEOF + _ACEOF + + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + CFLAGS=$saved_CFLAGS + +-{ echo "$as_me:$LINENO: checking for socket" >&5 +-echo $ECHO_N "checking for socket... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for socket" >&5 ++$as_echo_n "checking for socket... " >&6; } + if test "${ac_cv_func_socket+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25305,44 +25900,48 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_socket=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_socket=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_socket" >&5 +-echo "${ECHO_T}$ac_cv_func_socket" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_socket" >&5 ++$as_echo "$ac_cv_func_socket" >&6; } + if test $ac_cv_func_socket = yes; then + if test "${ac_cv_header_netinet_in_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for netinet/in.h" >&5 +-echo $ECHO_N "checking for netinet/in.h... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for netinet/in.h" >&5 ++$as_echo_n "checking for netinet/in.h... " >&6; } + if test "${ac_cv_header_netinet_in_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_h" >&5 +-echo "${ECHO_T}$ac_cv_header_netinet_in_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_h" >&5 ++$as_echo "$ac_cv_header_netinet_in_h" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking netinet/in.h usability" >&5 +-echo $ECHO_N "checking netinet/in.h usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking netinet/in.h usability" >&5 ++$as_echo_n "checking netinet/in.h usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -25358,32 +25957,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking netinet/in.h presence" >&5 +-echo $ECHO_N "checking netinet/in.h presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking netinet/in.h presence" >&5 ++$as_echo_n "checking netinet/in.h presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -25397,51 +25997,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: netinet/in.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: netinet/in.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: netinet/in.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: netinet/in.h: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: netinet/in.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: netinet/in.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: netinet/in.h: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: netinet/in.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: netinet/in.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: netinet/in.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: netinet/in.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: netinet/in.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: netinet/in.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: netinet/in.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: netinet/in.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: netinet/in.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: netinet/in.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: netinet/in.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: netinet/in.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: netinet/in.h: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: netinet/in.h: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: netinet/in.h: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: netinet/in.h: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: netinet/in.h: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: netinet/in.h: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: netinet/in.h: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: netinet/in.h: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: netinet/in.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: netinet/in.h: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: netinet/in.h: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: netinet/in.h: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: netinet/in.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -25450,30 +26051,30 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for netinet/in.h" >&5 +-echo $ECHO_N "checking for netinet/in.h... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for netinet/in.h" >&5 ++$as_echo_n "checking for netinet/in.h... " >&6; } + if test "${ac_cv_header_netinet_in_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_cv_header_netinet_in_h=$ac_header_preproc + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_h" >&5 +-echo "${ECHO_T}$ac_cv_header_netinet_in_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_netinet_in_h" >&5 ++$as_echo "$ac_cv_header_netinet_in_h" >&6; } + + fi + if test $ac_cv_header_netinet_in_h = yes; then + if test "${ac_cv_header_arpa_inet_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for arpa/inet.h" >&5 +-echo $ECHO_N "checking for arpa/inet.h... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for arpa/inet.h" >&5 ++$as_echo_n "checking for arpa/inet.h... " >&6; } + if test "${ac_cv_header_arpa_inet_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_arpa_inet_h" >&5 +-echo "${ECHO_T}$ac_cv_header_arpa_inet_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_arpa_inet_h" >&5 ++$as_echo "$ac_cv_header_arpa_inet_h" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking arpa/inet.h usability" >&5 +-echo $ECHO_N "checking arpa/inet.h usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking arpa/inet.h usability" >&5 ++$as_echo_n "checking arpa/inet.h usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -25489,32 +26090,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking arpa/inet.h presence" >&5 +-echo $ECHO_N "checking arpa/inet.h presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking arpa/inet.h presence" >&5 ++$as_echo_n "checking arpa/inet.h presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -25528,51 +26130,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: arpa/inet.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: arpa/inet.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: arpa/inet.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: arpa/inet.h: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: arpa/inet.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: arpa/inet.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: arpa/inet.h: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: arpa/inet.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: arpa/inet.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: arpa/inet.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: arpa/inet.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: arpa/inet.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: arpa/inet.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: arpa/inet.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: arpa/inet.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: arpa/inet.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: arpa/inet.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: arpa/inet.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: arpa/inet.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: arpa/inet.h: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: arpa/inet.h: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: arpa/inet.h: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: arpa/inet.h: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: arpa/inet.h: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: arpa/inet.h: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: arpa/inet.h: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: arpa/inet.h: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: arpa/inet.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: arpa/inet.h: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: arpa/inet.h: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: arpa/inet.h: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: arpa/inet.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -25581,15 +26184,15 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for arpa/inet.h" >&5 +-echo $ECHO_N "checking for arpa/inet.h... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for arpa/inet.h" >&5 ++$as_echo_n "checking for arpa/inet.h... " >&6; } + if test "${ac_cv_header_arpa_inet_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_cv_header_arpa_inet_h=$ac_header_preproc + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_arpa_inet_h" >&5 +-echo "${ECHO_T}$ac_cv_header_arpa_inet_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_arpa_inet_h" >&5 ++$as_echo "$ac_cv_header_arpa_inet_h" >&6; } + + fi + if test $ac_cv_header_arpa_inet_h = yes; then +@@ -25599,8 +26202,8 @@ cat >>confdefs.h <<\_ACEOF + #define HAVE_SOCKETS 1 + _ACEOF + +- { echo "$as_me:$LINENO: checking \"for sun_len member in struct sockaddr_un\"" >&5 +-echo $ECHO_N "checking \"for sun_len member in struct sockaddr_un\"... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking \"for sun_len member in struct sockaddr_un\"" >&5 ++$as_echo_n "checking \"for sun_len member in struct sockaddr_un\"... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -25626,32 +26229,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; }; ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then ++ { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; }; + cat >>confdefs.h <<\_ACEOF + #define HAVE_SOCKADDR_SUN_LEN 1 + _ACEOF + + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +@@ -25665,10 +26272,10 @@ fi + + # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works + # for constant arguments. Useless! +-{ echo "$as_me:$LINENO: checking for working alloca.h" >&5 +-echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for working alloca.h" >&5 ++$as_echo_n "checking for working alloca.h... " >&6; } + if test "${ac_cv_working_alloca_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25692,31 +26299,35 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_working_alloca_h=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_working_alloca_h=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_working_alloca_h" >&5 +-echo "${ECHO_T}$ac_cv_working_alloca_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_working_alloca_h" >&5 ++$as_echo "$ac_cv_working_alloca_h" >&6; } + if test $ac_cv_working_alloca_h = yes; then + + cat >>confdefs.h <<\_ACEOF +@@ -25725,10 +26336,10 @@ _ACEOF + + fi + +-{ echo "$as_me:$LINENO: checking for alloca" >&5 +-echo $ECHO_N "checking for alloca... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for alloca" >&5 ++$as_echo_n "checking for alloca... " >&6; } + if test "${ac_cv_func_alloca_works+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25772,31 +26383,35 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_alloca_works=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_alloca_works=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_alloca_works" >&5 +-echo "${ECHO_T}$ac_cv_func_alloca_works" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_alloca_works" >&5 ++$as_echo "$ac_cv_func_alloca_works" >&6; } + + if test $ac_cv_func_alloca_works = yes; then + +@@ -25817,10 +26432,10 @@ cat >>confdefs.h <<\_ACEOF + _ACEOF + + +-{ echo "$as_me:$LINENO: checking whether \`alloca.c' needs Cray hooks" >&5 +-echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether \`alloca.c' needs Cray hooks" >&5 ++$as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; } + if test "${ac_cv_os_cray+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25844,15 +26459,15 @@ fi + rm -f conftest* + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_os_cray" >&5 +-echo "${ECHO_T}$ac_cv_os_cray" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_os_cray" >&5 ++$as_echo "$ac_cv_os_cray" >&6; } + if test $ac_cv_os_cray = yes; then + for ac_func in _getb67 GETB67 getb67; do +- as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -25905,33 +26520,39 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + + cat >>confdefs.h <<_ACEOF + #define CRAY_STACKSEG_END $ac_func +@@ -25943,10 +26564,10 @@ fi + done + fi + +-{ echo "$as_me:$LINENO: checking stack direction for C alloca" >&5 +-echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking stack direction for C alloca" >&5 ++$as_echo_n "checking stack direction for C alloca... " >&6; } + if test "${ac_cv_c_stack_direction+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then + ac_cv_c_stack_direction=0 +@@ -25984,36 +26605,39 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_c_stack_direction=1 + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++$as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ac_cv_c_stack_direction=-1 + fi ++rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_stack_direction" >&5 +-echo "${ECHO_T}$ac_cv_c_stack_direction" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_stack_direction" >&5 ++$as_echo "$ac_cv_c_stack_direction" >&6; } + + cat >>confdefs.h <<_ACEOF + #define STACK_DIRECTION $ac_cv_c_stack_direction +@@ -26026,20 +26650,21 @@ fi + + for ac_header in stdlib.h unistd.h + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++$as_echo_n "checking $ac_header usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -26055,32 +26680,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++$as_echo_n "checking $ac_header presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -26094,51 +26720,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -26147,21 +26774,23 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++if test `eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -26171,11 +26800,11 @@ done + + for ac_func in getpagesize + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26228,44 +26857,50 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi + done + +-{ echo "$as_me:$LINENO: checking for working mmap" >&5 +-echo $ECHO_N "checking for working mmap... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for working mmap" >&5 ++$as_echo_n "checking for working mmap... " >&6; } + if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then + ac_cv_func_mmap_fixed_mapped=no +@@ -26409,36 +27044,39 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_mmap_fixed_mapped=yes + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++$as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + ac_cv_func_mmap_fixed_mapped=no + fi ++rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_mmap_fixed_mapped" >&5 +-echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_mmap_fixed_mapped" >&5 ++$as_echo "$ac_cv_func_mmap_fixed_mapped" >&6; } + if test $ac_cv_func_mmap_fixed_mapped = yes; then + + cat >>confdefs.h <<\_ACEOF +@@ -26448,10 +27086,10 @@ _ACEOF + fi + rm -f conftest.mmap + +-{ echo "$as_me:$LINENO: checking return type of signal handlers" >&5 +-echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking return type of signal handlers" >&5 ++$as_echo_n "checking return type of signal handlers... " >&6; } + if test "${ac_cv_type_signal+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26476,20 +27114,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_type_signal=int + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_type_signal=void +@@ -26497,8 +27136,8 @@ fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5 +-echo "${ECHO_T}$ac_cv_type_signal" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5 ++$as_echo "$ac_cv_type_signal" >&6; } + + cat >>confdefs.h <<_ACEOF + #define RETSIGTYPE $ac_cv_type_signal +@@ -26508,11 +27147,11 @@ _ACEOF + + for ac_func in strftime + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26565,43 +27204,49 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + else + # strftime is in -lintl on SCO UNIX. +-{ echo "$as_me:$LINENO: checking for strftime in -lintl" >&5 +-echo $ECHO_N "checking for strftime in -lintl... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for strftime in -lintl" >&5 ++$as_echo_n "checking for strftime in -lintl... " >&6; } + if test "${ac_cv_lib_intl_strftime+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lintl $LIBS" +@@ -26633,32 +27278,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_intl_strftime=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_intl_strftime=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_strftime" >&5 +-echo "${ECHO_T}$ac_cv_lib_intl_strftime" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_strftime" >&5 ++$as_echo "$ac_cv_lib_intl_strftime" >&6; } + if test $ac_cv_lib_intl_strftime = yes; then + cat >>confdefs.h <<\_ACEOF + #define HAVE_STRFTIME 1 +@@ -26679,11 +27328,11 @@ done + + for ac_func in getcwd gettimeofday getwd putenv strdup strtoul uname + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -26736,35 +27385,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -26774,8 +27429,8 @@ done + + case "$am__api_version" in + 1.01234) +- { { echo "$as_me:$LINENO: error: Automake 1.5 or newer is required to use intltool" >&5 +-echo "$as_me: error: Automake 1.5 or newer is required to use intltool" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: Automake 1.5 or newer is required to use intltool" >&5 ++$as_echo "$as_me: error: Automake 1.5 or newer is required to use intltool" >&2;} + { (exit 1); exit 1; }; } + ;; + *) +@@ -26783,27 +27438,27 @@ echo "$as_me: error: Automake 1.5 or new + esac + + if test -n "0.35.0"; then +- { echo "$as_me:$LINENO: checking for intltool >= 0.35.0" >&5 +-echo $ECHO_N "checking for intltool >= 0.35.0... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for intltool >= 0.35.0" >&5 ++$as_echo_n "checking for intltool >= 0.35.0... " >&6; } + + INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` + INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` + INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` + +- { echo "$as_me:$LINENO: result: $INTLTOOL_APPLIED_VERSION found" >&5 +-echo "${ECHO_T}$INTLTOOL_APPLIED_VERSION found" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $INTLTOOL_APPLIED_VERSION found" >&5 ++$as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; } + test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || +- { { echo "$as_me:$LINENO: error: Your intltool is too old. You need intltool 0.35.0 or later." >&5 +-echo "$as_me: error: Your intltool is too old. You need intltool 0.35.0 or later." >&2;} ++ { { $as_echo "$as_me:$LINENO: error: Your intltool is too old. You need intltool 0.35.0 or later." >&5 ++$as_echo "$as_me: error: Your intltool is too old. You need intltool 0.35.0 or later." >&2;} + { (exit 1); exit 1; }; } + fi + + # Extract the first word of "intltool-update", so it can be a program name with args. + set dummy intltool-update; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_INTLTOOL_UPDATE+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $INTLTOOL_UPDATE in + [\\/]* | ?:[\\/]*) +@@ -26818,7 +27473,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -26830,20 +27485,20 @@ esac + fi + INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE + if test -n "$INTLTOOL_UPDATE"; then +- { echo "$as_me:$LINENO: result: $INTLTOOL_UPDATE" >&5 +-echo "${ECHO_T}$INTLTOOL_UPDATE" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $INTLTOOL_UPDATE" >&5 ++$as_echo "$INTLTOOL_UPDATE" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + # Extract the first word of "intltool-merge", so it can be a program name with args. + set dummy intltool-merge; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_INTLTOOL_MERGE+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $INTLTOOL_MERGE in + [\\/]* | ?:[\\/]*) +@@ -26858,7 +27513,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -26870,20 +27525,20 @@ esac + fi + INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE + if test -n "$INTLTOOL_MERGE"; then +- { echo "$as_me:$LINENO: result: $INTLTOOL_MERGE" >&5 +-echo "${ECHO_T}$INTLTOOL_MERGE" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $INTLTOOL_MERGE" >&5 ++$as_echo "$INTLTOOL_MERGE" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + # Extract the first word of "intltool-extract", so it can be a program name with args. + set dummy intltool-extract; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_INTLTOOL_EXTRACT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $INTLTOOL_EXTRACT in + [\\/]* | ?:[\\/]*) +@@ -26898,7 +27553,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -26910,17 +27565,17 @@ esac + fi + INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT + if test -n "$INTLTOOL_EXTRACT"; then +- { echo "$as_me:$LINENO: result: $INTLTOOL_EXTRACT" >&5 +-echo "${ECHO_T}$INTLTOOL_EXTRACT" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $INTLTOOL_EXTRACT" >&5 ++$as_echo "$INTLTOOL_EXTRACT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then +- { { echo "$as_me:$LINENO: error: The intltool scripts were not found. Please install intltool." >&5 +-echo "$as_me: error: The intltool scripts were not found. Please install intltool." >&2;} ++ { { $as_echo "$as_me:$LINENO: error: The intltool scripts were not found. Please install intltool." >&5 ++$as_echo "$as_me: error: The intltool scripts were not found. Please install intltool." >&2;} + { (exit 1); exit 1; }; } + fi + +@@ -26967,10 +27622,10 @@ INTLTOOL_SOUNDLIST_RULE='%.soundlist: %. + # Check the gettext tools to make sure they are GNU + # Extract the first word of "xgettext", so it can be a program name with args. + set dummy xgettext; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_XGETTEXT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $XGETTEXT in + [\\/]* | ?:[\\/]*) +@@ -26985,7 +27640,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -26997,20 +27652,20 @@ esac + fi + XGETTEXT=$ac_cv_path_XGETTEXT + if test -n "$XGETTEXT"; then +- { echo "$as_me:$LINENO: result: $XGETTEXT" >&5 +-echo "${ECHO_T}$XGETTEXT" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $XGETTEXT" >&5 ++$as_echo "$XGETTEXT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + # Extract the first word of "msgmerge", so it can be a program name with args. + set dummy msgmerge; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_MSGMERGE+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $MSGMERGE in + [\\/]* | ?:[\\/]*) +@@ -27025,7 +27680,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -27037,20 +27692,20 @@ esac + fi + MSGMERGE=$ac_cv_path_MSGMERGE + if test -n "$MSGMERGE"; then +- { echo "$as_me:$LINENO: result: $MSGMERGE" >&5 +-echo "${ECHO_T}$MSGMERGE" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $MSGMERGE" >&5 ++$as_echo "$MSGMERGE" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + # Extract the first word of "msgfmt", so it can be a program name with args. + set dummy msgfmt; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_MSGFMT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $MSGFMT in + [\\/]* | ?:[\\/]*) +@@ -27065,7 +27720,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -27077,34 +27732,34 @@ esac + fi + MSGFMT=$ac_cv_path_MSGFMT + if test -n "$MSGFMT"; then +- { echo "$as_me:$LINENO: result: $MSGFMT" >&5 +-echo "${ECHO_T}$MSGFMT" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $MSGFMT" >&5 ++$as_echo "$MSGFMT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then +- { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 +-echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 ++$as_echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} + { (exit 1); exit 1; }; } + fi + xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" + mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" + mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" + if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then +- { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 +-echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 ++$as_echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} + { (exit 1); exit 1; }; } + fi + + # Extract the first word of "perl", so it can be a program name with args. + set dummy perl; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_INTLTOOL_PERL+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $INTLTOOL_PERL in + [\\/]* | ?:[\\/]*) +@@ -27119,7 +27774,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -27131,33 +27786,33 @@ esac + fi + INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL + if test -n "$INTLTOOL_PERL"; then +- { echo "$as_me:$LINENO: result: $INTLTOOL_PERL" >&5 +-echo "${ECHO_T}$INTLTOOL_PERL" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $INTLTOOL_PERL" >&5 ++$as_echo "$INTLTOOL_PERL" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + if test -z "$INTLTOOL_PERL"; then +- { { echo "$as_me:$LINENO: error: perl not found; required for intltool" >&5 +-echo "$as_me: error: perl not found; required for intltool" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: perl not found; required for intltool" >&5 ++$as_echo "$as_me: error: perl not found; required for intltool" >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "`$INTLTOOL_PERL -v | fgrep '5.' 2> /dev/null`"; then +- { { echo "$as_me:$LINENO: error: perl 5.x required for intltool" >&5 +-echo "$as_me: error: perl 5.x required for intltool" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: perl 5.x required for intltool" >&5 ++$as_echo "$as_me: error: perl 5.x required for intltool" >&2;} + { (exit 1); exit 1; }; } + fi + if test "x" != "xno-xml"; then +- { echo "$as_me:$LINENO: checking for XML::Parser" >&5 +-echo $ECHO_N "checking for XML::Parser... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for XML::Parser" >&5 ++$as_echo_n "checking for XML::Parser... " >&6; } + if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then +- { echo "$as_me:$LINENO: result: ok" >&5 +-echo "${ECHO_T}ok" >&6; } ++ { $as_echo "$as_me:$LINENO: result: ok" >&5 ++$as_echo "ok" >&6; } + else +- { { echo "$as_me:$LINENO: error: XML::Parser perl module is required for intltool" >&5 +-echo "$as_me: error: XML::Parser perl module is required for intltool" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: XML::Parser perl module is required for intltool" >&5 ++$as_echo "$as_me: error: XML::Parser perl module is required for intltool" >&2;} + { (exit 1); exit 1; }; } + fi + fi +@@ -27190,29 +27845,32 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + DATADIRNAME=share + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + case $host in + *-*-solaris*) +- { echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 +-echo $ECHO_N "checking for bind_textdomain_codeset... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 ++$as_echo_n "checking for bind_textdomain_codeset... " >&6; } + if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27265,44 +27923,49 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_bind_textdomain_codeset=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_bind_textdomain_codeset=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 +-echo "${ECHO_T}$ac_cv_func_bind_textdomain_codeset" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 ++$as_echo "$ac_cv_func_bind_textdomain_codeset" >&6; } + if test $ac_cv_func_bind_textdomain_codeset = yes; then + DATADIRNAME=share + else +- DATADIRNAME=share ++ DATADIRNAME=lib + fi + + ;; + *) +- DATADIRNAME=share ++ DATADIRNAME=lib + ;; + esac + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +@@ -27324,20 +27987,21 @@ _ACEOF + + for ac_header in locale.h + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++$as_echo_n "checking $ac_header usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -27353,32 +28017,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++$as_echo_n "checking $ac_header presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -27392,51 +28057,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -27445,21 +28111,23 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++if test `eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -27467,10 +28135,10 @@ fi + done + + if test $ac_cv_header_locale_h = yes; then +- { echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5 +-echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5 ++$as_echo_n "checking for LC_MESSAGES... " >&6; } + if test "${am_cv_val_LC_MESSAGES+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27493,31 +28161,35 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + am_cv_val_LC_MESSAGES=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + am_cv_val_LC_MESSAGES=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 +-echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 ++$as_echo "$am_cv_val_LC_MESSAGES" >&6; } + if test $am_cv_val_LC_MESSAGES = yes; then + + cat >>confdefs.h <<\_ACEOF +@@ -27536,17 +28208,17 @@ _ACEOF + INTLLIBS= + + if test "${ac_cv_header_libintl_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for libintl.h" >&5 +-echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for libintl.h" >&5 ++$as_echo_n "checking for libintl.h... " >&6; } + if test "${ac_cv_header_libintl_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 +-echo "${ECHO_T}$ac_cv_header_libintl_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 ++$as_echo "$ac_cv_header_libintl_h" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking libintl.h usability" >&5 +-echo $ECHO_N "checking libintl.h usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking libintl.h usability" >&5 ++$as_echo_n "checking libintl.h usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -27562,32 +28234,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking libintl.h presence" >&5 +-echo $ECHO_N "checking libintl.h presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking libintl.h presence" >&5 ++$as_echo_n "checking libintl.h presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -27601,51 +28274,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -27654,15 +28328,15 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for libintl.h" >&5 +-echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for libintl.h" >&5 ++$as_echo_n "checking for libintl.h... " >&6; } + if test "${ac_cv_header_libintl_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_cv_header_libintl_h=$ac_header_preproc + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 +-echo "${ECHO_T}$ac_cv_header_libintl_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 ++$as_echo "$ac_cv_header_libintl_h" >&6; } + + fi + if test $ac_cv_header_libintl_h = yes; then +@@ -27672,10 +28346,10 @@ if test $ac_cv_header_libintl_h = yes; t + # + # First check in libc + # +- { echo "$as_me:$LINENO: checking for ngettext in libc" >&5 +-echo $ECHO_N "checking for ngettext in libc... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for ngettext in libc" >&5 ++$as_echo_n "checking for ngettext in libc... " >&6; } + if test "${gt_cv_func_ngettext_libc+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27700,38 +28374,42 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + gt_cv_func_ngettext_libc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + gt_cv_func_ngettext_libc=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ echo "$as_me:$LINENO: result: $gt_cv_func_ngettext_libc" >&5 +-echo "${ECHO_T}$gt_cv_func_ngettext_libc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $gt_cv_func_ngettext_libc" >&5 ++$as_echo "$gt_cv_func_ngettext_libc" >&6; } + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then +- { echo "$as_me:$LINENO: checking for dgettext in libc" >&5 +-echo $ECHO_N "checking for dgettext in libc... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for dgettext in libc" >&5 ++$as_echo_n "checking for dgettext in libc... " >&6; } + if test "${gt_cv_func_dgettext_libc+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27756,43 +28434,47 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + gt_cv_func_dgettext_libc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + gt_cv_func_dgettext_libc=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +-{ echo "$as_me:$LINENO: result: $gt_cv_func_dgettext_libc" >&5 +-echo "${ECHO_T}$gt_cv_func_dgettext_libc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $gt_cv_func_dgettext_libc" >&5 ++$as_echo "$gt_cv_func_dgettext_libc" >&6; } + fi + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + + for ac_func in bind_textdomain_codeset + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -27845,35 +28527,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -27888,10 +28576,10 @@ done + || test "$gt_cv_func_ngettext_libc" != "yes" \ + || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + +- { echo "$as_me:$LINENO: checking for bindtextdomain in -lintl" >&5 +-echo $ECHO_N "checking for bindtextdomain in -lintl... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for bindtextdomain in -lintl" >&5 ++$as_echo_n "checking for bindtextdomain in -lintl... " >&6; } + if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lintl $LIBS" +@@ -27923,37 +28611,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_intl_bindtextdomain=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_intl_bindtextdomain=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_bindtextdomain" >&5 +-echo "${ECHO_T}$ac_cv_lib_intl_bindtextdomain" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_bindtextdomain" >&5 ++$as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; } + if test $ac_cv_lib_intl_bindtextdomain = yes; then +- { echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 +-echo $ECHO_N "checking for ngettext in -lintl... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 ++$as_echo_n "checking for ngettext in -lintl... " >&6; } + if test "${ac_cv_lib_intl_ngettext+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lintl $LIBS" +@@ -27985,37 +28677,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_intl_ngettext=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_intl_ngettext=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 +-echo "${ECHO_T}$ac_cv_lib_intl_ngettext" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 ++$as_echo "$ac_cv_lib_intl_ngettext" >&6; } + if test $ac_cv_lib_intl_ngettext = yes; then +- { echo "$as_me:$LINENO: checking for dgettext in -lintl" >&5 +-echo $ECHO_N "checking for dgettext in -lintl... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for dgettext in -lintl" >&5 ++$as_echo_n "checking for dgettext in -lintl... " >&6; } + if test "${ac_cv_lib_intl_dgettext+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lintl $LIBS" +@@ -28047,32 +28743,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_intl_dgettext=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_intl_dgettext=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dgettext" >&5 +-echo "${ECHO_T}$ac_cv_lib_intl_dgettext" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dgettext" >&5 ++$as_echo "$ac_cv_lib_intl_dgettext" >&6; } + if test $ac_cv_lib_intl_dgettext = yes; then + gt_cv_func_dgettext_libintl=yes + fi +@@ -28083,14 +28783,14 @@ fi + + + if test "$gt_cv_func_dgettext_libintl" != "yes" ; then +- { echo "$as_me:$LINENO: checking if -liconv is needed to use gettext" >&5 +-echo $ECHO_N "checking if -liconv is needed to use gettext... $ECHO_C" >&6; } +- { echo "$as_me:$LINENO: result: " >&5 +-echo "${ECHO_T}" >&6; } +- { echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 +-echo $ECHO_N "checking for ngettext in -lintl... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking if -liconv is needed to use gettext" >&5 ++$as_echo_n "checking if -liconv is needed to use gettext... " >&6; } ++ { $as_echo "$as_me:$LINENO: result: " >&5 ++$as_echo "" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 ++$as_echo_n "checking for ngettext in -lintl... " >&6; } + if test "${ac_cv_lib_intl_ngettext+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lintl -liconv $LIBS" +@@ -28122,37 +28822,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_intl_ngettext=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_intl_ngettext=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 +-echo "${ECHO_T}$ac_cv_lib_intl_ngettext" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 ++$as_echo "$ac_cv_lib_intl_ngettext" >&6; } + if test $ac_cv_lib_intl_ngettext = yes; then +- { echo "$as_me:$LINENO: checking for dcgettext in -lintl" >&5 +-echo $ECHO_N "checking for dcgettext in -lintl... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for dcgettext in -lintl" >&5 ++$as_echo_n "checking for dcgettext in -lintl... " >&6; } + if test "${ac_cv_lib_intl_dcgettext+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lintl -liconv $LIBS" +@@ -28184,32 +28888,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_intl_dcgettext=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_intl_dcgettext=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dcgettext" >&5 +-echo "${ECHO_T}$ac_cv_lib_intl_dcgettext" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dcgettext" >&5 ++$as_echo "$ac_cv_lib_intl_dcgettext" >&6; } + if test $ac_cv_lib_intl_dcgettext = yes; then + gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv +@@ -28235,11 +28943,11 @@ fi + + for ac_func in bind_textdomain_codeset + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -28292,35 +29000,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -28356,10 +29070,10 @@ _ACEOF + + # Extract the first word of "msgfmt", so it can be a program name with args. + set dummy msgfmt; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_MSGFMT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case "$MSGFMT" in + /*) +@@ -28383,11 +29097,11 @@ esac + fi + MSGFMT="$ac_cv_path_MSGFMT" + if test "$MSGFMT" != "no"; then +- { echo "$as_me:$LINENO: result: $MSGFMT" >&5 +-echo "${ECHO_T}$MSGFMT" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $MSGFMT" >&5 ++$as_echo "$MSGFMT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + if test "$MSGFMT" != "no"; then + glib_save_LIBS="$LIBS" +@@ -28395,11 +29109,11 @@ fi + + for ac_func in dcgettext + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -28452,43 +29166,49 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi + done + + MSGFMT_OPTS= +- { echo "$as_me:$LINENO: checking if msgfmt accepts -c" >&5 +-echo $ECHO_N "checking if msgfmt accepts -c... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking if msgfmt accepts -c" >&5 ++$as_echo_n "checking if msgfmt accepts -c... " >&6; } + cat >conftest.foo <<_ACEOF + + msgid "" +@@ -28502,25 +29222,25 @@ msgstr "" + "Content-Transfer-Encoding: 8bit\n" + + _ACEOF +-if { (echo "$as_me:$LINENO: \$MSGFMT -c -o /dev/null conftest.foo") >&5 ++if { ($as_echo "$as_me:$LINENO: \$MSGFMT -c -o /dev/null conftest.foo") >&5 + ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then +- MSGFMT_OPTS=-c; { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +-else { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ MSGFMT_OPTS=-c; { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } ++else { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + echo "$as_me: failed input was:" >&5 + sed 's/^/| /' conftest.foo >&5 + fi + + # Extract the first word of "gmsgfmt", so it can be a program name with args. + set dummy gmsgfmt; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_GMSGFMT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $GMSGFMT in + [\\/]* | ?:[\\/]*) +@@ -28535,7 +29255,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -28548,20 +29268,20 @@ esac + fi + GMSGFMT=$ac_cv_path_GMSGFMT + if test -n "$GMSGFMT"; then +- { echo "$as_me:$LINENO: result: $GMSGFMT" >&5 +-echo "${ECHO_T}$GMSGFMT" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $GMSGFMT" >&5 ++$as_echo "$GMSGFMT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + # Extract the first word of "xgettext", so it can be a program name with args. + set dummy xgettext; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_XGETTEXT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case "$XGETTEXT" in + /*) +@@ -28585,11 +29305,11 @@ esac + fi + XGETTEXT="$ac_cv_path_XGETTEXT" + if test "$XGETTEXT" != ":"; then +- { echo "$as_me:$LINENO: result: $XGETTEXT" >&5 +-echo "${ECHO_T}$XGETTEXT" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $XGETTEXT" >&5 ++$as_echo "$XGETTEXT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + cat >conftest.$ac_ext <<_ACEOF +@@ -28614,30 +29334,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + CATOBJEXT=.gmo + DATADIRNAME=share + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + case $host in + *-*-solaris*) +- { echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 +-echo $ECHO_N "checking for bind_textdomain_codeset... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 ++$as_echo_n "checking for bind_textdomain_codeset... " >&6; } + if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -28690,47 +29413,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_bind_textdomain_codeset=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_bind_textdomain_codeset=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 +-echo "${ECHO_T}$ac_cv_func_bind_textdomain_codeset" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 ++$as_echo "$ac_cv_func_bind_textdomain_codeset" >&6; } + if test $ac_cv_func_bind_textdomain_codeset = yes; then + CATOBJEXT=.gmo + DATADIRNAME=share + else + CATOBJEXT=.mo +- DATADIRNAME=share ++ DATADIRNAME=lib + fi + + ;; + *) + CATOBJEXT=.mo +- DATADIRNAME=share ++ DATADIRNAME=lib + ;; + esac + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$glib_save_LIBS" +@@ -28756,8 +29484,8 @@ _ACEOF + if $XGETTEXT --omit-header /dev/null 2> /dev/null; then + : ; + else +- { echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5 +-echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6; } ++ { $as_echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5 ++$as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } + XGETTEXT=":" + fi + fi +@@ -28789,8 +29517,8 @@ echo "${ECHO_T}found xgettext program is + if test "x$ALL_LINGUAS" = "x"; then + LINGUAS= + else +- { echo "$as_me:$LINENO: checking for catalogs to be installed" >&5 +-echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for catalogs to be installed" >&5 ++$as_echo_n "checking for catalogs to be installed... " >&6; } + NEW_LINGUAS= + for presentlang in $ALL_LINGUAS; do + useit=no +@@ -28814,8 +29542,8 @@ echo $ECHO_N "checking for catalogs to b + fi + done + LINGUAS=$NEW_LINGUAS +- { echo "$as_me:$LINENO: result: $LINGUAS" >&5 +-echo "${ECHO_T}$LINGUAS" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $LINGUAS" >&5 ++$as_echo "$LINGUAS" >&6; } + fi + + if test -n "$LINGUAS"; then +@@ -28853,7 +29581,7 @@ test "x$prefix" = xNONE && prefix=$ac_de + test "x$exec_prefix" = xNONE && exec_prefix=$prefix + datarootdir=`eval echo "${datarootdir}"` + if test "x$CATOBJEXT" = "x.mo" ; then +- localedir=`eval echo "${prefix}/share/locale"` ++ localedir=`eval echo "${libdir}/locale"` + else + localedir=`eval echo "${datadir}/locale"` + fi +@@ -28867,8 +29595,8 @@ _ACEOF + + + +-{ echo "$as_me:$LINENO: checking for X" >&5 +-echo $ECHO_N "checking for X... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for X" >&5 ++$as_echo_n "checking for X... " >&6; } + + + # Check whether --with-x was given. +@@ -28882,11 +29610,11 @@ if test "x$with_x" = xno; then + have_x=disabled + else + case $x_includes,$x_libraries in #( +- *\'*) { { echo "$as_me:$LINENO: error: Cannot use X directory names containing '" >&5 +-echo "$as_me: error: Cannot use X directory names containing '" >&2;} ++ *\'*) { { $as_echo "$as_me:$LINENO: error: Cannot use X directory names containing '" >&5 ++$as_echo "$as_me: error: Cannot use X directory names containing '" >&2;} + { (exit 1); exit 1; }; };; #( + *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + # One or both of the vars are not set, and there is no cached value. + ac_x_includes=no ac_x_libraries=no +@@ -28907,7 +29635,7 @@ _ACEOF + eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" + done + # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. +- for ac_extension in a so sl; do ++ for ac_extension in a so sl dylib la dll; do + if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && + test -f "$ac_im_libdir/libX11.$ac_extension"; then + ac_im_usrlibdir=$ac_im_libdir; break +@@ -28982,13 +29710,14 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err +@@ -28996,7 +29725,7 @@ eval "echo \"\$as_me:$LINENO: $ac_try_ec + # We can compile using X headers with no special include directory. + ac_x_includes= + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + for ac_dir in $ac_x_header_dirs; do +@@ -29037,30 +29766,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + LIBS=$ac_save_LIBS + # We can link X programs with no special library path. + ac_x_libraries= + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + LIBS=$ac_save_LIBS +-for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` ++for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` + do + # Don't even attempt the hair of trying to link an X program! +- for ac_extension in a so sl; do ++ for ac_extension in a so sl dylib la dll; do + if test -r "$ac_dir/libX11.$ac_extension"; then + ac_x_libraries=$ac_dir + break 2 +@@ -29069,6 +29801,7 @@ do + done + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi # $ac_x_libraries = no +@@ -29091,8 +29824,8 @@ fi + fi # $with_x != no + + if test "$have_x" != yes; then +- { echo "$as_me:$LINENO: result: $have_x" >&5 +-echo "${ECHO_T}$have_x" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $have_x" >&5 ++$as_echo "$have_x" >&6; } + no_x=yes + else + # If each of the values was on the command line, it overrides each guess. +@@ -29102,8 +29835,8 @@ else + ac_cv_have_x="have_x=yes\ + ac_x_includes='$x_includes'\ + ac_x_libraries='$x_libraries'" +- { echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5 +-echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6; } ++ { $as_echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5 ++$as_echo "libraries $x_libraries, headers $x_includes" >&6; } + fi + + if test "$no_x" = yes; then +@@ -29124,8 +29857,8 @@ else + X_LIBS="$X_LIBS -L$x_libraries" + # For Solaris; some versions of Sun CC require a space after -R and + # others require no space. Words are not sufficient . . . . +- { echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5 +-echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5 ++$as_echo_n "checking whether -R must be followed by a space... " >&6; } + ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" + ac_xsave_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes +@@ -29150,23 +29883,26 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + X_LIBS="$X_LIBS -R$x_libraries" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + LIBS="$ac_xsave_LIBS -R $x_libraries" +@@ -29191,33 +29927,38 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then ++ { $as_echo "$as_me:$LINENO: result: yes" >&5 ++$as_echo "yes" >&6; } + X_LIBS="$X_LIBS -R $x_libraries" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { echo "$as_me:$LINENO: result: neither works" >&5 +-echo "${ECHO_T}neither works" >&6; } ++ { $as_echo "$as_me:$LINENO: result: neither works" >&5 ++$as_echo "neither works" >&6; } + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + ac_c_werror_flag=$ac_xsave_c_werror_flag +@@ -29263,27 +30004,30 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + : + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- { echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet" >&5 +-echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet" >&5 ++$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } + if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldnet $LIBS" +@@ -29315,41 +30059,45 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_dnet_dnet_ntoa=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dnet_dnet_ntoa=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +-echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 ++$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } + if test $ac_cv_lib_dnet_dnet_ntoa = yes; then + X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" + fi + + if test $ac_cv_lib_dnet_dnet_ntoa = no; then +- { echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet_stub" >&5 +-echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet_stub" >&5 ++$as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; } + if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldnet_stub $LIBS" +@@ -29381,32 +30129,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_dnet_stub_dnet_ntoa=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_dnet_stub_dnet_ntoa=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +-echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 ++$as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } + if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then + X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" + fi +@@ -29414,6 +30166,7 @@ fi + fi + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$ac_xsave_LIBS" +@@ -29426,10 +30179,10 @@ rm -f core conftest.err conftest.$ac_obj + # on Irix 5.2, according to T.E. Dickey. + # The functions gethostbyname, getservbyname, and inet_addr are + # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. +- { echo "$as_me:$LINENO: checking for gethostbyname" >&5 +-echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for gethostbyname" >&5 ++$as_echo_n "checking for gethostbyname... " >&6; } + if test "${ac_cv_func_gethostbyname+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -29482,37 +30235,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_gethostbyname=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_gethostbyname=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5 +-echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5 ++$as_echo "$ac_cv_func_gethostbyname" >&6; } + + if test $ac_cv_func_gethostbyname = no; then +- { echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 +-echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 ++$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } + if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lnsl $LIBS" +@@ -29544,41 +30301,45 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_nsl_gethostbyname=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_nsl_gethostbyname=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 +-echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 ++$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } + if test $ac_cv_lib_nsl_gethostbyname = yes; then + X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" + fi + + if test $ac_cv_lib_nsl_gethostbyname = no; then +- { echo "$as_me:$LINENO: checking for gethostbyname in -lbsd" >&5 +-echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for gethostbyname in -lbsd" >&5 ++$as_echo_n "checking for gethostbyname in -lbsd... " >&6; } + if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lbsd $LIBS" +@@ -29610,32 +30371,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_bsd_gethostbyname=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_bsd_gethostbyname=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_gethostbyname" >&5 +-echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_gethostbyname" >&5 ++$as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } + if test $ac_cv_lib_bsd_gethostbyname = yes; then + X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" + fi +@@ -29650,10 +30415,10 @@ fi + # variants that don't use the name server (or something). -lsocket + # must be given before -lnsl if both are needed. We assume that + # if connect needs -lnsl, so does gethostbyname. +- { echo "$as_me:$LINENO: checking for connect" >&5 +-echo $ECHO_N "checking for connect... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for connect" >&5 ++$as_echo_n "checking for connect... " >&6; } + if test "${ac_cv_func_connect+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -29706,37 +30471,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_connect=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_connect=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5 +-echo "${ECHO_T}$ac_cv_func_connect" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5 ++$as_echo "$ac_cv_func_connect" >&6; } + + if test $ac_cv_func_connect = no; then +- { echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 +-echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 ++$as_echo_n "checking for connect in -lsocket... " >&6; } + if test "${ac_cv_lib_socket_connect+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsocket $X_EXTRA_LIBS $LIBS" +@@ -29768,32 +30537,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_socket_connect=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_socket_connect=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5 +-echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5 ++$as_echo "$ac_cv_lib_socket_connect" >&6; } + if test $ac_cv_lib_socket_connect = yes; then + X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" + fi +@@ -29801,10 +30574,10 @@ fi + fi + + # Guillermo Gomez says -lposix is necessary on A/UX. +- { echo "$as_me:$LINENO: checking for remove" >&5 +-echo $ECHO_N "checking for remove... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for remove" >&5 ++$as_echo_n "checking for remove... " >&6; } + if test "${ac_cv_func_remove+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -29857,37 +30630,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_remove=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_remove=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5 +-echo "${ECHO_T}$ac_cv_func_remove" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5 ++$as_echo "$ac_cv_func_remove" >&6; } + + if test $ac_cv_func_remove = no; then +- { echo "$as_me:$LINENO: checking for remove in -lposix" >&5 +-echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for remove in -lposix" >&5 ++$as_echo_n "checking for remove in -lposix... " >&6; } + if test "${ac_cv_lib_posix_remove+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lposix $LIBS" +@@ -29919,32 +30696,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_posix_remove=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_posix_remove=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_posix_remove" >&5 +-echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_posix_remove" >&5 ++$as_echo "$ac_cv_lib_posix_remove" >&6; } + if test $ac_cv_lib_posix_remove = yes; then + X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" + fi +@@ -29952,10 +30733,10 @@ fi + fi + + # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. +- { echo "$as_me:$LINENO: checking for shmat" >&5 +-echo $ECHO_N "checking for shmat... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for shmat" >&5 ++$as_echo_n "checking for shmat... " >&6; } + if test "${ac_cv_func_shmat+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -30008,37 +30789,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_shmat=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_shmat=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5 +-echo "${ECHO_T}$ac_cv_func_shmat" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5 ++$as_echo "$ac_cv_func_shmat" >&6; } + + if test $ac_cv_func_shmat = no; then +- { echo "$as_me:$LINENO: checking for shmat in -lipc" >&5 +-echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for shmat in -lipc" >&5 ++$as_echo_n "checking for shmat in -lipc... " >&6; } + if test "${ac_cv_lib_ipc_shmat+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lipc $LIBS" +@@ -30070,32 +30855,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_ipc_shmat=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ipc_shmat=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_ipc_shmat" >&5 +-echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ipc_shmat" >&5 ++$as_echo "$ac_cv_lib_ipc_shmat" >&6; } + if test $ac_cv_lib_ipc_shmat = yes; then + X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" + fi +@@ -30112,10 +30901,10 @@ fi + # These have to be linked with before -lX11, unlike the other + # libraries we check for below, so use a different variable. + # John Interrante, Karl Berry +- { echo "$as_me:$LINENO: checking for IceConnectionNumber in -lICE" >&5 +-echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for IceConnectionNumber in -lICE" >&5 ++$as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; } + if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lICE $X_EXTRA_LIBS $LIBS" +@@ -30147,32 +30936,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_ICE_IceConnectionNumber=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ICE_IceConnectionNumber=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +-echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 ++$as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } + if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then + X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" + fi +@@ -30182,10 +30975,10 @@ fi + fi + + +-{ echo "$as_me:$LINENO: checking for gethostbyname" >&5 +-echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for gethostbyname" >&5 ++$as_echo_n "checking for gethostbyname... " >&6; } + if test "${ac_cv_func_gethostbyname+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -30238,39 +31031,43 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_gethostbyname=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_gethostbyname=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5 +-echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5 ++$as_echo "$ac_cv_func_gethostbyname" >&6; } + if test $ac_cv_func_gethostbyname = yes; then + : + else + +-{ echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 +-echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 ++$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } + if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lnsl $LIBS" +@@ -30302,32 +31099,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_nsl_gethostbyname=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_nsl_gethostbyname=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 +-echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 ++$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } + if test $ac_cv_lib_nsl_gethostbyname = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBNSL 1 +@@ -30339,10 +31140,10 @@ fi + + fi + +-{ echo "$as_me:$LINENO: checking for connect" >&5 +-echo $ECHO_N "checking for connect... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for connect" >&5 ++$as_echo_n "checking for connect... " >&6; } + if test "${ac_cv_func_connect+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -30395,39 +31196,43 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_connect=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_connect=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5 +-echo "${ECHO_T}$ac_cv_func_connect" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5 ++$as_echo "$ac_cv_func_connect" >&6; } + if test $ac_cv_func_connect = yes; then + : + else + +-{ echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 +-echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 ++$as_echo_n "checking for connect in -lsocket... " >&6; } + if test "${ac_cv_lib_socket_connect+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsocket $LIBS" +@@ -30459,32 +31264,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_socket_connect=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_socket_connect=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5 +-echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5 ++$as_echo "$ac_cv_lib_socket_connect" >&6; } + if test $ac_cv_lib_socket_connect = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBSOCKET 1 +@@ -30496,10 +31305,10 @@ fi + + fi + +-{ echo "$as_me:$LINENO: checking for inet_aton" >&5 +-echo $ECHO_N "checking for inet_aton... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for inet_aton" >&5 ++$as_echo_n "checking for inet_aton... " >&6; } + if test "${ac_cv_func_inet_aton+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -30552,39 +31361,43 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_func_inet_aton=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_func_inet_aton=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_inet_aton" >&5 +-echo "${ECHO_T}$ac_cv_func_inet_aton" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_inet_aton" >&5 ++$as_echo "$ac_cv_func_inet_aton" >&6; } + if test $ac_cv_func_inet_aton = yes; then + : + else + +-{ echo "$as_me:$LINENO: checking for inet_aton in -lresolv" >&5 +-echo $ECHO_N "checking for inet_aton in -lresolv... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for inet_aton in -lresolv" >&5 ++$as_echo_n "checking for inet_aton in -lresolv... " >&6; } + if test "${ac_cv_lib_resolv_inet_aton+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lresolv $LIBS" +@@ -30616,32 +31429,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_resolv_inet_aton=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_resolv_inet_aton=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_inet_aton" >&5 +-echo "${ECHO_T}$ac_cv_lib_resolv_inet_aton" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_inet_aton" >&5 ++$as_echo "$ac_cv_lib_resolv_inet_aton" >&6; } + if test $ac_cv_lib_resolv_inet_aton = yes; then + cat >>confdefs.h <<_ACEOF + #define HAVE_LIBRESOLV 1 +@@ -30658,17 +31475,17 @@ fi + saved_CPPFLAGS="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS $X_CFLAGS" + test -z "$with_xauth" && { if test "${ac_cv_header_X11_Xauth_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for X11/Xauth.h" >&5 +-echo $ECHO_N "checking for X11/Xauth.h... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for X11/Xauth.h" >&5 ++$as_echo_n "checking for X11/Xauth.h... " >&6; } + if test "${ac_cv_header_X11_Xauth_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_X11_Xauth_h" >&5 +-echo "${ECHO_T}$ac_cv_header_X11_Xauth_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_X11_Xauth_h" >&5 ++$as_echo "$ac_cv_header_X11_Xauth_h" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking X11/Xauth.h usability" >&5 +-echo $ECHO_N "checking X11/Xauth.h usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking X11/Xauth.h usability" >&5 ++$as_echo_n "checking X11/Xauth.h usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30684,32 +31501,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking X11/Xauth.h presence" >&5 +-echo $ECHO_N "checking X11/Xauth.h presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking X11/Xauth.h presence" >&5 ++$as_echo_n "checking X11/Xauth.h presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30723,51 +31541,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: X11/Xauth.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: X11/Xauth.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: X11/Xauth.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: X11/Xauth.h: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: X11/Xauth.h: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: X11/Xauth.h: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: X11/Xauth.h: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: X11/Xauth.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: X11/Xauth.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: X11/Xauth.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: X11/Xauth.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: X11/Xauth.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: X11/Xauth.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: X11/Xauth.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: X11/Xauth.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: X11/Xauth.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: X11/Xauth.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: X11/Xauth.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: X11/Xauth.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: X11/Xauth.h: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: X11/Xauth.h: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: X11/Xauth.h: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: X11/Xauth.h: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: X11/Xauth.h: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: X11/Xauth.h: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: X11/Xauth.h: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: X11/Xauth.h: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: X11/Xauth.h: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: X11/Xauth.h: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: X11/Xauth.h: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: X11/Xauth.h: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: X11/Xauth.h: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -30776,15 +31595,15 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for X11/Xauth.h" >&5 +-echo $ECHO_N "checking for X11/Xauth.h... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for X11/Xauth.h" >&5 ++$as_echo_n "checking for X11/Xauth.h... " >&6; } + if test "${ac_cv_header_X11_Xauth_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_cv_header_X11_Xauth_h=$ac_header_preproc + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_X11_Xauth_h" >&5 +-echo "${ECHO_T}$ac_cv_header_X11_Xauth_h" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_X11_Xauth_h" >&5 ++$as_echo "$ac_cv_header_X11_Xauth_h" >&6; } + + fi + if test $ac_cv_header_X11_Xauth_h = yes; then +@@ -30794,10 +31613,10 @@ else + fi + + } +-test -z "$with_xauth" && { { echo "$as_me:$LINENO: checking for XauGetAuthByAddr in -lXau" >&5 +-echo $ECHO_N "checking for XauGetAuthByAddr in -lXau... $ECHO_C" >&6; } ++test -z "$with_xauth" && { { $as_echo "$as_me:$LINENO: checking for XauGetAuthByAddr in -lXau" >&5 ++$as_echo_n "checking for XauGetAuthByAddr in -lXau... " >&6; } + if test "${ac_cv_lib_Xau_XauGetAuthByAddr+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lXau $X_LIBS $LIBS" +@@ -30829,32 +31648,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_lib_Xau_XauGetAuthByAddr=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_Xau_XauGetAuthByAddr=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_Xau_XauGetAuthByAddr" >&5 +-echo "${ECHO_T}$ac_cv_lib_Xau_XauGetAuthByAddr" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xau_XauGetAuthByAddr" >&5 ++$as_echo "$ac_cv_lib_Xau_XauGetAuthByAddr" >&6; } + if test $ac_cv_lib_Xau_XauGetAuthByAddr = yes; then + : + else +@@ -30894,20 +31717,21 @@ for ac_header in fcntl.h sys/param.h sys + mnttab.h mntent.h sys/statvfs.h sys/vfs.h sys/mount.h \ + sys/filsys.h sys/fs_types.h sys/fs/s5param.h + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ++as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + else + # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 ++$as_echo_n "checking $ac_header usability... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30923,32 +31747,33 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } + + # Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 ++$as_echo_n "checking $ac_header presence... " >&6; } + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -30962,51 +31787,52 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no + fi + + rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } + + # So? What about this header? + case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 ++$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 ++$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( cat <<\_ASBOX + ## ---------------------------------------------------------------------- ## + ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## +@@ -31015,21 +31841,23 @@ _ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 ++$as_echo_n "checking for $ac_header... " >&6; } + if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ac_res=`eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++if test `eval 'as_val=${'$as_ac_Header'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -31059,11 +31887,11 @@ for ac_func in bcopy endgrent endpwent f + getcwd getmntinfo gettimeofday isascii lchown \ + listmntent memcpy mkfifo strchr strerror strrchr vprintf + do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ++as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 ++$as_echo_n "checking for $ac_func... " >&6; } + if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -31116,35 +31944,41 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ac_res=`eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` ++ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++if test `eval 'as_val=${'$as_ac_var'} ++ $as_echo "$as_val"'` = yes; then + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -31177,10 +32011,10 @@ list_mounted_fs= + # make sure LIBS contains -lsun (on Irix4) or -lseq (on PTX). + # getmntent is in the standard C library on UNICOS, in -lsun on Irix 4, + # -lseq on Dynix/PTX, -lgen on Unixware. +-{ echo "$as_me:$LINENO: checking for library containing getmntent" >&5 +-echo $ECHO_N "checking for library containing getmntent... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for library containing getmntent" >&5 ++$as_echo_n "checking for library containing getmntent... " >&6; } + if test "${ac_cv_search_getmntent+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + ac_func_search_save_LIBS=$LIBS + cat >conftest.$ac_ext <<_ACEOF +@@ -31218,26 +32052,30 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + ac_cv_search_getmntent=$ac_res + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_getmntent+set}" = set; then +@@ -31252,8 +32090,8 @@ fi + rm conftest.$ac_ext + LIBS=$ac_func_search_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_search_getmntent" >&5 +-echo "${ECHO_T}$ac_cv_search_getmntent" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_getmntent" >&5 ++$as_echo "$ac_cv_search_getmntent" >&6; } + ac_res=$ac_cv_search_getmntent + if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +@@ -31280,10 +32118,10 @@ fi + + if test -z "$list_mounted_fs"; then + # Cray UNICOS 9 +-{ echo "$as_me:$LINENO: checking for listmntent of Cray/Unicos-9" >&5 +-echo $ECHO_N "checking for listmntent of Cray/Unicos-9... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for listmntent of Cray/Unicos-9" >&5 ++$as_echo_n "checking for listmntent of Cray/Unicos-9... " >&6; } + if test "${fu_cv_sys_mounted_cray_listmntent+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + fu_cv_sys_mounted_cray_listmntent=no + cat >conftest.$ac_ext <<_ACEOF +@@ -31309,8 +32147,8 @@ rm -f conftest* + + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_cray_listmntent" >&5 +-echo "${ECHO_T}$fu_cv_sys_mounted_cray_listmntent" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_cray_listmntent" >&5 ++$as_echo "$fu_cv_sys_mounted_cray_listmntent" >&6; } + if test $fu_cv_sys_mounted_cray_listmntent = yes; then + list_mounted_fs=found + +@@ -31328,18 +32166,18 @@ if test $ac_cv_func_getmntent = yes; the + + if test -z "$list_mounted_fs"; then + # 4.3BSD, SunOS, HP-UX, Dynix, Irix +-{ echo "$as_me:$LINENO: checking for one-argument getmntent function" >&5 +-echo $ECHO_N "checking for one-argument getmntent function... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for one-argument getmntent function" >&5 ++$as_echo_n "checking for one-argument getmntent function... " >&6; } + if test "${fu_cv_sys_mounted_getmntent1+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + test $ac_cv_header_mntent_h = yes \ + && fu_cv_sys_mounted_getmntent1=yes \ + || fu_cv_sys_mounted_getmntent1=no + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_getmntent1" >&5 +-echo "${ECHO_T}$fu_cv_sys_mounted_getmntent1" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_getmntent1" >&5 ++$as_echo "$fu_cv_sys_mounted_getmntent1" >&6; } + if test $fu_cv_sys_mounted_getmntent1 = yes; then + list_mounted_fs=found + +@@ -31352,10 +32190,10 @@ fi + + if test -z "$list_mounted_fs"; then + # SVR4 +-{ echo "$as_me:$LINENO: checking for two-argument getmntent function" >&5 +-echo $ECHO_N "checking for two-argument getmntent function... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for two-argument getmntent function" >&5 ++$as_echo_n "checking for two-argument getmntent function... " >&6; } + if test "${fu_cv_sys_mounted_getmntent2+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -31376,8 +32214,8 @@ rm -f conftest* + + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_getmntent2" >&5 +-echo "${ECHO_T}$fu_cv_sys_mounted_getmntent2" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_getmntent2" >&5 ++$as_echo "$fu_cv_sys_mounted_getmntent2" >&6; } + if test $fu_cv_sys_mounted_getmntent2 = yes; then + list_mounted_fs=found + +@@ -31389,8 +32227,8 @@ fi + fi + + if test -z "$list_mounted_fs"; then +-{ { echo "$as_me:$LINENO: error: could not determine how to read list of mounted filesystems" >&5 +-echo "$as_me: error: could not determine how to read list of mounted filesystems" >&2;} ++{ { $as_echo "$as_me:$LINENO: error: could not determine how to read list of mounted filesystems" >&5 ++$as_echo "$as_me: error: could not determine how to read list of mounted filesystems" >&2;} + { (exit 1); exit 1; }; } + fi + +@@ -31398,10 +32236,10 @@ fi + + if test -z "$list_mounted_fs"; then + # DEC Alpha running OSF/1. +-{ echo "$as_me:$LINENO: checking for getfsstat function" >&5 +-echo $ECHO_N "checking for getfsstat function... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for getfsstat function" >&5 ++$as_echo_n "checking for getfsstat function... " >&6; } + if test "${fu_cv_sys_mounted_getsstat+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -31428,32 +32266,36 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + fu_cv_sys_mounted_getsstat=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + fu_cv_sys_mounted_getsstat=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_getsstat" >&5 +-echo "${ECHO_T}$fu_cv_sys_mounted_getsstat" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_getsstat" >&5 ++$as_echo "$fu_cv_sys_mounted_getsstat" >&6; } + if test $fu_cv_sys_mounted_getsstat = yes; then + list_mounted_fs=found + +@@ -31466,10 +32308,10 @@ fi + + if test -z "$list_mounted_fs"; then + # AIX. +-{ echo "$as_me:$LINENO: checking for mntctl function and struct vmount" >&5 +-echo $ECHO_N "checking for mntctl function and struct vmount... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for mntctl function and struct vmount" >&5 ++$as_echo_n "checking for mntctl function and struct vmount... " >&6; } + if test "${fu_cv_sys_mounted_vmount+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -31484,20 +32326,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + fu_cv_sys_mounted_vmount=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + fu_cv_sys_mounted_vmount=no +@@ -31506,8 +32349,8 @@ fi + rm -f conftest.err conftest.$ac_ext + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_vmount" >&5 +-echo "${ECHO_T}$fu_cv_sys_mounted_vmount" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_vmount" >&5 ++$as_echo "$fu_cv_sys_mounted_vmount" >&6; } + if test $fu_cv_sys_mounted_vmount = yes; then + list_mounted_fs=found + +@@ -31520,10 +32363,10 @@ fi + + if test -z "$list_mounted_fs"; then + # SVR3 +-{ echo "$as_me:$LINENO: checking for FIXME existence of three headers" >&5 +-echo $ECHO_N "checking for FIXME existence of three headers... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for FIXME existence of three headers" >&5 ++$as_echo_n "checking for FIXME existence of three headers... " >&6; } + if test "${fu_cv_sys_mounted_fread_fstyp+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -31541,20 +32384,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + fu_cv_sys_mounted_fread_fstyp=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + fu_cv_sys_mounted_fread_fstyp=no +@@ -31563,8 +32407,8 @@ fi + rm -f conftest.err conftest.$ac_ext + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_fread_fstyp" >&5 +-echo "${ECHO_T}$fu_cv_sys_mounted_fread_fstyp" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_fread_fstyp" >&5 ++$as_echo "$fu_cv_sys_mounted_fread_fstyp" >&6; } + if test $fu_cv_sys_mounted_fread_fstyp = yes; then + list_mounted_fs=found + +@@ -31577,10 +32421,10 @@ fi + + if test -z "$list_mounted_fs"; then + # 4.4BSD and DEC OSF/1. +-{ echo "$as_me:$LINENO: checking for getmntinfo function" >&5 +-echo $ECHO_N "checking for getmntinfo function... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for getmntinfo function" >&5 ++$as_echo_n "checking for getmntinfo function... " >&6; } + if test "${fu_cv_sys_mounted_getmntinfo+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + + ok= +@@ -31607,8 +32451,8 @@ test -n "$ok" \ + + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_getmntinfo" >&5 +-echo "${ECHO_T}$fu_cv_sys_mounted_getmntinfo" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_getmntinfo" >&5 ++$as_echo "$fu_cv_sys_mounted_getmntinfo" >&6; } + if test $fu_cv_sys_mounted_getmntinfo = yes; then + list_mounted_fs=found + +@@ -31623,10 +32467,10 @@ fi + + if test -z "$list_mounted_fs"; then + # Ultrix +-{ echo "$as_me:$LINENO: checking for getmnt function" >&5 +-echo $ECHO_N "checking for getmnt function... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for getmnt function" >&5 ++$as_echo_n "checking for getmnt function... " >&6; } + if test "${fu_cv_sys_mounted_getmnt+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -31643,20 +32487,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + fu_cv_sys_mounted_getmnt=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + fu_cv_sys_mounted_getmnt=no +@@ -31665,8 +32510,8 @@ fi + rm -f conftest.err conftest.$ac_ext + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_getmnt" >&5 +-echo "${ECHO_T}$fu_cv_sys_mounted_getmnt" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_getmnt" >&5 ++$as_echo "$fu_cv_sys_mounted_getmnt" >&6; } + if test $fu_cv_sys_mounted_getmnt = yes; then + list_mounted_fs=found + +@@ -31679,10 +32524,10 @@ fi + + if test -z "$list_mounted_fs"; then + # SVR2 +-{ echo "$as_me:$LINENO: checking whether it is possible to resort to fread on /etc/mnttab" >&5 +-echo $ECHO_N "checking whether it is possible to resort to fread on /etc/mnttab... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking whether it is possible to resort to fread on /etc/mnttab" >&5 ++$as_echo_n "checking whether it is possible to resort to fread on /etc/mnttab... " >&6; } + if test "${fu_cv_sys_mounted_fread+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -31697,20 +32542,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + fu_cv_sys_mounted_fread=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + fu_cv_sys_mounted_fread=no +@@ -31719,8 +32565,8 @@ fi + rm -f conftest.err conftest.$ac_ext + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_fread" >&5 +-echo "${ECHO_T}$fu_cv_sys_mounted_fread" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_mounted_fread" >&5 ++$as_echo "$fu_cv_sys_mounted_fread" >&6; } + if test $fu_cv_sys_mounted_fread = yes; then + list_mounted_fs=found + +@@ -31732,15 +32578,15 @@ fi + fi + + if test -z "$list_mounted_fs"; then +-{ { echo "$as_me:$LINENO: error: could not determine how to read list of mounted filesystems" >&5 +-echo "$as_me: error: could not determine how to read list of mounted filesystems" >&2;} ++{ { $as_echo "$as_me:$LINENO: error: could not determine how to read list of mounted filesystems" >&5 ++$as_echo "$as_me: error: could not determine how to read list of mounted filesystems" >&2;} + { (exit 1); exit 1; }; } + # FIXME -- no need to abort building the whole package + # Cannot build mountlist.c or anything that needs its functions + fi + +-{ echo "$as_me:$LINENO: checking how to get filesystem space usage..." >&5 +-echo "$as_me: checking how to get filesystem space usage..." >&6;} ++{ $as_echo "$as_me:$LINENO: checking how to get filesystem space usage..." >&5 ++$as_echo "$as_me: checking how to get filesystem space usage..." >&6;} + space=no + + # Perform only the link test since it seems there are no variants of the +@@ -31751,10 +32597,10 @@ space=no + # is what it gets when this test fails. + if test $space = no; then + # SVR4 +-{ echo "$as_me:$LINENO: checking statvfs function (SVR4)" >&5 +-echo $ECHO_N "checking statvfs function (SVR4)... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking statvfs function (SVR4)" >&5 ++$as_echo_n "checking statvfs function (SVR4)... " >&6; } + if test "${fu_cv_sys_stat_statvfs+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -31778,31 +32624,35 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ $as_test_x conftest$ac_exeext ++ }; then + fu_cv_sys_stat_statvfs=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + fu_cv_sys_stat_statvfs=no + fi + ++rm -rf conftest.dSYM + rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statvfs" >&5 +-echo "${ECHO_T}$fu_cv_sys_stat_statvfs" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statvfs" >&5 ++$as_echo "$fu_cv_sys_stat_statvfs" >&6; } + if test $fu_cv_sys_stat_statvfs = yes; then + space=yes + +@@ -31815,10 +32665,10 @@ fi + + if test $space = no; then + # DEC Alpha running OSF/1 +-{ echo "$as_me:$LINENO: checking for 3-argument statfs function (DEC OSF/1)" >&5 +-echo $ECHO_N "checking for 3-argument statfs function (DEC OSF/1)... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for 3-argument statfs function (DEC OSF/1)" >&5 ++$as_echo_n "checking for 3-argument statfs function (DEC OSF/1)... " >&6; } + if test "${fu_cv_sys_stat_statfs3_osf1+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then + fu_cv_sys_stat_statfs3_osf1=no +@@ -31846,37 +32696,40 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + fu_cv_sys_stat_statfs3_osf1=yes + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++$as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + fu_cv_sys_stat_statfs3_osf1=no + fi ++rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs3_osf1" >&5 +-echo "${ECHO_T}$fu_cv_sys_stat_statfs3_osf1" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs3_osf1" >&5 ++$as_echo "$fu_cv_sys_stat_statfs3_osf1" >&6; } + if test $fu_cv_sys_stat_statfs3_osf1 = yes; then + space=yes + +@@ -31889,10 +32742,10 @@ fi + + if test $space = no; then + # AIX +-{ echo "$as_me:$LINENO: checking for two-argument statfs with statfs.bsize member (AIX, 4.3BSD)" >&5 +-echo $ECHO_N "checking for two-argument statfs with statfs.bsize member (AIX, 4.3BSD)... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for two-argument statfs with statfs.bsize member (AIX, 4.3BSD)" >&5 ++$as_echo_n "checking for two-argument statfs with statfs.bsize member (AIX, 4.3BSD)... " >&6; } + if test "${fu_cv_sys_stat_statfs2_bsize+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then + fu_cv_sys_stat_statfs2_bsize=no +@@ -31926,37 +32779,40 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + fu_cv_sys_stat_statfs2_bsize=yes + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++$as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + fu_cv_sys_stat_statfs2_bsize=no + fi ++rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs2_bsize" >&5 +-echo "${ECHO_T}$fu_cv_sys_stat_statfs2_bsize" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs2_bsize" >&5 ++$as_echo "$fu_cv_sys_stat_statfs2_bsize" >&6; } + if test $fu_cv_sys_stat_statfs2_bsize = yes; then + space=yes + +@@ -31969,10 +32825,10 @@ fi + + if test $space = no; then + # SVR3 +-{ echo "$as_me:$LINENO: checking for four-argument statfs (AIX-3.2.5, SVR3)" >&5 +-echo $ECHO_N "checking for four-argument statfs (AIX-3.2.5, SVR3)... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for four-argument statfs (AIX-3.2.5, SVR3)" >&5 ++$as_echo_n "checking for four-argument statfs (AIX-3.2.5, SVR3)... " >&6; } + if test "${fu_cv_sys_stat_statfs4+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then + fu_cv_sys_stat_statfs4=no +@@ -31997,37 +32853,40 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + fu_cv_sys_stat_statfs4=yes + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++$as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + fu_cv_sys_stat_statfs4=no + fi ++rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs4" >&5 +-echo "${ECHO_T}$fu_cv_sys_stat_statfs4" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs4" >&5 ++$as_echo "$fu_cv_sys_stat_statfs4" >&6; } + if test $fu_cv_sys_stat_statfs4 = yes; then + space=yes + +@@ -32040,10 +32899,10 @@ fi + + if test $space = no; then + # 4.4BSD and NetBSD +-{ echo "$as_me:$LINENO: checking for two-argument statfs with statfs.fsize member (4.4BSD and NetBSD)" >&5 +-echo $ECHO_N "checking for two-argument statfs with statfs.fsize member (4.4BSD and NetBSD)... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for two-argument statfs with statfs.fsize member (4.4BSD and NetBSD)" >&5 ++$as_echo_n "checking for two-argument statfs with statfs.fsize member (4.4BSD and NetBSD)... " >&6; } + if test "${fu_cv_sys_stat_statfs2_fsize+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then + fu_cv_sys_stat_statfs2_fsize=no +@@ -32074,37 +32933,40 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + fu_cv_sys_stat_statfs2_fsize=yes + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++$as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + fu_cv_sys_stat_statfs2_fsize=no + fi ++rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs2_fsize" >&5 +-echo "${ECHO_T}$fu_cv_sys_stat_statfs2_fsize" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_statfs2_fsize" >&5 ++$as_echo "$fu_cv_sys_stat_statfs2_fsize" >&6; } + if test $fu_cv_sys_stat_statfs2_fsize = yes; then + space=yes + +@@ -32117,10 +32979,10 @@ fi + + if test $space = no; then + # Ultrix +-{ echo "$as_me:$LINENO: checking for two-argument statfs with struct fs_data (Ultrix)" >&5 +-echo $ECHO_N "checking for two-argument statfs with struct fs_data (Ultrix)... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for two-argument statfs with struct fs_data (Ultrix)" >&5 ++$as_echo_n "checking for two-argument statfs with struct fs_data (Ultrix)... " >&6; } + if test "${fu_cv_sys_stat_fs_data+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then + fu_cv_sys_stat_fs_data=no +@@ -32155,37 +33017,40 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + fu_cv_sys_stat_fs_data=yes + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++$as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ( exit $ac_status ) + fu_cv_sys_stat_fs_data=no + fi ++rm -rf conftest.dSYM + rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + + + fi + +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_stat_fs_data" >&5 +-echo "${ECHO_T}$fu_cv_sys_stat_fs_data" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_stat_fs_data" >&5 ++$as_echo "$fu_cv_sys_stat_fs_data" >&6; } + if test $fu_cv_sys_stat_fs_data = yes; then + space=yes + +@@ -32211,13 +33076,14 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err +@@ -32229,7 +33095,7 @@ _ACEOF + + space=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + +@@ -32247,10 +33113,10 @@ fi + # Check for SunOS statfs brokenness wrt partitions 2GB and larger. + # If <sys/vfs.h> exists and struct statfs has a member named f_spare, + # enable the work-around code in fsusage.c. +-{ echo "$as_me:$LINENO: checking for statfs that truncates block counts" >&5 +-echo $ECHO_N "checking for statfs that truncates block counts... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for statfs that truncates block counts" >&5 ++$as_echo_n "checking for statfs that truncates block counts... " >&6; } + if test "${fu_cv_sys_truncating_statfs+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ +@@ -32278,20 +33144,21 @@ case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" ++$as_echo "$ac_try_echo") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + fu_cv_sys_truncating_statfs=yes + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + fu_cv_sys_truncating_statfs=no +@@ -32307,11 +33174,11 @@ cat >>confdefs.h <<\_ACEOF + _ACEOF + + fi +-{ echo "$as_me:$LINENO: result: $fu_cv_sys_truncating_statfs" >&5 +-echo "${ECHO_T}$fu_cv_sys_truncating_statfs" >&6; } ++{ $as_echo "$as_me:$LINENO: result: $fu_cv_sys_truncating_statfs" >&5 ++$as_echo "$fu_cv_sys_truncating_statfs" >&6; } + +-{ echo "$as_me:$LINENO: checking for AFS..." >&5 +-echo "$as_me: checking for AFS..." >&6;} ++{ $as_echo "$as_me:$LINENO: checking for AFS..." >&5 ++$as_echo "$as_me: checking for AFS..." >&6;} + test -d /afs && + cat >>confdefs.h <<\_ACEOF + #define AFS 1 +@@ -32466,32 +33333,32 @@ fi + + if test x$enable_gtk_doc = xyes; then + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk-doc >= 1.4\"") >&5 ++ { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk-doc >= 1.4\"") >&5 + ($PKG_CONFIG --exists --print-errors "gtk-doc >= 1.4") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + : + else +- { { echo "$as_me:$LINENO: error: You need to have gtk-doc >= 1.4 installed to build gtk-doc" >&5 +-echo "$as_me: error: You need to have gtk-doc >= 1.4 installed to build gtk-doc" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: You need to have gtk-doc >= 1.4 installed to build gtk-doc" >&5 ++$as_echo "$as_me: error: You need to have gtk-doc >= 1.4 installed to build gtk-doc" >&2;} + { (exit 1); exit 1; }; } + fi + fi + +- { echo "$as_me:$LINENO: checking whether to build gtk-doc documentation" >&5 +-echo $ECHO_N "checking whether to build gtk-doc documentation... $ECHO_C" >&6; } +- { echo "$as_me:$LINENO: result: $enable_gtk_doc" >&5 +-echo "${ECHO_T}$enable_gtk_doc" >&6; } ++ { $as_echo "$as_me:$LINENO: checking whether to build gtk-doc documentation" >&5 ++$as_echo_n "checking whether to build gtk-doc documentation... " >&6; } ++ { $as_echo "$as_me:$LINENO: result: $enable_gtk_doc" >&5 ++$as_echo "$enable_gtk_doc" >&6; } + + for ac_prog in gtkdoc-check + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } + if test "${ac_cv_path_GTKDOC_CHECK+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ $as_echo_n "(cached) " >&6 + else + case $GTKDOC_CHECK in + [\\/]* | ?:[\\/]*) +@@ -32506,7 +33373,7 @@ do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GTKDOC_CHECK="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +@@ -32518,11 +33385,11 @@ esac + fi + GTKDOC_CHECK=$ac_cv_path_GTKDOC_CHECK + if test -n "$GTKDOC_CHECK"; then +- { echo "$as_me:$LINENO: result: $GTKDOC_CHECK" >&5 +-echo "${ECHO_T}$GTKDOC_CHECK" >&6; } ++ { $as_echo "$as_me:$LINENO: result: $GTKDOC_CHECK" >&5 ++$as_echo "$GTKDOC_CHECK" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:$LINENO: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -32582,11 +33449,12 @@ _ACEOF + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( +- *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 +-echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; ++ *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 ++$as_echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( ++ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) $as_unset $ac_var ;; + esac ;; + esac +@@ -32619,12 +33487,12 @@ echo "$as_me: WARNING: Cache variable $a + if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + test "x$cache_file" != "x/dev/null" && +- { echo "$as_me:$LINENO: updating cache $cache_file" >&5 +-echo "$as_me: updating cache $cache_file" >&6;} ++ { $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5 ++$as_echo "$as_me: updating cache $cache_file" >&6;} + cat confcache >$cache_file + else +- { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 +-echo "$as_me: not updating unwritable cache $cache_file" >&6;} ++ { $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 ++$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi + fi + rm -f confcache +@@ -32640,7 +33508,7 @@ ac_ltlibobjs= + for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' +- ac_i=`echo "$ac_i" | sed "$ac_script"` ++ ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" +@@ -32652,79 +33520,79 @@ LTLIBOBJS=$ac_ltlibobjs + + + if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"AMDEP\" was never defined. ++$as_echo "$as_me: error: conditional \"AMDEP\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. ++$as_echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. ++$as_echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. ++$as_echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${CROSS_COMPILING_TRUE}" && test -z "${CROSS_COMPILING_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"CROSS_COMPILING\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"CROSS_COMPILING\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"CROSS_COMPILING\" was never defined. ++$as_echo "$as_me: error: conditional \"CROSS_COMPILING\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${EXAMPLES_TRUE}" && test -z "${EXAMPLES_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"EXAMPLES\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"EXAMPLES\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"EXAMPLES\" was never defined. ++$as_echo "$as_me: error: conditional \"EXAMPLES\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${HACKER_MODE_TRUE}" && test -z "${HACKER_MODE_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"HACKER_MODE\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"HACKER_MODE\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"HACKER_MODE\" was never defined. ++$as_echo "$as_me: error: conditional \"HACKER_MODE\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${LIBGTOP_SMP_TRUE}" && test -z "${LIBGTOP_SMP_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"LIBGTOP_SMP\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"LIBGTOP_SMP\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"LIBGTOP_SMP\" was never defined. ++$as_echo "$as_me: error: conditional \"LIBGTOP_SMP\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${NEED_LIBGTOP_TRUE}" && test -z "${NEED_LIBGTOP_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"NEED_LIBGTOP\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"NEED_LIBGTOP\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"NEED_LIBGTOP\" was never defined. ++$as_echo "$as_me: error: conditional \"NEED_LIBGTOP\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${LIBGTOP_SYSDEPS_PRIVATE_MOUNTLIST_TRUE}" && test -z "${LIBGTOP_SYSDEPS_PRIVATE_MOUNTLIST_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"LIBGTOP_SYSDEPS_PRIVATE_MOUNTLIST\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"LIBGTOP_SYSDEPS_PRIVATE_MOUNTLIST\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"LIBGTOP_SYSDEPS_PRIVATE_MOUNTLIST\" was never defined. ++$as_echo "$as_me: error: conditional \"LIBGTOP_SYSDEPS_PRIVATE_MOUNTLIST\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${LIBGTOP_SYSDEPS_PRIVATE_FSUSAGE_TRUE}" && test -z "${LIBGTOP_SYSDEPS_PRIVATE_FSUSAGE_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"LIBGTOP_SYSDEPS_PRIVATE_FSUSAGE\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"LIBGTOP_SYSDEPS_PRIVATE_FSUSAGE\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"LIBGTOP_SYSDEPS_PRIVATE_FSUSAGE\" was never defined. ++$as_echo "$as_me: error: conditional \"LIBGTOP_SYSDEPS_PRIVATE_FSUSAGE\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi +@@ -32733,26 +33601,27 @@ fi + + + if test -z "${ENABLE_GTK_DOC_TRUE}" && test -z "${ENABLE_GTK_DOC_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"ENABLE_GTK_DOC\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_GTK_DOC\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"ENABLE_GTK_DOC\" was never defined. ++$as_echo "$as_me: error: conditional \"ENABLE_GTK_DOC\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + if test -z "${GTK_DOC_USE_LIBTOOL_TRUE}" && test -z "${GTK_DOC_USE_LIBTOOL_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. ++ { { $as_echo "$as_me:$LINENO: error: conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. ++$as_echo "$as_me: error: conditional \"GTK_DOC_USE_LIBTOOL\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi + + : ${CONFIG_STATUS=./config.status} ++ac_write_fail=0 + ac_clean_files_save=$ac_clean_files + ac_clean_files="$ac_clean_files $CONFIG_STATUS" +-{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 +-echo "$as_me: creating $CONFIG_STATUS" >&6;} +-cat >$CONFIG_STATUS <<_ACEOF ++{ $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 ++$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} ++cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + #! $SHELL + # Generated by $as_me. + # Run this file to recreate the current configuration. +@@ -32765,7 +33634,7 @@ ac_cs_silent=false + SHELL=\${CONFIG_SHELL-$SHELL} + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + ## --------------------- ## + ## M4sh Initialization. ## + ## --------------------- ## +@@ -32775,7 +33644,7 @@ DUALCASE=1; export DUALCASE # for MKS sh + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +@@ -32797,17 +33666,45 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTE + as_cr_digits='0123456789' + as_cr_alnum=$as_cr_Letters$as_cr_digits + ++as_nl=' ++' ++export as_nl ++# Printing a long string crashes Solaris 7 /usr/bin/printf. ++as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ++as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo ++as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo ++if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='printf %s\n' ++ as_echo_n='printf %s' ++else ++ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then ++ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ++ as_echo_n='/usr/ucb/echo -n' ++ else ++ as_echo_body='eval expr "X$1" : "X\\(.*\\)"' ++ as_echo_n_body='eval ++ arg=$1; ++ case $arg in ++ *"$as_nl"*) ++ expr "X$arg" : "X\\(.*\\)$as_nl"; ++ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; ++ esac; ++ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ++ ' ++ export as_echo_n_body ++ as_echo_n='sh -c $as_echo_n_body as_echo' ++ fi ++ export as_echo_body ++ as_echo='sh -c $as_echo_body as_echo' ++fi ++ + # The user is always right. + if test "${PATH_SEPARATOR+set}" != set; then +- echo "#! /bin/sh" >conf$$.sh +- echo "exit 0" >>conf$$.sh +- chmod +x conf$$.sh +- if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then +- PATH_SEPARATOR=';' +- else +- PATH_SEPARATOR=: +- fi +- rm -f conf$$.sh ++ PATH_SEPARATOR=: ++ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { ++ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || ++ PATH_SEPARATOR=';' ++ } + fi + + # Support unset when possible. +@@ -32823,8 +33720,6 @@ fi + # there to prevent editors from complaining about space-tab. + # (If _AS_PATH_WALK were called with IFS unset, it would disable word + # splitting by setting IFS to empty value.) +-as_nl=' +-' + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. +@@ -32847,7 +33742,7 @@ if test "x$as_myself" = x; then + as_myself=$0 + fi + if test ! -f "$as_myself"; then +- echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ++ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + { (exit 1); exit 1; } + fi + +@@ -32860,17 +33755,10 @@ PS2='> ' + PS4='+ ' + + # NLS nuisances. +-for as_var in \ +- LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ +- LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ +- LC_TELEPHONE LC_TIME +-do +- if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then +- eval $as_var=C; export $as_var +- else +- ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +- fi +-done ++LC_ALL=C ++export LC_ALL ++LANGUAGE=C ++export LANGUAGE + + # Required to use basename. + if expr a : '\(a\)' >/dev/null 2>&1 && +@@ -32892,7 +33780,7 @@ as_me=`$as_basename -- "$0" || + $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +-echo X/"$0" | ++$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q +@@ -32943,7 +33831,7 @@ $as_unset CDPATH + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || +- { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 ++ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 + { (exit 1); exit 1; }; } + + # Don't try to exec as it changes $[0], causing all sort of problems +@@ -32971,7 +33859,6 @@ case `echo -n x` in + *) + ECHO_N='-n';; + esac +- + if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +@@ -32984,19 +33871,22 @@ if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file + else + rm -f conf$$.dir +- mkdir conf$$.dir ++ mkdir conf$$.dir 2>/dev/null + fi +-echo >conf$$.file +-if ln -s conf$$.file conf$$ 2>/dev/null; then +- as_ln_s='ln -s' +- # ... but there are two gotchas: +- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. +- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. +- # In both cases, we have to default to `cp -p'. +- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || ++if (echo >conf$$.file) 2>/dev/null; then ++ if ln -s conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s='ln -s' ++ # ... but there are two gotchas: ++ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ++ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ++ # In both cases, we have to default to `cp -p'. ++ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || ++ as_ln_s='cp -p' ++ elif ln conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s=ln ++ else + as_ln_s='cp -p' +-elif ln conf$$.file conf$$ 2>/dev/null; then +- as_ln_s=ln ++ fi + else + as_ln_s='cp -p' + fi +@@ -33021,10 +33911,10 @@ else + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then +- test -d "$1/."; ++ test -d "$1/."; + else + case $1 in +- -*)set "./$1";; ++ -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + ???[sx]*):;;*)false;;esac;fi +@@ -33047,7 +33937,7 @@ exec 6>&1 + # values after options handling. + ac_log=" + This file was extended by libgtop $as_me 2.22.3, which was +-generated by GNU Autoconf 2.61. Invocation command line was ++generated by GNU Autoconf 2.62. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS +@@ -33060,7 +33950,7 @@ on `(hostname || uname -n) 2>/dev/null | + + _ACEOF + +-cat >>$CONFIG_STATUS <<_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + # Files that config.status was made for. + config_files="$ac_config_files" + config_headers="$ac_config_headers" +@@ -33068,7 +33958,7 @@ config_commands="$ac_config_commands" + + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + ac_cs_usage="\ + \`$as_me' instantiates files from templates according to the + current configuration. +@@ -33081,9 +33971,9 @@ Usage: $0 [OPTIONS] [FILE]... + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] +- instantiate the configuration file FILE ++ instantiate the configuration file FILE + --header=FILE[:TEMPLATE] +- instantiate the configuration header FILE ++ instantiate the configuration header FILE + + Configuration files: + $config_files +@@ -33097,24 +33987,25 @@ $config_commands + Report bugs to <bug-autoconf@gnu.org>." + + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_cs_version="\\ + libgtop config.status 2.22.3 +-configured by $0, generated by GNU Autoconf 2.61, +- with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" ++configured by $0, generated by GNU Autoconf 2.62, ++ with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" + +-Copyright (C) 2006 Free Software Foundation, Inc. ++Copyright (C) 2008 Free Software Foundation, Inc. + This config.status script is free software; the Free Software Foundation + gives unlimited permission to copy, distribute and modify it." + + ac_pwd='$ac_pwd' + srcdir='$srcdir' + INSTALL='$INSTALL' ++AWK='$AWK' ++test -n "\$AWK" || AWK=awk + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF +-# If no file are specified by the user, then we need to provide default +-# value. By we need to know if files were specified by the user. ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++# The default lists apply if the user does not specify any file. + ac_need_defaults=: + while test $# != 0 + do +@@ -33136,30 +34027,36 @@ do + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) +- echo "$ac_cs_version"; exit ;; ++ $as_echo "$ac_cs_version"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift +- CONFIG_FILES="$CONFIG_FILES $ac_optarg" ++ case $ac_optarg in ++ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ esac ++ CONFIG_FILES="$CONFIG_FILES '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift +- CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ++ case $ac_optarg in ++ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ esac ++ CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header +- { echo "$as_me: error: ambiguous option: $1 ++ { $as_echo "$as_me: error: ambiguous option: $1 + Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; };; + --help | --hel | -h ) +- echo "$ac_cs_usage"; exit ;; ++ $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. +- -*) { echo "$as_me: error: unrecognized option: $1 ++ -*) { $as_echo "$as_me: error: unrecognized option: $1 + Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; } ;; + +@@ -33178,27 +34075,29 @@ if $ac_cs_silent; then + fi + + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + if \$ac_cs_recheck; then +- echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 +- CONFIG_SHELL=$SHELL ++ set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion ++ shift ++ \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 ++ CONFIG_SHELL='$SHELL' + export CONFIG_SHELL +- exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion ++ exec "\$@" + fi + + _ACEOF +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + exec 5>>config.log + { + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX + ## Running $as_me. ## + _ASBOX +- echo "$ac_log" ++ $as_echo "$ac_log" + } >&5 + + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + # + # INIT-COMMANDS + # +@@ -33207,7 +34106,7 @@ AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac + + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + + # Handling of arguments. + for ac_config_target in $ac_config_targets +@@ -33245,8 +34144,8 @@ do + "libgtopconfig.h") CONFIG_FILES="$CONFIG_FILES libgtopconfig.h" ;; + "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;; + +- *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 +-echo "$as_me: error: invalid argument: $ac_config_target" >&2;} ++ *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 ++$as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;} + { (exit 1); exit 1; }; };; + esac + done +@@ -33287,357 +34186,143 @@ $debug || + (umask 077 && mkdir "$tmp") + } || + { +- echo "$me: cannot create a temporary directory in ." >&2 ++ $as_echo "$as_me: cannot create a temporary directory in ." >&2 + { (exit 1); exit 1; } + } + +-# +-# Set up the sed scripts for CONFIG_FILES section. +-# +- +-# No need to generate the scripts if there are no CONFIG_FILES. +-# This happens for instance when ./config.status config.h ++# Set up the scripts for CONFIG_FILES section. ++# No need to generate them if there are no CONFIG_FILES. ++# This happens for instance with `./config.status config.h'. + if test -n "$CONFIG_FILES"; then + +-_ACEOF +- + +- +-ac_delim='%!_!# ' +-for ac_last_try in false false false false false :; do +- cat >conf$$subs.sed <<_ACEOF +-SHELL!$SHELL$ac_delim +-PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim +-PACKAGE_NAME!$PACKAGE_NAME$ac_delim +-PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim +-PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim +-PACKAGE_STRING!$PACKAGE_STRING$ac_delim +-PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim +-exec_prefix!$exec_prefix$ac_delim +-prefix!$prefix$ac_delim +-program_transform_name!$program_transform_name$ac_delim +-bindir!$bindir$ac_delim +-sbindir!$sbindir$ac_delim +-libexecdir!$libexecdir$ac_delim +-datarootdir!$datarootdir$ac_delim +-datadir!$datadir$ac_delim +-sysconfdir!$sysconfdir$ac_delim +-sharedstatedir!$sharedstatedir$ac_delim +-localstatedir!$localstatedir$ac_delim +-includedir!$includedir$ac_delim +-oldincludedir!$oldincludedir$ac_delim +-docdir!$docdir$ac_delim +-infodir!$infodir$ac_delim +-htmldir!$htmldir$ac_delim +-dvidir!$dvidir$ac_delim +-pdfdir!$pdfdir$ac_delim +-psdir!$psdir$ac_delim +-libdir!$libdir$ac_delim +-localedir!$localedir$ac_delim +-mandir!$mandir$ac_delim +-DEFS!$DEFS$ac_delim +-ECHO_C!$ECHO_C$ac_delim +-ECHO_N!$ECHO_N$ac_delim +-ECHO_T!$ECHO_T$ac_delim +-LIBS!$LIBS$ac_delim +-build_alias!$build_alias$ac_delim +-host_alias!$host_alias$ac_delim +-target_alias!$target_alias$ac_delim +-build!$build$ac_delim +-build_cpu!$build_cpu$ac_delim +-build_vendor!$build_vendor$ac_delim +-build_os!$build_os$ac_delim +-host!$host$ac_delim +-host_cpu!$host_cpu$ac_delim +-host_vendor!$host_vendor$ac_delim +-host_os!$host_os$ac_delim +-target!$target$ac_delim +-target_cpu!$target_cpu$ac_delim +-target_vendor!$target_vendor$ac_delim +-target_os!$target_os$ac_delim +-INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim +-INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim +-INSTALL_DATA!$INSTALL_DATA$ac_delim +-CYGPATH_W!$CYGPATH_W$ac_delim +-PACKAGE!$PACKAGE$ac_delim +-VERSION!$VERSION$ac_delim +-ACLOCAL!$ACLOCAL$ac_delim +-AUTOCONF!$AUTOCONF$ac_delim +-AUTOMAKE!$AUTOMAKE$ac_delim +-AUTOHEADER!$AUTOHEADER$ac_delim +-MAKEINFO!$MAKEINFO$ac_delim +-install_sh!$install_sh$ac_delim +-STRIP!$STRIP$ac_delim +-INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim +-mkdir_p!$mkdir_p$ac_delim +-AWK!$AWK$ac_delim +-SET_MAKE!$SET_MAKE$ac_delim +-am__leading_dot!$am__leading_dot$ac_delim +-AMTAR!$AMTAR$ac_delim +-am__tar!$am__tar$ac_delim +-am__untar!$am__untar$ac_delim +-ACLOCAL_AMFLAGS!$ACLOCAL_AMFLAGS$ac_delim +-LIBGTOP_MAJOR_VERSION!$LIBGTOP_MAJOR_VERSION$ac_delim +-LIBGTOP_MINOR_VERSION!$LIBGTOP_MINOR_VERSION$ac_delim +-LIBGTOP_MICRO_VERSION!$LIBGTOP_MICRO_VERSION$ac_delim +-LIBGTOP_SERVER_VERSION!$LIBGTOP_SERVER_VERSION$ac_delim +-LIBGTOP_VERSION!$LIBGTOP_VERSION$ac_delim +-LIBGTOP_VERSION_CODE!$LIBGTOP_VERSION_CODE$ac_delim +-LT_VERSION_INFO!$LT_VERSION_INFO$ac_delim +-CC!$CC$ac_delim +-CFLAGS!$CFLAGS$ac_delim +-LDFLAGS!$LDFLAGS$ac_delim +-CPPFLAGS!$CPPFLAGS$ac_delim +-ac_ct_CC!$ac_ct_CC$ac_delim +-EXEEXT!$EXEEXT$ac_delim +-OBJEXT!$OBJEXT$ac_delim +-DEPDIR!$DEPDIR$ac_delim +-am__include!$am__include$ac_delim +-am__quote!$am__quote$ac_delim +-AMDEP_TRUE!$AMDEP_TRUE$ac_delim +-AMDEP_FALSE!$AMDEP_FALSE$ac_delim +-AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim +-CCDEPMODE!$CCDEPMODE$ac_delim +-am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim +-am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim +-CPP!$CPP$ac_delim +-GREP!$GREP$ac_delim +-EGREP!$EGREP$ac_delim +-_ACEOF +- +- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then +- break +- elif $ac_last_try; then +- { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } +- else +- ac_delim="$ac_delim!$ac_delim _$ac_delim!! " +- fi +-done +- +-ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` +-if test -n "$ac_eof"; then +- ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` +- ac_eof=`expr $ac_eof + 1` ++ac_cr='
' ++ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` ++if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ++ ac_cs_awk_cr='\\r' ++else ++ ac_cs_awk_cr=$ac_cr + fi + +-cat >>$CONFIG_STATUS <<_ACEOF +-cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof +-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +-_ACEOF +-sed ' +-s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g +-s/^/s,@/; s/!/@,|#_!!_#|/ +-:n +-t n +-s/'"$ac_delim"'$/,g/; t +-s/$/\\/; p +-N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n +-' >>$CONFIG_STATUS <conf$$subs.sed +-rm -f conf$$subs.sed +-cat >>$CONFIG_STATUS <<_ACEOF +-CEOF$ac_eof ++echo 'BEGIN {' >"$tmp/subs1.awk" && + _ACEOF + + ++{ ++ echo "cat >conf$$subs.awk <<_ACEOF" && ++ echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && ++ echo "_ACEOF" ++} >conf$$subs.sh || ++ { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 ++$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} ++ { (exit 1); exit 1; }; } ++ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` + ac_delim='%!_!# ' + for ac_last_try in false false false false false :; do +- cat >conf$$subs.sed <<_ACEOF +-libgtop_top_builddir!$libgtop_top_builddir$ac_delim +-PERL!$PERL$ac_delim +-RANLIB!$RANLIB$ac_delim +-AS!$AS$ac_delim +-AR!$AR$ac_delim +-LN_S!$LN_S$ac_delim +-SED!$SED$ac_delim +-ECHO!$ECHO$ac_delim +-DSYMUTIL!$DSYMUTIL$ac_delim +-NMEDIT!$NMEDIT$ac_delim +-CXX!$CXX$ac_delim +-CXXFLAGS!$CXXFLAGS$ac_delim +-ac_ct_CXX!$ac_ct_CXX$ac_delim +-CXXDEPMODE!$CXXDEPMODE$ac_delim +-am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim +-am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim +-CXXCPP!$CXXCPP$ac_delim +-F77!$F77$ac_delim +-FFLAGS!$FFLAGS$ac_delim +-ac_ct_F77!$ac_ct_F77$ac_delim +-LIBTOOL!$LIBTOOL$ac_delim +-CROSS_COMPILING_TRUE!$CROSS_COMPILING_TRUE$ac_delim +-CROSS_COMPILING_FALSE!$CROSS_COMPILING_FALSE$ac_delim +-libgtop_sysdeps_dir!$libgtop_sysdeps_dir$ac_delim +-libgtop_use_machine_h!$libgtop_use_machine_h$ac_delim +-libgtop_need_server!$libgtop_need_server$ac_delim +-EXAMPLES_TRUE!$EXAMPLES_TRUE$ac_delim +-EXAMPLES_FALSE!$EXAMPLES_FALSE$ac_delim +-HACKER_MODE_TRUE!$HACKER_MODE_TRUE$ac_delim +-HACKER_MODE_FALSE!$HACKER_MODE_FALSE$ac_delim +-LIBGTOP_SMP_TRUE!$LIBGTOP_SMP_TRUE$ac_delim +-LIBGTOP_SMP_FALSE!$LIBGTOP_SMP_FALSE$ac_delim +-libgtop_postinstall!$libgtop_postinstall$ac_delim +-libgtop_have_sysinfo!$libgtop_have_sysinfo$ac_delim +-KVM_LIBS!$KVM_LIBS$ac_delim +-EXTRA_SYSDEPS_LIBS!$EXTRA_SYSDEPS_LIBS$ac_delim +-NEED_LIBGTOP_TRUE!$NEED_LIBGTOP_TRUE$ac_delim +-NEED_LIBGTOP_FALSE!$NEED_LIBGTOP_FALSE$ac_delim +-LIBGTOP_SYSDEPS_PRIVATE_MOUNTLIST_TRUE!$LIBGTOP_SYSDEPS_PRIVATE_MOUNTLIST_TRUE$ac_delim +-LIBGTOP_SYSDEPS_PRIVATE_MOUNTLIST_FALSE!$LIBGTOP_SYSDEPS_PRIVATE_MOUNTLIST_FALSE$ac_delim +-LIBGTOP_SYSDEPS_PRIVATE_FSUSAGE_TRUE!$LIBGTOP_SYSDEPS_PRIVATE_FSUSAGE_TRUE$ac_delim +-LIBGTOP_SYSDEPS_PRIVATE_FSUSAGE_FALSE!$LIBGTOP_SYSDEPS_PRIVATE_FSUSAGE_FALSE$ac_delim +-PKG_CONFIG!$PKG_CONFIG$ac_delim +-GLIB_CFLAGS!$GLIB_CFLAGS$ac_delim +-GLIB_LIBS!$GLIB_LIBS$ac_delim +-LIBOBJS!$LIBOBJS$ac_delim +-DL_LIB!$DL_LIB$ac_delim +-ALLOCA!$ALLOCA$ac_delim +-INTLTOOL_UPDATE!$INTLTOOL_UPDATE$ac_delim +-INTLTOOL_MERGE!$INTLTOOL_MERGE$ac_delim +-INTLTOOL_EXTRACT!$INTLTOOL_EXTRACT$ac_delim +-INTLTOOL_DESKTOP_RULE!$INTLTOOL_DESKTOP_RULE$ac_delim +-INTLTOOL_DIRECTORY_RULE!$INTLTOOL_DIRECTORY_RULE$ac_delim +-INTLTOOL_KEYS_RULE!$INTLTOOL_KEYS_RULE$ac_delim +-INTLTOOL_PROP_RULE!$INTLTOOL_PROP_RULE$ac_delim +-INTLTOOL_OAF_RULE!$INTLTOOL_OAF_RULE$ac_delim +-INTLTOOL_PONG_RULE!$INTLTOOL_PONG_RULE$ac_delim +-INTLTOOL_SERVER_RULE!$INTLTOOL_SERVER_RULE$ac_delim +-INTLTOOL_SHEET_RULE!$INTLTOOL_SHEET_RULE$ac_delim +-INTLTOOL_SOUNDLIST_RULE!$INTLTOOL_SOUNDLIST_RULE$ac_delim +-INTLTOOL_UI_RULE!$INTLTOOL_UI_RULE$ac_delim +-INTLTOOL_XAM_RULE!$INTLTOOL_XAM_RULE$ac_delim +-INTLTOOL_KBD_RULE!$INTLTOOL_KBD_RULE$ac_delim +-INTLTOOL_XML_RULE!$INTLTOOL_XML_RULE$ac_delim +-INTLTOOL_XML_NOMERGE_RULE!$INTLTOOL_XML_NOMERGE_RULE$ac_delim +-INTLTOOL_CAVES_RULE!$INTLTOOL_CAVES_RULE$ac_delim +-INTLTOOL_SCHEMAS_RULE!$INTLTOOL_SCHEMAS_RULE$ac_delim +-INTLTOOL_THEME_RULE!$INTLTOOL_THEME_RULE$ac_delim +-INTLTOOL_SERVICE_RULE!$INTLTOOL_SERVICE_RULE$ac_delim +-INTLTOOL_POLICY_RULE!$INTLTOOL_POLICY_RULE$ac_delim +-XGETTEXT!$XGETTEXT$ac_delim +-MSGMERGE!$MSGMERGE$ac_delim +-MSGFMT!$MSGFMT$ac_delim +-INTLTOOL_PERL!$INTLTOOL_PERL$ac_delim +-ALL_LINGUAS!$ALL_LINGUAS$ac_delim +-DATADIRNAME!$DATADIRNAME$ac_delim +-GETTEXT_PACKAGE!$GETTEXT_PACKAGE$ac_delim +-USE_NLS!$USE_NLS$ac_delim +-MSGFMT_OPTS!$MSGFMT_OPTS$ac_delim +-GMSGFMT!$GMSGFMT$ac_delim +-CATALOGS!$CATALOGS$ac_delim +-CATOBJEXT!$CATOBJEXT$ac_delim +-GMOFILES!$GMOFILES$ac_delim +-INSTOBJEXT!$INSTOBJEXT$ac_delim +-INTLLIBS!$INTLLIBS$ac_delim +-PO_IN_DATADIR_TRUE!$PO_IN_DATADIR_TRUE$ac_delim +-PO_IN_DATADIR_FALSE!$PO_IN_DATADIR_FALSE$ac_delim +-POFILES!$POFILES$ac_delim +-POSUB!$POSUB$ac_delim +-MKINSTALLDIRS!$MKINSTALLDIRS$ac_delim +-XMKMF!$XMKMF$ac_delim +-X_CFLAGS!$X_CFLAGS$ac_delim +-X_PRE_LIBS!$X_PRE_LIBS$ac_delim +-X_LIBS!$X_LIBS$ac_delim +-X_EXTRA_LIBS!$X_EXTRA_LIBS$ac_delim +-libs_xauth!$libs_xauth$ac_delim +-sysdeps_dir!$sysdeps_dir$ac_delim +-_ACEOF ++ . ./conf$$subs.sh || ++ { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 ++$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} ++ { (exit 1); exit 1; }; } + +- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then ++ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` = $ac_delim_num; then + break + elif $ac_last_try; then +- { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 ++$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} + { (exit 1); exit 1; }; } + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi + done ++rm -f conf$$subs.sh + +-ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` +-if test -n "$ac_eof"; then +- ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` +- ac_eof=`expr $ac_eof + 1` +-fi +- +-cat >>$CONFIG_STATUS <<_ACEOF +-cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof +-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +-_ACEOF +-sed ' +-s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g +-s/^/s,@/; s/!/@,|#_!!_#|/ +-:n +-t n +-s/'"$ac_delim"'$/,g/; t +-s/$/\\/; p +-N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n +-' >>$CONFIG_STATUS <conf$$subs.sed +-rm -f conf$$subs.sed +-cat >>$CONFIG_STATUS <<_ACEOF +-CEOF$ac_eof ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++cat >>"\$tmp/subs1.awk" <<\\_ACAWK && + _ACEOF ++sed -n ' ++h ++s/^/S["/; s/!.*/"]=/ ++p ++g ++s/^[^!]*!// ++:repl ++t repl ++s/'"$ac_delim"'$// ++t delim ++:nl ++h ++s/\(.\{148\}\).*/\1/ ++t more1 ++s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ ++p ++n ++b repl ++:more1 ++s/["\\]/\\&/g; s/^/"/; s/$/"\\/ ++p ++g ++s/.\{148\}// ++t nl ++:delim ++h ++s/\(.\{148\}\).*/\1/ ++t more2 ++s/["\\]/\\&/g; s/^/"/; s/$/"/ ++p ++b ++:more2 ++s/["\\]/\\&/g; s/^/"/; s/$/"\\/ ++p ++g ++s/.\{148\}// ++t delim ++' <conf$$subs.awk | sed ' ++/^[^""]/{ ++ N ++ s/\n// ++} ++' >>$CONFIG_STATUS || ac_write_fail=1 ++rm -f conf$$subs.awk ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++_ACAWK ++cat >>"\$tmp/subs1.awk" <<_ACAWK && ++ for (key in S) S_is_set[key] = 1 ++ FS = "" + ++} ++{ ++ line = $ 0 ++ nfields = split(line, field, "@") ++ substed = 0 ++ len = length(field[1]) ++ for (i = 2; i < nfields; i++) { ++ key = field[i] ++ keylen = length(key) ++ if (S_is_set[key]) { ++ value = S[key] ++ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) ++ len += length(value) + length(field[++i]) ++ substed = 1 ++ } else ++ len += 1 + keylen ++ } + +-ac_delim='%!_!# ' +-for ac_last_try in false false false false false :; do +- cat >conf$$subs.sed <<_ACEOF +-machine_incs!$machine_incs$ac_delim +-INCLUDES!$INCLUDES$ac_delim +-LIBGTOP_EXTRA_LIBS!$LIBGTOP_EXTRA_LIBS$ac_delim +-LIBGTOP_LIBS!$LIBGTOP_LIBS$ac_delim +-LIBGTOP_INCS!$LIBGTOP_INCS$ac_delim +-LIBGTOP_BINDIR!$LIBGTOP_BINDIR$ac_delim +-LIBGTOP_SERVER!$LIBGTOP_SERVER$ac_delim +-sysdeps_suid_lib!$sysdeps_suid_lib$ac_delim +-server_programs!$server_programs$ac_delim +-HTML_DIR!$HTML_DIR$ac_delim +-GTKDOC_CHECK!$GTKDOC_CHECK$ac_delim +-ENABLE_GTK_DOC_TRUE!$ENABLE_GTK_DOC_TRUE$ac_delim +-ENABLE_GTK_DOC_FALSE!$ENABLE_GTK_DOC_FALSE$ac_delim +-GTK_DOC_USE_LIBTOOL_TRUE!$GTK_DOC_USE_LIBTOOL_TRUE$ac_delim +-GTK_DOC_USE_LIBTOOL_FALSE!$GTK_DOC_USE_LIBTOOL_FALSE$ac_delim +-LTLIBOBJS!$LTLIBOBJS$ac_delim +-_ACEOF ++ print line ++} + +- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 16; then +- break +- elif $ac_last_try; then +- { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} ++_ACAWK ++_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then ++ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" ++else ++ cat ++fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ ++ || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5 ++$as_echo "$as_me: error: could not setup config files machinery" >&2;} + { (exit 1); exit 1; }; } +- else +- ac_delim="$ac_delim!$ac_delim _$ac_delim!! " +- fi +-done +- +-ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` +-if test -n "$ac_eof"; then +- ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` +- ac_eof=`expr $ac_eof + 1` +-fi +- +-cat >>$CONFIG_STATUS <<_ACEOF +-cat >"\$tmp/subs-3.sed" <<\CEOF$ac_eof +-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end +-_ACEOF +-sed ' +-s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g +-s/^/s,@/; s/!/@,|#_!!_#|/ +-:n +-t n +-s/'"$ac_delim"'$/,g/; t +-s/$/\\/; p +-N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n +-' >>$CONFIG_STATUS <conf$$subs.sed +-rm -f conf$$subs.sed +-cat >>$CONFIG_STATUS <<_ACEOF +-:end +-s/|#_!!_#|//g +-CEOF$ac_eof + _ACEOF + +- + # VPATH may cause trouble with some makes, so we remove $(srcdir), + # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and + # trailing colons and then remove the whole line if VPATH becomes empty +@@ -33653,19 +34338,133 @@ s/^[^=]*=[ ]*$// + }' + fi + +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + fi # test -n "$CONFIG_FILES" + ++# Set up the scripts for CONFIG_HEADERS section. ++# No need to generate them if there are no CONFIG_HEADERS. ++# This happens for instance with `./config.status Makefile'. ++if test -n "$CONFIG_HEADERS"; then ++cat >"$tmp/defines.awk" <<\_ACAWK || ++BEGIN { ++_ACEOF ++ ++# Transform confdefs.h into an awk script `defines.awk', embedded as ++# here-document in config.status, that substitutes the proper values into ++# config.h.in to produce config.h. ++ ++# Create a delimiter string that does not exist in confdefs.h, to ease ++# handling of long lines. ++ac_delim='%!_!# ' ++for ac_last_try in false false :; do ++ ac_t=`sed -n "/$ac_delim/p" confdefs.h` ++ if test -z "$ac_t"; then ++ break ++ elif $ac_last_try; then ++ { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_HEADERS" >&5 ++$as_echo "$as_me: error: could not make $CONFIG_HEADERS" >&2;} ++ { (exit 1); exit 1; }; } ++ else ++ ac_delim="$ac_delim!$ac_delim _$ac_delim!! " ++ fi ++done ++ ++# For the awk script, D is an array of macro values keyed by name, ++# likewise P contains macro parameters if any. Preserve backslash ++# newline sequences. ++ ++ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* ++sed -n ' ++s/.\{148\}/&'"$ac_delim"'/g ++t rset ++:rset ++s/^[ ]*#[ ]*define[ ][ ]*/ / ++t def ++d ++:def ++s/\\$// ++t bsnl ++s/["\\]/\\&/g ++s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ ++D["\1"]=" \3"/p ++s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p ++d ++:bsnl ++s/["\\]/\\&/g ++s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ ++D["\1"]=" \3\\\\\\n"\\/p ++t cont ++s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p ++t cont ++d ++:cont ++n ++s/.\{148\}/&'"$ac_delim"'/g ++t clear ++:clear ++s/\\$// ++t bsnlc ++s/["\\]/\\&/g; s/^/"/; s/$/"/p ++d ++:bsnlc ++s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p ++b cont ++' <confdefs.h | sed ' ++s/'"$ac_delim"'/"\\\ ++"/g' >>$CONFIG_STATUS || ac_write_fail=1 ++ ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++ for (key in D) D_is_set[key] = 1 ++ FS = "" ++} ++/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { ++ line = \$ 0 ++ split(line, arg, " ") ++ if (arg[1] == "#") { ++ defundef = arg[2] ++ mac1 = arg[3] ++ } else { ++ defundef = substr(arg[1], 2) ++ mac1 = arg[2] ++ } ++ split(mac1, mac2, "(") #) ++ macro = mac2[1] ++ if (D_is_set[macro]) { ++ # Preserve the white space surrounding the "#". ++ prefix = substr(line, 1, index(line, defundef) - 1) ++ print prefix "define", macro P[macro] D[macro] ++ next ++ } else { ++ # Replace #undef with comments. This is necessary, for example, ++ # in the case of _POSIX_SOURCE, which is predefined and required ++ # on some systems where configure will not decide to define it. ++ if (defundef == "undef") { ++ print "/*", line, "*/" ++ next ++ } ++ } ++} ++{ print } ++_ACAWK ++_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++ { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5 ++$as_echo "$as_me: error: could not setup config headers machinery" >&2;} ++ { (exit 1); exit 1; }; } ++fi # test -n "$CONFIG_HEADERS" ++ + +-for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS ++eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" ++shift ++for ac_tag + do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; +- :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 +-echo "$as_me: error: Invalid tag $ac_tag." >&2;} ++ :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 ++$as_echo "$as_me: error: Invalid tag $ac_tag." >&2;} + { (exit 1); exit 1; }; };; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; +@@ -33694,26 +34493,38 @@ echo "$as_me: error: Invalid tag $ac_tag + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || +- { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 +-echo "$as_me: error: cannot find input file: $ac_f" >&2;} ++ { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 ++$as_echo "$as_me: error: cannot find input file: $ac_f" >&2;} + { (exit 1); exit 1; }; };; + esac +- ac_file_inputs="$ac_file_inputs $ac_f" ++ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac ++ ac_file_inputs="$ac_file_inputs '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ +- configure_input="Generated from "`IFS=: +- echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." ++ configure_input='Generated from '` ++ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' ++ `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" +- { echo "$as_me:$LINENO: creating $ac_file" >&5 +-echo "$as_me: creating $ac_file" >&6;} ++ { $as_echo "$as_me:$LINENO: creating $ac_file" >&5 ++$as_echo "$as_me: creating $ac_file" >&6;} + fi ++ # Neutralize special characters interpreted by sed in replacement strings. ++ case $configure_input in #( ++ *\&* | *\|* | *\\* ) ++ ac_sed_conf_input=`$as_echo "$configure_input" | ++ sed 's/[\\\\&|]/\\\\&/g'`;; #( ++ *) ac_sed_conf_input=$configure_input;; ++ esac + + case $ac_tag in +- *:-:* | *:-) cat >"$tmp/stdin";; ++ *:-:* | *:-) cat >"$tmp/stdin" \ ++ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 ++$as_echo "$as_me: error: could not create $ac_file" >&2;} ++ { (exit 1); exit 1; }; } ;; + esac + ;; + esac +@@ -33723,7 +34534,7 @@ $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$ac_file" | ++$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -33749,7 +34560,7 @@ echo X"$ac_file" | + as_dirs= + while :; do + case $as_dir in #( +- *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( ++ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" +@@ -33758,7 +34569,7 @@ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$as_dir" | ++$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -33779,17 +34590,17 @@ echo X"$as_dir" | + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" +- } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +-echo "$as_me: error: cannot create directory $as_dir" >&2;} ++ } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 ++$as_echo "$as_me: error: cannot create directory $as_dir" >&2;} + { (exit 1); exit 1; }; }; } + ac_builddir=. + + case "$ac_dir" in + .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) +- ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ++ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. +- ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` ++ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; +@@ -33829,12 +34640,13 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_ + esac + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + # If the template does not know about datarootdir, expand it. + # FIXME: This hack should be removed a few years after 2.60. + ac_datarootdir_hack=; ac_datarootdir_seen= + +-case `sed -n '/datarootdir/ { ++ac_sed_dataroot=' ++/datarootdir/ { + p + q + } +@@ -33843,13 +34655,14 @@ case `sed -n '/datarootdir/ { + /@infodir@/p + /@localedir@/p + /@mandir@/p +-' $ac_file_inputs` in ++' ++case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in + *datarootdir*) ac_datarootdir_seen=yes;; + *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) +- { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +-echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 ++$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g +@@ -33863,15 +34676,16 @@ _ACEOF + # Neutralize VPATH when `$srcdir' = `.'. + # Shell code in configure.ac might set extrasub. + # FIXME: do we really want to maintain this feature? +-cat >>$CONFIG_STATUS <<_ACEOF +- sed "$ac_vpsub ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++ac_sed_extra="$ac_vpsub + $extrasub + _ACEOF +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + :t + /@[a-zA-Z_][a-zA-Z_0-9]*@/!b +-s&@configure_input@&$configure_input&;t t ++s|@configure_input@|$ac_sed_conf_input|;t t + s&@top_builddir@&$ac_top_builddir_sub&;t t ++s&@top_build_prefix@&$ac_top_build_prefix&;t t + s&@srcdir@&$ac_srcdir&;t t + s&@abs_srcdir@&$ac_abs_srcdir&;t t + s&@top_srcdir@&$ac_top_srcdir&;t t +@@ -33881,135 +34695,74 @@ s&@abs_builddir@&$ac_abs_builddir&;t t + s&@abs_top_builddir@&$ac_abs_top_builddir&;t t + s&@INSTALL@&$ac_INSTALL&;t t + $ac_datarootdir_hack +-" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" | sed -f "$tmp/subs-3.sed" >$tmp/out ++" ++eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ ++ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 ++$as_echo "$as_me: error: could not create $ac_file" >&2;} ++ { (exit 1); exit 1; }; } + + test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && +- { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++ { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' + which seems to be undefined. Please make sure it is defined." >&5 +-echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' + which seems to be undefined. Please make sure it is defined." >&2;} + + rm -f "$tmp/stdin" + case $ac_file in +- -) cat "$tmp/out"; rm -f "$tmp/out";; +- *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; +- esac ++ -) cat "$tmp/out" && rm -f "$tmp/out";; ++ *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; ++ esac \ ++ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 ++$as_echo "$as_me: error: could not create $ac_file" >&2;} ++ { (exit 1); exit 1; }; } + ;; + :H) + # + # CONFIG_HEADER + # +-_ACEOF +- +-# Transform confdefs.h into a sed script `conftest.defines', that +-# substitutes the proper values into config.h.in to produce config.h. +-rm -f conftest.defines conftest.tail +-# First, append a space to every undef/define line, to ease matching. +-echo 's/$/ /' >conftest.defines +-# Then, protect against being on the right side of a sed subst, or in +-# an unquoted here document, in config.status. If some macros were +-# called several times there might be several #defines for the same +-# symbol, which is useless. But do not sort them, since the last +-# AC_DEFINE must be honored. +-ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +-# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where +-# NAME is the cpp macro being defined, VALUE is the value it is being given. +-# PARAMS is the parameter list in the macro definition--in most cases, it's +-# just an empty string. +-ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' +-ac_dB='\\)[ (].*,\\1define\\2' +-ac_dC=' ' +-ac_dD=' ,' +- +-uniq confdefs.h | +- sed -n ' +- t rset +- :rset +- s/^[ ]*#[ ]*define[ ][ ]*// +- t ok +- d +- :ok +- s/[\\&,]/\\&/g +- s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p +- s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p +- ' >>conftest.defines +- +-# Remove the space that was appended to ease matching. +-# Then replace #undef with comments. This is necessary, for +-# example, in the case of _POSIX_SOURCE, which is predefined and required +-# on some systems where configure will not decide to define it. +-# (The regexp can be short, since the line contains either #define or #undef.) +-echo 's/ $// +-s,^[ #]*u.*,/* & */,' >>conftest.defines +- +-# Break up conftest.defines: +-ac_max_sed_lines=50 +- +-# First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" +-# Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" +-# Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" +-# et cetera. +-ac_in='$ac_file_inputs' +-ac_out='"$tmp/out1"' +-ac_nxt='"$tmp/out2"' +- +-while : +-do +- # Write a here document: +- cat >>$CONFIG_STATUS <<_ACEOF +- # First, check the format of the line: +- cat >"\$tmp/defines.sed" <<\\CEOF +-/^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def +-/^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def +-b +-:def +-_ACEOF +- sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS +- echo 'CEOF +- sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS +- ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in +- sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail +- grep . conftest.tail >/dev/null || break +- rm -f conftest.defines +- mv conftest.tail conftest.defines +-done +-rm -f conftest.defines conftest.tail +- +-echo "ac_result=$ac_in" >>$CONFIG_STATUS +-cat >>$CONFIG_STATUS <<\_ACEOF + if test x"$ac_file" != x-; then +- echo "/* $configure_input */" >"$tmp/config.h" +- cat "$ac_result" >>"$tmp/config.h" +- if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then +- { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 +-echo "$as_me: $ac_file is unchanged" >&6;} ++ { ++ $as_echo "/* $configure_input */" \ ++ && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" ++ } >"$tmp/config.h" \ ++ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 ++$as_echo "$as_me: error: could not create $ac_file" >&2;} ++ { (exit 1); exit 1; }; } ++ if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then ++ { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5 ++$as_echo "$as_me: $ac_file is unchanged" >&6;} + else +- rm -f $ac_file +- mv "$tmp/config.h" $ac_file ++ rm -f "$ac_file" ++ mv "$tmp/config.h" "$ac_file" \ ++ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 ++$as_echo "$as_me: error: could not create $ac_file" >&2;} ++ { (exit 1); exit 1; }; } + fi + else +- echo "/* $configure_input */" +- cat "$ac_result" ++ $as_echo "/* $configure_input */" \ ++ && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ ++ || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5 ++$as_echo "$as_me: error: could not create -" >&2;} ++ { (exit 1); exit 1; }; } + fi +- rm -f "$tmp/out12" +-# Compute $ac_file's index in $config_headers. ++# Compute "$ac_file"'s index in $config_headers. + _am_stamp_count=1 + for _am_header in $config_headers :; do + case $_am_header in +- $ac_file | $ac_file:* ) ++ "$ac_file" | "$ac_file":* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac + done +-echo "timestamp for $ac_file" >`$as_dirname -- $ac_file || +-$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X$ac_file : 'X\(//\)[^/]' \| \ +- X$ac_file : 'X\(//\)$' \| \ +- X$ac_file : 'X\(/\)' \| . 2>/dev/null || +-echo X$ac_file | ++echo "timestamp for "$ac_file"" >`$as_dirname -- "$ac_file" || ++$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$ac_file" : 'X\(//\)[^/]' \| \ ++ X"$ac_file" : 'X\(//\)$' \| \ ++ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -34029,8 +34782,8 @@ echo X$ac_file | + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + +- :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 +-echo "$as_me: executing $ac_file commands" >&6;} ++ :C) { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5 ++$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + +@@ -34051,7 +34804,7 @@ $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$mf" | ++$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -34095,7 +34848,7 @@ $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$file" | ++$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -34121,7 +34874,7 @@ echo X"$file" | + as_dirs= + while :; do + case $as_dir in #( +- *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( ++ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" +@@ -34130,7 +34883,7 @@ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$as_dir" | ++$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -34151,8 +34904,8 @@ echo X"$as_dir" | + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" +- } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +-echo "$as_me: error: cannot create directory $as_dir" >&2;} ++ } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 ++$as_echo "$as_me: error: cannot create directory $as_dir" >&2;} + { (exit 1); exit 1; }; }; } + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" +@@ -34172,8 +34925,8 @@ done + "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES" + + if test ! -f "po/Makefile"; then +- { { echo "$as_me:$LINENO: error: po/Makefile is not ready." >&5 +-echo "$as_me: error: po/Makefile is not ready." >&2;} ++ { { $as_echo "$as_me:$LINENO: error: po/Makefile is not ready." >&5 ++$as_echo "$as_me: error: po/Makefile is not ready." >&2;} + { (exit 1); exit 1; }; } + fi + mv "po/Makefile" "po/Makefile.tmp" +@@ -34195,6 +34948,11 @@ _ACEOF + chmod +x $CONFIG_STATUS + ac_clean_files=$ac_clean_files_save + ++test $ac_write_fail = 0 || ++ { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5 ++$as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;} ++ { (exit 1); exit 1; }; } ++ + + # configure is writing to config.log, and then calls config.status. + # config.status does its own redirection, appending to config.log. +@@ -34216,4 +34974,8 @@ if test "$no_create" != yes; then + # would make configure fail if this is the last instruction. + $ac_cs_success || { (exit 1); exit 1; } + fi ++if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then ++ { $as_echo "$as_me:$LINENO: WARNING: Unrecognized options: $ac_unrecognized_opts" >&5 ++$as_echo "$as_me: WARNING: Unrecognized options: $ac_unrecognized_opts" >&2;} ++fi + diff --git a/devel/libgtop/files/patch-libgtop-sysdeps.m4 b/devel/libgtop/files/patch-libgtop-sysdeps.m4 new file mode 100644 index 000000000000..0b72b319b545 --- /dev/null +++ b/devel/libgtop/files/patch-libgtop-sysdeps.m4 @@ -0,0 +1,21 @@ +--- libgtop-sysdeps.m4.orig 2008-04-21 14:58:38.000000000 -0400 ++++ libgtop-sysdeps.m4 2008-12-06 16:16:00.000000000 -0500 +@@ -79,6 +79,8 @@ AC_DEFUN([GNOME_LIBGTOP_SYSDEPS],[ + libgtop_sysdeps_dir=freebsd + libgtop_use_machine_h=yes + libgtop_need_server=yes ++ libgtop_sysdeps_private_mountlist=yes ++ libgtop_sysdeps_private_fsusage=yes + libgtop_postinstall='chgrp kmem $(bindir)/libgtop_server2 && chmod 2755 $(bindir)/libgtop_server2' + ;; + solaris*) +@@ -158,6 +160,9 @@ AC_DEFUN([GNOME_LIBGTOP_SYSDEPS],[ + if test -n "${osreldate}" && test ${osreldate} -ge 600000 ; then + EXTRA_SYSDEPS_LIBS="-lgeom -ldevstat" + fi ++ AC_CHECK_LIB(util, kinfo_getfile, ++ [EXTRA_SYSDEPS_LIBS="${EXTRA_SYSDEPS_LIBS} -lutil" ++ AC_DEFINE(HAVE_KINFO_GETFILE, 1, [Define if you have the kinfo_getfile function])], [:]) + ;; + esac + diff --git a/devel/libgtop/files/patch-sysdeps_freebsd_procopenfiles.c b/devel/libgtop/files/patch-sysdeps_freebsd_procopenfiles.c index eefdb3d6acb6..9ca014c1b508 100644 --- a/devel/libgtop/files/patch-sysdeps_freebsd_procopenfiles.c +++ b/devel/libgtop/files/patch-sysdeps_freebsd_procopenfiles.c @@ -1,6 +1,6 @@ ---- sysdeps/freebsd/procopenfiles.c.orig 2007-07-01 09:14:23.000000000 -0400 -+++ sysdeps/freebsd/procopenfiles.c 2008-02-10 02:45:20.000000000 -0500 -@@ -28,6 +28,13 @@ +--- sysdeps/freebsd/procopenfiles.c.orig 2008-12-06 20:43:44.256309000 -0500 ++++ sysdeps/freebsd/procopenfiles.c 2008-12-06 20:44:45.000000000 -0500 +@@ -28,6 +28,16 @@ #include <glibtop/error.h> #include <glibtop/procopenfiles.h> #include <sys/types.h> @@ -11,10 +11,13 @@ +#include <sys/user.h> +#include <netinet/in.h> +#include <arpa/inet.h> ++#ifdef HAVE_KINFO_GETFILE ++#include <libutil.h> ++#endif #include <string.h> #include <stdlib.h> -@@ -46,6 +53,63 @@ _glibtop_init_proc_open_files_s (glibtop +@@ -46,6 +56,63 @@ _glibtop_init_proc_open_files_s (glibtop server->sysdeps.proc_open_files = _glibtop_sysdeps_proc_open_files; } @@ -78,7 +81,7 @@ static GArray * parse_output(const char *output) { GArray *entries; -@@ -159,21 +223,105 @@ parse_output(const char *output) { +@@ -159,21 +226,123 @@ parse_output(const char *output) { return entries; } @@ -89,8 +92,12 @@ { +#if __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) + struct kinfo_file *freep, *kif; ++#ifndef HAVE_KINFO_GETFILE + int name[4]; + size_t len; ++#else ++ int cnt; ++#endif + int i; +#else char *output; @@ -100,6 +107,7 @@ memset(buf, 0, sizeof (glibtop_proc_open_files)); +#if __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) ++#ifndef HAVE_KINFO_GETFILE + name[0] = CTL_KERN; + name[1] = KERN_PROC; + name[2] = KERN_PROC_FILEDESC; @@ -113,12 +121,25 @@ + g_free(freep); + return NULL; + } ++#else ++ freep = kinfo_getfile(pid, &cnt); ++#endif + + entries = g_array_new(FALSE, FALSE, sizeof(glibtop_open_files_entry)); + ++#ifndef HAVE_KINFO_GETFILE + for (i = 0; i < len / sizeof(*kif); i++, kif++) { + glibtop_open_files_entry entry = {0}; + ++ if (kif->kf_structsize != sizeof(*kif)) ++ continue; ++#else ++ for (i = 0; i < cnt; i++) { ++ glibtop_open_files_entry entry = {0}; ++ ++ kif = &freep[i]; ++#endif ++ + if (kif->kf_fd < 0) + continue; + diff --git a/devel/libgtop/files/patch-sysdeps_freebsd_procwd.c b/devel/libgtop/files/patch-sysdeps_freebsd_procwd.c index d6fb5063d399..17d9f5ec1880 100644 --- a/devel/libgtop/files/patch-sysdeps_freebsd_procwd.c +++ b/devel/libgtop/files/patch-sysdeps_freebsd_procwd.c @@ -1,16 +1,19 @@ ---- sysdeps/freebsd/procwd.c.orig 2008-02-09 12:46:32.000000000 -0500 -+++ sysdeps/freebsd/procwd.c 2008-02-09 12:48:24.000000000 -0500 -@@ -24,7 +24,9 @@ +--- sysdeps/freebsd/procwd.c.orig 2008-12-06 20:43:44.256309000 -0500 ++++ sysdeps/freebsd/procwd.c 2008-12-06 20:44:32.000000000 -0500 +@@ -24,7 +24,12 @@ #include <glibtop_private.h> #include <sys/types.h> +#include <sys/sysctl.h> #include <sys/param.h> +#include <sys/user.h> ++#ifdef HAVE_KINFO_GETFILE ++#include <libutil.h> ++#endif #include <string.h> static const unsigned long _glibtop_sysdeps_proc_wd = -@@ -38,6 +40,7 @@ _glibtop_init_proc_wd_s(glibtop *server) +@@ -38,6 +43,7 @@ _glibtop_init_proc_wd_s(glibtop *server) server->sysdeps.proc_wd = _glibtop_sysdeps_proc_wd; } @@ -18,7 +21,7 @@ static GPtrArray * parse_output(const char *output, glibtop_proc_wd *buf) { -@@ -89,12 +92,21 @@ parse_output(const char *output, glibtop +@@ -89,12 +95,25 @@ parse_output(const char *output, glibtop return dirs; } @@ -31,20 +34,25 @@ +#if __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) + struct kinfo_file *freep, *kif; + GPtrArray *dirs; ++#ifndef HAVE_KINFO_GETFILE + size_t len; -+ int i; + int name[4]; +#else ++ int cnt; ++#endif ++ int i; ++#else char *output; +#endif memset (buf, 0, sizeof (glibtop_proc_wd)); -@@ -102,6 +114,43 @@ glibtop_get_proc_wd_s(glibtop *server, g +@@ -102,6 +121,54 @@ glibtop_get_proc_wd_s(glibtop *server, g if (safe_readlink(path, buf->exe, sizeof(buf->exe))) buf->flags |= (1 << GLIBTOP_PROC_WD_EXE); +#if __FreeBSD_version > 800018 || (__FreeBSD_version < 800000 && __FreeBSD_version >= 700104) ++#ifndef HAVE_KINFO_GETFILE + name[0] = CTL_KERN; + name[1] = KERN_PROC; + name[2] = KERN_PROC_FILEDESC; @@ -57,10 +65,20 @@ + g_free(freep); + return NULL; + } ++#else ++ freep = kinfo_getfile(pid, &cnt); ++#endif + + dirs = g_ptr_array_sized_new(1); + ++#ifndef HAVE_KINFO_GETFILE + for (i = 0; i < len / sizeof(*kif); i++, kif++) { ++ if (kif->kf_structsize != sizeof(*kif)) ++ continue; ++#else ++ for (i = 0; i < cnt; i++) { ++ kif = &freep[i]; ++#endif + switch (kif->kf_fd) { + case KF_FD_TYPE_ROOT: + g_strlcpy(buf->root, kif->kf_path, @@ -84,7 +102,7 @@ output = execute_lsof(pid); if (output != NULL) { GPtrArray *dirs; -@@ -116,6 +165,7 @@ glibtop_get_proc_wd_s(glibtop *server, g +@@ -116,6 +183,7 @@ glibtop_get_proc_wd_s(glibtop *server, g return (char **)g_ptr_array_free(dirs, FALSE); } diff --git a/devel/libmonetra/Makefile b/devel/libmonetra/Makefile deleted file mode 100644 index d320519fbc1d..000000000000 --- a/devel/libmonetra/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -# New ports collection makefile for: libmcve -# Date Created: 16 March 2002 -# Whom: Brad House <brad@mcve.com> -# -# $FreeBSD$ -# - -PORTNAME= libmcve -PORTVERSION= 5.2 -CATEGORIES= devel -MASTER_SITES= ftp://ftp.mcve.com/pub/libmonetra/ -DISTNAME= libmonetra-${PORTVERSION} - -MAINTAINER= brad@mcve.com -COMMENT= Library to allow credit card processing through MCVE - -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_LDCONFIG= yes -CONFIGURE_ARGS= --without-pthread - -.include <bsd.port.mk> diff --git a/devel/libmonetra/distinfo b/devel/libmonetra/distinfo deleted file mode 100644 index 485b62d1481c..000000000000 --- a/devel/libmonetra/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (libmonetra-5.2.tar.gz) = be1dd255fd8195fedd95b67276de70fa -SHA256 (libmonetra-5.2.tar.gz) = 1a940083f09d7b27315770fd7b879c4ec2c8eeee941cb7d943edf610bcec42c1 -SIZE (libmonetra-5.2.tar.gz) = 415303 diff --git a/devel/libmonetra/pkg-descr b/devel/libmonetra/pkg-descr deleted file mode 100644 index dc9eca2a8c8d..000000000000 --- a/devel/libmonetra/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -This is the library to allow connections to an MCVE Credit -Card Processing Daemon via SSL, TCP/IP, and drop-files. -It is the base of other APIs including PHP, PERL, and JAVA. - -WWW: http://www.mcve.com - -- Brad House -brad@mcve.com diff --git a/devel/libmonetra/pkg-plist b/devel/libmonetra/pkg-plist deleted file mode 100644 index aa9a9e88ff77..000000000000 --- a/devel/libmonetra/pkg-plist +++ /dev/null @@ -1,14 +0,0 @@ -include/libmonetra_compat.h -include/libmonetra_config.h -include/libmonetra_defines.h -include/libmonetra_legacy.h -include/mcve.h -include/monetra.h -lib/libmcve.a -lib/libmcve.la -lib/libmcve.so -lib/libmcve.so.5 -lib/libmonetra.a -lib/libmonetra.la -lib/libmonetra.so -lib/libmonetra.so.5 diff --git a/devel/linux-f10-allegro/Makefile b/devel/linux-f10-allegro/Makefile deleted file mode 100644 index aecaafecf585..000000000000 --- a/devel/linux-f10-allegro/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: linux-allegro -# Date created: 18 Nov 2003 -# Whom: Pav Lucistnik <pav@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= allegro -PORTVERSION= 4.0.3 -PORTREVISION= 2 -CATEGORIES= devel linux -MASTER_SITES= http://membres.lycos.fr/ebotcazou/allegro/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-1 - -MAINTAINER= freebsd-emulation@FreeBSD.org -COMMENT= Cross-platform game programming library (linux version) - -USE_LINUX_RPM= yes -ONLY_FOR_ARCHS= i386 amd64 -DIST_SUBDIR= rpm -USE_LDCONFIG= yes -USE_XLIB= yes -SRC_DISTFILES= - -MD5_FILE= ${MASTERDIR}/distinfo - -post-extract: - @cd ${WRKSRC}/usr/lib; \ - ${LN} -s liballeg-4.0.3.so liballeg.so.4.0 - -.include <bsd.port.mk> diff --git a/devel/linux-f10-allegro/distinfo b/devel/linux-f10-allegro/distinfo deleted file mode 100644 index ebaf2724fb83..000000000000 --- a/devel/linux-f10-allegro/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (rpm/allegro-4.0.3-1.i386.rpm) = 551dc0c1c6756991daa9e71fd5f73faf -SHA256 (rpm/allegro-4.0.3-1.i386.rpm) = 2efc5a5b523030dac9e77f46fde06b4f3d83e6cd2deb15d5a1ed1b6a5af1851c -SIZE (rpm/allegro-4.0.3-1.i386.rpm) = 484783 diff --git a/devel/linux-f10-allegro/pkg-descr b/devel/linux-f10-allegro/pkg-descr deleted file mode 100644 index 9948d05c3844..000000000000 --- a/devel/linux-f10-allegro/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Allegro is a cross-platform library intended for use in computer games and -other types of multimedia programming. - -WWW: http://www.talula.demon.co.uk/allegro/ diff --git a/devel/linux-f10-allegro/pkg-plist b/devel/linux-f10-allegro/pkg-plist deleted file mode 100644 index 69958d0f2a8f..000000000000 --- a/devel/linux-f10-allegro/pkg-plist +++ /dev/null @@ -1,21 +0,0 @@ -etc/allegrorc -usr/lib/allegro/4.0/alleg-artsdigi.so -usr/lib/allegro/4.0/alleg-dga2.so -usr/lib/allegro/4.0/alleg-fbcon.so -usr/lib/allegro/4.0/alleg-svgalib.so -usr/lib/allegro/4.0/alleg-vga.so -usr/lib/allegro/4.0/modules.lst -usr/lib/liballeg.so.4.0 -usr/lib/liballeg-4.0.3.so -usr/share/allegro/keyboard.dat -usr/share/allegro/language.dat -usr/share/doc/allegro-4.0.3/AUTHORS -usr/share/doc/allegro-4.0.3/CHANGES -usr/share/doc/allegro-4.0.3/linux.txt -usr/share/doc/allegro-4.0.3/readme.txt -usr/share/doc/allegro-4.0.3/THANKS -usr/share/doc/allegro-4.0.3/unix.txt -@dirrm usr/share/doc/allegro-4.0.3 -@dirrm usr/share/allegro -@dirrm usr/lib/allegro/4.0 -@dirrm usr/lib/allegro diff --git a/devel/linux-f10-libglade/Makefile b/devel/linux-f10-libglade/Makefile deleted file mode 100644 index 4c057ecc2c90..000000000000 --- a/devel/linux-f10-libglade/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# New ports collection makefile for: linux-libglade -# Date created: 2001.02.08 -# Whom: taoka@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= libglade -PORTVERSION= 0.17 -PORTREVISION= 1 -CATEGORIES= devel linux -DISTNAME= ${PORTNAME}-${PORTVERSION}-16 - -MAINTAINER= freebsd-emulation@FreeBSD.org -COMMENT= RPM of libglade - -USE_LINUX_RPM= yes -LINUX_DIST_VER= 4 -USE_LDCONFIG= yes -PLIST= pkg-plist.${LINUX_RPM_ARCH} -PLIST_SUB= LIBVERSION="0.4.2" PORTVERSION="${PORTVERSION}" - -.include <bsd.port.mk> diff --git a/devel/linux-f10-libglade/distinfo.i386 b/devel/linux-f10-libglade/distinfo.i386 deleted file mode 100644 index a72fe8987d10..000000000000 --- a/devel/linux-f10-libglade/distinfo.i386 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (rpm/i386/fedora/4/libglade-0.17-16.i386.rpm) = 64d3762dab28f84082b2b2dbe1d9a60f -SHA256 (rpm/i386/fedora/4/libglade-0.17-16.i386.rpm) = 35b111e37a9681aca1de2e3c252f6f4cc8f2db0e20e2f8acb8293928047e94c4 -SIZE (rpm/i386/fedora/4/libglade-0.17-16.i386.rpm) = 99006 -MD5 (rpm/i386/fedora/4/libglade-0.17-16.src.rpm) = 10ae3d09009239324453afc8140a920c -SHA256 (rpm/i386/fedora/4/libglade-0.17-16.src.rpm) = a8a8d545b1af1dce12905f09b343784109752b3f8935f788e3375ad4c9a8604a -SIZE (rpm/i386/fedora/4/libglade-0.17-16.src.rpm) = 431030 diff --git a/devel/linux-f10-libglade/pkg-descr b/devel/linux-f10-libglade/pkg-descr deleted file mode 100644 index 0723084e9621..000000000000 --- a/devel/linux-f10-libglade/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -A port is for libglade rpm. diff --git a/devel/linux-f10-libglade/pkg-plist.i386 b/devel/linux-f10-libglade/pkg-plist.i386 deleted file mode 100644 index 6fd063534468..000000000000 --- a/devel/linux-f10-libglade/pkg-plist.i386 +++ /dev/null @@ -1,10 +0,0 @@ -usr/lib/libglade-gnome.so.%%LIBVERSION%% -usr/lib/libglade.so.%%LIBVERSION%% -usr/share/doc/libglade-%%PORTVERSION%%/AUTHORS -usr/share/doc/libglade-%%PORTVERSION%%/COPYING -usr/share/doc/libglade-%%PORTVERSION%%/ChangeLog -usr/share/doc/libglade-%%PORTVERSION%%/NEWS -usr/share/doc/libglade-%%PORTVERSION%%/README -usr/lib/libglade-gnome.so.0 -usr/lib/libglade.so.0 -@dirrm usr/share/doc/libglade-%%PORTVERSION%% diff --git a/devel/linux-f10-libglade2/Makefile b/devel/linux-f10-libglade2/Makefile deleted file mode 100644 index 23b1d20ad914..000000000000 --- a/devel/linux-f10-libglade2/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -# New ports collection makefile for: linux-libglade2 -# Date created: 2007.09.02 -# Whom: Artem Naluzhnyy <tut@nhamon.com.ua> -# -# $FreeBSD$ -# - -PORTNAME= libglade2 -PORTVERSION= 2.5.1 -CATEGORIES= devel linux -DISTNAME= ${PORTNAME}-${PORTVERSION}-2 - -MAINTAINER= tut@nhamon.com.ua -COMMENT= RPM of libglade2 - -USE_LINUX_RPM= yes -LINUX_DIST_VER= 4 -USE_LDCONFIG= yes -PLIST= pkg-plist.${LINUX_RPM_ARCH} -PLIST_SUB= LIBVERSION="0.0.7" PORTVERSION="${PORTVERSION}" - -.include <bsd.port.mk> diff --git a/devel/linux-f10-libglade2/distinfo.i386 b/devel/linux-f10-libglade2/distinfo.i386 deleted file mode 100644 index 07f5ada4424c..000000000000 --- a/devel/linux-f10-libglade2/distinfo.i386 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (rpm/i386/fedora/4/libglade2-2.5.1-2.i386.rpm) = 24d657ca240c21d8642303ae1fc02588 -SHA256 (rpm/i386/fedora/4/libglade2-2.5.1-2.i386.rpm) = 527c32693ada35329780c8e174c9e393a7c49933f4645fa34f41c6408450f2ea -SIZE (rpm/i386/fedora/4/libglade2-2.5.1-2.i386.rpm) = 94262 -MD5 (rpm/i386/fedora/4/libglade2-2.5.1-2.src.rpm) = bdfe51a3b667bcaf95c2217129ac4b3d -SHA256 (rpm/i386/fedora/4/libglade2-2.5.1-2.src.rpm) = 887c6c3b198d586bbeee40933ce4cef2dd762f4240f0bfea1f13c819513c8b66 -SIZE (rpm/i386/fedora/4/libglade2-2.5.1-2.src.rpm) = 328881 diff --git a/devel/linux-f10-libglade2/pkg-descr b/devel/linux-f10-libglade2/pkg-descr deleted file mode 100644 index dc185c24e8af..000000000000 --- a/devel/linux-f10-libglade2/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -A port is for libglade2 rpm. diff --git a/devel/linux-f10-libglade2/pkg-plist.i386 b/devel/linux-f10-libglade2/pkg-plist.i386 deleted file mode 100644 index 23154ac02a07..000000000000 --- a/devel/linux-f10-libglade2/pkg-plist.i386 +++ /dev/null @@ -1,11 +0,0 @@ -usr/lib/libglade-2.0.so.%%LIBVERSION%% -usr/lib/libglade-2.0.so.0 -usr/share/doc/libglade2-%%PORTVERSION%%/AUTHORS -usr/share/doc/libglade2-%%PORTVERSION%%/COPYING -usr/share/doc/libglade2-%%PORTVERSION%%/ChangeLog -usr/share/doc/libglade2-%%PORTVERSION%%/NEWS -usr/share/doc/libglade2-%%PORTVERSION%%/README -usr/share/xml/libglade/glade-2.0.dtd -@dirrm usr/share/doc/libglade2-%%PORTVERSION%% -@dirrmtry usr/share/xml/libglade -@dirrmtry usr/share/xml diff --git a/devel/linux-f10-libsigc++20/Makefile b/devel/linux-f10-libsigc++20/Makefile deleted file mode 100644 index f42831a19231..000000000000 --- a/devel/linux-f10-libsigc++20/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# New ports collection makefile for: devel/linux-libsigc++20 -# Date created: 28 Jun 2007 -# Whom: Boris Samorodov <bsam@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= libsigc -PORTVERSION= 2.0.17 -CATEGORIES= devel linux -MASTER_SITE_SUBDIR= ../extras/${LINUX_DIST_VER}/${LINUX_RPM_ARCH}/ -DISTNAME= ${PORTNAME}++20-${PORTVERSION}-${RPMVERSION} - -MAINTAINER= freebsd-emulation@FreeBSD.org -COMMENT= Callback Framework for C++ (linux version) - -ONLY_FOR_ARCHS= i386 amd64 -USE_LINUX_RPM= yes -RPMVERSION= 1 -LINUX_DIST_VER= 4 -USE_LDCONFIG= yes -MASTER_SITE_SRC_SUBDIR= ../extras/${LINUX_DIST_VER}/SRPMS - -.if defined(NOPORTDOCS) -REMOVE_DIRS= usr/share -.endif - -pre-install: - @for D in ${REMOVE_DIRS}; do \ - ${RM} -rf ${WRKSRC}/$$D; \ - done - -.include <bsd.port.mk> diff --git a/devel/linux-f10-libsigc++20/distinfo.i386 b/devel/linux-f10-libsigc++20/distinfo.i386 deleted file mode 100644 index f07d2124c12e..000000000000 --- a/devel/linux-f10-libsigc++20/distinfo.i386 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (rpm/i386/fedora/4/libsigc++20-2.0.17-1.i386.rpm) = 75aec50c8d40d567c2076a07a6018cb2 -SHA256 (rpm/i386/fedora/4/libsigc++20-2.0.17-1.i386.rpm) = 779972051571460e8349e33681a1933e5a72be874fd3d50e1c71a37b0bb84c0b -SIZE (rpm/i386/fedora/4/libsigc++20-2.0.17-1.i386.rpm) = 51328 -MD5 (rpm/i386/fedora/4/libsigc++20-2.0.17-1.src.rpm) = 77770c7b19f7f51d79dc22327404208a -SHA256 (rpm/i386/fedora/4/libsigc++20-2.0.17-1.src.rpm) = 6db3d752d6b4456260cad86038edcf465317e4d3aad8cd721bce0d848ccf16aa -SIZE (rpm/i386/fedora/4/libsigc++20-2.0.17-1.src.rpm) = 1802463 diff --git a/devel/linux-f10-libsigc++20/pkg-descr b/devel/linux-f10-libsigc++20/pkg-descr deleted file mode 100644 index 1b887bfefa20..000000000000 --- a/devel/linux-f10-libsigc++20/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Libsigc++ -- The Typesafe Callback Framework for C++ (linux version) - -This library implements a full callback system for use in widget libraries, -abstract interfaces, and general programming. - -WWW: http://libsigc.sourceforge.net/ diff --git a/devel/linux-f10-libsigc++20/pkg-plist b/devel/linux-f10-libsigc++20/pkg-plist deleted file mode 100644 index 0b69a2151a03..000000000000 --- a/devel/linux-f10-libsigc++20/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -usr/lib/libsigc-2.0.so.0 -usr/lib/libsigc-2.0.so.0.0.0 -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/AUTHORS -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/COPYING -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/ChangeLog -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/NEWS -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/README -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/TODO -%%PORTDOCS%%@dirrm usr/share/doc/libsigc++20-2.0.17 diff --git a/devel/linux-f10-sdl12/Makefile b/devel/linux-f10-sdl12/Makefile deleted file mode 100644 index fc353658bcf8..000000000000 --- a/devel/linux-f10-sdl12/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: linux-sdl -# Date created: 8 October 2001 -# Whom: Martin Matuska <martin@tradex.sk> -# Based on: emulators/linux_base by marcel@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= sdl -PORTVERSION= 1.2.10 -PORTEPOCH= 1 -CATEGORIES= devel linux -MASTER_SITES= http://www.libsdl.org/release/ \ - ftp://ftp.icm.edu.pl/vol/rzm9/linux-pld/pool/s/SDL/ -DISTNAME= ${PORTNAME:U}-${PORTVERSION:S/.1$/-1/}-1 - -MAINTAINER= freebsd-emulation@FreeBSD.org -COMMENT= Cross-platform multi-media development API (linux version) - -USE_LINUX_RPM= yes -USE_XLIB= yes -INSTALL_SHLIB= yes - -ONLY_FOR_ARCHS= i386 amd64 -DIST_SUBDIR= rpm -PLIST= ${MASTERDIR}/pkg-plist.${LINUX_RPM_ARCH} -PLIST_SUB+= SDLVER=${PORTVERSION} - -.include <bsd.port.mk> diff --git a/devel/linux-f10-sdl12/distinfo.i386 b/devel/linux-f10-sdl12/distinfo.i386 deleted file mode 100644 index e514d1e5d652..000000000000 --- a/devel/linux-f10-sdl12/distinfo.i386 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (rpm/SDL-1.2.10-1.i386.rpm) = 0c3fbd54bab5e9443bd113c734be54a4 -SHA256 (rpm/SDL-1.2.10-1.i386.rpm) = dd214dda420eb3240b38de0f70d2d38a1b93249215ce5dc99844d9178f74dd07 -SIZE (rpm/SDL-1.2.10-1.i386.rpm) = 202187 -MD5 (rpm/SDL-1.2.10-1.src.rpm) = 3b5bf21e881e0e2a495371ed66044150 -SHA256 (rpm/SDL-1.2.10-1.src.rpm) = 52d1b333bff6dfd8d962c71a23a21afa0594ccf2e9a0ae7048ed5eecd2553dbc -SIZE (rpm/SDL-1.2.10-1.src.rpm) = 2797820 diff --git a/devel/linux-f10-sdl12/pkg-descr b/devel/linux-f10-sdl12/pkg-descr deleted file mode 100644 index 3c378f3d553e..000000000000 --- a/devel/linux-f10-sdl12/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Unstable development version of the SDL library (linux version). - -This library is designed to make it easy to write games that run -on UNIX, Win32 and BeOS using the various native high-performance -media interfaces, (for video, audio, etc) and presenting a single -source-code level API to your application. This is a fairly low -level API, but using this, completely portable applications can be -written with a great deal of flexibility. - -WWW: http://www.libsdl.org/ diff --git a/devel/linux-f10-sdl12/pkg-plist.i386 b/devel/linux-f10-sdl12/pkg-plist.i386 deleted file mode 100644 index c60c1cf04b02..000000000000 --- a/devel/linux-f10-sdl12/pkg-plist.i386 +++ /dev/null @@ -1,8 +0,0 @@ -usr/share/doc/SDL-%%SDLVER%%/BUGS -usr/share/doc/SDL-%%SDLVER%%/COPYING -usr/share/doc/SDL-%%SDLVER%%/CREDITS -usr/share/doc/SDL-%%SDLVER%%/README-SDL.txt -usr/lib/libSDL-1.1.so.0 -usr/lib/libSDL-1.2.so.0 -usr/lib/libSDL-1.2.so.0.7.3 -@dirrm usr/share/doc/SDL-%%SDLVER%% diff --git a/devel/linux-f8-allegro/Makefile b/devel/linux-f8-allegro/Makefile deleted file mode 100644 index aecaafecf585..000000000000 --- a/devel/linux-f8-allegro/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: linux-allegro -# Date created: 18 Nov 2003 -# Whom: Pav Lucistnik <pav@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= allegro -PORTVERSION= 4.0.3 -PORTREVISION= 2 -CATEGORIES= devel linux -MASTER_SITES= http://membres.lycos.fr/ebotcazou/allegro/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-1 - -MAINTAINER= freebsd-emulation@FreeBSD.org -COMMENT= Cross-platform game programming library (linux version) - -USE_LINUX_RPM= yes -ONLY_FOR_ARCHS= i386 amd64 -DIST_SUBDIR= rpm -USE_LDCONFIG= yes -USE_XLIB= yes -SRC_DISTFILES= - -MD5_FILE= ${MASTERDIR}/distinfo - -post-extract: - @cd ${WRKSRC}/usr/lib; \ - ${LN} -s liballeg-4.0.3.so liballeg.so.4.0 - -.include <bsd.port.mk> diff --git a/devel/linux-f8-allegro/distinfo b/devel/linux-f8-allegro/distinfo deleted file mode 100644 index ebaf2724fb83..000000000000 --- a/devel/linux-f8-allegro/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (rpm/allegro-4.0.3-1.i386.rpm) = 551dc0c1c6756991daa9e71fd5f73faf -SHA256 (rpm/allegro-4.0.3-1.i386.rpm) = 2efc5a5b523030dac9e77f46fde06b4f3d83e6cd2deb15d5a1ed1b6a5af1851c -SIZE (rpm/allegro-4.0.3-1.i386.rpm) = 484783 diff --git a/devel/linux-f8-allegro/pkg-descr b/devel/linux-f8-allegro/pkg-descr deleted file mode 100644 index 9948d05c3844..000000000000 --- a/devel/linux-f8-allegro/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Allegro is a cross-platform library intended for use in computer games and -other types of multimedia programming. - -WWW: http://www.talula.demon.co.uk/allegro/ diff --git a/devel/linux-f8-allegro/pkg-plist b/devel/linux-f8-allegro/pkg-plist deleted file mode 100644 index 69958d0f2a8f..000000000000 --- a/devel/linux-f8-allegro/pkg-plist +++ /dev/null @@ -1,21 +0,0 @@ -etc/allegrorc -usr/lib/allegro/4.0/alleg-artsdigi.so -usr/lib/allegro/4.0/alleg-dga2.so -usr/lib/allegro/4.0/alleg-fbcon.so -usr/lib/allegro/4.0/alleg-svgalib.so -usr/lib/allegro/4.0/alleg-vga.so -usr/lib/allegro/4.0/modules.lst -usr/lib/liballeg.so.4.0 -usr/lib/liballeg-4.0.3.so -usr/share/allegro/keyboard.dat -usr/share/allegro/language.dat -usr/share/doc/allegro-4.0.3/AUTHORS -usr/share/doc/allegro-4.0.3/CHANGES -usr/share/doc/allegro-4.0.3/linux.txt -usr/share/doc/allegro-4.0.3/readme.txt -usr/share/doc/allegro-4.0.3/THANKS -usr/share/doc/allegro-4.0.3/unix.txt -@dirrm usr/share/doc/allegro-4.0.3 -@dirrm usr/share/allegro -@dirrm usr/lib/allegro/4.0 -@dirrm usr/lib/allegro diff --git a/devel/linux-f8-libglade/Makefile b/devel/linux-f8-libglade/Makefile deleted file mode 100644 index 4c057ecc2c90..000000000000 --- a/devel/linux-f8-libglade/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# New ports collection makefile for: linux-libglade -# Date created: 2001.02.08 -# Whom: taoka@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= libglade -PORTVERSION= 0.17 -PORTREVISION= 1 -CATEGORIES= devel linux -DISTNAME= ${PORTNAME}-${PORTVERSION}-16 - -MAINTAINER= freebsd-emulation@FreeBSD.org -COMMENT= RPM of libglade - -USE_LINUX_RPM= yes -LINUX_DIST_VER= 4 -USE_LDCONFIG= yes -PLIST= pkg-plist.${LINUX_RPM_ARCH} -PLIST_SUB= LIBVERSION="0.4.2" PORTVERSION="${PORTVERSION}" - -.include <bsd.port.mk> diff --git a/devel/linux-f8-libglade/distinfo.i386 b/devel/linux-f8-libglade/distinfo.i386 deleted file mode 100644 index a72fe8987d10..000000000000 --- a/devel/linux-f8-libglade/distinfo.i386 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (rpm/i386/fedora/4/libglade-0.17-16.i386.rpm) = 64d3762dab28f84082b2b2dbe1d9a60f -SHA256 (rpm/i386/fedora/4/libglade-0.17-16.i386.rpm) = 35b111e37a9681aca1de2e3c252f6f4cc8f2db0e20e2f8acb8293928047e94c4 -SIZE (rpm/i386/fedora/4/libglade-0.17-16.i386.rpm) = 99006 -MD5 (rpm/i386/fedora/4/libglade-0.17-16.src.rpm) = 10ae3d09009239324453afc8140a920c -SHA256 (rpm/i386/fedora/4/libglade-0.17-16.src.rpm) = a8a8d545b1af1dce12905f09b343784109752b3f8935f788e3375ad4c9a8604a -SIZE (rpm/i386/fedora/4/libglade-0.17-16.src.rpm) = 431030 diff --git a/devel/linux-f8-libglade/pkg-descr b/devel/linux-f8-libglade/pkg-descr deleted file mode 100644 index 0723084e9621..000000000000 --- a/devel/linux-f8-libglade/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -A port is for libglade rpm. diff --git a/devel/linux-f8-libglade/pkg-plist.i386 b/devel/linux-f8-libglade/pkg-plist.i386 deleted file mode 100644 index 6fd063534468..000000000000 --- a/devel/linux-f8-libglade/pkg-plist.i386 +++ /dev/null @@ -1,10 +0,0 @@ -usr/lib/libglade-gnome.so.%%LIBVERSION%% -usr/lib/libglade.so.%%LIBVERSION%% -usr/share/doc/libglade-%%PORTVERSION%%/AUTHORS -usr/share/doc/libglade-%%PORTVERSION%%/COPYING -usr/share/doc/libglade-%%PORTVERSION%%/ChangeLog -usr/share/doc/libglade-%%PORTVERSION%%/NEWS -usr/share/doc/libglade-%%PORTVERSION%%/README -usr/lib/libglade-gnome.so.0 -usr/lib/libglade.so.0 -@dirrm usr/share/doc/libglade-%%PORTVERSION%% diff --git a/devel/linux-f8-libglade2/Makefile b/devel/linux-f8-libglade2/Makefile deleted file mode 100644 index 23b1d20ad914..000000000000 --- a/devel/linux-f8-libglade2/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -# New ports collection makefile for: linux-libglade2 -# Date created: 2007.09.02 -# Whom: Artem Naluzhnyy <tut@nhamon.com.ua> -# -# $FreeBSD$ -# - -PORTNAME= libglade2 -PORTVERSION= 2.5.1 -CATEGORIES= devel linux -DISTNAME= ${PORTNAME}-${PORTVERSION}-2 - -MAINTAINER= tut@nhamon.com.ua -COMMENT= RPM of libglade2 - -USE_LINUX_RPM= yes -LINUX_DIST_VER= 4 -USE_LDCONFIG= yes -PLIST= pkg-plist.${LINUX_RPM_ARCH} -PLIST_SUB= LIBVERSION="0.0.7" PORTVERSION="${PORTVERSION}" - -.include <bsd.port.mk> diff --git a/devel/linux-f8-libglade2/distinfo.i386 b/devel/linux-f8-libglade2/distinfo.i386 deleted file mode 100644 index 07f5ada4424c..000000000000 --- a/devel/linux-f8-libglade2/distinfo.i386 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (rpm/i386/fedora/4/libglade2-2.5.1-2.i386.rpm) = 24d657ca240c21d8642303ae1fc02588 -SHA256 (rpm/i386/fedora/4/libglade2-2.5.1-2.i386.rpm) = 527c32693ada35329780c8e174c9e393a7c49933f4645fa34f41c6408450f2ea -SIZE (rpm/i386/fedora/4/libglade2-2.5.1-2.i386.rpm) = 94262 -MD5 (rpm/i386/fedora/4/libglade2-2.5.1-2.src.rpm) = bdfe51a3b667bcaf95c2217129ac4b3d -SHA256 (rpm/i386/fedora/4/libglade2-2.5.1-2.src.rpm) = 887c6c3b198d586bbeee40933ce4cef2dd762f4240f0bfea1f13c819513c8b66 -SIZE (rpm/i386/fedora/4/libglade2-2.5.1-2.src.rpm) = 328881 diff --git a/devel/linux-f8-libglade2/pkg-descr b/devel/linux-f8-libglade2/pkg-descr deleted file mode 100644 index dc185c24e8af..000000000000 --- a/devel/linux-f8-libglade2/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -A port is for libglade2 rpm. diff --git a/devel/linux-f8-libglade2/pkg-plist.i386 b/devel/linux-f8-libglade2/pkg-plist.i386 deleted file mode 100644 index 23154ac02a07..000000000000 --- a/devel/linux-f8-libglade2/pkg-plist.i386 +++ /dev/null @@ -1,11 +0,0 @@ -usr/lib/libglade-2.0.so.%%LIBVERSION%% -usr/lib/libglade-2.0.so.0 -usr/share/doc/libglade2-%%PORTVERSION%%/AUTHORS -usr/share/doc/libglade2-%%PORTVERSION%%/COPYING -usr/share/doc/libglade2-%%PORTVERSION%%/ChangeLog -usr/share/doc/libglade2-%%PORTVERSION%%/NEWS -usr/share/doc/libglade2-%%PORTVERSION%%/README -usr/share/xml/libglade/glade-2.0.dtd -@dirrm usr/share/doc/libglade2-%%PORTVERSION%% -@dirrmtry usr/share/xml/libglade -@dirrmtry usr/share/xml diff --git a/devel/linux-f8-libsigc++20/Makefile b/devel/linux-f8-libsigc++20/Makefile deleted file mode 100644 index f42831a19231..000000000000 --- a/devel/linux-f8-libsigc++20/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# New ports collection makefile for: devel/linux-libsigc++20 -# Date created: 28 Jun 2007 -# Whom: Boris Samorodov <bsam@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= libsigc -PORTVERSION= 2.0.17 -CATEGORIES= devel linux -MASTER_SITE_SUBDIR= ../extras/${LINUX_DIST_VER}/${LINUX_RPM_ARCH}/ -DISTNAME= ${PORTNAME}++20-${PORTVERSION}-${RPMVERSION} - -MAINTAINER= freebsd-emulation@FreeBSD.org -COMMENT= Callback Framework for C++ (linux version) - -ONLY_FOR_ARCHS= i386 amd64 -USE_LINUX_RPM= yes -RPMVERSION= 1 -LINUX_DIST_VER= 4 -USE_LDCONFIG= yes -MASTER_SITE_SRC_SUBDIR= ../extras/${LINUX_DIST_VER}/SRPMS - -.if defined(NOPORTDOCS) -REMOVE_DIRS= usr/share -.endif - -pre-install: - @for D in ${REMOVE_DIRS}; do \ - ${RM} -rf ${WRKSRC}/$$D; \ - done - -.include <bsd.port.mk> diff --git a/devel/linux-f8-libsigc++20/distinfo.i386 b/devel/linux-f8-libsigc++20/distinfo.i386 deleted file mode 100644 index f07d2124c12e..000000000000 --- a/devel/linux-f8-libsigc++20/distinfo.i386 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (rpm/i386/fedora/4/libsigc++20-2.0.17-1.i386.rpm) = 75aec50c8d40d567c2076a07a6018cb2 -SHA256 (rpm/i386/fedora/4/libsigc++20-2.0.17-1.i386.rpm) = 779972051571460e8349e33681a1933e5a72be874fd3d50e1c71a37b0bb84c0b -SIZE (rpm/i386/fedora/4/libsigc++20-2.0.17-1.i386.rpm) = 51328 -MD5 (rpm/i386/fedora/4/libsigc++20-2.0.17-1.src.rpm) = 77770c7b19f7f51d79dc22327404208a -SHA256 (rpm/i386/fedora/4/libsigc++20-2.0.17-1.src.rpm) = 6db3d752d6b4456260cad86038edcf465317e4d3aad8cd721bce0d848ccf16aa -SIZE (rpm/i386/fedora/4/libsigc++20-2.0.17-1.src.rpm) = 1802463 diff --git a/devel/linux-f8-libsigc++20/pkg-descr b/devel/linux-f8-libsigc++20/pkg-descr deleted file mode 100644 index 1b887bfefa20..000000000000 --- a/devel/linux-f8-libsigc++20/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Libsigc++ -- The Typesafe Callback Framework for C++ (linux version) - -This library implements a full callback system for use in widget libraries, -abstract interfaces, and general programming. - -WWW: http://libsigc.sourceforge.net/ diff --git a/devel/linux-f8-libsigc++20/pkg-plist b/devel/linux-f8-libsigc++20/pkg-plist deleted file mode 100644 index 0b69a2151a03..000000000000 --- a/devel/linux-f8-libsigc++20/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -usr/lib/libsigc-2.0.so.0 -usr/lib/libsigc-2.0.so.0.0.0 -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/AUTHORS -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/COPYING -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/ChangeLog -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/NEWS -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/README -%%PORTDOCS%%usr/share/doc/libsigc++20-2.0.17/TODO -%%PORTDOCS%%@dirrm usr/share/doc/libsigc++20-2.0.17 diff --git a/devel/linux-f8-sdl12/Makefile b/devel/linux-f8-sdl12/Makefile deleted file mode 100644 index fc353658bcf8..000000000000 --- a/devel/linux-f8-sdl12/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: linux-sdl -# Date created: 8 October 2001 -# Whom: Martin Matuska <martin@tradex.sk> -# Based on: emulators/linux_base by marcel@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= sdl -PORTVERSION= 1.2.10 -PORTEPOCH= 1 -CATEGORIES= devel linux -MASTER_SITES= http://www.libsdl.org/release/ \ - ftp://ftp.icm.edu.pl/vol/rzm9/linux-pld/pool/s/SDL/ -DISTNAME= ${PORTNAME:U}-${PORTVERSION:S/.1$/-1/}-1 - -MAINTAINER= freebsd-emulation@FreeBSD.org -COMMENT= Cross-platform multi-media development API (linux version) - -USE_LINUX_RPM= yes -USE_XLIB= yes -INSTALL_SHLIB= yes - -ONLY_FOR_ARCHS= i386 amd64 -DIST_SUBDIR= rpm -PLIST= ${MASTERDIR}/pkg-plist.${LINUX_RPM_ARCH} -PLIST_SUB+= SDLVER=${PORTVERSION} - -.include <bsd.port.mk> diff --git a/devel/linux-f8-sdl12/distinfo.i386 b/devel/linux-f8-sdl12/distinfo.i386 deleted file mode 100644 index e514d1e5d652..000000000000 --- a/devel/linux-f8-sdl12/distinfo.i386 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (rpm/SDL-1.2.10-1.i386.rpm) = 0c3fbd54bab5e9443bd113c734be54a4 -SHA256 (rpm/SDL-1.2.10-1.i386.rpm) = dd214dda420eb3240b38de0f70d2d38a1b93249215ce5dc99844d9178f74dd07 -SIZE (rpm/SDL-1.2.10-1.i386.rpm) = 202187 -MD5 (rpm/SDL-1.2.10-1.src.rpm) = 3b5bf21e881e0e2a495371ed66044150 -SHA256 (rpm/SDL-1.2.10-1.src.rpm) = 52d1b333bff6dfd8d962c71a23a21afa0594ccf2e9a0ae7048ed5eecd2553dbc -SIZE (rpm/SDL-1.2.10-1.src.rpm) = 2797820 diff --git a/devel/linux-f8-sdl12/pkg-descr b/devel/linux-f8-sdl12/pkg-descr deleted file mode 100644 index 3c378f3d553e..000000000000 --- a/devel/linux-f8-sdl12/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Unstable development version of the SDL library (linux version). - -This library is designed to make it easy to write games that run -on UNIX, Win32 and BeOS using the various native high-performance -media interfaces, (for video, audio, etc) and presenting a single -source-code level API to your application. This is a fairly low -level API, but using this, completely portable applications can be -written with a great deal of flexibility. - -WWW: http://www.libsdl.org/ diff --git a/devel/linux-f8-sdl12/pkg-plist.i386 b/devel/linux-f8-sdl12/pkg-plist.i386 deleted file mode 100644 index c60c1cf04b02..000000000000 --- a/devel/linux-f8-sdl12/pkg-plist.i386 +++ /dev/null @@ -1,8 +0,0 @@ -usr/share/doc/SDL-%%SDLVER%%/BUGS -usr/share/doc/SDL-%%SDLVER%%/COPYING -usr/share/doc/SDL-%%SDLVER%%/CREDITS -usr/share/doc/SDL-%%SDLVER%%/README-SDL.txt -usr/lib/libSDL-1.1.so.0 -usr/lib/libSDL-1.2.so.0 -usr/lib/libSDL-1.2.so.0.7.3 -@dirrm usr/share/doc/SDL-%%SDLVER%% diff --git a/devel/llvm29/Makefile b/devel/llvm29/Makefile deleted file mode 100644 index 39be08e60eae..000000000000 --- a/devel/llvm29/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: llvm -# Date created: 20 Nov 2005 -# Whom: Hye-Shik Chang -# -# $FreeBSD$ -# - -PORTNAME= llvm -PORTVERSION= 2.3 -PORTREVISION= 2 -CATEGORIES= devel lang -MASTER_SITES= http://llvm.org/releases/${PORTVERSION}/ -DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= brooks@FreeBSD.org -COMMENT= Low Level Virtual Machine - -.if defined(PACKAGE_BUILDING) || defined(MAINTAINER_MODE) -BUILD_DEPENDS= runtest:${PORTSDIR}/misc/dejagnu -.endif -.if defined(MAINTAINER_MODE) -BUILD_DEPENDS+= f2c:${PORTSDIR}/lang/f2c -.endif - -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_PERL5_BUILD=yes - -.if defined(MAINTAINER_MODE) -CONFIGURE_ARGS+= --with-f2c=${LOCALBASE} -.else -CONFIGURE_ARGS+= --enable-optimized -.endif - -.if defined(NOPORTDOCS) -DOCSRCDIR= -.else -DOCSRCDIR= docs -.endif - -MAN1= bugpoint.1 llc.1 lli.1 llvm-ar.1 \ - llvm-as.1 llvm-bcanalyzer.1 llvm-config.1 llvm-db.1 \ - llvm-dis.1 llvm-extract.1 llvm-ld.1 llvm-link.1 llvm-nm.1 \ - llvm-prof.1 llvm-ranlib.1 llvmgcc.1 \ - llvmgxx.1 opt.1 stkrc.1 tblgen.1 - -post-patch: - ${REINPLACE_CMD} -e 's|\(PROJ_docsdir.*:=\).*$$|\1${DOCSDIR}|g' \ - ${WRKSRC}/Makefile.config.in - ${REINPLACE_CMD} -e 's|\(PROJ_mandir.*:=\).*$$|\1${MANPREFIX}/man|g' \ - ${WRKSRC}/Makefile.config.in - ${REINPLACE_CMD} -e 's|%%DOCSRCDIR%%|${DOCSRCDIR}|' \ - ${WRKSRC}/Makefile - -post-build: - cd ${WRKSRC}/docs/CommandGuide && \ - ${GMAKE} man - -post-install: - cd ${WRKSRC}/docs/CommandGuide && \ - ${INSTALL_MAN} ${MAN1} ${MANPREFIX}/man/man1/ - @${RM} ${PREFIX}/bin/.dir \ - ${PREFIX}/lib/.dir - -regression-test: build - (cd ${WRKSRC}/test; ${SETENV} ${MAKE_ENV} ${GMAKE} check) - -.include <bsd.port.mk> diff --git a/devel/llvm29/distinfo b/devel/llvm29/distinfo deleted file mode 100644 index af8c72c26da2..000000000000 --- a/devel/llvm29/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (llvm-2.3.tar.gz) = 17254d72863b7fa005f3fb327aea3439 -SHA256 (llvm-2.3.tar.gz) = 8214380642684bbe49337728f40ecb945d12abcfd88c4e657c6eb38d6fbb9f93 -SIZE (llvm-2.3.tar.gz) = 5868865 diff --git a/devel/llvm29/files/patch-Makefile b/devel/llvm29/files/patch-Makefile deleted file mode 100644 index 774f0db717fe..000000000000 --- a/devel/llvm29/files/patch-Makefile +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- Makefile.orig -+++ Makefile -@@ -18,7 +18,7 @@ - # 6. Build tools, runtime, docs. - # - DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \ -- tools runtime docs -+ tools runtime %%DOCSRCDIR%% - - OPTIONAL_DIRS := examples projects bindings - EXTRA_DIST := test llvm.spec include win32 Xcode diff --git a/devel/llvm29/pkg-descr b/devel/llvm29/pkg-descr deleted file mode 100644 index ba43ebf6c842..000000000000 --- a/devel/llvm29/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -Low Level Virtual Machine (LLVM) is: -- A compilation strategy designed to enable effective program - optimization across the entire lifetime of a program. -- A virtual instruction set. -- A compiler infrastructure. -- LLVM does not imply things that you would expect from a high-level - virtual machine. It does not require garbage collection or run-time - code generation. - -WWW: http://llvm.cs.uiuc.edu/ diff --git a/devel/llvm29/pkg-plist b/devel/llvm29/pkg-plist deleted file mode 100644 index bda991d602d3..000000000000 --- a/devel/llvm29/pkg-plist +++ /dev/null @@ -1,461 +0,0 @@ -bin/bugpoint -bin/gccas -bin/gccld -bin/llc -bin/lli -bin/llvmc2 -bin/llvm-ar -bin/llvm-as -bin/llvm-bcanalyzer -bin/llvm-config -bin/llvm-db -bin/llvm-dis -bin/llvm-extract -bin/llvm-ld -bin/llvm-link -bin/llvm-nm -bin/llvm-prof -bin/llvm-ranlib -bin/llvm-stub -bin/opt -include/llvm-c/Analysis.h -include/llvm-c/BitReader.h -include/llvm-c/BitWriter.h -include/llvm-c/Core.h -include/llvm-c/ExecutionEngine.h -include/llvm-c/LinkTimeOptimizer.h -include/llvm-c/Transforms/Scalar.h -include/llvm-c/Target.h -include/llvm-c/lto.h -include/llvm/ADT/APFloat.h -include/llvm/ADT/APInt.h -include/llvm/ADT/APSInt.h -include/llvm/ADT/BitVector.h -include/llvm/ADT/DenseMap.h -include/llvm/ADT/DenseSet.h -include/llvm/ADT/DepthFirstIterator.h -include/llvm/ADT/EquivalenceClasses.h -include/llvm/ADT/FoldingSet.h -include/llvm/ADT/GraphTraits.h -include/llvm/ADT/HashExtras.h -include/llvm/ADT/ImmutableMap.h -include/llvm/ADT/ImmutableSet.h -include/llvm/ADT/IndexedMap.h -include/llvm/ADT/IntrusiveRefCntPtr.h -include/llvm/ADT/OwningPtr.h -include/llvm/ADT/PostOrderIterator.h -include/llvm/ADT/SCCIterator.h -include/llvm/ADT/STLExtras.h -include/llvm/ADT/SetOperations.h -include/llvm/ADT/SetVector.h -include/llvm/ADT/SmallPtrSet.h -include/llvm/ADT/SmallSet.h -include/llvm/ADT/SmallString.h -include/llvm/ADT/SmallVector.h -include/llvm/ADT/SparseBitVector.h -include/llvm/ADT/Statistic.h -include/llvm/ADT/StringExtras.h -include/llvm/ADT/StringMap.h -include/llvm/ADT/Tree.h -include/llvm/ADT/Trie.h -include/llvm/ADT/UniqueVector.h -include/llvm/ADT/VectorExtras.h -include/llvm/ADT/hash_map -include/llvm/ADT/hash_set -include/llvm/ADT/ilist -include/llvm/ADT/iterator -include/llvm/AbstractTypeUser.h -include/llvm/Analysis/AliasAnalysis.h -include/llvm/Analysis/AliasSetTracker.h -include/llvm/Analysis/CFGPrinter.h -include/llvm/Analysis/CallGraph.h -include/llvm/Analysis/ConstantFolding.h -include/llvm/Analysis/ConstantsScanner.h -include/llvm/Analysis/DominatorInternals.h -include/llvm/Analysis/Dominators.h -include/llvm/Analysis/FindUsedTypes.h -include/llvm/Analysis/Interval.h -include/llvm/Analysis/IntervalIterator.h -include/llvm/Analysis/IntervalPartition.h -include/llvm/Analysis/LibCallSemantics.h -include/llvm/Analysis/LoadValueNumbering.h -include/llvm/Analysis/LoopInfo.h -include/llvm/Analysis/LoopPass.h -include/llvm/Analysis/MemoryDependenceAnalysis.h -include/llvm/Analysis/Passes.h -include/llvm/Analysis/PostDominators.h -include/llvm/Analysis/ProfileInfo.h -include/llvm/Analysis/ProfileInfoLoader.h -include/llvm/Analysis/ProfileInfoTypes.h -include/llvm/Analysis/ScalarEvolution.h -include/llvm/Analysis/ScalarEvolutionExpander.h -include/llvm/Analysis/ScalarEvolutionExpressions.h -include/llvm/Analysis/Trace.h -include/llvm/Analysis/ValueNumbering.h -include/llvm/Analysis/Verifier.h -include/llvm/Argument.h -include/llvm/Assembly/AsmAnnotationWriter.h -include/llvm/Assembly/Parser.h -include/llvm/Assembly/PrintModulePass.h -include/llvm/Assembly/Writer.h -include/llvm/AutoUpgrade.h -include/llvm/BasicBlock.h -include/llvm/Bitcode/Archive.h -include/llvm/Bitcode/BitCodes.h -include/llvm/Bitcode/BitstreamReader.h -include/llvm/Bitcode/BitstreamWriter.h -include/llvm/Bitcode/Deserialize.h -include/llvm/Bitcode/LLVMBitCodes.h -include/llvm/Bitcode/ReaderWriter.h -include/llvm/Bitcode/Serialization.h -include/llvm/Bitcode/SerializationFwd.h -include/llvm/Bitcode/Serialize.h -include/llvm/CallGraphSCCPass.h -include/llvm/CallingConv.h -include/llvm/CodeGen/AsmPrinter.h -include/llvm/CodeGen/BreakCriticalMachineEdge.h -include/llvm/CodeGen/CallingConvLower.h -include/llvm/CodeGen/Collector.h -include/llvm/CodeGen/CollectorMetadata.h -include/llvm/CodeGen/Collectors.h -include/llvm/CodeGen/DwarfWriter.h -include/llvm/CodeGen/ELFRelocation.h -include/llvm/CodeGen/FileWriters.h -include/llvm/CodeGen/IntrinsicLowering.h -include/llvm/CodeGen/LinkAllCodegenComponents.h -include/llvm/CodeGen/LiveInterval.h -include/llvm/CodeGen/LiveIntervalAnalysis.h -include/llvm/CodeGen/LiveVariables.h -include/llvm/CodeGen/MachORelocation.h -include/llvm/CodeGen/MachineBasicBlock.h -include/llvm/CodeGen/MachineCodeEmitter.h -include/llvm/CodeGen/MachineConstantPool.h -include/llvm/CodeGen/MachineDominators.h -include/llvm/CodeGen/MachineFrameInfo.h -include/llvm/CodeGen/MachineFunction.h -include/llvm/CodeGen/MachineFunctionPass.h -include/llvm/CodeGen/MachineInstr.h -include/llvm/CodeGen/MachineInstrBuilder.h -include/llvm/CodeGen/MachineJumpTableInfo.h -include/llvm/CodeGen/MachineLocation.h -include/llvm/CodeGen/MachineLoopInfo.h -include/llvm/CodeGen/MachineMemOperand.h -include/llvm/CodeGen/MachineModuleInfo.h -include/llvm/CodeGen/MachineOperand.h -include/llvm/CodeGen/MachinePassRegistry.h -include/llvm/CodeGen/MachineRegisterInfo.h -include/llvm/CodeGen/MachineRelocation.h -include/llvm/CodeGen/Passes.h -include/llvm/CodeGen/PseudoSourceValue.h -include/llvm/CodeGen/RegAllocRegistry.h -include/llvm/CodeGen/RegisterCoalescer.h -include/llvm/CodeGen/RegisterScavenging.h -include/llvm/CodeGen/RuntimeLibcalls.h -include/llvm/CodeGen/SchedGraphCommon.h -include/llvm/CodeGen/ScheduleDAG.h -include/llvm/CodeGen/SchedulerRegistry.h -include/llvm/CodeGen/SelectionDAG.h -include/llvm/CodeGen/SelectionDAGISel.h -include/llvm/CodeGen/SelectionDAGNodes.h -include/llvm/CodeGen/ValueTypes.h -include/llvm/CodeGen/ValueTypes.td -include/llvm/Config/alloca.h -include/llvm/Config/config.h -include/llvm/Constant.h -include/llvm/Constants.h -include/llvm/Debugger/Debugger.h -include/llvm/Debugger/InferiorProcess.h -include/llvm/Debugger/ProgramInfo.h -include/llvm/Debugger/RuntimeInfo.h -include/llvm/Debugger/SourceFile.h -include/llvm/Debugger/SourceLanguage.h -include/llvm/DerivedTypes.h -include/llvm/ExecutionEngine/ExecutionEngine.h -include/llvm/ExecutionEngine/GenericValue.h -include/llvm/ExecutionEngine/Interpreter.h -include/llvm/ExecutionEngine/JIT.h -include/llvm/ExecutionEngine/JITMemoryManager.h -include/llvm/Function.h -include/llvm/GlobalAlias.h -include/llvm/GlobalValue.h -include/llvm/GlobalVariable.h -include/llvm/InlineAsm.h -include/llvm/InstrTypes.h -include/llvm/Instruction.def -include/llvm/Instruction.h -include/llvm/Instructions.h -include/llvm/IntrinsicInst.h -include/llvm/Intrinsics.gen -include/llvm/Intrinsics.h -include/llvm/Intrinsics.td -include/llvm/IntrinsicsARM.td -include/llvm/IntrinsicsCellSPU.td -include/llvm/IntrinsicsPowerPC.td -include/llvm/IntrinsicsX86.td -include/llvm/LinkAllPasses.h -include/llvm/LinkAllVMCore.h -include/llvm/LinkTimeOptimizer.h -include/llvm/Linker.h -include/llvm/Module.h -include/llvm/ModuleProvider.h -include/llvm/ParameterAttributes.h -include/llvm/Pass.h -include/llvm/PassAnalysisSupport.h -include/llvm/PassManager.h -include/llvm/PassManagers.h -include/llvm/PassSupport.h -include/llvm/Support/AIXDataTypesFix.h -include/llvm/Support/AlignOf.h -include/llvm/Support/Allocator.h -include/llvm/Support/Annotation.h -include/llvm/Support/CFG.h -include/llvm/Support/CallSite.h -include/llvm/Support/Casting.h -include/llvm/Support/CommandLine.h -include/llvm/Support/Compiler.h -include/llvm/Support/ConstantRange.h -include/llvm/Support/DOTGraphTraits.h -include/llvm/Support/DataFlow.h -include/llvm/Support/DataTypes.h -include/llvm/Support/Debug.h -include/llvm/Support/Dwarf.h -include/llvm/Support/DynamicLinker.h -include/llvm/Support/ELF.h -include/llvm/Support/FileUtilities.h -include/llvm/Support/GetElementPtrTypeIterator.h -include/llvm/Support/GraphWriter.h -include/llvm/Support/IRBuilder.h -include/llvm/Support/InstIterator.h -include/llvm/Support/InstVisitor.h -include/llvm/Support/LeakDetector.h -include/llvm/Support/ManagedStatic.h -include/llvm/Support/Mangler.h -include/llvm/Support/MathExtras.h -include/llvm/Support/MemoryBuffer.h -include/llvm/Support/MutexGuard.h -include/llvm/Support/OutputBuffer.h -include/llvm/Support/PassNameParser.h -include/llvm/Support/PatternMatch.h -include/llvm/Support/PluginLoader.h -include/llvm/Support/Registry.h -include/llvm/Support/SlowOperationInformer.h -include/llvm/Support/StableBasicBlockNumbering.h -include/llvm/Support/Streams.h -include/llvm/Support/StringPool.h -include/llvm/Support/SystemUtils.h -include/llvm/Support/Timer.h -include/llvm/Support/type_traits.h -include/llvm/SymbolTableListTraits.h -include/llvm/System/Alarm.h -include/llvm/System/Disassembler.h -include/llvm/System/DynamicLibrary.h -include/llvm/System/Host.h -include/llvm/System/IncludeFile.h -include/llvm/System/LICENSE.TXT -include/llvm/System/Memory.h -include/llvm/System/Mutex.h -include/llvm/System/Path.h -include/llvm/System/Process.h -include/llvm/System/Program.h -include/llvm/System/Signals.h -include/llvm/System/TimeValue.h -include/llvm/Target/SubtargetFeature.h -include/llvm/Target/TargetAsmInfo.h -include/llvm/Target/TargetData.h -include/llvm/Target/TargetELFWriterInfo.h -include/llvm/Target/TargetFrameInfo.h -include/llvm/Target/TargetInstrDesc.h -include/llvm/Target/TargetInstrInfo.h -include/llvm/Target/TargetInstrItineraries.h -include/llvm/Target/TargetJITInfo.h -include/llvm/Target/TargetLowering.h -include/llvm/Target/TargetMachOWriterInfo.h -include/llvm/Target/TargetMachine.h -include/llvm/Target/TargetMachineRegistry.h -include/llvm/Target/TargetOptions.h -include/llvm/Target/TargetRegisterInfo.h -include/llvm/Target/TargetSubtarget.h -include/llvm/Transforms/IPO.h -include/llvm/Transforms/IPO/InlinerPass.h -include/llvm/Transforms/Instrumentation.h -include/llvm/Transforms/RSProfiling.h -include/llvm/Transforms/Scalar.h -include/llvm/Transforms/Utils/BasicBlockUtils.h -include/llvm/Transforms/Utils/BasicInliner.h -include/llvm/Transforms/Utils/Cloning.h -include/llvm/Transforms/Utils/FunctionUtils.h -include/llvm/Transforms/Utils/InlineCost.h -include/llvm/Transforms/Utils/Local.h -include/llvm/Transforms/Utils/PromoteMemToReg.h -include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h -include/llvm/Transforms/Utils/ValueMapper.h -include/llvm/Type.h -include/llvm/TypeSymbolTable.h -include/llvm/Use.h -include/llvm/User.h -include/llvm/Value.h -include/llvm/ValueSymbolTable.h -lib/LLVMARM.o -lib/LLVMAlpha.o -lib/LLVMCBackend.o -lib/LLVMCellSPU.o -lib/LLVMCppBackend.o -lib/LLVMExecutionEngine.o -lib/LLVMHello.a -lib/LLVMHello.la -lib/LLVMHello.so -lib/LLVMHello.so.0 -lib/LLVMIA64.o -lib/LLVMInterpreter.o -lib/LLVMJIT.o -lib/LLVMMSIL.o -lib/LLVMMips.o -lib/LLVMPowerPC.o -lib/LLVMSparc.o -lib/LLVMX86.o -lib/libLLVMAnalysis.a -lib/libLLVMArchive.a -lib/libLLVMAsmParser.a -lib/libLLVMBitReader.a -lib/libLLVMBitWriter.a -lib/libLLVMCodeGen.a -lib/libLLVMCore.a -lib/libLLVMDebugger.a -lib/libLLVMInstrumentation.a -lib/libLLVMLinker.a -lib/libLLVMScalarOpts.a -lib/libLLVMSelectionDAG.a -lib/libLLVMSupport.a -lib/libLLVMSystem.a -lib/libLLVMTarget.a -lib/libLLVMTransformUtils.a -lib/libLLVMipa.a -lib/libLLVMipo.a -%%PORTDOCS%%%%DOCSDIR%%/html.tar.gz -%%PORTDOCS%%%%DOCSDIR%%/html/AliasAnalysis.html -%%PORTDOCS%%%%DOCSDIR%%/html/BitCodeFormat.html -%%PORTDOCS%%%%DOCSDIR%%/html/Bugpoint.html -%%PORTDOCS%%%%DOCSDIR%%/html/CFEBuildInstrs.html -%%PORTDOCS%%%%DOCSDIR%%/html/CodeGenerator.html -%%PORTDOCS%%%%DOCSDIR%%/html/CodingStandards.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/bugpoint.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/index.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llc.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/lli.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-ar.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-as.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-bcanalyzer.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-config.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-db.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-dis.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-extract.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-ld.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-link.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-nm.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-prof.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvm-ranlib.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvmgcc.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/llvmgxx.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/manpage.css -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/opt.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/stkrc.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandGuide/tblgen.html -%%PORTDOCS%%%%DOCSDIR%%/html/CommandLine.html -%%PORTDOCS%%%%DOCSDIR%%/html/CompilerDriver.html -%%PORTDOCS%%%%DOCSDIR%%/html/CompilerWriterInfo.html -%%PORTDOCS%%%%DOCSDIR%%/html/DeveloperPolicy.html -%%PORTDOCS%%%%DOCSDIR%%/html/ExceptionHandling.html -%%PORTDOCS%%%%DOCSDIR%%/html/ExtendingLLVM.html -%%PORTDOCS%%%%DOCSDIR%%/html/FAQ.html -%%PORTDOCS%%%%DOCSDIR%%/html/GCCFEBuildInstrs.html -%%PORTDOCS%%%%DOCSDIR%%/html/GarbageCollection.html -%%PORTDOCS%%%%DOCSDIR%%/html/GetElementPtr.html -%%PORTDOCS%%%%DOCSDIR%%/html/GettingStarted.html -%%PORTDOCS%%%%DOCSDIR%%/html/GettingStartedVS.html -%%PORTDOCS%%%%DOCSDIR%%/html/HowToReleaseLLVM.html -%%PORTDOCS%%%%DOCSDIR%%/html/HowToSubmitABug.html -%%PORTDOCS%%%%DOCSDIR%%/html/LangRef.html -%%PORTDOCS%%%%DOCSDIR%%/html/Lexicon.html -%%PORTDOCS%%%%DOCSDIR%%/html/LinkTimeOptimization.html -%%PORTDOCS%%%%DOCSDIR%%/html/MakefileGuide.html -%%PORTDOCS%%%%DOCSDIR%%/html/Passes.html -%%PORTDOCS%%%%DOCSDIR%%/html/ProgrammersManual.html -%%PORTDOCS%%%%DOCSDIR%%/html/Projects.html -%%PORTDOCS%%%%DOCSDIR%%/html/ReleaseNotes.html -%%PORTDOCS%%%%DOCSDIR%%/html/SourceLevelDebugging.html -%%PORTDOCS%%%%DOCSDIR%%/html/Stacker.html -%%PORTDOCS%%%%DOCSDIR%%/html/SystemLibrary.html -%%PORTDOCS%%%%DOCSDIR%%/html/TableGenFundamentals.html -%%PORTDOCS%%%%DOCSDIR%%/html/TestingGuide.html -%%PORTDOCS%%%%DOCSDIR%%/html/UsingLibraries.html -%%PORTDOCS%%%%DOCSDIR%%/html/WritingAnLLVMBackend.html -%%PORTDOCS%%%%DOCSDIR%%/html/WritingAnLLVMPass.html -%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/html/img/Debugging.gif -%%PORTDOCS%%%%DOCSDIR%%/html/img/libdeps.gif -%%PORTDOCS%%%%DOCSDIR%%/html/img/lines.gif -%%PORTDOCS%%%%DOCSDIR%%/html/img/objdeps.gif -%%PORTDOCS%%%%DOCSDIR%%/html/img/venusflytrap.jpg -%%PORTDOCS%%%%DOCSDIR%%/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/html/llvm.css -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/JITTutorial1.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/JITTutorial2.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl1.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl2.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl3.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl4.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl5.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl6.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl7.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/LangImpl8.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl1.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl2.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl3.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl4.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl5.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl6.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/OCamlLangImpl7.html -%%PORTDOCS%%%%DOCSDIR%%/html/tutorial/index.html -%%PORTDOCS%%%%DOCSDIR%%/ps/bugpoint.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llc.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/lli.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-ar.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-as.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-bcanalyzer.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-config.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-db.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-dis.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-extract.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-ld.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-link.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-nm.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-prof.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvm-ranlib.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvmgcc.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/llvmgxx.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/opt.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/stkrc.ps -%%PORTDOCS%%%%DOCSDIR%%/ps/tblgen.ps -@dirrm include/llvm/Transforms/Utils -@dirrm include/llvm/Transforms/IPO -@dirrm include/llvm/Transforms -@dirrm include/llvm/Target -@dirrm include/llvm/System -@dirrm include/llvm/Support -@dirrm include/llvm/ExecutionEngine -@dirrm include/llvm/Debugger -@dirrm include/llvm/Config -@dirrm include/llvm/CodeGen -@dirrm include/llvm/Bitcode -@dirrm include/llvm/Assembly -@dirrm include/llvm/Analysis -@dirrm include/llvm/ADT -@dirrm include/llvm-c/Transforms -@dirrm include/llvm-c -@dirrm include/llvm -%%PORTDOCS%%@dirrm %%DOCSDIR%%/ps -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/img -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/tutorial -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/CommandGuide -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html -%%PORTDOCS%%@dirrm %%DOCSDIR%% diff --git a/devel/love/Makefile b/devel/love/Makefile deleted file mode 100644 index 8c03eb30e3d2..000000000000 --- a/devel/love/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# New ports collection makefile for: love -# Date created: 01 Aug 2008 -# Whom: Dmitry Marakasov <amdmi3@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= love -DISTVERSION= 0.4-0 -CATEGORIES= games devel -MASTER_SITES= SF - -MAINTAINER= amdmi3@FreeBSD.org -COMMENT= Open-source 2D game engine - -LIB_DEPENDS= IL.1:${PORTSDIR}/graphics/devil \ - physfs-1.0.1:${PORTSDIR}/devel/physfs \ - freetype.9:${PORTSDIR}/print/freetype2 -BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost - -USE_BZIP2= yes -USE_GMAKE= yes -USE_SDL= sdl mixer -USE_GL= gl glu -USE_LUA= 5.1+ - -ALL_TARGET= default - -WRKSRC= ${WRKDIR}/${PORTNAME} - -PLIST_FILES= bin/love lib/liblove.a - -PORTDOCS= * -PORTEXAMPLES= * - -post-extract: - cd ${WRKSRC} && ${FIND} . -name "*.o" -delete - -post-patch: - @${REINPLACE_CMD} -e 's|ILvoid|void|' ${WRKSRC}/src/opengl/Image.cpp \ - ${WRKSRC}/src/opengl/love_opengl.cpp - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/love ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/bin/liblove.a ${PREFIX}/lib -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/demos/*.love ${EXAMPLESDIR} -.endif - -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for f in changes.txt readme.txt - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/devel/love/distinfo b/devel/love/distinfo deleted file mode 100644 index 99a43ff681e0..000000000000 --- a/devel/love/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (love-0.4-0.tar.bz2) = b77ed79c7d2aedc0e7c79c8631db0681 -SHA256 (love-0.4-0.tar.bz2) = 287f0f16ac419fd2339ed5c0eef9123745c3ef9424086a3365b3d2468969156d -SIZE (love-0.4-0.tar.bz2) = 846487 diff --git a/devel/love/files/patch-Makefile b/devel/love/files/patch-Makefile deleted file mode 100644 index f7243aaff534..000000000000 --- a/devel/love/files/patch-Makefile +++ /dev/null @@ -1,41 +0,0 @@ ---- Makefile.orig 2008-08-29 03:42:40.000000000 +0400 -+++ Makefile 2008-08-29 18:09:43.000000000 +0400 -@@ -3,20 +3,19 @@ - # You may need to modify parts of this makefile for your system. - ###################################################################### - --CC = g++ --CFLAGS = -g0 -O3 -Wall --CFLAGS_MOD = -g0 -O3 -+CFLAGS += -Wall -+CFLAGS_MOD = $(CFLAGS) - BINDIR = bin - - # Inclusion paths. --INCLUDE_SDL = -I/usr/include/SDL --INCLUDE_LUA = -I/usr/include/lua5.1 -+INCLUDE_SDL = `$(SDL_CONFIG) --cflags` -+INCLUDE_LUA = -I$(LOCALBASE)/include/lua51 - INCLUDE_LIBLOVE = -Isrc/liblove/include --INCLUDE_FREETYPE = -I/usr/include/freetype2 -+INCLUDE_FREETYPE = -I$(LOCALBASE)/include/freetype2 - - # Linker flags. --LD_LUA = -llua5.1 --LD_SDL = -lSDL -+LD_LUA = -L$(LOCALBASE)/lib/lua51 -llua -+LD_SDL = `$(SDL_CONFIG) --libs` - LD_PHYSFS = -lphysfs - LD_FREETYPE = -lfreetype - LD_GL = -lGL -lGLU -@@ -27,8 +26,8 @@ - - default: prep $(BINDIR)/liblove.a love - --INCLUDE_COMMON = $(INCLUDE_LUA) $(INCLUDE_SDL) $(INCLUDE_LIBLOVE) --LD_COMMON = $(LD_LUA) $(LD_SDL) -+INCLUDE_COMMON = -I$(LOCALBASE)/include $(INCLUDE_LUA) $(INCLUDE_SDL) $(INCLUDE_LIBLOVE) -+LD_COMMON = -L$(LOCALBASE)/lib $(LD_LUA) $(LD_SDL) - - # - # liblove diff --git a/devel/love/pkg-descr b/devel/love/pkg-descr deleted file mode 100644 index f514f149392d..000000000000 --- a/devel/love/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -LOVE is an open-source 2D game engine which uses the versatile Lua -scripting language to create dynamic gaming experiences. It relies -on OpenGL graphics and the SDL interface library to allow for -cross-platform implementation and is an all-encompassing gaming -environment for the development and enjoyment of 2D games. - -WWW: http://www.love2d.org/ diff --git a/devel/love07/Makefile b/devel/love07/Makefile deleted file mode 100644 index 8c03eb30e3d2..000000000000 --- a/devel/love07/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# New ports collection makefile for: love -# Date created: 01 Aug 2008 -# Whom: Dmitry Marakasov <amdmi3@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= love -DISTVERSION= 0.4-0 -CATEGORIES= games devel -MASTER_SITES= SF - -MAINTAINER= amdmi3@FreeBSD.org -COMMENT= Open-source 2D game engine - -LIB_DEPENDS= IL.1:${PORTSDIR}/graphics/devil \ - physfs-1.0.1:${PORTSDIR}/devel/physfs \ - freetype.9:${PORTSDIR}/print/freetype2 -BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost - -USE_BZIP2= yes -USE_GMAKE= yes -USE_SDL= sdl mixer -USE_GL= gl glu -USE_LUA= 5.1+ - -ALL_TARGET= default - -WRKSRC= ${WRKDIR}/${PORTNAME} - -PLIST_FILES= bin/love lib/liblove.a - -PORTDOCS= * -PORTEXAMPLES= * - -post-extract: - cd ${WRKSRC} && ${FIND} . -name "*.o" -delete - -post-patch: - @${REINPLACE_CMD} -e 's|ILvoid|void|' ${WRKSRC}/src/opengl/Image.cpp \ - ${WRKSRC}/src/opengl/love_opengl.cpp - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/love ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/bin/liblove.a ${PREFIX}/lib -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/demos/*.love ${EXAMPLESDIR} -.endif - -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for f in changes.txt readme.txt - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/devel/love07/distinfo b/devel/love07/distinfo deleted file mode 100644 index 99a43ff681e0..000000000000 --- a/devel/love07/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (love-0.4-0.tar.bz2) = b77ed79c7d2aedc0e7c79c8631db0681 -SHA256 (love-0.4-0.tar.bz2) = 287f0f16ac419fd2339ed5c0eef9123745c3ef9424086a3365b3d2468969156d -SIZE (love-0.4-0.tar.bz2) = 846487 diff --git a/devel/love07/files/patch-Makefile b/devel/love07/files/patch-Makefile deleted file mode 100644 index f7243aaff534..000000000000 --- a/devel/love07/files/patch-Makefile +++ /dev/null @@ -1,41 +0,0 @@ ---- Makefile.orig 2008-08-29 03:42:40.000000000 +0400 -+++ Makefile 2008-08-29 18:09:43.000000000 +0400 -@@ -3,20 +3,19 @@ - # You may need to modify parts of this makefile for your system. - ###################################################################### - --CC = g++ --CFLAGS = -g0 -O3 -Wall --CFLAGS_MOD = -g0 -O3 -+CFLAGS += -Wall -+CFLAGS_MOD = $(CFLAGS) - BINDIR = bin - - # Inclusion paths. --INCLUDE_SDL = -I/usr/include/SDL --INCLUDE_LUA = -I/usr/include/lua5.1 -+INCLUDE_SDL = `$(SDL_CONFIG) --cflags` -+INCLUDE_LUA = -I$(LOCALBASE)/include/lua51 - INCLUDE_LIBLOVE = -Isrc/liblove/include --INCLUDE_FREETYPE = -I/usr/include/freetype2 -+INCLUDE_FREETYPE = -I$(LOCALBASE)/include/freetype2 - - # Linker flags. --LD_LUA = -llua5.1 --LD_SDL = -lSDL -+LD_LUA = -L$(LOCALBASE)/lib/lua51 -llua -+LD_SDL = `$(SDL_CONFIG) --libs` - LD_PHYSFS = -lphysfs - LD_FREETYPE = -lfreetype - LD_GL = -lGL -lGLU -@@ -27,8 +26,8 @@ - - default: prep $(BINDIR)/liblove.a love - --INCLUDE_COMMON = $(INCLUDE_LUA) $(INCLUDE_SDL) $(INCLUDE_LIBLOVE) --LD_COMMON = $(LD_LUA) $(LD_SDL) -+INCLUDE_COMMON = -I$(LOCALBASE)/include $(INCLUDE_LUA) $(INCLUDE_SDL) $(INCLUDE_LIBLOVE) -+LD_COMMON = -L$(LOCALBASE)/lib $(LD_LUA) $(LD_SDL) - - # - # liblove diff --git a/devel/love07/pkg-descr b/devel/love07/pkg-descr deleted file mode 100644 index f514f149392d..000000000000 --- a/devel/love07/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -LOVE is an open-source 2D game engine which uses the versatile Lua -scripting language to create dynamic gaming experiences. It relies -on OpenGL graphics and the SDL interface library to allow for -cross-platform implementation and is an all-encompassing gaming -environment for the development and enjoyment of 2D games. - -WWW: http://www.love2d.org/ diff --git a/devel/love5/Makefile b/devel/love5/Makefile deleted file mode 100644 index 8c03eb30e3d2..000000000000 --- a/devel/love5/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# New ports collection makefile for: love -# Date created: 01 Aug 2008 -# Whom: Dmitry Marakasov <amdmi3@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= love -DISTVERSION= 0.4-0 -CATEGORIES= games devel -MASTER_SITES= SF - -MAINTAINER= amdmi3@FreeBSD.org -COMMENT= Open-source 2D game engine - -LIB_DEPENDS= IL.1:${PORTSDIR}/graphics/devil \ - physfs-1.0.1:${PORTSDIR}/devel/physfs \ - freetype.9:${PORTSDIR}/print/freetype2 -BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost - -USE_BZIP2= yes -USE_GMAKE= yes -USE_SDL= sdl mixer -USE_GL= gl glu -USE_LUA= 5.1+ - -ALL_TARGET= default - -WRKSRC= ${WRKDIR}/${PORTNAME} - -PLIST_FILES= bin/love lib/liblove.a - -PORTDOCS= * -PORTEXAMPLES= * - -post-extract: - cd ${WRKSRC} && ${FIND} . -name "*.o" -delete - -post-patch: - @${REINPLACE_CMD} -e 's|ILvoid|void|' ${WRKSRC}/src/opengl/Image.cpp \ - ${WRKSRC}/src/opengl/love_opengl.cpp - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/love ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/bin/liblove.a ${PREFIX}/lib -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/demos/*.love ${EXAMPLESDIR} -.endif - -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for f in changes.txt readme.txt - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/devel/love5/distinfo b/devel/love5/distinfo deleted file mode 100644 index 99a43ff681e0..000000000000 --- a/devel/love5/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (love-0.4-0.tar.bz2) = b77ed79c7d2aedc0e7c79c8631db0681 -SHA256 (love-0.4-0.tar.bz2) = 287f0f16ac419fd2339ed5c0eef9123745c3ef9424086a3365b3d2468969156d -SIZE (love-0.4-0.tar.bz2) = 846487 diff --git a/devel/love5/files/patch-Makefile b/devel/love5/files/patch-Makefile deleted file mode 100644 index f7243aaff534..000000000000 --- a/devel/love5/files/patch-Makefile +++ /dev/null @@ -1,41 +0,0 @@ ---- Makefile.orig 2008-08-29 03:42:40.000000000 +0400 -+++ Makefile 2008-08-29 18:09:43.000000000 +0400 -@@ -3,20 +3,19 @@ - # You may need to modify parts of this makefile for your system. - ###################################################################### - --CC = g++ --CFLAGS = -g0 -O3 -Wall --CFLAGS_MOD = -g0 -O3 -+CFLAGS += -Wall -+CFLAGS_MOD = $(CFLAGS) - BINDIR = bin - - # Inclusion paths. --INCLUDE_SDL = -I/usr/include/SDL --INCLUDE_LUA = -I/usr/include/lua5.1 -+INCLUDE_SDL = `$(SDL_CONFIG) --cflags` -+INCLUDE_LUA = -I$(LOCALBASE)/include/lua51 - INCLUDE_LIBLOVE = -Isrc/liblove/include --INCLUDE_FREETYPE = -I/usr/include/freetype2 -+INCLUDE_FREETYPE = -I$(LOCALBASE)/include/freetype2 - - # Linker flags. --LD_LUA = -llua5.1 --LD_SDL = -lSDL -+LD_LUA = -L$(LOCALBASE)/lib/lua51 -llua -+LD_SDL = `$(SDL_CONFIG) --libs` - LD_PHYSFS = -lphysfs - LD_FREETYPE = -lfreetype - LD_GL = -lGL -lGLU -@@ -27,8 +26,8 @@ - - default: prep $(BINDIR)/liblove.a love - --INCLUDE_COMMON = $(INCLUDE_LUA) $(INCLUDE_SDL) $(INCLUDE_LIBLOVE) --LD_COMMON = $(LD_LUA) $(LD_SDL) -+INCLUDE_COMMON = -I$(LOCALBASE)/include $(INCLUDE_LUA) $(INCLUDE_SDL) $(INCLUDE_LIBLOVE) -+LD_COMMON = -L$(LOCALBASE)/lib $(LD_LUA) $(LD_SDL) - - # - # liblove diff --git a/devel/love5/pkg-descr b/devel/love5/pkg-descr deleted file mode 100644 index f514f149392d..000000000000 --- a/devel/love5/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -LOVE is an open-source 2D game engine which uses the versatile Lua -scripting language to create dynamic gaming experiences. It relies -on OpenGL graphics and the SDL interface library to allow for -cross-platform implementation and is an all-encompassing gaming -environment for the development and enjoyment of 2D games. - -WWW: http://www.love2d.org/ diff --git a/devel/msp430-gcc3/Makefile b/devel/msp430-gcc3/Makefile deleted file mode 100644 index 70a7dd964419..000000000000 --- a/devel/msp430-gcc3/Makefile +++ /dev/null @@ -1,63 +0,0 @@ -# New ports collection makefile for: msp430-gcc -# Date created: 15 October 2002 -# Whom: Lev Serebryakov <lev@serebryakov.spb.ru> -# -# $FreeBSD$ -# - -PORTNAME= gcc -PORTVERSION= ${GCCVERSION}.${PATCHVERSION} -PORTEPOCH= 2 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_SOURCEWARE} \ - http://lev.serebryakov.spb.ru/download/msp430/:patches -MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${PORTNAME}-${GCCVERSION} -PKGNAMEPREFIX= msp430- -DISTFILES= ${PORTNAME}-core-${GCCVERSION}${EXTRACT_SUFX} \ - ${PKGNAMEPREFIX}${PORTNAME}-${GCCVERSION}.${PATCHVERSION}${EXTRACT_SUFX}:patches - -MAINTAINER= lev@FreeBSD.org -COMMENT= FSF gcc-3.4 for TI's msp430 MCUs cross-development - -BUILD_DEPENDS= ${PKGNAMEPREFIX}as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils \ - ${PKGNAMEPREFIX}ld:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils -RUN_DEPENDS= ${PKGNAMEPREFIX}as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils \ - ${PKGNAMEPREFIX}ld:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils - -GCCVERSION= 3.4.4 -PATCHVERSION= 20050317 - -WRKSRC= ${WRKDIR}/${PORTNAME}-${GCCVERSION} - -USE_BZIP2= yes -USE_GMAKE= yes -USE_PERL5_BUILD=yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --target=${PKGNAMEPREFIX:S/-$//} \ - --with-gcc --with-gnu-ld --with-gnu-as \ - --enable-languages=c --disable-nls -INFO_PATH= ${PKGNAMEPREFIX:S/-$//}/info -MAKE_ENV= PATH=${PREFIX}/bin:${PATH} -MAN1= ${PKGNAMEPREFIX}gcc.1 ${PKGNAMEPREFIX}cpp.1 ${PKGNAMEPREFIX}gcov.1 - -PLIST_SUB+= PORTVERSION=${PORTVERSION} GCC_TARG=${PKGNAMEPREFIX:S/-$//} \ - GCC_REV=${GCCVERSION} - -INFO= cpp cppinternals gcc gccinstall gccint -INFO_PATH= ${PKGNAMEPREFIX:S/-$//}/info - -BINARIES= gcc gcc-${GCCVERSION} gcov cpp - -.include <bsd.port.pre.mk> - -post-configure: - @${PERL} -pi.bak -e 's,^(TARGET_CONFIGDIRS\s*=).+$$,\1,' ${WRKSRC}/Makefile -# @${PERL} -pi.bak -e 's,^(install-info:),\1\ndonot-\1,' ${WRKSRC}/gcc/Makefile - -post-install: -.for F in ${BINARIES} - @${LN} -f ${PREFIX}/bin/${PKGNAMEPREFIX}$F \ - ${PREFIX}/${PKGNAMEPREFIX:S/-$//}/bin/$F -.endfor - -.include <bsd.port.post.mk> diff --git a/devel/msp430-gcc3/distinfo b/devel/msp430-gcc3/distinfo deleted file mode 100644 index e6acc1dba95d..000000000000 --- a/devel/msp430-gcc3/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (gcc-core-3.4.4.tar.bz2) = 9dd911fd9bc136ca42b73c68735d853b -SHA256 (gcc-core-3.4.4.tar.bz2) = a390ca6123fe71c665f4422e124ced31efbbe98dd08e8f8d171caeba892ab472 -SIZE (gcc-core-3.4.4.tar.bz2) = 13153342 -MD5 (msp430-gcc-3.4.4.20050317.tar.bz2) = 20b2a266c6ade18fe08bb2b89ac6ba5c -SHA256 (msp430-gcc-3.4.4.20050317.tar.bz2) = 3ea247fea72b2a4280ae6bbb9028bda84b48fbaae23a1e8332a87f3e16d31ffe -SIZE (msp430-gcc-3.4.4.20050317.tar.bz2) = 139578 diff --git a/devel/msp430-gcc3/files/patch-Makefile.in b/devel/msp430-gcc3/files/patch-Makefile.in deleted file mode 100644 index 02ba348652f8..000000000000 --- a/devel/msp430-gcc3/files/patch-Makefile.in +++ /dev/null @@ -1,17 +0,0 @@ ---- Makefile.in.orig Tue Aug 3 13:53:30 2004 -+++ Makefile.in Tue Aug 3 13:53:56 2004 -@@ -19885,10 +19885,10 @@ - maybe-install-libiberty: - - install-libiberty: installdirs -- @r=`${PWD_COMMAND}`; export r; \ -- s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ -- $(SET_LIB_PATH) \ -- (cd libiberty && $(MAKE) $(FLAGS_TO_PASS) install) -+# @r=`${PWD_COMMAND}`; export r; \ -+# s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ -+# $(SET_LIB_PATH) \ -+# (cd libiberty && $(MAKE) $(FLAGS_TO_PASS) install) - - - .PHONY: configure-libtool maybe-configure-libtool diff --git a/devel/msp430-gcc3/files/patch-gcc-Makefile.in b/devel/msp430-gcc3/files/patch-gcc-Makefile.in deleted file mode 100644 index e27352523b1b..000000000000 --- a/devel/msp430-gcc3/files/patch-gcc-Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- gcc/Makefile.in.orig Tue Aug 3 13:57:27 2004 -+++ gcc/Makefile.in Tue Aug 3 13:57:39 2004 -@@ -2963,9 +2963,6 @@ - $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext) \ - $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext) \ - $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext) \ -- $(DESTDIR)$(man7dir)/fsf-funding$(man7ext) \ -- $(DESTDIR)$(man7dir)/gfdl$(man7ext) \ -- $(DESTDIR)$(man7dir)/gpl$(man7ext) - - $(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7 - -rm -f $@ diff --git a/devel/msp430-gcc3/files/patch-gcc-config-msp430-msp430.c b/devel/msp430-gcc3/files/patch-gcc-config-msp430-msp430.c deleted file mode 100644 index 4eae66bf7d65..000000000000 --- a/devel/msp430-gcc3/files/patch-gcc-config-msp430-msp430.c +++ /dev/null @@ -1,10 +0,0 @@ ---- gcc/config/msp430/msp430.c.orig Mon Sep 19 17:03:53 2005 -+++ gcc/config/msp430/msp430.c Mon Sep 19 17:04:11 2005 -@@ -149,6 +149,7 @@ - MSP430_ISA_14 = 14, - MSP430_ISA_15 = 15, - MSP430_ISA_16 = 16, -+ MSP430_ISA_210 = 210, - MSP430_ISA_31 = 31, - MSP430_ISA_32 = 32, - MSP430_ISA_33 = 33, diff --git a/devel/msp430-gcc3/pkg-descr b/devel/msp430-gcc3/pkg-descr deleted file mode 100644 index d0fd961be09d..000000000000 --- a/devel/msp430-gcc3/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -FSF gcc-3.3 for TI's msp430 MCUs cross-development - -This brings the gcc compiler for the Texas Instruments MSP430 16-bit -RISC-like family of microcontrollers. - -Includes only C compiler. - -GCC site: http://gcc.gnu.org/ -MSP430 site: http://www.ti.com/msp430/ - -WWW: http://mspgcc.sourceforge.net/ diff --git a/devel/msp430-gcc3/pkg-plist b/devel/msp430-gcc3/pkg-plist deleted file mode 100644 index 7615dabc3079..000000000000 --- a/devel/msp430-gcc3/pkg-plist +++ /dev/null @@ -1,50 +0,0 @@ -%%GCC_TARG%%/bin/cpp -%%GCC_TARG%%/bin/gcc -%%GCC_TARG%%/bin/gcc-%%GCC_REV%% -%%GCC_TARG%%/bin/gcov -bin/%%GCC_TARG%%-cpp -bin/%%GCC_TARG%%-gcc -bin/%%GCC_TARG%%-gcc-%%GCC_REV%% -bin/%%GCC_TARG%%-gccbug -bin/%%GCC_TARG%%-gcov -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/include/README -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/include/float.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/include/iso646.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/include/limits.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/include/stdarg.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/include/stdbool.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/include/stddef.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/include/unwind.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/include/varargs.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools/mkheaders.conf -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools/include/float.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools/include/iso646.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools/include/limits.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools/include/stdarg.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools/include/stdbool.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools/include/stddef.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools/include/unwind.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools/include/varargs.h -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/libgcc.a -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/libgcov.a -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/msp1/libgcc.a -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/msp1/libgcov.a -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/msp2/libgcc.a -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/msp2/libgcov.a -lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/specs -libexec/gcc/%%GCC_TARG%%/%%GCC_REV%%/cc1 -libexec/gcc/%%GCC_TARG%%/%%GCC_REV%%/collect2 -libexec/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools/mkheaders -@dirrm lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/include -@dirrm lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools/include -@dirrm lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools -@dirrm lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/msp1 -@dirrm lib/gcc/%%GCC_TARG%%/%%GCC_REV%%/msp2 -@dirrm lib/gcc/%%GCC_TARG%%/%%GCC_REV%% -@dirrm lib/gcc/%%GCC_TARG%% -@dirrmtry lib/gcc -@dirrm libexec/gcc/%%GCC_TARG%%/%%GCC_REV%%/install-tools -@dirrm libexec/gcc/%%GCC_TARG%%/%%GCC_REV%% -@dirrm libexec/gcc/%%GCC_TARG%% -@dirrmtry libexec/gcc - diff --git a/devel/oniguruma5/Makefile b/devel/oniguruma5/Makefile deleted file mode 100644 index 9d565cf7934c..000000000000 --- a/devel/oniguruma5/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# New ports collection makefile for: oniguruma4 -# Date created: 31 January 2003 -# Whom: Akinori MUSHA aka knu <knu@idaemons.org> -# -# $FreeBSD$ -# - -PORTNAME= oniguruma -PORTVERSION= 4.7.1 -CATEGORIES= devel textproc -MASTER_SITES= http://www.geocities.jp/kosako3/oniguruma/archive/ -DISTNAME= onig-${PORTVERSION} -DIST_SUBDIR= ruby - -MAINTAINER= dinoex@FreeBSD.org -COMMENT= A BSDL Regular Expressions library compatible with POSIX/GNU/Perl - -CONFLICTS= oniguruma-2.* -USE_GNOME= gnometarget -GNU_CONFIGURE= yes -USE_LDCONFIG= yes -DOCS= HISTORY README doc/* - -post-patch: - ${REINPLACE_CMD} -e 's|echo aout|echo elf|' \ - ${WRKSRC}/configure - -post-configure: - ${SED} -e 's|%%PREFIX%%|${PREFIX}|' \ - ${FILESDIR}/onig-config > ${WRKSRC}/onig-config - -post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/onig-config ${PREFIX}/bin/ -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for f in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ -.endfor -.endif -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/sample/*.c ${WRKSRC}/sample/Makefile* \ - ${EXAMPLESDIR}/ -.endif - -.include <bsd.port.mk> diff --git a/devel/oniguruma5/distinfo b/devel/oniguruma5/distinfo deleted file mode 100644 index 6dbff05bb1d9..000000000000 --- a/devel/oniguruma5/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ruby/onig-4.7.1.tar.gz) = fbd9c627e2d6eb78603b500a290cc37b -SHA256 (ruby/onig-4.7.1.tar.gz) = 26cd6dc3127bbc1f65909385563628ec5c6473a4218a092cb41fb16e77c2a059 -SIZE (ruby/onig-4.7.1.tar.gz) = 571831 diff --git a/devel/oniguruma5/files/onig-config b/devel/oniguruma5/files/onig-config deleted file mode 100644 index 5ad4f48a0b1e..000000000000 --- a/devel/oniguruma5/files/onig-config +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh - -prefix=%%PREFIX%% -exec_prefix=${prefix} -exec_prefix_set=no - -usage="\ -Usage: onig-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs] [--static-libs]" - -if test $# -eq 0; then - echo "${usage}" 1>&2 - exit 1 -fi - -while test $# -gt 0; do - case "$1" in - -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; - *) optarg= ;; - esac - - case $1 in - --prefix=*) - prefix=$optarg - if test $exec_prefix_set = no ; then - exec_prefix=$optarg - fi - ;; - --prefix) - echo $prefix - ;; - --exec-prefix=*) - exec_prefix=$optarg - exec_prefix_set=yes - ;; - --exec-prefix) - echo $exec_prefix - ;; - --version) - echo 1.2.9 - ;; - --cflags) - echo -I${prefix}/include - ;; - --libs|--static-libs) - libdirs="-L${exec_prefix}/lib -Wl,-rpath,${exec_prefix}/lib" - echo $libdirs -lonig - ;; - *) - echo "${usage}" 1>&2 - exit 1 - ;; - esac - shift -done diff --git a/devel/oniguruma5/pkg-descr b/devel/oniguruma5/pkg-descr deleted file mode 100644 index 35c25052b79d..000000000000 --- a/devel/oniguruma5/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -Oniguruma is a BSDL Regular Expression library written for ruby-m17n, -which implements all of Perl extensions, many of .NET extensions plus -more. - -It provides multiple APIs for ease of use; GNU regex compatible API, -POSIX regex compatible API and its own. - -This library is multilingualized by design and can have one encoding -for each regex object. Currently supported character encodings are -ASCII, UTF-8, EUC-JP and Shift_JIS. - -4.x supports Ruby1.9. - -Author: K.Kosako <kosako@sofnec.co.jp> -WWW: http://www.geocities.jp/kosako3/oniguruma/ diff --git a/devel/oniguruma5/pkg-plist b/devel/oniguruma5/pkg-plist deleted file mode 100644 index a2c39d416452..000000000000 --- a/devel/oniguruma5/pkg-plist +++ /dev/null @@ -1,28 +0,0 @@ -bin/onig-config -include/oniggnu.h -include/onigposix.h -include/oniguruma.h -lib/libonig.a -lib/libonig.la -lib/libonig.so -lib/libonig.so.1 -%%PORTDOCS%%%%DOCSDIR%%/API -%%PORTDOCS%%%%DOCSDIR%%/API.ja -%%PORTDOCS%%%%DOCSDIR%%/FAQ -%%PORTDOCS%%%%DOCSDIR%%/FAQ.ja -%%PORTDOCS%%%%DOCSDIR%%/HISTORY -%%PORTDOCS%%%%DOCSDIR%%/RE -%%PORTDOCS%%%%DOCSDIR%%/RE.ja -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%@dirrm %%DOCSDIR%% -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.am -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/encode.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/listcap.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/names.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/posix.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sql.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/syntax.c -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% diff --git a/devel/p4/Makefile b/devel/p4/Makefile deleted file mode 100644 index 4d0dc8579d2a..000000000000 --- a/devel/p4/Makefile +++ /dev/null @@ -1,151 +0,0 @@ -# New ports collection makefile for: perforce -# Date created: 3 Mai 2000 -# Whom: sam@inf.enst.fr -# -# $FreeBSD$ -# - -PORTNAME= perforce -PORTVERSION= ${VERSION} -PORTREVISION= ${REVISION} -PORTEPOCH= 1 -CATEGORIES= devel -MASTER_SITES= ftp://ftp.perforce.com/pub/perforce/r${PORTVERSION}/bin.${PLATFORM}/ \ - http://filehost.perforce.com/perforce/r${PORTVERSION}/bin.${PLATFORM}/ -EXTRACT_SUFX= -DISTFILES= ${BIN_FILES} ${SBIN_FILES} -EXTRACT_ONLY= # none - -MAINTAINER= lth@FreeBSD.org -COMMENT= Perforce client and server - -ONLY_FOR_ARCHS= alpha amd64 i386 sparc64 - -DIST_SUBDIR= perforce/${VERSION}/${ARCH} -MD5_FILE= ${MASTERDIR}/distinfo.${PLATFORM} - -# -# This is a kludge. I don't know a better way to set PORTVERSION and -# PORTREVISION such that pkg_version figures out an update is needed -# -ARCH!= /usr/bin/uname -p -ARCH?= i386 - -.if ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == sparc64 -VERSION= 07.3 -REVISION= 2 -BIN_FILES= p4 -SBIN_FILES= p4d p4ftpd p4p p4web -REL_NOTES= http://www.perforce.com/perforce/doc.073/user/relnotes.txt -.elif ${ARCH} == alpha -VERSION= 99.1 -REVISION= 1 -BIN_FILES= p4 -SBIN_FILES= p4d -REL_NOTES= http://www.perforce.com/perforce/doc.991/user/relnotes.txt -.else -VERSION= 0 -IGNORE= unsupported platform, sorry -.endif - -# End of kludge - -RESTRICTED= Restricted distribution - -NO_WRKSUBDIR= yes - -PLIST_FILES= ${BIN_FILES:S+^+bin/+g} \ - ${SBIN_FILES:S+^+sbin/+g} - -.include <bsd.port.pre.mk> - -# Figure out what to install -.if ${ARCH} == alpha -PLATFORM= freebsdaxp -.elif ${ARCH} == amd64 -.if ${OSVERSION} >= 504000 && ${OSVERSION} < 600000 -PLATFORM= freebsd54x86_64 -.elif ${OSVERSION} >= 600000 -PLATFORM= freebsd60x86_64 -.endif -.elif ${ARCH} == i386 -.if ${OSVERSION} >= 504000 && ${OSVERSION} < 600000 -PLATFORM= freebsd54x86 -.elif ${OSVERSION} >= 600000 -PLATFORM= freebsd60x86 -.endif -.elif ${ARCH} == sparc64 && ${OSVERSION} >= 601000 -PLATFORM= freebsd61sparc64 -.else -IGNORE= unsupported OS release, sorry -.endif - -.if ${OSVERSION} >= 700043 -LIB_DEPENDS+= c.6:${PORTSDIR}/misc/compat6x -.endif - -# These variables are all configurable. -PERFORCE_USER?= p4admin -PERFORCE_UID?= 94 -PERFORCE_GROUP?= p4admin -PERFORCE_GID?= 94 -PERFORCE_HOME?= ${LOCALBASE}/perforce -PERFORCE_ROOT?= ${PERFORCE_HOME}/root -PERFORCE_LOGS?= ${PERFORCE_HOME}/logs -PERFORCE_PORT?= 1666 -PERFORCE_CACHE?= ${PERFORCE_HOME}/cache -PERFORCE_TARGET?= perforce:1666 - -pre-everything:: - @${ECHO} "If the checksums fail, try doing 'make distclean'" - @${ECHO} "to force getting the latest binaries from Perforce." - @${ECHO} "" - @${ECHO} "Read the release notes for this release to determine" - @${ECHO} "how to migrate the database to the new version. In" - @${ECHO} "most instances, it is done automatically. However," - @${ECHO} "sometimes it must be done manually." - @${ECHO} "" - @${ECHO} "The release notes for this version are at" - @${ECHO} ${REL_NOTES} - @${ECHO} "" - @${ECHO} "Checkpoint and backup your data before installing!" - -do-build: - ${SED} -e "s,@PERFORCE_ROOT@,${PERFORCE_ROOT},g" \ - -e "s,@PERFORCE_LOGS@,${PERFORCE_LOGS},g" \ - -e "s,@PERFORCE_USER@,${PERFORCE_USER},g" \ - -e "s,@PERFORCE_PORT@,${PERFORCE_PORT},g" \ - -e "s,@PERFORCE_CACHE@,${PERFORCE_CACHE},g" \ - -e "s,@PERFORCE_TARGET@,${PERFORCE_TARGET},g" \ - < ${FILESDIR}/perforce.conf.in > ${WRKSRC}/perforce.conf - ${SED} -e "s,@PREFIX@,${PREFIX},g" \ - < ${FILESDIR}/perforce.sh.in > ${WRKSRC}/perforce.sh - -pre-su-install: - ${SETENV} PKG_PREFIX=${PREFIX} \ - PERFORCE_USER=${PERFORCE_USER} \ - PERFORCE_UID=${PERFORCE_UID} \ - PERFORCE_GROUP=${PERFORCE_GROUP} \ - PERFORCE_GID=${PERFORCE_GID} \ - PERFORCE_HOME=${PERFORCE_HOME} \ - PERFORCE_ROOT=${PERFORCE_ROOT} \ - PERFORCE_LOGS=${PERFORCE_LOGS} \ - ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL - -do-install: -.for f in ${BIN_FILES} - ${INSTALL_PROGRAM} ${_DISTDIR}/${f} ${PREFIX}/bin/ -.endfor -.for f in ${SBIN_FILES} - ${INSTALL_PROGRAM} ${_DISTDIR}/${f} ${PREFIX}/sbin/ -.endfor - ${INSTALL_DATA} ${WRKSRC}/perforce.conf ${PREFIX}/etc/perforce.conf.default; \ - if [ ! -f ${PREFIX}/etc/perforce.conf ]; then \ - ${CP} -p ${PREFIX}/etc/perforce.conf.default ${PREFIX}/etc/perforce.conf; \ - fi - ${INSTALL_SCRIPT} ${WRKSRC}/perforce.sh ${PREFIX}/etc/rc.d/ - -post-install: - ${ECHO_CMD} "@unexec ${RMDIR} ${PERFORCE_ROOT} ${PERFORCE_LOGS} ${PERFORCE_HOME} 2>/dev/null || true" >> ${TMPPLIST} - -.include <bsd.port.post.mk> diff --git a/devel/p4/distinfo.freebsd54x86 b/devel/p4/distinfo.freebsd54x86 deleted file mode 100644 index 094d657eaeeb..000000000000 --- a/devel/p4/distinfo.freebsd54x86 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/i386/p4) = 2cd989467d149b7bd43c03ff7fcd8a51 -SHA256 (perforce/07.3/i386/p4) = 6fe047f7de842ac484d17a0343b2c3f2d2bbf70b1de3709a2401e94689f86c58 -SIZE (perforce/07.3/i386/p4) = 519272 -MD5 (perforce/07.3/i386/p4d) = 5bc4560650641cf8c3019e5cf5f84019 -SHA256 (perforce/07.3/i386/p4d) = 4419a50609263580f498ba4b00383d81bab6f4ab2690c62e90c8b259afb7f42d -SIZE (perforce/07.3/i386/p4d) = 1508572 -MD5 (perforce/07.3/i386/p4ftpd) = 11375cc50835c475e34aa061cbf4906a -SHA256 (perforce/07.3/i386/p4ftpd) = 77c39019a9833ff534a48e580f6170f57b0fc4d9f2f3e7cc31028ef96edf57df -SIZE (perforce/07.3/i386/p4ftpd) = 916553 -MD5 (perforce/07.3/i386/p4p) = cbae23c9949cb0283e527af16ee13285 -SHA256 (perforce/07.3/i386/p4p) = ab5dd647aaabccbaefcf57f1b38a04a68db913f95e50c43ae55b47e30cb2da72 -SIZE (perforce/07.3/i386/p4p) = 473064 -MD5 (perforce/07.3/i386/p4web) = 6d1a9472bc5796904f4895a17c4fe96e -SHA256 (perforce/07.3/i386/p4web) = e333214fcd23ad5ac9abb03b92f3dceb27bfc05dea87a35fe43e76f2192b28a0 -SIZE (perforce/07.3/i386/p4web) = 2246201 diff --git a/devel/p4/distinfo.freebsd54x86_64 b/devel/p4/distinfo.freebsd54x86_64 deleted file mode 100644 index 0f0e8d30bd6c..000000000000 --- a/devel/p4/distinfo.freebsd54x86_64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/amd64/p4) = b1f0661f906830da3fd648c45d363e90 -SHA256 (perforce/07.3/amd64/p4) = da6a4172e3a24804f04df7ce61d9320a7b38c1b56298bb8249c80a0e977a16f1 -SIZE (perforce/07.3/amd64/p4) = 579528 -MD5 (perforce/07.3/amd64/p4d) = eca89bb3e34c4f535e1ee5ba70620964 -SHA256 (perforce/07.3/amd64/p4d) = cda04ac3d43b6235c911cd8fc7bb589bc80ebd604d15cf24efa415707f7821ea -SIZE (perforce/07.3/amd64/p4d) = 1688616 -MD5 (perforce/07.3/amd64/p4ftpd) = 343d1d7ea997668e4afbf206728be0fb -SHA256 (perforce/07.3/amd64/p4ftpd) = e1805c8dd97249d3b7095869a77d73797c24c76e2717707e5eb0cfb18daa5536 -SIZE (perforce/07.3/amd64/p4ftpd) = 974539 -MD5 (perforce/07.3/amd64/p4p) = 3c7759ee9b765cef7a1fdc2e44aed410 -SHA256 (perforce/07.3/amd64/p4p) = a0e350876794e2e07f1a242bc2b9b1f7e6ae233368c0442d17dad5a3437f59ed -SIZE (perforce/07.3/amd64/p4p) = 566344 -MD5 (perforce/07.3/amd64/p4web) = 7446f18d50724e5db46522dd8cedaaeb -SHA256 (perforce/07.3/amd64/p4web) = 3e5deab8a0f55fb0764e795c1858c1afb8f94c3378c095ca366a0f35bc62cfee -SIZE (perforce/07.3/amd64/p4web) = 2319744 diff --git a/devel/p4/distinfo.freebsd60x86 b/devel/p4/distinfo.freebsd60x86 deleted file mode 100644 index 0c55add8fb5f..000000000000 --- a/devel/p4/distinfo.freebsd60x86 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/i386/p4) = ea0f8d86bfe7f86d225e3a871c54f8d4 -SHA256 (perforce/07.3/i386/p4) = a0c6806ccf67ba60c8f85c8d1131e3776d6b02722ed2702b7f89fe7081fe59b8 -SIZE (perforce/07.3/i386/p4) = 519916 -MD5 (perforce/07.3/i386/p4d) = a0ea299963e1e95b0ffc69456d8594f3 -SHA256 (perforce/07.3/i386/p4d) = 333f0c028973a66820f0fd5530532a72d57a6dddad8b238e50045844cd6e5662 -SIZE (perforce/07.3/i386/p4d) = 1517152 -MD5 (perforce/07.3/i386/p4ftpd) = b2d83ebb3aecea264ca9036b28b8eb7f -SHA256 (perforce/07.3/i386/p4ftpd) = 8341912d704c313a1cf68b98f7c00bd91faab134919465e429121703c13514f4 -SIZE (perforce/07.3/i386/p4ftpd) = 812601 -MD5 (perforce/07.3/i386/p4p) = b80df3f40d448b29e357dc901daf0f19 -SHA256 (perforce/07.3/i386/p4p) = 64fdc6dc97d8c19742da44b1cef74b2efe1625cbde34a207935f0c4cf4e4b6fb -SIZE (perforce/07.3/i386/p4p) = 477152 -MD5 (perforce/07.3/i386/p4web) = 8305a455c72b2963d085ddc95118c61a -SHA256 (perforce/07.3/i386/p4web) = 2b04bf576378d37856c27914ee99a4c18c8a44c017fd6d81dd2d8fadb513c1d0 -SIZE (perforce/07.3/i386/p4web) = 2144460 diff --git a/devel/p4/distinfo.freebsd60x86_64 b/devel/p4/distinfo.freebsd60x86_64 deleted file mode 100644 index 142869a74df2..000000000000 --- a/devel/p4/distinfo.freebsd60x86_64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/amd64/p4) = 60512b2e37f7d9fab9d7c16dae853f79 -SHA256 (perforce/07.3/amd64/p4) = b7e670119dcb59f77685c90680575385c1c6ef4e08a4998c7308582adeeeb15a -SIZE (perforce/07.3/amd64/p4) = 587112 -MD5 (perforce/07.3/amd64/p4d) = 4223da0eb4bc03f5984f5420d92a770c -SHA256 (perforce/07.3/amd64/p4d) = 8a66df1d7dc8f488abdbaae79aa1b1b5bd6ac76fc25511c6d0c21f6259b0d332 -SIZE (perforce/07.3/amd64/p4d) = 1685024 -MD5 (perforce/07.3/amd64/p4ftpd) = d9c8a371a074cb111d9ac6a5b8bf8d4c -SHA256 (perforce/07.3/amd64/p4ftpd) = e8566db11a5dcc879d425afc43fc4be222be0556a4f4433e353afa791688b69b -SIZE (perforce/07.3/amd64/p4ftpd) = 873601 -MD5 (perforce/07.3/amd64/p4p) = 051620326a4130c12f7c1a83fc39c7b7 -SHA256 (perforce/07.3/amd64/p4p) = 6b8995d695531eee605fb570947c07f22d8037b5baae60ba25b9480253e52ac2 -SIZE (perforce/07.3/amd64/p4p) = 577632 -MD5 (perforce/07.3/amd64/p4web) = 34c80e3ec0da3f5765efc1d0c0ee706e -SHA256 (perforce/07.3/amd64/p4web) = 2c9762cef39b4fd547c9dde3bf0e7006252db1eaef0f07ef752b55b2975ecc67 -SIZE (perforce/07.3/amd64/p4web) = 2220526 diff --git a/devel/p4/distinfo.freebsd61sparc64 b/devel/p4/distinfo.freebsd61sparc64 deleted file mode 100644 index 235a8a801ffa..000000000000 --- a/devel/p4/distinfo.freebsd61sparc64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/sparc64/p4) = d771d3a59514821f64fe3354ebcf85b3 -SHA256 (perforce/07.3/sparc64/p4) = a692f53cc6b73a53b66a1b97fcbf84eff740f4f0bb65fa30f4f76de568f9ad28 -SIZE (perforce/07.3/sparc64/p4) = 596608 -MD5 (perforce/07.3/sparc64/p4d) = 36361e19fac8a7a46f3641e38e73e627 -SHA256 (perforce/07.3/sparc64/p4d) = 731df4345ebcaa0772a9b780e7008737e662b9096df1a164e6c0e37f2aae2d77 -SIZE (perforce/07.3/sparc64/p4d) = 1700144 -MD5 (perforce/07.3/sparc64/p4ftpd) = f05332cb6a97c780f5fe44091beb5eed -SHA256 (perforce/07.3/sparc64/p4ftpd) = 7eb10a2dafdc20ab897ab299203a96dbbee04105d36d9071d8d79af407fabf55 -SIZE (perforce/07.3/sparc64/p4ftpd) = 1005411 -MD5 (perforce/07.3/sparc64/p4p) = d3873efb2c4429aa3a148f2d31686b9c -SHA256 (perforce/07.3/sparc64/p4p) = 8d16eef2c6ce1809c9f805816b2dd801d306dcf267ef9538c6d0dccdb4d07432 -SIZE (perforce/07.3/sparc64/p4p) = 587024 -MD5 (perforce/07.3/sparc64/p4web) = 29863f30c09b77f49a01ad06d5a3679c -SHA256 (perforce/07.3/sparc64/p4web) = 1e18fab94e68db1a55585642c2c6e342a765d2863e2d7394c3da8c0b400b21db -SIZE (perforce/07.3/sparc64/p4web) = 2497805 diff --git a/devel/p4/distinfo.freebsdaxp b/devel/p4/distinfo.freebsdaxp deleted file mode 100644 index c770a1d264b8..000000000000 --- a/devel/p4/distinfo.freebsdaxp +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (perforce/99.1/alpha/p4) = 7c1300a82ab03b7ede46cf8a02c48fd9 -SHA256 (perforce/99.1/alpha/p4) = 2b9b6c9f161c9f468c079f297058bbb514b48a410907e65a86360f671c4571d0 -SIZE (perforce/99.1/alpha/p4) = 201424 -MD5 (perforce/99.1/alpha/p4d) = 8f34c41c18185011ed848aaf450cffa5 -SHA256 (perforce/99.1/alpha/p4d) = 6d688c995df2c0bd4355ff19158b03931483694ed9fc67055e31eb2c53593841 -SIZE (perforce/99.1/alpha/p4d) = 945544 diff --git a/devel/p4/files/perforce.conf.in b/devel/p4/files/perforce.conf.in deleted file mode 100644 index 803c56f86d17..000000000000 --- a/devel/p4/files/perforce.conf.in +++ /dev/null @@ -1,75 +0,0 @@ -# -# Perforce FreeBSD configuration file -# -# -# $FreeBSD$ - -# -# Perforce ROOT -# -PERFORCE_ROOT="@PERFORCE_ROOT@" - -# -# Perforce user (it is recommended to run p4d as a non-root user) -# -PERFORCE_USER="@PERFORCE_USER@" - -# -# p4d/p4p port (default: 1666) -# -PERFORCE_PORT="@PERFORCE_PORT@" - -# -# p4p cache directory -# -PERFORCE_PROXY_CACHE="@PERFORCE_CACHE@" - -# -# p4p target server (default: perforce:1666) -# -PERFORCE_PROXY_TARGET="@PERFORCE_TARGET@" - -# -# p4d options (see man p4d) -# -PERFORCE_OPTIONS="-d -p $PERFORCE_PORT -v server=1 -L @PERFORCE_LOGS@/p4d.log" - -# -# Uncomment this line to have the server started automatically -# -#PERFORCE_START=yes - -# -# p4ftpd options (see p4ftpd -h) -# -PERFORCE_FTPD_OPTIONS="-d -p $PERFORCE_PORT -v server=1 -L @PERFORCE_LOGS@/p4ftpd.log" - -# -# Uncomment this line to have the server started automatically -# -#PERFORCE_FTPD_START=yes - -# -# p4p options (see p4p -h) -# -PERFORCE_PROXY_OPTIONS="-d -p $PERFORCE_PORT -t $PERFORCE_PROXY_TARGET -r $PERFORCE_PROXY_CACHE -v server=1 -L @PERFORCE_LOGS@/p4p.log" - -# -# Uncomment this line to have the proxy server started automatically -# -#PERFORCE_PROXY_START=yes - -# -# p4web port -# -PERFORCE_WEB_PORT="6060" - -# -# p4web options (see p4web -h) -# -PERFORCE_WEB_OPTIONS="-B -w $PERFORCE_WEB_PORT -p $PERFORCE_PORT -v server=1" - -# -# Uncomment this line to have the web server started automatically -# -#PERFORCE_WEB_START=yes diff --git a/devel/p4/files/perforce.sh.in b/devel/p4/files/perforce.sh.in deleted file mode 100644 index 2ebc5809fa48..000000000000 --- a/devel/p4/files/perforce.sh.in +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -p4d=@PREFIX@/sbin/p4d -p4ftpd=@PREFIX@/sbin/p4ftpd -p4p=@PREFIX@/sbin/p4p -p4web=@PREFIX@/sbin/p4web - -case $1 in -start) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4d -a x$PERFORCE_START = xyes ]; then - echo -n ' p4d' - su -fm $PERFORCE_USER -c "$p4d -r $PERFORCE_ROOT $PERFORCE_OPTIONS" - fi - if [ -x $p4ftpd -a x$PERFORCE_FTPD_START = xyes ]; then - echo -n ' p4ftpd' - $p4ftpd $PERFORCE_FTPD_OPTIONS - fi - if [ -x $p4p -a x$PERFORCE_PROXY_START = xyes ]; then - echo -n ' p4p' - $p4p $PERFORCE_PROXY_OPTIONS - fi - if [ -x $p4web -a x$PERFORCE_WEB_START = xyes ]; then - echo -n ' p4web' - su -fm $PERFORCE_USER -c "$p4web $PERFORCE_WEB_OPTIONS &" >/dev/null 2>&1 - fi - - ;; -stop) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4ftpd ]; then - killall -u 0 p4ftpd >/dev/null 2>&1 && echo -n ' p4ftpd' - fi - if [ -x $p4d ]; then - killall -u $PERFORCE_USER p4d >/dev/null 2>&1 && echo -n ' p4d' - fi - if [ -x $p4p ]; then - killall -u 0 p4p > /dev/null 2>&1 && echo -n ' p4p' - fi - if [ -x $p4web ]; then - killall -u $PERFORCE_USER p4web > /dev/null 2>&1 && echo -n ' p4web' - fi - ;; -restart) - $0 stop - sleep 1 - $0 start - ;; -checkpoint) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4d -a x$PERFORCE_START = xyes ]; then - su -fm $PERFORCE_USER -c "$p4d -r $PERFORCE_ROOT -jc" - fi - ;; -*) - echo "usage: $0 {start|stop|restart|checkpoint}" - exit 64 - ;; -esac diff --git a/devel/p4/pkg-descr b/devel/p4/pkg-descr deleted file mode 100644 index e6d35851b44b..000000000000 --- a/devel/p4/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Perforce is a commercial revision control system that can be used -gratis for developing free software. (see the WWW page for details). - -WWW: http://www.perforce.com/ diff --git a/devel/p4/pkg-install b/devel/p4/pkg-install deleted file mode 100644 index 88b4d17472f4..000000000000 --- a/devel/p4/pkg-install +++ /dev/null @@ -1,51 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -PERFORCE_USER=${PERFORCE_USER:-p4admin} -PERFORCE_UID=${PERFORCE_UID:-94} -PERFORCE_GROUP=${PERFORCE_GROUP:-p4admin} -PERFORCE_GID=${PERFORCE_GID:-94} -PERFORCE_HOME=${PERFORCE_HOME:-$PKG_PREFIX/perforce} -PERFORCE_LOGDIR=${PERFORCE_LOGDIR:-$PERFORCE_HOME/log} -PERFORCE_ROOT=${PERFORCE_ROOT:-$PERFORCE_HOME/root} - -case $2 in -PRE-INSTALL) - USER=${PERFORCE_USER} - GROUP=${PERFORCE_GROUP} - UID=${PERFORCE_UID} - GID=${PERFORCE_GID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${PERFORCE_HOME} -c "Perforce admin" -s /sbin/nologin - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if [ ! -d $PERFORCE_HOME ] ; then - mkdir -p $PERFORCE_HOME $PERFORCE_LOGS $PERFORCE_ROOT - chown -R $USER:$GROUP $PERFORCE_HOME - fi - ;; -esac diff --git a/devel/p4/pkg-plist b/devel/p4/pkg-plist deleted file mode 100644 index 31e0893152cc..000000000000 --- a/devel/p4/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -@unexec if cmp -s %D/etc/perforce.conf %D/etc/perforce.conf.default; then rm -f %D/etc/perforce.conf; fi -etc/perforce.conf.default -@exec [ ! -f %B/perforce.conf ] && cp -p %B/%f %B/perforce.conf || true -etc/rc.d/perforce.sh diff --git a/devel/p4d/Makefile b/devel/p4d/Makefile deleted file mode 100644 index 4d0dc8579d2a..000000000000 --- a/devel/p4d/Makefile +++ /dev/null @@ -1,151 +0,0 @@ -# New ports collection makefile for: perforce -# Date created: 3 Mai 2000 -# Whom: sam@inf.enst.fr -# -# $FreeBSD$ -# - -PORTNAME= perforce -PORTVERSION= ${VERSION} -PORTREVISION= ${REVISION} -PORTEPOCH= 1 -CATEGORIES= devel -MASTER_SITES= ftp://ftp.perforce.com/pub/perforce/r${PORTVERSION}/bin.${PLATFORM}/ \ - http://filehost.perforce.com/perforce/r${PORTVERSION}/bin.${PLATFORM}/ -EXTRACT_SUFX= -DISTFILES= ${BIN_FILES} ${SBIN_FILES} -EXTRACT_ONLY= # none - -MAINTAINER= lth@FreeBSD.org -COMMENT= Perforce client and server - -ONLY_FOR_ARCHS= alpha amd64 i386 sparc64 - -DIST_SUBDIR= perforce/${VERSION}/${ARCH} -MD5_FILE= ${MASTERDIR}/distinfo.${PLATFORM} - -# -# This is a kludge. I don't know a better way to set PORTVERSION and -# PORTREVISION such that pkg_version figures out an update is needed -# -ARCH!= /usr/bin/uname -p -ARCH?= i386 - -.if ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == sparc64 -VERSION= 07.3 -REVISION= 2 -BIN_FILES= p4 -SBIN_FILES= p4d p4ftpd p4p p4web -REL_NOTES= http://www.perforce.com/perforce/doc.073/user/relnotes.txt -.elif ${ARCH} == alpha -VERSION= 99.1 -REVISION= 1 -BIN_FILES= p4 -SBIN_FILES= p4d -REL_NOTES= http://www.perforce.com/perforce/doc.991/user/relnotes.txt -.else -VERSION= 0 -IGNORE= unsupported platform, sorry -.endif - -# End of kludge - -RESTRICTED= Restricted distribution - -NO_WRKSUBDIR= yes - -PLIST_FILES= ${BIN_FILES:S+^+bin/+g} \ - ${SBIN_FILES:S+^+sbin/+g} - -.include <bsd.port.pre.mk> - -# Figure out what to install -.if ${ARCH} == alpha -PLATFORM= freebsdaxp -.elif ${ARCH} == amd64 -.if ${OSVERSION} >= 504000 && ${OSVERSION} < 600000 -PLATFORM= freebsd54x86_64 -.elif ${OSVERSION} >= 600000 -PLATFORM= freebsd60x86_64 -.endif -.elif ${ARCH} == i386 -.if ${OSVERSION} >= 504000 && ${OSVERSION} < 600000 -PLATFORM= freebsd54x86 -.elif ${OSVERSION} >= 600000 -PLATFORM= freebsd60x86 -.endif -.elif ${ARCH} == sparc64 && ${OSVERSION} >= 601000 -PLATFORM= freebsd61sparc64 -.else -IGNORE= unsupported OS release, sorry -.endif - -.if ${OSVERSION} >= 700043 -LIB_DEPENDS+= c.6:${PORTSDIR}/misc/compat6x -.endif - -# These variables are all configurable. -PERFORCE_USER?= p4admin -PERFORCE_UID?= 94 -PERFORCE_GROUP?= p4admin -PERFORCE_GID?= 94 -PERFORCE_HOME?= ${LOCALBASE}/perforce -PERFORCE_ROOT?= ${PERFORCE_HOME}/root -PERFORCE_LOGS?= ${PERFORCE_HOME}/logs -PERFORCE_PORT?= 1666 -PERFORCE_CACHE?= ${PERFORCE_HOME}/cache -PERFORCE_TARGET?= perforce:1666 - -pre-everything:: - @${ECHO} "If the checksums fail, try doing 'make distclean'" - @${ECHO} "to force getting the latest binaries from Perforce." - @${ECHO} "" - @${ECHO} "Read the release notes for this release to determine" - @${ECHO} "how to migrate the database to the new version. In" - @${ECHO} "most instances, it is done automatically. However," - @${ECHO} "sometimes it must be done manually." - @${ECHO} "" - @${ECHO} "The release notes for this version are at" - @${ECHO} ${REL_NOTES} - @${ECHO} "" - @${ECHO} "Checkpoint and backup your data before installing!" - -do-build: - ${SED} -e "s,@PERFORCE_ROOT@,${PERFORCE_ROOT},g" \ - -e "s,@PERFORCE_LOGS@,${PERFORCE_LOGS},g" \ - -e "s,@PERFORCE_USER@,${PERFORCE_USER},g" \ - -e "s,@PERFORCE_PORT@,${PERFORCE_PORT},g" \ - -e "s,@PERFORCE_CACHE@,${PERFORCE_CACHE},g" \ - -e "s,@PERFORCE_TARGET@,${PERFORCE_TARGET},g" \ - < ${FILESDIR}/perforce.conf.in > ${WRKSRC}/perforce.conf - ${SED} -e "s,@PREFIX@,${PREFIX},g" \ - < ${FILESDIR}/perforce.sh.in > ${WRKSRC}/perforce.sh - -pre-su-install: - ${SETENV} PKG_PREFIX=${PREFIX} \ - PERFORCE_USER=${PERFORCE_USER} \ - PERFORCE_UID=${PERFORCE_UID} \ - PERFORCE_GROUP=${PERFORCE_GROUP} \ - PERFORCE_GID=${PERFORCE_GID} \ - PERFORCE_HOME=${PERFORCE_HOME} \ - PERFORCE_ROOT=${PERFORCE_ROOT} \ - PERFORCE_LOGS=${PERFORCE_LOGS} \ - ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL - -do-install: -.for f in ${BIN_FILES} - ${INSTALL_PROGRAM} ${_DISTDIR}/${f} ${PREFIX}/bin/ -.endfor -.for f in ${SBIN_FILES} - ${INSTALL_PROGRAM} ${_DISTDIR}/${f} ${PREFIX}/sbin/ -.endfor - ${INSTALL_DATA} ${WRKSRC}/perforce.conf ${PREFIX}/etc/perforce.conf.default; \ - if [ ! -f ${PREFIX}/etc/perforce.conf ]; then \ - ${CP} -p ${PREFIX}/etc/perforce.conf.default ${PREFIX}/etc/perforce.conf; \ - fi - ${INSTALL_SCRIPT} ${WRKSRC}/perforce.sh ${PREFIX}/etc/rc.d/ - -post-install: - ${ECHO_CMD} "@unexec ${RMDIR} ${PERFORCE_ROOT} ${PERFORCE_LOGS} ${PERFORCE_HOME} 2>/dev/null || true" >> ${TMPPLIST} - -.include <bsd.port.post.mk> diff --git a/devel/p4d/distinfo.freebsd54x86 b/devel/p4d/distinfo.freebsd54x86 deleted file mode 100644 index 094d657eaeeb..000000000000 --- a/devel/p4d/distinfo.freebsd54x86 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/i386/p4) = 2cd989467d149b7bd43c03ff7fcd8a51 -SHA256 (perforce/07.3/i386/p4) = 6fe047f7de842ac484d17a0343b2c3f2d2bbf70b1de3709a2401e94689f86c58 -SIZE (perforce/07.3/i386/p4) = 519272 -MD5 (perforce/07.3/i386/p4d) = 5bc4560650641cf8c3019e5cf5f84019 -SHA256 (perforce/07.3/i386/p4d) = 4419a50609263580f498ba4b00383d81bab6f4ab2690c62e90c8b259afb7f42d -SIZE (perforce/07.3/i386/p4d) = 1508572 -MD5 (perforce/07.3/i386/p4ftpd) = 11375cc50835c475e34aa061cbf4906a -SHA256 (perforce/07.3/i386/p4ftpd) = 77c39019a9833ff534a48e580f6170f57b0fc4d9f2f3e7cc31028ef96edf57df -SIZE (perforce/07.3/i386/p4ftpd) = 916553 -MD5 (perforce/07.3/i386/p4p) = cbae23c9949cb0283e527af16ee13285 -SHA256 (perforce/07.3/i386/p4p) = ab5dd647aaabccbaefcf57f1b38a04a68db913f95e50c43ae55b47e30cb2da72 -SIZE (perforce/07.3/i386/p4p) = 473064 -MD5 (perforce/07.3/i386/p4web) = 6d1a9472bc5796904f4895a17c4fe96e -SHA256 (perforce/07.3/i386/p4web) = e333214fcd23ad5ac9abb03b92f3dceb27bfc05dea87a35fe43e76f2192b28a0 -SIZE (perforce/07.3/i386/p4web) = 2246201 diff --git a/devel/p4d/distinfo.freebsd54x86_64 b/devel/p4d/distinfo.freebsd54x86_64 deleted file mode 100644 index 0f0e8d30bd6c..000000000000 --- a/devel/p4d/distinfo.freebsd54x86_64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/amd64/p4) = b1f0661f906830da3fd648c45d363e90 -SHA256 (perforce/07.3/amd64/p4) = da6a4172e3a24804f04df7ce61d9320a7b38c1b56298bb8249c80a0e977a16f1 -SIZE (perforce/07.3/amd64/p4) = 579528 -MD5 (perforce/07.3/amd64/p4d) = eca89bb3e34c4f535e1ee5ba70620964 -SHA256 (perforce/07.3/amd64/p4d) = cda04ac3d43b6235c911cd8fc7bb589bc80ebd604d15cf24efa415707f7821ea -SIZE (perforce/07.3/amd64/p4d) = 1688616 -MD5 (perforce/07.3/amd64/p4ftpd) = 343d1d7ea997668e4afbf206728be0fb -SHA256 (perforce/07.3/amd64/p4ftpd) = e1805c8dd97249d3b7095869a77d73797c24c76e2717707e5eb0cfb18daa5536 -SIZE (perforce/07.3/amd64/p4ftpd) = 974539 -MD5 (perforce/07.3/amd64/p4p) = 3c7759ee9b765cef7a1fdc2e44aed410 -SHA256 (perforce/07.3/amd64/p4p) = a0e350876794e2e07f1a242bc2b9b1f7e6ae233368c0442d17dad5a3437f59ed -SIZE (perforce/07.3/amd64/p4p) = 566344 -MD5 (perforce/07.3/amd64/p4web) = 7446f18d50724e5db46522dd8cedaaeb -SHA256 (perforce/07.3/amd64/p4web) = 3e5deab8a0f55fb0764e795c1858c1afb8f94c3378c095ca366a0f35bc62cfee -SIZE (perforce/07.3/amd64/p4web) = 2319744 diff --git a/devel/p4d/distinfo.freebsd60x86 b/devel/p4d/distinfo.freebsd60x86 deleted file mode 100644 index 0c55add8fb5f..000000000000 --- a/devel/p4d/distinfo.freebsd60x86 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/i386/p4) = ea0f8d86bfe7f86d225e3a871c54f8d4 -SHA256 (perforce/07.3/i386/p4) = a0c6806ccf67ba60c8f85c8d1131e3776d6b02722ed2702b7f89fe7081fe59b8 -SIZE (perforce/07.3/i386/p4) = 519916 -MD5 (perforce/07.3/i386/p4d) = a0ea299963e1e95b0ffc69456d8594f3 -SHA256 (perforce/07.3/i386/p4d) = 333f0c028973a66820f0fd5530532a72d57a6dddad8b238e50045844cd6e5662 -SIZE (perforce/07.3/i386/p4d) = 1517152 -MD5 (perforce/07.3/i386/p4ftpd) = b2d83ebb3aecea264ca9036b28b8eb7f -SHA256 (perforce/07.3/i386/p4ftpd) = 8341912d704c313a1cf68b98f7c00bd91faab134919465e429121703c13514f4 -SIZE (perforce/07.3/i386/p4ftpd) = 812601 -MD5 (perforce/07.3/i386/p4p) = b80df3f40d448b29e357dc901daf0f19 -SHA256 (perforce/07.3/i386/p4p) = 64fdc6dc97d8c19742da44b1cef74b2efe1625cbde34a207935f0c4cf4e4b6fb -SIZE (perforce/07.3/i386/p4p) = 477152 -MD5 (perforce/07.3/i386/p4web) = 8305a455c72b2963d085ddc95118c61a -SHA256 (perforce/07.3/i386/p4web) = 2b04bf576378d37856c27914ee99a4c18c8a44c017fd6d81dd2d8fadb513c1d0 -SIZE (perforce/07.3/i386/p4web) = 2144460 diff --git a/devel/p4d/distinfo.freebsd60x86_64 b/devel/p4d/distinfo.freebsd60x86_64 deleted file mode 100644 index 142869a74df2..000000000000 --- a/devel/p4d/distinfo.freebsd60x86_64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/amd64/p4) = 60512b2e37f7d9fab9d7c16dae853f79 -SHA256 (perforce/07.3/amd64/p4) = b7e670119dcb59f77685c90680575385c1c6ef4e08a4998c7308582adeeeb15a -SIZE (perforce/07.3/amd64/p4) = 587112 -MD5 (perforce/07.3/amd64/p4d) = 4223da0eb4bc03f5984f5420d92a770c -SHA256 (perforce/07.3/amd64/p4d) = 8a66df1d7dc8f488abdbaae79aa1b1b5bd6ac76fc25511c6d0c21f6259b0d332 -SIZE (perforce/07.3/amd64/p4d) = 1685024 -MD5 (perforce/07.3/amd64/p4ftpd) = d9c8a371a074cb111d9ac6a5b8bf8d4c -SHA256 (perforce/07.3/amd64/p4ftpd) = e8566db11a5dcc879d425afc43fc4be222be0556a4f4433e353afa791688b69b -SIZE (perforce/07.3/amd64/p4ftpd) = 873601 -MD5 (perforce/07.3/amd64/p4p) = 051620326a4130c12f7c1a83fc39c7b7 -SHA256 (perforce/07.3/amd64/p4p) = 6b8995d695531eee605fb570947c07f22d8037b5baae60ba25b9480253e52ac2 -SIZE (perforce/07.3/amd64/p4p) = 577632 -MD5 (perforce/07.3/amd64/p4web) = 34c80e3ec0da3f5765efc1d0c0ee706e -SHA256 (perforce/07.3/amd64/p4web) = 2c9762cef39b4fd547c9dde3bf0e7006252db1eaef0f07ef752b55b2975ecc67 -SIZE (perforce/07.3/amd64/p4web) = 2220526 diff --git a/devel/p4d/distinfo.freebsd61sparc64 b/devel/p4d/distinfo.freebsd61sparc64 deleted file mode 100644 index 235a8a801ffa..000000000000 --- a/devel/p4d/distinfo.freebsd61sparc64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/sparc64/p4) = d771d3a59514821f64fe3354ebcf85b3 -SHA256 (perforce/07.3/sparc64/p4) = a692f53cc6b73a53b66a1b97fcbf84eff740f4f0bb65fa30f4f76de568f9ad28 -SIZE (perforce/07.3/sparc64/p4) = 596608 -MD5 (perforce/07.3/sparc64/p4d) = 36361e19fac8a7a46f3641e38e73e627 -SHA256 (perforce/07.3/sparc64/p4d) = 731df4345ebcaa0772a9b780e7008737e662b9096df1a164e6c0e37f2aae2d77 -SIZE (perforce/07.3/sparc64/p4d) = 1700144 -MD5 (perforce/07.3/sparc64/p4ftpd) = f05332cb6a97c780f5fe44091beb5eed -SHA256 (perforce/07.3/sparc64/p4ftpd) = 7eb10a2dafdc20ab897ab299203a96dbbee04105d36d9071d8d79af407fabf55 -SIZE (perforce/07.3/sparc64/p4ftpd) = 1005411 -MD5 (perforce/07.3/sparc64/p4p) = d3873efb2c4429aa3a148f2d31686b9c -SHA256 (perforce/07.3/sparc64/p4p) = 8d16eef2c6ce1809c9f805816b2dd801d306dcf267ef9538c6d0dccdb4d07432 -SIZE (perforce/07.3/sparc64/p4p) = 587024 -MD5 (perforce/07.3/sparc64/p4web) = 29863f30c09b77f49a01ad06d5a3679c -SHA256 (perforce/07.3/sparc64/p4web) = 1e18fab94e68db1a55585642c2c6e342a765d2863e2d7394c3da8c0b400b21db -SIZE (perforce/07.3/sparc64/p4web) = 2497805 diff --git a/devel/p4d/distinfo.freebsdaxp b/devel/p4d/distinfo.freebsdaxp deleted file mode 100644 index c770a1d264b8..000000000000 --- a/devel/p4d/distinfo.freebsdaxp +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (perforce/99.1/alpha/p4) = 7c1300a82ab03b7ede46cf8a02c48fd9 -SHA256 (perforce/99.1/alpha/p4) = 2b9b6c9f161c9f468c079f297058bbb514b48a410907e65a86360f671c4571d0 -SIZE (perforce/99.1/alpha/p4) = 201424 -MD5 (perforce/99.1/alpha/p4d) = 8f34c41c18185011ed848aaf450cffa5 -SHA256 (perforce/99.1/alpha/p4d) = 6d688c995df2c0bd4355ff19158b03931483694ed9fc67055e31eb2c53593841 -SIZE (perforce/99.1/alpha/p4d) = 945544 diff --git a/devel/p4d/files/perforce.conf.in b/devel/p4d/files/perforce.conf.in deleted file mode 100644 index 803c56f86d17..000000000000 --- a/devel/p4d/files/perforce.conf.in +++ /dev/null @@ -1,75 +0,0 @@ -# -# Perforce FreeBSD configuration file -# -# -# $FreeBSD$ - -# -# Perforce ROOT -# -PERFORCE_ROOT="@PERFORCE_ROOT@" - -# -# Perforce user (it is recommended to run p4d as a non-root user) -# -PERFORCE_USER="@PERFORCE_USER@" - -# -# p4d/p4p port (default: 1666) -# -PERFORCE_PORT="@PERFORCE_PORT@" - -# -# p4p cache directory -# -PERFORCE_PROXY_CACHE="@PERFORCE_CACHE@" - -# -# p4p target server (default: perforce:1666) -# -PERFORCE_PROXY_TARGET="@PERFORCE_TARGET@" - -# -# p4d options (see man p4d) -# -PERFORCE_OPTIONS="-d -p $PERFORCE_PORT -v server=1 -L @PERFORCE_LOGS@/p4d.log" - -# -# Uncomment this line to have the server started automatically -# -#PERFORCE_START=yes - -# -# p4ftpd options (see p4ftpd -h) -# -PERFORCE_FTPD_OPTIONS="-d -p $PERFORCE_PORT -v server=1 -L @PERFORCE_LOGS@/p4ftpd.log" - -# -# Uncomment this line to have the server started automatically -# -#PERFORCE_FTPD_START=yes - -# -# p4p options (see p4p -h) -# -PERFORCE_PROXY_OPTIONS="-d -p $PERFORCE_PORT -t $PERFORCE_PROXY_TARGET -r $PERFORCE_PROXY_CACHE -v server=1 -L @PERFORCE_LOGS@/p4p.log" - -# -# Uncomment this line to have the proxy server started automatically -# -#PERFORCE_PROXY_START=yes - -# -# p4web port -# -PERFORCE_WEB_PORT="6060" - -# -# p4web options (see p4web -h) -# -PERFORCE_WEB_OPTIONS="-B -w $PERFORCE_WEB_PORT -p $PERFORCE_PORT -v server=1" - -# -# Uncomment this line to have the web server started automatically -# -#PERFORCE_WEB_START=yes diff --git a/devel/p4d/files/perforce.sh.in b/devel/p4d/files/perforce.sh.in deleted file mode 100644 index 2ebc5809fa48..000000000000 --- a/devel/p4d/files/perforce.sh.in +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -p4d=@PREFIX@/sbin/p4d -p4ftpd=@PREFIX@/sbin/p4ftpd -p4p=@PREFIX@/sbin/p4p -p4web=@PREFIX@/sbin/p4web - -case $1 in -start) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4d -a x$PERFORCE_START = xyes ]; then - echo -n ' p4d' - su -fm $PERFORCE_USER -c "$p4d -r $PERFORCE_ROOT $PERFORCE_OPTIONS" - fi - if [ -x $p4ftpd -a x$PERFORCE_FTPD_START = xyes ]; then - echo -n ' p4ftpd' - $p4ftpd $PERFORCE_FTPD_OPTIONS - fi - if [ -x $p4p -a x$PERFORCE_PROXY_START = xyes ]; then - echo -n ' p4p' - $p4p $PERFORCE_PROXY_OPTIONS - fi - if [ -x $p4web -a x$PERFORCE_WEB_START = xyes ]; then - echo -n ' p4web' - su -fm $PERFORCE_USER -c "$p4web $PERFORCE_WEB_OPTIONS &" >/dev/null 2>&1 - fi - - ;; -stop) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4ftpd ]; then - killall -u 0 p4ftpd >/dev/null 2>&1 && echo -n ' p4ftpd' - fi - if [ -x $p4d ]; then - killall -u $PERFORCE_USER p4d >/dev/null 2>&1 && echo -n ' p4d' - fi - if [ -x $p4p ]; then - killall -u 0 p4p > /dev/null 2>&1 && echo -n ' p4p' - fi - if [ -x $p4web ]; then - killall -u $PERFORCE_USER p4web > /dev/null 2>&1 && echo -n ' p4web' - fi - ;; -restart) - $0 stop - sleep 1 - $0 start - ;; -checkpoint) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4d -a x$PERFORCE_START = xyes ]; then - su -fm $PERFORCE_USER -c "$p4d -r $PERFORCE_ROOT -jc" - fi - ;; -*) - echo "usage: $0 {start|stop|restart|checkpoint}" - exit 64 - ;; -esac diff --git a/devel/p4d/pkg-descr b/devel/p4d/pkg-descr deleted file mode 100644 index e6d35851b44b..000000000000 --- a/devel/p4d/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Perforce is a commercial revision control system that can be used -gratis for developing free software. (see the WWW page for details). - -WWW: http://www.perforce.com/ diff --git a/devel/p4d/pkg-install b/devel/p4d/pkg-install deleted file mode 100644 index 88b4d17472f4..000000000000 --- a/devel/p4d/pkg-install +++ /dev/null @@ -1,51 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -PERFORCE_USER=${PERFORCE_USER:-p4admin} -PERFORCE_UID=${PERFORCE_UID:-94} -PERFORCE_GROUP=${PERFORCE_GROUP:-p4admin} -PERFORCE_GID=${PERFORCE_GID:-94} -PERFORCE_HOME=${PERFORCE_HOME:-$PKG_PREFIX/perforce} -PERFORCE_LOGDIR=${PERFORCE_LOGDIR:-$PERFORCE_HOME/log} -PERFORCE_ROOT=${PERFORCE_ROOT:-$PERFORCE_HOME/root} - -case $2 in -PRE-INSTALL) - USER=${PERFORCE_USER} - GROUP=${PERFORCE_GROUP} - UID=${PERFORCE_UID} - GID=${PERFORCE_GID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${PERFORCE_HOME} -c "Perforce admin" -s /sbin/nologin - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if [ ! -d $PERFORCE_HOME ] ; then - mkdir -p $PERFORCE_HOME $PERFORCE_LOGS $PERFORCE_ROOT - chown -R $USER:$GROUP $PERFORCE_HOME - fi - ;; -esac diff --git a/devel/p4d/pkg-plist b/devel/p4d/pkg-plist deleted file mode 100644 index 31e0893152cc..000000000000 --- a/devel/p4d/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -@unexec if cmp -s %D/etc/perforce.conf %D/etc/perforce.conf.default; then rm -f %D/etc/perforce.conf; fi -etc/perforce.conf.default -@exec [ ! -f %B/perforce.conf ] && cp -p %B/%f %B/perforce.conf || true -etc/rc.d/perforce.sh diff --git a/devel/p4ftpd/Makefile b/devel/p4ftpd/Makefile deleted file mode 100644 index 4d0dc8579d2a..000000000000 --- a/devel/p4ftpd/Makefile +++ /dev/null @@ -1,151 +0,0 @@ -# New ports collection makefile for: perforce -# Date created: 3 Mai 2000 -# Whom: sam@inf.enst.fr -# -# $FreeBSD$ -# - -PORTNAME= perforce -PORTVERSION= ${VERSION} -PORTREVISION= ${REVISION} -PORTEPOCH= 1 -CATEGORIES= devel -MASTER_SITES= ftp://ftp.perforce.com/pub/perforce/r${PORTVERSION}/bin.${PLATFORM}/ \ - http://filehost.perforce.com/perforce/r${PORTVERSION}/bin.${PLATFORM}/ -EXTRACT_SUFX= -DISTFILES= ${BIN_FILES} ${SBIN_FILES} -EXTRACT_ONLY= # none - -MAINTAINER= lth@FreeBSD.org -COMMENT= Perforce client and server - -ONLY_FOR_ARCHS= alpha amd64 i386 sparc64 - -DIST_SUBDIR= perforce/${VERSION}/${ARCH} -MD5_FILE= ${MASTERDIR}/distinfo.${PLATFORM} - -# -# This is a kludge. I don't know a better way to set PORTVERSION and -# PORTREVISION such that pkg_version figures out an update is needed -# -ARCH!= /usr/bin/uname -p -ARCH?= i386 - -.if ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == sparc64 -VERSION= 07.3 -REVISION= 2 -BIN_FILES= p4 -SBIN_FILES= p4d p4ftpd p4p p4web -REL_NOTES= http://www.perforce.com/perforce/doc.073/user/relnotes.txt -.elif ${ARCH} == alpha -VERSION= 99.1 -REVISION= 1 -BIN_FILES= p4 -SBIN_FILES= p4d -REL_NOTES= http://www.perforce.com/perforce/doc.991/user/relnotes.txt -.else -VERSION= 0 -IGNORE= unsupported platform, sorry -.endif - -# End of kludge - -RESTRICTED= Restricted distribution - -NO_WRKSUBDIR= yes - -PLIST_FILES= ${BIN_FILES:S+^+bin/+g} \ - ${SBIN_FILES:S+^+sbin/+g} - -.include <bsd.port.pre.mk> - -# Figure out what to install -.if ${ARCH} == alpha -PLATFORM= freebsdaxp -.elif ${ARCH} == amd64 -.if ${OSVERSION} >= 504000 && ${OSVERSION} < 600000 -PLATFORM= freebsd54x86_64 -.elif ${OSVERSION} >= 600000 -PLATFORM= freebsd60x86_64 -.endif -.elif ${ARCH} == i386 -.if ${OSVERSION} >= 504000 && ${OSVERSION} < 600000 -PLATFORM= freebsd54x86 -.elif ${OSVERSION} >= 600000 -PLATFORM= freebsd60x86 -.endif -.elif ${ARCH} == sparc64 && ${OSVERSION} >= 601000 -PLATFORM= freebsd61sparc64 -.else -IGNORE= unsupported OS release, sorry -.endif - -.if ${OSVERSION} >= 700043 -LIB_DEPENDS+= c.6:${PORTSDIR}/misc/compat6x -.endif - -# These variables are all configurable. -PERFORCE_USER?= p4admin -PERFORCE_UID?= 94 -PERFORCE_GROUP?= p4admin -PERFORCE_GID?= 94 -PERFORCE_HOME?= ${LOCALBASE}/perforce -PERFORCE_ROOT?= ${PERFORCE_HOME}/root -PERFORCE_LOGS?= ${PERFORCE_HOME}/logs -PERFORCE_PORT?= 1666 -PERFORCE_CACHE?= ${PERFORCE_HOME}/cache -PERFORCE_TARGET?= perforce:1666 - -pre-everything:: - @${ECHO} "If the checksums fail, try doing 'make distclean'" - @${ECHO} "to force getting the latest binaries from Perforce." - @${ECHO} "" - @${ECHO} "Read the release notes for this release to determine" - @${ECHO} "how to migrate the database to the new version. In" - @${ECHO} "most instances, it is done automatically. However," - @${ECHO} "sometimes it must be done manually." - @${ECHO} "" - @${ECHO} "The release notes for this version are at" - @${ECHO} ${REL_NOTES} - @${ECHO} "" - @${ECHO} "Checkpoint and backup your data before installing!" - -do-build: - ${SED} -e "s,@PERFORCE_ROOT@,${PERFORCE_ROOT},g" \ - -e "s,@PERFORCE_LOGS@,${PERFORCE_LOGS},g" \ - -e "s,@PERFORCE_USER@,${PERFORCE_USER},g" \ - -e "s,@PERFORCE_PORT@,${PERFORCE_PORT},g" \ - -e "s,@PERFORCE_CACHE@,${PERFORCE_CACHE},g" \ - -e "s,@PERFORCE_TARGET@,${PERFORCE_TARGET},g" \ - < ${FILESDIR}/perforce.conf.in > ${WRKSRC}/perforce.conf - ${SED} -e "s,@PREFIX@,${PREFIX},g" \ - < ${FILESDIR}/perforce.sh.in > ${WRKSRC}/perforce.sh - -pre-su-install: - ${SETENV} PKG_PREFIX=${PREFIX} \ - PERFORCE_USER=${PERFORCE_USER} \ - PERFORCE_UID=${PERFORCE_UID} \ - PERFORCE_GROUP=${PERFORCE_GROUP} \ - PERFORCE_GID=${PERFORCE_GID} \ - PERFORCE_HOME=${PERFORCE_HOME} \ - PERFORCE_ROOT=${PERFORCE_ROOT} \ - PERFORCE_LOGS=${PERFORCE_LOGS} \ - ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL - -do-install: -.for f in ${BIN_FILES} - ${INSTALL_PROGRAM} ${_DISTDIR}/${f} ${PREFIX}/bin/ -.endfor -.for f in ${SBIN_FILES} - ${INSTALL_PROGRAM} ${_DISTDIR}/${f} ${PREFIX}/sbin/ -.endfor - ${INSTALL_DATA} ${WRKSRC}/perforce.conf ${PREFIX}/etc/perforce.conf.default; \ - if [ ! -f ${PREFIX}/etc/perforce.conf ]; then \ - ${CP} -p ${PREFIX}/etc/perforce.conf.default ${PREFIX}/etc/perforce.conf; \ - fi - ${INSTALL_SCRIPT} ${WRKSRC}/perforce.sh ${PREFIX}/etc/rc.d/ - -post-install: - ${ECHO_CMD} "@unexec ${RMDIR} ${PERFORCE_ROOT} ${PERFORCE_LOGS} ${PERFORCE_HOME} 2>/dev/null || true" >> ${TMPPLIST} - -.include <bsd.port.post.mk> diff --git a/devel/p4ftpd/distinfo.freebsd54x86 b/devel/p4ftpd/distinfo.freebsd54x86 deleted file mode 100644 index 094d657eaeeb..000000000000 --- a/devel/p4ftpd/distinfo.freebsd54x86 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/i386/p4) = 2cd989467d149b7bd43c03ff7fcd8a51 -SHA256 (perforce/07.3/i386/p4) = 6fe047f7de842ac484d17a0343b2c3f2d2bbf70b1de3709a2401e94689f86c58 -SIZE (perforce/07.3/i386/p4) = 519272 -MD5 (perforce/07.3/i386/p4d) = 5bc4560650641cf8c3019e5cf5f84019 -SHA256 (perforce/07.3/i386/p4d) = 4419a50609263580f498ba4b00383d81bab6f4ab2690c62e90c8b259afb7f42d -SIZE (perforce/07.3/i386/p4d) = 1508572 -MD5 (perforce/07.3/i386/p4ftpd) = 11375cc50835c475e34aa061cbf4906a -SHA256 (perforce/07.3/i386/p4ftpd) = 77c39019a9833ff534a48e580f6170f57b0fc4d9f2f3e7cc31028ef96edf57df -SIZE (perforce/07.3/i386/p4ftpd) = 916553 -MD5 (perforce/07.3/i386/p4p) = cbae23c9949cb0283e527af16ee13285 -SHA256 (perforce/07.3/i386/p4p) = ab5dd647aaabccbaefcf57f1b38a04a68db913f95e50c43ae55b47e30cb2da72 -SIZE (perforce/07.3/i386/p4p) = 473064 -MD5 (perforce/07.3/i386/p4web) = 6d1a9472bc5796904f4895a17c4fe96e -SHA256 (perforce/07.3/i386/p4web) = e333214fcd23ad5ac9abb03b92f3dceb27bfc05dea87a35fe43e76f2192b28a0 -SIZE (perforce/07.3/i386/p4web) = 2246201 diff --git a/devel/p4ftpd/distinfo.freebsd54x86_64 b/devel/p4ftpd/distinfo.freebsd54x86_64 deleted file mode 100644 index 0f0e8d30bd6c..000000000000 --- a/devel/p4ftpd/distinfo.freebsd54x86_64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/amd64/p4) = b1f0661f906830da3fd648c45d363e90 -SHA256 (perforce/07.3/amd64/p4) = da6a4172e3a24804f04df7ce61d9320a7b38c1b56298bb8249c80a0e977a16f1 -SIZE (perforce/07.3/amd64/p4) = 579528 -MD5 (perforce/07.3/amd64/p4d) = eca89bb3e34c4f535e1ee5ba70620964 -SHA256 (perforce/07.3/amd64/p4d) = cda04ac3d43b6235c911cd8fc7bb589bc80ebd604d15cf24efa415707f7821ea -SIZE (perforce/07.3/amd64/p4d) = 1688616 -MD5 (perforce/07.3/amd64/p4ftpd) = 343d1d7ea997668e4afbf206728be0fb -SHA256 (perforce/07.3/amd64/p4ftpd) = e1805c8dd97249d3b7095869a77d73797c24c76e2717707e5eb0cfb18daa5536 -SIZE (perforce/07.3/amd64/p4ftpd) = 974539 -MD5 (perforce/07.3/amd64/p4p) = 3c7759ee9b765cef7a1fdc2e44aed410 -SHA256 (perforce/07.3/amd64/p4p) = a0e350876794e2e07f1a242bc2b9b1f7e6ae233368c0442d17dad5a3437f59ed -SIZE (perforce/07.3/amd64/p4p) = 566344 -MD5 (perforce/07.3/amd64/p4web) = 7446f18d50724e5db46522dd8cedaaeb -SHA256 (perforce/07.3/amd64/p4web) = 3e5deab8a0f55fb0764e795c1858c1afb8f94c3378c095ca366a0f35bc62cfee -SIZE (perforce/07.3/amd64/p4web) = 2319744 diff --git a/devel/p4ftpd/distinfo.freebsd60x86 b/devel/p4ftpd/distinfo.freebsd60x86 deleted file mode 100644 index 0c55add8fb5f..000000000000 --- a/devel/p4ftpd/distinfo.freebsd60x86 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/i386/p4) = ea0f8d86bfe7f86d225e3a871c54f8d4 -SHA256 (perforce/07.3/i386/p4) = a0c6806ccf67ba60c8f85c8d1131e3776d6b02722ed2702b7f89fe7081fe59b8 -SIZE (perforce/07.3/i386/p4) = 519916 -MD5 (perforce/07.3/i386/p4d) = a0ea299963e1e95b0ffc69456d8594f3 -SHA256 (perforce/07.3/i386/p4d) = 333f0c028973a66820f0fd5530532a72d57a6dddad8b238e50045844cd6e5662 -SIZE (perforce/07.3/i386/p4d) = 1517152 -MD5 (perforce/07.3/i386/p4ftpd) = b2d83ebb3aecea264ca9036b28b8eb7f -SHA256 (perforce/07.3/i386/p4ftpd) = 8341912d704c313a1cf68b98f7c00bd91faab134919465e429121703c13514f4 -SIZE (perforce/07.3/i386/p4ftpd) = 812601 -MD5 (perforce/07.3/i386/p4p) = b80df3f40d448b29e357dc901daf0f19 -SHA256 (perforce/07.3/i386/p4p) = 64fdc6dc97d8c19742da44b1cef74b2efe1625cbde34a207935f0c4cf4e4b6fb -SIZE (perforce/07.3/i386/p4p) = 477152 -MD5 (perforce/07.3/i386/p4web) = 8305a455c72b2963d085ddc95118c61a -SHA256 (perforce/07.3/i386/p4web) = 2b04bf576378d37856c27914ee99a4c18c8a44c017fd6d81dd2d8fadb513c1d0 -SIZE (perforce/07.3/i386/p4web) = 2144460 diff --git a/devel/p4ftpd/distinfo.freebsd60x86_64 b/devel/p4ftpd/distinfo.freebsd60x86_64 deleted file mode 100644 index 142869a74df2..000000000000 --- a/devel/p4ftpd/distinfo.freebsd60x86_64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/amd64/p4) = 60512b2e37f7d9fab9d7c16dae853f79 -SHA256 (perforce/07.3/amd64/p4) = b7e670119dcb59f77685c90680575385c1c6ef4e08a4998c7308582adeeeb15a -SIZE (perforce/07.3/amd64/p4) = 587112 -MD5 (perforce/07.3/amd64/p4d) = 4223da0eb4bc03f5984f5420d92a770c -SHA256 (perforce/07.3/amd64/p4d) = 8a66df1d7dc8f488abdbaae79aa1b1b5bd6ac76fc25511c6d0c21f6259b0d332 -SIZE (perforce/07.3/amd64/p4d) = 1685024 -MD5 (perforce/07.3/amd64/p4ftpd) = d9c8a371a074cb111d9ac6a5b8bf8d4c -SHA256 (perforce/07.3/amd64/p4ftpd) = e8566db11a5dcc879d425afc43fc4be222be0556a4f4433e353afa791688b69b -SIZE (perforce/07.3/amd64/p4ftpd) = 873601 -MD5 (perforce/07.3/amd64/p4p) = 051620326a4130c12f7c1a83fc39c7b7 -SHA256 (perforce/07.3/amd64/p4p) = 6b8995d695531eee605fb570947c07f22d8037b5baae60ba25b9480253e52ac2 -SIZE (perforce/07.3/amd64/p4p) = 577632 -MD5 (perforce/07.3/amd64/p4web) = 34c80e3ec0da3f5765efc1d0c0ee706e -SHA256 (perforce/07.3/amd64/p4web) = 2c9762cef39b4fd547c9dde3bf0e7006252db1eaef0f07ef752b55b2975ecc67 -SIZE (perforce/07.3/amd64/p4web) = 2220526 diff --git a/devel/p4ftpd/distinfo.freebsd61sparc64 b/devel/p4ftpd/distinfo.freebsd61sparc64 deleted file mode 100644 index 235a8a801ffa..000000000000 --- a/devel/p4ftpd/distinfo.freebsd61sparc64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/sparc64/p4) = d771d3a59514821f64fe3354ebcf85b3 -SHA256 (perforce/07.3/sparc64/p4) = a692f53cc6b73a53b66a1b97fcbf84eff740f4f0bb65fa30f4f76de568f9ad28 -SIZE (perforce/07.3/sparc64/p4) = 596608 -MD5 (perforce/07.3/sparc64/p4d) = 36361e19fac8a7a46f3641e38e73e627 -SHA256 (perforce/07.3/sparc64/p4d) = 731df4345ebcaa0772a9b780e7008737e662b9096df1a164e6c0e37f2aae2d77 -SIZE (perforce/07.3/sparc64/p4d) = 1700144 -MD5 (perforce/07.3/sparc64/p4ftpd) = f05332cb6a97c780f5fe44091beb5eed -SHA256 (perforce/07.3/sparc64/p4ftpd) = 7eb10a2dafdc20ab897ab299203a96dbbee04105d36d9071d8d79af407fabf55 -SIZE (perforce/07.3/sparc64/p4ftpd) = 1005411 -MD5 (perforce/07.3/sparc64/p4p) = d3873efb2c4429aa3a148f2d31686b9c -SHA256 (perforce/07.3/sparc64/p4p) = 8d16eef2c6ce1809c9f805816b2dd801d306dcf267ef9538c6d0dccdb4d07432 -SIZE (perforce/07.3/sparc64/p4p) = 587024 -MD5 (perforce/07.3/sparc64/p4web) = 29863f30c09b77f49a01ad06d5a3679c -SHA256 (perforce/07.3/sparc64/p4web) = 1e18fab94e68db1a55585642c2c6e342a765d2863e2d7394c3da8c0b400b21db -SIZE (perforce/07.3/sparc64/p4web) = 2497805 diff --git a/devel/p4ftpd/distinfo.freebsdaxp b/devel/p4ftpd/distinfo.freebsdaxp deleted file mode 100644 index c770a1d264b8..000000000000 --- a/devel/p4ftpd/distinfo.freebsdaxp +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (perforce/99.1/alpha/p4) = 7c1300a82ab03b7ede46cf8a02c48fd9 -SHA256 (perforce/99.1/alpha/p4) = 2b9b6c9f161c9f468c079f297058bbb514b48a410907e65a86360f671c4571d0 -SIZE (perforce/99.1/alpha/p4) = 201424 -MD5 (perforce/99.1/alpha/p4d) = 8f34c41c18185011ed848aaf450cffa5 -SHA256 (perforce/99.1/alpha/p4d) = 6d688c995df2c0bd4355ff19158b03931483694ed9fc67055e31eb2c53593841 -SIZE (perforce/99.1/alpha/p4d) = 945544 diff --git a/devel/p4ftpd/files/perforce.conf.in b/devel/p4ftpd/files/perforce.conf.in deleted file mode 100644 index 803c56f86d17..000000000000 --- a/devel/p4ftpd/files/perforce.conf.in +++ /dev/null @@ -1,75 +0,0 @@ -# -# Perforce FreeBSD configuration file -# -# -# $FreeBSD$ - -# -# Perforce ROOT -# -PERFORCE_ROOT="@PERFORCE_ROOT@" - -# -# Perforce user (it is recommended to run p4d as a non-root user) -# -PERFORCE_USER="@PERFORCE_USER@" - -# -# p4d/p4p port (default: 1666) -# -PERFORCE_PORT="@PERFORCE_PORT@" - -# -# p4p cache directory -# -PERFORCE_PROXY_CACHE="@PERFORCE_CACHE@" - -# -# p4p target server (default: perforce:1666) -# -PERFORCE_PROXY_TARGET="@PERFORCE_TARGET@" - -# -# p4d options (see man p4d) -# -PERFORCE_OPTIONS="-d -p $PERFORCE_PORT -v server=1 -L @PERFORCE_LOGS@/p4d.log" - -# -# Uncomment this line to have the server started automatically -# -#PERFORCE_START=yes - -# -# p4ftpd options (see p4ftpd -h) -# -PERFORCE_FTPD_OPTIONS="-d -p $PERFORCE_PORT -v server=1 -L @PERFORCE_LOGS@/p4ftpd.log" - -# -# Uncomment this line to have the server started automatically -# -#PERFORCE_FTPD_START=yes - -# -# p4p options (see p4p -h) -# -PERFORCE_PROXY_OPTIONS="-d -p $PERFORCE_PORT -t $PERFORCE_PROXY_TARGET -r $PERFORCE_PROXY_CACHE -v server=1 -L @PERFORCE_LOGS@/p4p.log" - -# -# Uncomment this line to have the proxy server started automatically -# -#PERFORCE_PROXY_START=yes - -# -# p4web port -# -PERFORCE_WEB_PORT="6060" - -# -# p4web options (see p4web -h) -# -PERFORCE_WEB_OPTIONS="-B -w $PERFORCE_WEB_PORT -p $PERFORCE_PORT -v server=1" - -# -# Uncomment this line to have the web server started automatically -# -#PERFORCE_WEB_START=yes diff --git a/devel/p4ftpd/files/perforce.sh.in b/devel/p4ftpd/files/perforce.sh.in deleted file mode 100644 index 2ebc5809fa48..000000000000 --- a/devel/p4ftpd/files/perforce.sh.in +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -p4d=@PREFIX@/sbin/p4d -p4ftpd=@PREFIX@/sbin/p4ftpd -p4p=@PREFIX@/sbin/p4p -p4web=@PREFIX@/sbin/p4web - -case $1 in -start) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4d -a x$PERFORCE_START = xyes ]; then - echo -n ' p4d' - su -fm $PERFORCE_USER -c "$p4d -r $PERFORCE_ROOT $PERFORCE_OPTIONS" - fi - if [ -x $p4ftpd -a x$PERFORCE_FTPD_START = xyes ]; then - echo -n ' p4ftpd' - $p4ftpd $PERFORCE_FTPD_OPTIONS - fi - if [ -x $p4p -a x$PERFORCE_PROXY_START = xyes ]; then - echo -n ' p4p' - $p4p $PERFORCE_PROXY_OPTIONS - fi - if [ -x $p4web -a x$PERFORCE_WEB_START = xyes ]; then - echo -n ' p4web' - su -fm $PERFORCE_USER -c "$p4web $PERFORCE_WEB_OPTIONS &" >/dev/null 2>&1 - fi - - ;; -stop) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4ftpd ]; then - killall -u 0 p4ftpd >/dev/null 2>&1 && echo -n ' p4ftpd' - fi - if [ -x $p4d ]; then - killall -u $PERFORCE_USER p4d >/dev/null 2>&1 && echo -n ' p4d' - fi - if [ -x $p4p ]; then - killall -u 0 p4p > /dev/null 2>&1 && echo -n ' p4p' - fi - if [ -x $p4web ]; then - killall -u $PERFORCE_USER p4web > /dev/null 2>&1 && echo -n ' p4web' - fi - ;; -restart) - $0 stop - sleep 1 - $0 start - ;; -checkpoint) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4d -a x$PERFORCE_START = xyes ]; then - su -fm $PERFORCE_USER -c "$p4d -r $PERFORCE_ROOT -jc" - fi - ;; -*) - echo "usage: $0 {start|stop|restart|checkpoint}" - exit 64 - ;; -esac diff --git a/devel/p4ftpd/pkg-descr b/devel/p4ftpd/pkg-descr deleted file mode 100644 index e6d35851b44b..000000000000 --- a/devel/p4ftpd/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Perforce is a commercial revision control system that can be used -gratis for developing free software. (see the WWW page for details). - -WWW: http://www.perforce.com/ diff --git a/devel/p4ftpd/pkg-install b/devel/p4ftpd/pkg-install deleted file mode 100644 index 88b4d17472f4..000000000000 --- a/devel/p4ftpd/pkg-install +++ /dev/null @@ -1,51 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -PERFORCE_USER=${PERFORCE_USER:-p4admin} -PERFORCE_UID=${PERFORCE_UID:-94} -PERFORCE_GROUP=${PERFORCE_GROUP:-p4admin} -PERFORCE_GID=${PERFORCE_GID:-94} -PERFORCE_HOME=${PERFORCE_HOME:-$PKG_PREFIX/perforce} -PERFORCE_LOGDIR=${PERFORCE_LOGDIR:-$PERFORCE_HOME/log} -PERFORCE_ROOT=${PERFORCE_ROOT:-$PERFORCE_HOME/root} - -case $2 in -PRE-INSTALL) - USER=${PERFORCE_USER} - GROUP=${PERFORCE_GROUP} - UID=${PERFORCE_UID} - GID=${PERFORCE_GID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${PERFORCE_HOME} -c "Perforce admin" -s /sbin/nologin - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if [ ! -d $PERFORCE_HOME ] ; then - mkdir -p $PERFORCE_HOME $PERFORCE_LOGS $PERFORCE_ROOT - chown -R $USER:$GROUP $PERFORCE_HOME - fi - ;; -esac diff --git a/devel/p4ftpd/pkg-plist b/devel/p4ftpd/pkg-plist deleted file mode 100644 index 31e0893152cc..000000000000 --- a/devel/p4ftpd/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -@unexec if cmp -s %D/etc/perforce.conf %D/etc/perforce.conf.default; then rm -f %D/etc/perforce.conf; fi -etc/perforce.conf.default -@exec [ ! -f %B/perforce.conf ] && cp -p %B/%f %B/perforce.conf || true -etc/rc.d/perforce.sh diff --git a/devel/p4p/Makefile b/devel/p4p/Makefile deleted file mode 100644 index 4d0dc8579d2a..000000000000 --- a/devel/p4p/Makefile +++ /dev/null @@ -1,151 +0,0 @@ -# New ports collection makefile for: perforce -# Date created: 3 Mai 2000 -# Whom: sam@inf.enst.fr -# -# $FreeBSD$ -# - -PORTNAME= perforce -PORTVERSION= ${VERSION} -PORTREVISION= ${REVISION} -PORTEPOCH= 1 -CATEGORIES= devel -MASTER_SITES= ftp://ftp.perforce.com/pub/perforce/r${PORTVERSION}/bin.${PLATFORM}/ \ - http://filehost.perforce.com/perforce/r${PORTVERSION}/bin.${PLATFORM}/ -EXTRACT_SUFX= -DISTFILES= ${BIN_FILES} ${SBIN_FILES} -EXTRACT_ONLY= # none - -MAINTAINER= lth@FreeBSD.org -COMMENT= Perforce client and server - -ONLY_FOR_ARCHS= alpha amd64 i386 sparc64 - -DIST_SUBDIR= perforce/${VERSION}/${ARCH} -MD5_FILE= ${MASTERDIR}/distinfo.${PLATFORM} - -# -# This is a kludge. I don't know a better way to set PORTVERSION and -# PORTREVISION such that pkg_version figures out an update is needed -# -ARCH!= /usr/bin/uname -p -ARCH?= i386 - -.if ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == sparc64 -VERSION= 07.3 -REVISION= 2 -BIN_FILES= p4 -SBIN_FILES= p4d p4ftpd p4p p4web -REL_NOTES= http://www.perforce.com/perforce/doc.073/user/relnotes.txt -.elif ${ARCH} == alpha -VERSION= 99.1 -REVISION= 1 -BIN_FILES= p4 -SBIN_FILES= p4d -REL_NOTES= http://www.perforce.com/perforce/doc.991/user/relnotes.txt -.else -VERSION= 0 -IGNORE= unsupported platform, sorry -.endif - -# End of kludge - -RESTRICTED= Restricted distribution - -NO_WRKSUBDIR= yes - -PLIST_FILES= ${BIN_FILES:S+^+bin/+g} \ - ${SBIN_FILES:S+^+sbin/+g} - -.include <bsd.port.pre.mk> - -# Figure out what to install -.if ${ARCH} == alpha -PLATFORM= freebsdaxp -.elif ${ARCH} == amd64 -.if ${OSVERSION} >= 504000 && ${OSVERSION} < 600000 -PLATFORM= freebsd54x86_64 -.elif ${OSVERSION} >= 600000 -PLATFORM= freebsd60x86_64 -.endif -.elif ${ARCH} == i386 -.if ${OSVERSION} >= 504000 && ${OSVERSION} < 600000 -PLATFORM= freebsd54x86 -.elif ${OSVERSION} >= 600000 -PLATFORM= freebsd60x86 -.endif -.elif ${ARCH} == sparc64 && ${OSVERSION} >= 601000 -PLATFORM= freebsd61sparc64 -.else -IGNORE= unsupported OS release, sorry -.endif - -.if ${OSVERSION} >= 700043 -LIB_DEPENDS+= c.6:${PORTSDIR}/misc/compat6x -.endif - -# These variables are all configurable. -PERFORCE_USER?= p4admin -PERFORCE_UID?= 94 -PERFORCE_GROUP?= p4admin -PERFORCE_GID?= 94 -PERFORCE_HOME?= ${LOCALBASE}/perforce -PERFORCE_ROOT?= ${PERFORCE_HOME}/root -PERFORCE_LOGS?= ${PERFORCE_HOME}/logs -PERFORCE_PORT?= 1666 -PERFORCE_CACHE?= ${PERFORCE_HOME}/cache -PERFORCE_TARGET?= perforce:1666 - -pre-everything:: - @${ECHO} "If the checksums fail, try doing 'make distclean'" - @${ECHO} "to force getting the latest binaries from Perforce." - @${ECHO} "" - @${ECHO} "Read the release notes for this release to determine" - @${ECHO} "how to migrate the database to the new version. In" - @${ECHO} "most instances, it is done automatically. However," - @${ECHO} "sometimes it must be done manually." - @${ECHO} "" - @${ECHO} "The release notes for this version are at" - @${ECHO} ${REL_NOTES} - @${ECHO} "" - @${ECHO} "Checkpoint and backup your data before installing!" - -do-build: - ${SED} -e "s,@PERFORCE_ROOT@,${PERFORCE_ROOT},g" \ - -e "s,@PERFORCE_LOGS@,${PERFORCE_LOGS},g" \ - -e "s,@PERFORCE_USER@,${PERFORCE_USER},g" \ - -e "s,@PERFORCE_PORT@,${PERFORCE_PORT},g" \ - -e "s,@PERFORCE_CACHE@,${PERFORCE_CACHE},g" \ - -e "s,@PERFORCE_TARGET@,${PERFORCE_TARGET},g" \ - < ${FILESDIR}/perforce.conf.in > ${WRKSRC}/perforce.conf - ${SED} -e "s,@PREFIX@,${PREFIX},g" \ - < ${FILESDIR}/perforce.sh.in > ${WRKSRC}/perforce.sh - -pre-su-install: - ${SETENV} PKG_PREFIX=${PREFIX} \ - PERFORCE_USER=${PERFORCE_USER} \ - PERFORCE_UID=${PERFORCE_UID} \ - PERFORCE_GROUP=${PERFORCE_GROUP} \ - PERFORCE_GID=${PERFORCE_GID} \ - PERFORCE_HOME=${PERFORCE_HOME} \ - PERFORCE_ROOT=${PERFORCE_ROOT} \ - PERFORCE_LOGS=${PERFORCE_LOGS} \ - ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL - -do-install: -.for f in ${BIN_FILES} - ${INSTALL_PROGRAM} ${_DISTDIR}/${f} ${PREFIX}/bin/ -.endfor -.for f in ${SBIN_FILES} - ${INSTALL_PROGRAM} ${_DISTDIR}/${f} ${PREFIX}/sbin/ -.endfor - ${INSTALL_DATA} ${WRKSRC}/perforce.conf ${PREFIX}/etc/perforce.conf.default; \ - if [ ! -f ${PREFIX}/etc/perforce.conf ]; then \ - ${CP} -p ${PREFIX}/etc/perforce.conf.default ${PREFIX}/etc/perforce.conf; \ - fi - ${INSTALL_SCRIPT} ${WRKSRC}/perforce.sh ${PREFIX}/etc/rc.d/ - -post-install: - ${ECHO_CMD} "@unexec ${RMDIR} ${PERFORCE_ROOT} ${PERFORCE_LOGS} ${PERFORCE_HOME} 2>/dev/null || true" >> ${TMPPLIST} - -.include <bsd.port.post.mk> diff --git a/devel/p4p/distinfo.freebsd54x86 b/devel/p4p/distinfo.freebsd54x86 deleted file mode 100644 index 094d657eaeeb..000000000000 --- a/devel/p4p/distinfo.freebsd54x86 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/i386/p4) = 2cd989467d149b7bd43c03ff7fcd8a51 -SHA256 (perforce/07.3/i386/p4) = 6fe047f7de842ac484d17a0343b2c3f2d2bbf70b1de3709a2401e94689f86c58 -SIZE (perforce/07.3/i386/p4) = 519272 -MD5 (perforce/07.3/i386/p4d) = 5bc4560650641cf8c3019e5cf5f84019 -SHA256 (perforce/07.3/i386/p4d) = 4419a50609263580f498ba4b00383d81bab6f4ab2690c62e90c8b259afb7f42d -SIZE (perforce/07.3/i386/p4d) = 1508572 -MD5 (perforce/07.3/i386/p4ftpd) = 11375cc50835c475e34aa061cbf4906a -SHA256 (perforce/07.3/i386/p4ftpd) = 77c39019a9833ff534a48e580f6170f57b0fc4d9f2f3e7cc31028ef96edf57df -SIZE (perforce/07.3/i386/p4ftpd) = 916553 -MD5 (perforce/07.3/i386/p4p) = cbae23c9949cb0283e527af16ee13285 -SHA256 (perforce/07.3/i386/p4p) = ab5dd647aaabccbaefcf57f1b38a04a68db913f95e50c43ae55b47e30cb2da72 -SIZE (perforce/07.3/i386/p4p) = 473064 -MD5 (perforce/07.3/i386/p4web) = 6d1a9472bc5796904f4895a17c4fe96e -SHA256 (perforce/07.3/i386/p4web) = e333214fcd23ad5ac9abb03b92f3dceb27bfc05dea87a35fe43e76f2192b28a0 -SIZE (perforce/07.3/i386/p4web) = 2246201 diff --git a/devel/p4p/distinfo.freebsd54x86_64 b/devel/p4p/distinfo.freebsd54x86_64 deleted file mode 100644 index 0f0e8d30bd6c..000000000000 --- a/devel/p4p/distinfo.freebsd54x86_64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/amd64/p4) = b1f0661f906830da3fd648c45d363e90 -SHA256 (perforce/07.3/amd64/p4) = da6a4172e3a24804f04df7ce61d9320a7b38c1b56298bb8249c80a0e977a16f1 -SIZE (perforce/07.3/amd64/p4) = 579528 -MD5 (perforce/07.3/amd64/p4d) = eca89bb3e34c4f535e1ee5ba70620964 -SHA256 (perforce/07.3/amd64/p4d) = cda04ac3d43b6235c911cd8fc7bb589bc80ebd604d15cf24efa415707f7821ea -SIZE (perforce/07.3/amd64/p4d) = 1688616 -MD5 (perforce/07.3/amd64/p4ftpd) = 343d1d7ea997668e4afbf206728be0fb -SHA256 (perforce/07.3/amd64/p4ftpd) = e1805c8dd97249d3b7095869a77d73797c24c76e2717707e5eb0cfb18daa5536 -SIZE (perforce/07.3/amd64/p4ftpd) = 974539 -MD5 (perforce/07.3/amd64/p4p) = 3c7759ee9b765cef7a1fdc2e44aed410 -SHA256 (perforce/07.3/amd64/p4p) = a0e350876794e2e07f1a242bc2b9b1f7e6ae233368c0442d17dad5a3437f59ed -SIZE (perforce/07.3/amd64/p4p) = 566344 -MD5 (perforce/07.3/amd64/p4web) = 7446f18d50724e5db46522dd8cedaaeb -SHA256 (perforce/07.3/amd64/p4web) = 3e5deab8a0f55fb0764e795c1858c1afb8f94c3378c095ca366a0f35bc62cfee -SIZE (perforce/07.3/amd64/p4web) = 2319744 diff --git a/devel/p4p/distinfo.freebsd60x86 b/devel/p4p/distinfo.freebsd60x86 deleted file mode 100644 index 0c55add8fb5f..000000000000 --- a/devel/p4p/distinfo.freebsd60x86 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/i386/p4) = ea0f8d86bfe7f86d225e3a871c54f8d4 -SHA256 (perforce/07.3/i386/p4) = a0c6806ccf67ba60c8f85c8d1131e3776d6b02722ed2702b7f89fe7081fe59b8 -SIZE (perforce/07.3/i386/p4) = 519916 -MD5 (perforce/07.3/i386/p4d) = a0ea299963e1e95b0ffc69456d8594f3 -SHA256 (perforce/07.3/i386/p4d) = 333f0c028973a66820f0fd5530532a72d57a6dddad8b238e50045844cd6e5662 -SIZE (perforce/07.3/i386/p4d) = 1517152 -MD5 (perforce/07.3/i386/p4ftpd) = b2d83ebb3aecea264ca9036b28b8eb7f -SHA256 (perforce/07.3/i386/p4ftpd) = 8341912d704c313a1cf68b98f7c00bd91faab134919465e429121703c13514f4 -SIZE (perforce/07.3/i386/p4ftpd) = 812601 -MD5 (perforce/07.3/i386/p4p) = b80df3f40d448b29e357dc901daf0f19 -SHA256 (perforce/07.3/i386/p4p) = 64fdc6dc97d8c19742da44b1cef74b2efe1625cbde34a207935f0c4cf4e4b6fb -SIZE (perforce/07.3/i386/p4p) = 477152 -MD5 (perforce/07.3/i386/p4web) = 8305a455c72b2963d085ddc95118c61a -SHA256 (perforce/07.3/i386/p4web) = 2b04bf576378d37856c27914ee99a4c18c8a44c017fd6d81dd2d8fadb513c1d0 -SIZE (perforce/07.3/i386/p4web) = 2144460 diff --git a/devel/p4p/distinfo.freebsd60x86_64 b/devel/p4p/distinfo.freebsd60x86_64 deleted file mode 100644 index 142869a74df2..000000000000 --- a/devel/p4p/distinfo.freebsd60x86_64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/amd64/p4) = 60512b2e37f7d9fab9d7c16dae853f79 -SHA256 (perforce/07.3/amd64/p4) = b7e670119dcb59f77685c90680575385c1c6ef4e08a4998c7308582adeeeb15a -SIZE (perforce/07.3/amd64/p4) = 587112 -MD5 (perforce/07.3/amd64/p4d) = 4223da0eb4bc03f5984f5420d92a770c -SHA256 (perforce/07.3/amd64/p4d) = 8a66df1d7dc8f488abdbaae79aa1b1b5bd6ac76fc25511c6d0c21f6259b0d332 -SIZE (perforce/07.3/amd64/p4d) = 1685024 -MD5 (perforce/07.3/amd64/p4ftpd) = d9c8a371a074cb111d9ac6a5b8bf8d4c -SHA256 (perforce/07.3/amd64/p4ftpd) = e8566db11a5dcc879d425afc43fc4be222be0556a4f4433e353afa791688b69b -SIZE (perforce/07.3/amd64/p4ftpd) = 873601 -MD5 (perforce/07.3/amd64/p4p) = 051620326a4130c12f7c1a83fc39c7b7 -SHA256 (perforce/07.3/amd64/p4p) = 6b8995d695531eee605fb570947c07f22d8037b5baae60ba25b9480253e52ac2 -SIZE (perforce/07.3/amd64/p4p) = 577632 -MD5 (perforce/07.3/amd64/p4web) = 34c80e3ec0da3f5765efc1d0c0ee706e -SHA256 (perforce/07.3/amd64/p4web) = 2c9762cef39b4fd547c9dde3bf0e7006252db1eaef0f07ef752b55b2975ecc67 -SIZE (perforce/07.3/amd64/p4web) = 2220526 diff --git a/devel/p4p/distinfo.freebsd61sparc64 b/devel/p4p/distinfo.freebsd61sparc64 deleted file mode 100644 index 235a8a801ffa..000000000000 --- a/devel/p4p/distinfo.freebsd61sparc64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/sparc64/p4) = d771d3a59514821f64fe3354ebcf85b3 -SHA256 (perforce/07.3/sparc64/p4) = a692f53cc6b73a53b66a1b97fcbf84eff740f4f0bb65fa30f4f76de568f9ad28 -SIZE (perforce/07.3/sparc64/p4) = 596608 -MD5 (perforce/07.3/sparc64/p4d) = 36361e19fac8a7a46f3641e38e73e627 -SHA256 (perforce/07.3/sparc64/p4d) = 731df4345ebcaa0772a9b780e7008737e662b9096df1a164e6c0e37f2aae2d77 -SIZE (perforce/07.3/sparc64/p4d) = 1700144 -MD5 (perforce/07.3/sparc64/p4ftpd) = f05332cb6a97c780f5fe44091beb5eed -SHA256 (perforce/07.3/sparc64/p4ftpd) = 7eb10a2dafdc20ab897ab299203a96dbbee04105d36d9071d8d79af407fabf55 -SIZE (perforce/07.3/sparc64/p4ftpd) = 1005411 -MD5 (perforce/07.3/sparc64/p4p) = d3873efb2c4429aa3a148f2d31686b9c -SHA256 (perforce/07.3/sparc64/p4p) = 8d16eef2c6ce1809c9f805816b2dd801d306dcf267ef9538c6d0dccdb4d07432 -SIZE (perforce/07.3/sparc64/p4p) = 587024 -MD5 (perforce/07.3/sparc64/p4web) = 29863f30c09b77f49a01ad06d5a3679c -SHA256 (perforce/07.3/sparc64/p4web) = 1e18fab94e68db1a55585642c2c6e342a765d2863e2d7394c3da8c0b400b21db -SIZE (perforce/07.3/sparc64/p4web) = 2497805 diff --git a/devel/p4p/distinfo.freebsdaxp b/devel/p4p/distinfo.freebsdaxp deleted file mode 100644 index c770a1d264b8..000000000000 --- a/devel/p4p/distinfo.freebsdaxp +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (perforce/99.1/alpha/p4) = 7c1300a82ab03b7ede46cf8a02c48fd9 -SHA256 (perforce/99.1/alpha/p4) = 2b9b6c9f161c9f468c079f297058bbb514b48a410907e65a86360f671c4571d0 -SIZE (perforce/99.1/alpha/p4) = 201424 -MD5 (perforce/99.1/alpha/p4d) = 8f34c41c18185011ed848aaf450cffa5 -SHA256 (perforce/99.1/alpha/p4d) = 6d688c995df2c0bd4355ff19158b03931483694ed9fc67055e31eb2c53593841 -SIZE (perforce/99.1/alpha/p4d) = 945544 diff --git a/devel/p4p/files/perforce.conf.in b/devel/p4p/files/perforce.conf.in deleted file mode 100644 index 803c56f86d17..000000000000 --- a/devel/p4p/files/perforce.conf.in +++ /dev/null @@ -1,75 +0,0 @@ -# -# Perforce FreeBSD configuration file -# -# -# $FreeBSD$ - -# -# Perforce ROOT -# -PERFORCE_ROOT="@PERFORCE_ROOT@" - -# -# Perforce user (it is recommended to run p4d as a non-root user) -# -PERFORCE_USER="@PERFORCE_USER@" - -# -# p4d/p4p port (default: 1666) -# -PERFORCE_PORT="@PERFORCE_PORT@" - -# -# p4p cache directory -# -PERFORCE_PROXY_CACHE="@PERFORCE_CACHE@" - -# -# p4p target server (default: perforce:1666) -# -PERFORCE_PROXY_TARGET="@PERFORCE_TARGET@" - -# -# p4d options (see man p4d) -# -PERFORCE_OPTIONS="-d -p $PERFORCE_PORT -v server=1 -L @PERFORCE_LOGS@/p4d.log" - -# -# Uncomment this line to have the server started automatically -# -#PERFORCE_START=yes - -# -# p4ftpd options (see p4ftpd -h) -# -PERFORCE_FTPD_OPTIONS="-d -p $PERFORCE_PORT -v server=1 -L @PERFORCE_LOGS@/p4ftpd.log" - -# -# Uncomment this line to have the server started automatically -# -#PERFORCE_FTPD_START=yes - -# -# p4p options (see p4p -h) -# -PERFORCE_PROXY_OPTIONS="-d -p $PERFORCE_PORT -t $PERFORCE_PROXY_TARGET -r $PERFORCE_PROXY_CACHE -v server=1 -L @PERFORCE_LOGS@/p4p.log" - -# -# Uncomment this line to have the proxy server started automatically -# -#PERFORCE_PROXY_START=yes - -# -# p4web port -# -PERFORCE_WEB_PORT="6060" - -# -# p4web options (see p4web -h) -# -PERFORCE_WEB_OPTIONS="-B -w $PERFORCE_WEB_PORT -p $PERFORCE_PORT -v server=1" - -# -# Uncomment this line to have the web server started automatically -# -#PERFORCE_WEB_START=yes diff --git a/devel/p4p/files/perforce.sh.in b/devel/p4p/files/perforce.sh.in deleted file mode 100644 index 2ebc5809fa48..000000000000 --- a/devel/p4p/files/perforce.sh.in +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -p4d=@PREFIX@/sbin/p4d -p4ftpd=@PREFIX@/sbin/p4ftpd -p4p=@PREFIX@/sbin/p4p -p4web=@PREFIX@/sbin/p4web - -case $1 in -start) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4d -a x$PERFORCE_START = xyes ]; then - echo -n ' p4d' - su -fm $PERFORCE_USER -c "$p4d -r $PERFORCE_ROOT $PERFORCE_OPTIONS" - fi - if [ -x $p4ftpd -a x$PERFORCE_FTPD_START = xyes ]; then - echo -n ' p4ftpd' - $p4ftpd $PERFORCE_FTPD_OPTIONS - fi - if [ -x $p4p -a x$PERFORCE_PROXY_START = xyes ]; then - echo -n ' p4p' - $p4p $PERFORCE_PROXY_OPTIONS - fi - if [ -x $p4web -a x$PERFORCE_WEB_START = xyes ]; then - echo -n ' p4web' - su -fm $PERFORCE_USER -c "$p4web $PERFORCE_WEB_OPTIONS &" >/dev/null 2>&1 - fi - - ;; -stop) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4ftpd ]; then - killall -u 0 p4ftpd >/dev/null 2>&1 && echo -n ' p4ftpd' - fi - if [ -x $p4d ]; then - killall -u $PERFORCE_USER p4d >/dev/null 2>&1 && echo -n ' p4d' - fi - if [ -x $p4p ]; then - killall -u 0 p4p > /dev/null 2>&1 && echo -n ' p4p' - fi - if [ -x $p4web ]; then - killall -u $PERFORCE_USER p4web > /dev/null 2>&1 && echo -n ' p4web' - fi - ;; -restart) - $0 stop - sleep 1 - $0 start - ;; -checkpoint) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4d -a x$PERFORCE_START = xyes ]; then - su -fm $PERFORCE_USER -c "$p4d -r $PERFORCE_ROOT -jc" - fi - ;; -*) - echo "usage: $0 {start|stop|restart|checkpoint}" - exit 64 - ;; -esac diff --git a/devel/p4p/pkg-descr b/devel/p4p/pkg-descr deleted file mode 100644 index e6d35851b44b..000000000000 --- a/devel/p4p/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Perforce is a commercial revision control system that can be used -gratis for developing free software. (see the WWW page for details). - -WWW: http://www.perforce.com/ diff --git a/devel/p4p/pkg-install b/devel/p4p/pkg-install deleted file mode 100644 index 88b4d17472f4..000000000000 --- a/devel/p4p/pkg-install +++ /dev/null @@ -1,51 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -PERFORCE_USER=${PERFORCE_USER:-p4admin} -PERFORCE_UID=${PERFORCE_UID:-94} -PERFORCE_GROUP=${PERFORCE_GROUP:-p4admin} -PERFORCE_GID=${PERFORCE_GID:-94} -PERFORCE_HOME=${PERFORCE_HOME:-$PKG_PREFIX/perforce} -PERFORCE_LOGDIR=${PERFORCE_LOGDIR:-$PERFORCE_HOME/log} -PERFORCE_ROOT=${PERFORCE_ROOT:-$PERFORCE_HOME/root} - -case $2 in -PRE-INSTALL) - USER=${PERFORCE_USER} - GROUP=${PERFORCE_GROUP} - UID=${PERFORCE_UID} - GID=${PERFORCE_GID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${PERFORCE_HOME} -c "Perforce admin" -s /sbin/nologin - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if [ ! -d $PERFORCE_HOME ] ; then - mkdir -p $PERFORCE_HOME $PERFORCE_LOGS $PERFORCE_ROOT - chown -R $USER:$GROUP $PERFORCE_HOME - fi - ;; -esac diff --git a/devel/p4p/pkg-plist b/devel/p4p/pkg-plist deleted file mode 100644 index 31e0893152cc..000000000000 --- a/devel/p4p/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -@unexec if cmp -s %D/etc/perforce.conf %D/etc/perforce.conf.default; then rm -f %D/etc/perforce.conf; fi -etc/perforce.conf.default -@exec [ ! -f %B/perforce.conf ] && cp -p %B/%f %B/perforce.conf || true -etc/rc.d/perforce.sh diff --git a/devel/p4web/Makefile b/devel/p4web/Makefile deleted file mode 100644 index 4d0dc8579d2a..000000000000 --- a/devel/p4web/Makefile +++ /dev/null @@ -1,151 +0,0 @@ -# New ports collection makefile for: perforce -# Date created: 3 Mai 2000 -# Whom: sam@inf.enst.fr -# -# $FreeBSD$ -# - -PORTNAME= perforce -PORTVERSION= ${VERSION} -PORTREVISION= ${REVISION} -PORTEPOCH= 1 -CATEGORIES= devel -MASTER_SITES= ftp://ftp.perforce.com/pub/perforce/r${PORTVERSION}/bin.${PLATFORM}/ \ - http://filehost.perforce.com/perforce/r${PORTVERSION}/bin.${PLATFORM}/ -EXTRACT_SUFX= -DISTFILES= ${BIN_FILES} ${SBIN_FILES} -EXTRACT_ONLY= # none - -MAINTAINER= lth@FreeBSD.org -COMMENT= Perforce client and server - -ONLY_FOR_ARCHS= alpha amd64 i386 sparc64 - -DIST_SUBDIR= perforce/${VERSION}/${ARCH} -MD5_FILE= ${MASTERDIR}/distinfo.${PLATFORM} - -# -# This is a kludge. I don't know a better way to set PORTVERSION and -# PORTREVISION such that pkg_version figures out an update is needed -# -ARCH!= /usr/bin/uname -p -ARCH?= i386 - -.if ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == sparc64 -VERSION= 07.3 -REVISION= 2 -BIN_FILES= p4 -SBIN_FILES= p4d p4ftpd p4p p4web -REL_NOTES= http://www.perforce.com/perforce/doc.073/user/relnotes.txt -.elif ${ARCH} == alpha -VERSION= 99.1 -REVISION= 1 -BIN_FILES= p4 -SBIN_FILES= p4d -REL_NOTES= http://www.perforce.com/perforce/doc.991/user/relnotes.txt -.else -VERSION= 0 -IGNORE= unsupported platform, sorry -.endif - -# End of kludge - -RESTRICTED= Restricted distribution - -NO_WRKSUBDIR= yes - -PLIST_FILES= ${BIN_FILES:S+^+bin/+g} \ - ${SBIN_FILES:S+^+sbin/+g} - -.include <bsd.port.pre.mk> - -# Figure out what to install -.if ${ARCH} == alpha -PLATFORM= freebsdaxp -.elif ${ARCH} == amd64 -.if ${OSVERSION} >= 504000 && ${OSVERSION} < 600000 -PLATFORM= freebsd54x86_64 -.elif ${OSVERSION} >= 600000 -PLATFORM= freebsd60x86_64 -.endif -.elif ${ARCH} == i386 -.if ${OSVERSION} >= 504000 && ${OSVERSION} < 600000 -PLATFORM= freebsd54x86 -.elif ${OSVERSION} >= 600000 -PLATFORM= freebsd60x86 -.endif -.elif ${ARCH} == sparc64 && ${OSVERSION} >= 601000 -PLATFORM= freebsd61sparc64 -.else -IGNORE= unsupported OS release, sorry -.endif - -.if ${OSVERSION} >= 700043 -LIB_DEPENDS+= c.6:${PORTSDIR}/misc/compat6x -.endif - -# These variables are all configurable. -PERFORCE_USER?= p4admin -PERFORCE_UID?= 94 -PERFORCE_GROUP?= p4admin -PERFORCE_GID?= 94 -PERFORCE_HOME?= ${LOCALBASE}/perforce -PERFORCE_ROOT?= ${PERFORCE_HOME}/root -PERFORCE_LOGS?= ${PERFORCE_HOME}/logs -PERFORCE_PORT?= 1666 -PERFORCE_CACHE?= ${PERFORCE_HOME}/cache -PERFORCE_TARGET?= perforce:1666 - -pre-everything:: - @${ECHO} "If the checksums fail, try doing 'make distclean'" - @${ECHO} "to force getting the latest binaries from Perforce." - @${ECHO} "" - @${ECHO} "Read the release notes for this release to determine" - @${ECHO} "how to migrate the database to the new version. In" - @${ECHO} "most instances, it is done automatically. However," - @${ECHO} "sometimes it must be done manually." - @${ECHO} "" - @${ECHO} "The release notes for this version are at" - @${ECHO} ${REL_NOTES} - @${ECHO} "" - @${ECHO} "Checkpoint and backup your data before installing!" - -do-build: - ${SED} -e "s,@PERFORCE_ROOT@,${PERFORCE_ROOT},g" \ - -e "s,@PERFORCE_LOGS@,${PERFORCE_LOGS},g" \ - -e "s,@PERFORCE_USER@,${PERFORCE_USER},g" \ - -e "s,@PERFORCE_PORT@,${PERFORCE_PORT},g" \ - -e "s,@PERFORCE_CACHE@,${PERFORCE_CACHE},g" \ - -e "s,@PERFORCE_TARGET@,${PERFORCE_TARGET},g" \ - < ${FILESDIR}/perforce.conf.in > ${WRKSRC}/perforce.conf - ${SED} -e "s,@PREFIX@,${PREFIX},g" \ - < ${FILESDIR}/perforce.sh.in > ${WRKSRC}/perforce.sh - -pre-su-install: - ${SETENV} PKG_PREFIX=${PREFIX} \ - PERFORCE_USER=${PERFORCE_USER} \ - PERFORCE_UID=${PERFORCE_UID} \ - PERFORCE_GROUP=${PERFORCE_GROUP} \ - PERFORCE_GID=${PERFORCE_GID} \ - PERFORCE_HOME=${PERFORCE_HOME} \ - PERFORCE_ROOT=${PERFORCE_ROOT} \ - PERFORCE_LOGS=${PERFORCE_LOGS} \ - ${SH} ${PKGDIR}/pkg-install ${PORTNAME} PRE-INSTALL - -do-install: -.for f in ${BIN_FILES} - ${INSTALL_PROGRAM} ${_DISTDIR}/${f} ${PREFIX}/bin/ -.endfor -.for f in ${SBIN_FILES} - ${INSTALL_PROGRAM} ${_DISTDIR}/${f} ${PREFIX}/sbin/ -.endfor - ${INSTALL_DATA} ${WRKSRC}/perforce.conf ${PREFIX}/etc/perforce.conf.default; \ - if [ ! -f ${PREFIX}/etc/perforce.conf ]; then \ - ${CP} -p ${PREFIX}/etc/perforce.conf.default ${PREFIX}/etc/perforce.conf; \ - fi - ${INSTALL_SCRIPT} ${WRKSRC}/perforce.sh ${PREFIX}/etc/rc.d/ - -post-install: - ${ECHO_CMD} "@unexec ${RMDIR} ${PERFORCE_ROOT} ${PERFORCE_LOGS} ${PERFORCE_HOME} 2>/dev/null || true" >> ${TMPPLIST} - -.include <bsd.port.post.mk> diff --git a/devel/p4web/distinfo.freebsd54x86 b/devel/p4web/distinfo.freebsd54x86 deleted file mode 100644 index 094d657eaeeb..000000000000 --- a/devel/p4web/distinfo.freebsd54x86 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/i386/p4) = 2cd989467d149b7bd43c03ff7fcd8a51 -SHA256 (perforce/07.3/i386/p4) = 6fe047f7de842ac484d17a0343b2c3f2d2bbf70b1de3709a2401e94689f86c58 -SIZE (perforce/07.3/i386/p4) = 519272 -MD5 (perforce/07.3/i386/p4d) = 5bc4560650641cf8c3019e5cf5f84019 -SHA256 (perforce/07.3/i386/p4d) = 4419a50609263580f498ba4b00383d81bab6f4ab2690c62e90c8b259afb7f42d -SIZE (perforce/07.3/i386/p4d) = 1508572 -MD5 (perforce/07.3/i386/p4ftpd) = 11375cc50835c475e34aa061cbf4906a -SHA256 (perforce/07.3/i386/p4ftpd) = 77c39019a9833ff534a48e580f6170f57b0fc4d9f2f3e7cc31028ef96edf57df -SIZE (perforce/07.3/i386/p4ftpd) = 916553 -MD5 (perforce/07.3/i386/p4p) = cbae23c9949cb0283e527af16ee13285 -SHA256 (perforce/07.3/i386/p4p) = ab5dd647aaabccbaefcf57f1b38a04a68db913f95e50c43ae55b47e30cb2da72 -SIZE (perforce/07.3/i386/p4p) = 473064 -MD5 (perforce/07.3/i386/p4web) = 6d1a9472bc5796904f4895a17c4fe96e -SHA256 (perforce/07.3/i386/p4web) = e333214fcd23ad5ac9abb03b92f3dceb27bfc05dea87a35fe43e76f2192b28a0 -SIZE (perforce/07.3/i386/p4web) = 2246201 diff --git a/devel/p4web/distinfo.freebsd54x86_64 b/devel/p4web/distinfo.freebsd54x86_64 deleted file mode 100644 index 0f0e8d30bd6c..000000000000 --- a/devel/p4web/distinfo.freebsd54x86_64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/amd64/p4) = b1f0661f906830da3fd648c45d363e90 -SHA256 (perforce/07.3/amd64/p4) = da6a4172e3a24804f04df7ce61d9320a7b38c1b56298bb8249c80a0e977a16f1 -SIZE (perforce/07.3/amd64/p4) = 579528 -MD5 (perforce/07.3/amd64/p4d) = eca89bb3e34c4f535e1ee5ba70620964 -SHA256 (perforce/07.3/amd64/p4d) = cda04ac3d43b6235c911cd8fc7bb589bc80ebd604d15cf24efa415707f7821ea -SIZE (perforce/07.3/amd64/p4d) = 1688616 -MD5 (perforce/07.3/amd64/p4ftpd) = 343d1d7ea997668e4afbf206728be0fb -SHA256 (perforce/07.3/amd64/p4ftpd) = e1805c8dd97249d3b7095869a77d73797c24c76e2717707e5eb0cfb18daa5536 -SIZE (perforce/07.3/amd64/p4ftpd) = 974539 -MD5 (perforce/07.3/amd64/p4p) = 3c7759ee9b765cef7a1fdc2e44aed410 -SHA256 (perforce/07.3/amd64/p4p) = a0e350876794e2e07f1a242bc2b9b1f7e6ae233368c0442d17dad5a3437f59ed -SIZE (perforce/07.3/amd64/p4p) = 566344 -MD5 (perforce/07.3/amd64/p4web) = 7446f18d50724e5db46522dd8cedaaeb -SHA256 (perforce/07.3/amd64/p4web) = 3e5deab8a0f55fb0764e795c1858c1afb8f94c3378c095ca366a0f35bc62cfee -SIZE (perforce/07.3/amd64/p4web) = 2319744 diff --git a/devel/p4web/distinfo.freebsd60x86 b/devel/p4web/distinfo.freebsd60x86 deleted file mode 100644 index 0c55add8fb5f..000000000000 --- a/devel/p4web/distinfo.freebsd60x86 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/i386/p4) = ea0f8d86bfe7f86d225e3a871c54f8d4 -SHA256 (perforce/07.3/i386/p4) = a0c6806ccf67ba60c8f85c8d1131e3776d6b02722ed2702b7f89fe7081fe59b8 -SIZE (perforce/07.3/i386/p4) = 519916 -MD5 (perforce/07.3/i386/p4d) = a0ea299963e1e95b0ffc69456d8594f3 -SHA256 (perforce/07.3/i386/p4d) = 333f0c028973a66820f0fd5530532a72d57a6dddad8b238e50045844cd6e5662 -SIZE (perforce/07.3/i386/p4d) = 1517152 -MD5 (perforce/07.3/i386/p4ftpd) = b2d83ebb3aecea264ca9036b28b8eb7f -SHA256 (perforce/07.3/i386/p4ftpd) = 8341912d704c313a1cf68b98f7c00bd91faab134919465e429121703c13514f4 -SIZE (perforce/07.3/i386/p4ftpd) = 812601 -MD5 (perforce/07.3/i386/p4p) = b80df3f40d448b29e357dc901daf0f19 -SHA256 (perforce/07.3/i386/p4p) = 64fdc6dc97d8c19742da44b1cef74b2efe1625cbde34a207935f0c4cf4e4b6fb -SIZE (perforce/07.3/i386/p4p) = 477152 -MD5 (perforce/07.3/i386/p4web) = 8305a455c72b2963d085ddc95118c61a -SHA256 (perforce/07.3/i386/p4web) = 2b04bf576378d37856c27914ee99a4c18c8a44c017fd6d81dd2d8fadb513c1d0 -SIZE (perforce/07.3/i386/p4web) = 2144460 diff --git a/devel/p4web/distinfo.freebsd60x86_64 b/devel/p4web/distinfo.freebsd60x86_64 deleted file mode 100644 index 142869a74df2..000000000000 --- a/devel/p4web/distinfo.freebsd60x86_64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/amd64/p4) = 60512b2e37f7d9fab9d7c16dae853f79 -SHA256 (perforce/07.3/amd64/p4) = b7e670119dcb59f77685c90680575385c1c6ef4e08a4998c7308582adeeeb15a -SIZE (perforce/07.3/amd64/p4) = 587112 -MD5 (perforce/07.3/amd64/p4d) = 4223da0eb4bc03f5984f5420d92a770c -SHA256 (perforce/07.3/amd64/p4d) = 8a66df1d7dc8f488abdbaae79aa1b1b5bd6ac76fc25511c6d0c21f6259b0d332 -SIZE (perforce/07.3/amd64/p4d) = 1685024 -MD5 (perforce/07.3/amd64/p4ftpd) = d9c8a371a074cb111d9ac6a5b8bf8d4c -SHA256 (perforce/07.3/amd64/p4ftpd) = e8566db11a5dcc879d425afc43fc4be222be0556a4f4433e353afa791688b69b -SIZE (perforce/07.3/amd64/p4ftpd) = 873601 -MD5 (perforce/07.3/amd64/p4p) = 051620326a4130c12f7c1a83fc39c7b7 -SHA256 (perforce/07.3/amd64/p4p) = 6b8995d695531eee605fb570947c07f22d8037b5baae60ba25b9480253e52ac2 -SIZE (perforce/07.3/amd64/p4p) = 577632 -MD5 (perforce/07.3/amd64/p4web) = 34c80e3ec0da3f5765efc1d0c0ee706e -SHA256 (perforce/07.3/amd64/p4web) = 2c9762cef39b4fd547c9dde3bf0e7006252db1eaef0f07ef752b55b2975ecc67 -SIZE (perforce/07.3/amd64/p4web) = 2220526 diff --git a/devel/p4web/distinfo.freebsd61sparc64 b/devel/p4web/distinfo.freebsd61sparc64 deleted file mode 100644 index 235a8a801ffa..000000000000 --- a/devel/p4web/distinfo.freebsd61sparc64 +++ /dev/null @@ -1,15 +0,0 @@ -MD5 (perforce/07.3/sparc64/p4) = d771d3a59514821f64fe3354ebcf85b3 -SHA256 (perforce/07.3/sparc64/p4) = a692f53cc6b73a53b66a1b97fcbf84eff740f4f0bb65fa30f4f76de568f9ad28 -SIZE (perforce/07.3/sparc64/p4) = 596608 -MD5 (perforce/07.3/sparc64/p4d) = 36361e19fac8a7a46f3641e38e73e627 -SHA256 (perforce/07.3/sparc64/p4d) = 731df4345ebcaa0772a9b780e7008737e662b9096df1a164e6c0e37f2aae2d77 -SIZE (perforce/07.3/sparc64/p4d) = 1700144 -MD5 (perforce/07.3/sparc64/p4ftpd) = f05332cb6a97c780f5fe44091beb5eed -SHA256 (perforce/07.3/sparc64/p4ftpd) = 7eb10a2dafdc20ab897ab299203a96dbbee04105d36d9071d8d79af407fabf55 -SIZE (perforce/07.3/sparc64/p4ftpd) = 1005411 -MD5 (perforce/07.3/sparc64/p4p) = d3873efb2c4429aa3a148f2d31686b9c -SHA256 (perforce/07.3/sparc64/p4p) = 8d16eef2c6ce1809c9f805816b2dd801d306dcf267ef9538c6d0dccdb4d07432 -SIZE (perforce/07.3/sparc64/p4p) = 587024 -MD5 (perforce/07.3/sparc64/p4web) = 29863f30c09b77f49a01ad06d5a3679c -SHA256 (perforce/07.3/sparc64/p4web) = 1e18fab94e68db1a55585642c2c6e342a765d2863e2d7394c3da8c0b400b21db -SIZE (perforce/07.3/sparc64/p4web) = 2497805 diff --git a/devel/p4web/distinfo.freebsdaxp b/devel/p4web/distinfo.freebsdaxp deleted file mode 100644 index c770a1d264b8..000000000000 --- a/devel/p4web/distinfo.freebsdaxp +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (perforce/99.1/alpha/p4) = 7c1300a82ab03b7ede46cf8a02c48fd9 -SHA256 (perforce/99.1/alpha/p4) = 2b9b6c9f161c9f468c079f297058bbb514b48a410907e65a86360f671c4571d0 -SIZE (perforce/99.1/alpha/p4) = 201424 -MD5 (perforce/99.1/alpha/p4d) = 8f34c41c18185011ed848aaf450cffa5 -SHA256 (perforce/99.1/alpha/p4d) = 6d688c995df2c0bd4355ff19158b03931483694ed9fc67055e31eb2c53593841 -SIZE (perforce/99.1/alpha/p4d) = 945544 diff --git a/devel/p4web/files/perforce.conf.in b/devel/p4web/files/perforce.conf.in deleted file mode 100644 index 803c56f86d17..000000000000 --- a/devel/p4web/files/perforce.conf.in +++ /dev/null @@ -1,75 +0,0 @@ -# -# Perforce FreeBSD configuration file -# -# -# $FreeBSD$ - -# -# Perforce ROOT -# -PERFORCE_ROOT="@PERFORCE_ROOT@" - -# -# Perforce user (it is recommended to run p4d as a non-root user) -# -PERFORCE_USER="@PERFORCE_USER@" - -# -# p4d/p4p port (default: 1666) -# -PERFORCE_PORT="@PERFORCE_PORT@" - -# -# p4p cache directory -# -PERFORCE_PROXY_CACHE="@PERFORCE_CACHE@" - -# -# p4p target server (default: perforce:1666) -# -PERFORCE_PROXY_TARGET="@PERFORCE_TARGET@" - -# -# p4d options (see man p4d) -# -PERFORCE_OPTIONS="-d -p $PERFORCE_PORT -v server=1 -L @PERFORCE_LOGS@/p4d.log" - -# -# Uncomment this line to have the server started automatically -# -#PERFORCE_START=yes - -# -# p4ftpd options (see p4ftpd -h) -# -PERFORCE_FTPD_OPTIONS="-d -p $PERFORCE_PORT -v server=1 -L @PERFORCE_LOGS@/p4ftpd.log" - -# -# Uncomment this line to have the server started automatically -# -#PERFORCE_FTPD_START=yes - -# -# p4p options (see p4p -h) -# -PERFORCE_PROXY_OPTIONS="-d -p $PERFORCE_PORT -t $PERFORCE_PROXY_TARGET -r $PERFORCE_PROXY_CACHE -v server=1 -L @PERFORCE_LOGS@/p4p.log" - -# -# Uncomment this line to have the proxy server started automatically -# -#PERFORCE_PROXY_START=yes - -# -# p4web port -# -PERFORCE_WEB_PORT="6060" - -# -# p4web options (see p4web -h) -# -PERFORCE_WEB_OPTIONS="-B -w $PERFORCE_WEB_PORT -p $PERFORCE_PORT -v server=1" - -# -# Uncomment this line to have the web server started automatically -# -#PERFORCE_WEB_START=yes diff --git a/devel/p4web/files/perforce.sh.in b/devel/p4web/files/perforce.sh.in deleted file mode 100644 index 2ebc5809fa48..000000000000 --- a/devel/p4web/files/perforce.sh.in +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -p4d=@PREFIX@/sbin/p4d -p4ftpd=@PREFIX@/sbin/p4ftpd -p4p=@PREFIX@/sbin/p4p -p4web=@PREFIX@/sbin/p4web - -case $1 in -start) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4d -a x$PERFORCE_START = xyes ]; then - echo -n ' p4d' - su -fm $PERFORCE_USER -c "$p4d -r $PERFORCE_ROOT $PERFORCE_OPTIONS" - fi - if [ -x $p4ftpd -a x$PERFORCE_FTPD_START = xyes ]; then - echo -n ' p4ftpd' - $p4ftpd $PERFORCE_FTPD_OPTIONS - fi - if [ -x $p4p -a x$PERFORCE_PROXY_START = xyes ]; then - echo -n ' p4p' - $p4p $PERFORCE_PROXY_OPTIONS - fi - if [ -x $p4web -a x$PERFORCE_WEB_START = xyes ]; then - echo -n ' p4web' - su -fm $PERFORCE_USER -c "$p4web $PERFORCE_WEB_OPTIONS &" >/dev/null 2>&1 - fi - - ;; -stop) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4ftpd ]; then - killall -u 0 p4ftpd >/dev/null 2>&1 && echo -n ' p4ftpd' - fi - if [ -x $p4d ]; then - killall -u $PERFORCE_USER p4d >/dev/null 2>&1 && echo -n ' p4d' - fi - if [ -x $p4p ]; then - killall -u 0 p4p > /dev/null 2>&1 && echo -n ' p4p' - fi - if [ -x $p4web ]; then - killall -u $PERFORCE_USER p4web > /dev/null 2>&1 && echo -n ' p4web' - fi - ;; -restart) - $0 stop - sleep 1 - $0 start - ;; -checkpoint) - [ -f @PREFIX@/etc/perforce.conf ] && . @PREFIX@/etc/perforce.conf - if [ -x $p4d -a x$PERFORCE_START = xyes ]; then - su -fm $PERFORCE_USER -c "$p4d -r $PERFORCE_ROOT -jc" - fi - ;; -*) - echo "usage: $0 {start|stop|restart|checkpoint}" - exit 64 - ;; -esac diff --git a/devel/p4web/pkg-descr b/devel/p4web/pkg-descr deleted file mode 100644 index e6d35851b44b..000000000000 --- a/devel/p4web/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Perforce is a commercial revision control system that can be used -gratis for developing free software. (see the WWW page for details). - -WWW: http://www.perforce.com/ diff --git a/devel/p4web/pkg-install b/devel/p4web/pkg-install deleted file mode 100644 index 88b4d17472f4..000000000000 --- a/devel/p4web/pkg-install +++ /dev/null @@ -1,51 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ - -PATH=/bin:/usr/sbin - -PERFORCE_USER=${PERFORCE_USER:-p4admin} -PERFORCE_UID=${PERFORCE_UID:-94} -PERFORCE_GROUP=${PERFORCE_GROUP:-p4admin} -PERFORCE_GID=${PERFORCE_GID:-94} -PERFORCE_HOME=${PERFORCE_HOME:-$PKG_PREFIX/perforce} -PERFORCE_LOGDIR=${PERFORCE_LOGDIR:-$PERFORCE_HOME/log} -PERFORCE_ROOT=${PERFORCE_ROOT:-$PERFORCE_HOME/root} - -case $2 in -PRE-INSTALL) - USER=${PERFORCE_USER} - GROUP=${PERFORCE_GROUP} - UID=${PERFORCE_UID} - GID=${PERFORCE_GID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${PERFORCE_HOME} -c "Perforce admin" -s /sbin/nologin - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if [ ! -d $PERFORCE_HOME ] ; then - mkdir -p $PERFORCE_HOME $PERFORCE_LOGS $PERFORCE_ROOT - chown -R $USER:$GROUP $PERFORCE_HOME - fi - ;; -esac diff --git a/devel/p4web/pkg-plist b/devel/p4web/pkg-plist deleted file mode 100644 index 31e0893152cc..000000000000 --- a/devel/p4web/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -@unexec if cmp -s %D/etc/perforce.conf %D/etc/perforce.conf.default; then rm -f %D/etc/perforce.conf; fi -etc/perforce.conf.default -@exec [ ! -f %B/perforce.conf ] && cp -p %B/%f %B/perforce.conf || true -etc/rc.d/perforce.sh diff --git a/devel/p5-Device-USB/Makefile b/devel/p5-Device-USB/Makefile deleted file mode 100644 index 0b76ac8eed96..000000000000 --- a/devel/p5-Device-USB/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: p5-usb -# Date created: 2007-05-05 -# Whom: Jason Bacon <jwbacon@tds.net> -# -# $FreeBSD$ -# - -PORTNAME= usb -PORTVERSION= 0.21 -CATEGORIES= devel perl5 -MASTER_SITES= CPAN/Device \ - http://personalpages.tds.net/~jwbacon/Ports/distfiles/ -PKGNAMEPREFIX= p5- -DISTNAME= Device-USB-${PORTVERSION} - -MAINTAINER= jwbacon@tds.net -COMMENT= Perl wrapper for libusb - -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/5.8.8/Inline.pm:${PORTSDIR}/devel/p5-Inline -LIB_DEPENDS= usb-0.1.8:${PORTSDIR}/devel/libusb - -WRKSRC= ${WRKDIR}/Device-USB-0.21 -PERL_CONFIGURE= yes - -MAN3= Device::USB.3 \ - Device::USB::Bus.3 \ - Device::USB::DevConfig.3 \ - Device::USB::DevEndpoint.3 \ - Device::USB::DevInterface.3 \ - Device::USB::Device.3 \ - Device::USB::FAQ.3 \ - Device::dump_usb.3 - -.include <bsd.port.mk> diff --git a/devel/p5-Device-USB/distinfo b/devel/p5-Device-USB/distinfo deleted file mode 100644 index a04b9a4d497b..000000000000 --- a/devel/p5-Device-USB/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (Device-USB-0.21.tar.gz) = cdf87569bde86e8c2ec4335f8984b2bf -SHA256 (Device-USB-0.21.tar.gz) = 65eb03d4962cfeec23334b49e5189fe88ce948fd76b046b61c98748ddb5c8163 -SIZE (Device-USB-0.21.tar.gz) = 27463 diff --git a/devel/p5-Device-USB/pkg-descr b/devel/p5-Device-USB/pkg-descr deleted file mode 100644 index 9efb3d4208ee..000000000000 --- a/devel/p5-Device-USB/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Device::USB, Perl wrappers for libusb. This -port is a dependency for others on the way regarding Lego -Mindstorms NXT software. diff --git a/devel/p5-Device-USB/pkg-plist b/devel/p5-Device-USB/pkg-plist deleted file mode 100644 index cfe7d2f77641..000000000000 --- a/devel/p5-Device-USB/pkg-plist +++ /dev/null @@ -1,23 +0,0 @@ -lib/perl5/site_perl/5.8.8/mach/Device/USB.pm -lib/perl5/site_perl/5.8.8/mach/Device/USB/Bus.pm -lib/perl5/site_perl/5.8.8/mach/Device/USB/DevConfig.pm -lib/perl5/site_perl/5.8.8/mach/Device/USB/DevEndpoint.pm -lib/perl5/site_perl/5.8.8/mach/Device/USB/DevInterface.pm -lib/perl5/site_perl/5.8.8/mach/Device/USB/Device.pm -lib/perl5/site_perl/5.8.8/mach/Device/USB/FAQ.pod -lib/perl5/site_perl/5.8.8/mach/Device/dump_usb.pl -lib/perl5/site_perl/5.8.8/mach/auto/Device/USB/.packlist -lib/perl5/site_perl/5.8.8/mach/auto/Device/USB/USB.bs -lib/perl5/site_perl/5.8.8/mach/auto/Device/USB/USB.so -@dirrm lib/perl5/site_perl/5.8.8/mach/auto/Device/USB -@dirrmtry lib/perl5/site_perl/5.8.8/mach/auto/Device -@dirrmtry lib/perl5/site_perl/5.8.8/mach/auto -@dirrmtry lib/perl5/site_perl/5.8.8/mach/Device/USB -@dirrmtry lib/perl5/site_perl/5.8.8/mach/Device -@dirrmtry lib/perl5/site_perl/5.8.8/mach -@dirrmtry lib/perl5/site_perl/5.8.8 -@dirrmtry lib/perl5/site_perl -@dirrmtry lib/perl5/5.8.8/man/man3 -@dirrmtry lib/perl5/5.8.8/man -@dirrmtry lib/perl5/5.8.8 -@dirrmtry lib/perl5 diff --git a/devel/pdcurses-the/Makefile b/devel/pdcurses-the/Makefile deleted file mode 100644 index f6d7fa784042..000000000000 --- a/devel/pdcurses-the/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# New ports collection makefile for: pdcurses -# Date created: 1 Jul 2006 -# Whom: alepulver -# -# $FreeBSD$ -# - -PORTNAME= pdcurses -PORTVERSION= 3.3 -PORTREVISION= 1 -CATEGORIES= devel -MASTER_SITES= SF -DISTNAME= PDCurses-${PORTVERSION} - -MAINTAINER= alepulver@FreeBSD.org -COMMENT= Curses library implementation for Win32, DOS, OS/2 and X11 - -USE_LDCONFIG= yes -USE_XORG= x11 xext sm ice xt xaw8 -GNU_CONFIGURE= yes - -OPTIONS= DEBUG "Enable debugging support" off \ - LATIN1 "Enable support for Latin1 keys" off \ - NEXTAW "Link with NeXtaw" off \ - XAW3D "Link with Xaw3d" off - -.include <bsd.port.pre.mk> - -.for opt in DEBUG LATIN1 -. if defined(WITH_${opt}) -CONFIGURE_ARGS+=--enable-${opt:L} -. endif -.endfor - -.if defined(WITH_NEXTAW) -LIB_DEPENDS+= neXtaw.${XAWVER}:${PORTSDIR}/x11-toolkits/neXtaw -CONFIGURE_ARGS+=--with-nextaw -.endif - -.if defined(WITH_XAW3D) -LIB_DEPENDS+= Xaw3d.${XAWVER}:${PORTSDIR}/x11-toolkits/Xaw3d -CONFIGURE_ARGS+=--with-xaw3d -.endif - -post-patch: - @${REINPLACE_CMD} -e \ - 's|$$(libdir)/$$(SHLPRE)$$(SHLFILE)$$(SHLPST)|&.2|' \ - ${WRKSRC}/Makefile.in - -post-install: - @cd ${PREFIX}/lib && ${LN} -sf libXCurses.so.2 libXCurses.so - -.include <bsd.port.post.mk> diff --git a/devel/pdcurses-the/distinfo b/devel/pdcurses-the/distinfo deleted file mode 100644 index 550a28e8d73c..000000000000 --- a/devel/pdcurses-the/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (PDCurses-3.3.tar.gz) = 96f94dc982158d970bdd1cba6502b414 -SHA256 (PDCurses-3.3.tar.gz) = 04260e49ace3aa1762c6ae1e38549de37da957cfa8592a0ecdb1948dae84a48a -SIZE (PDCurses-3.3.tar.gz) = 329511 diff --git a/devel/pdcurses-the/pkg-descr b/devel/pdcurses-the/pkg-descr deleted file mode 100644 index 01294acf8480..000000000000 --- a/devel/pdcurses-the/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -PDCurses is a public domain curses library for Win32, DOS, OS/2 and X11, -implementing most of the functions available in System V R4 curses. It -supports most compilers for these platforms. The X11 port allows existing -text-mode curses programs to be re-compiled and linked with PDCurses to -produce native X11 applications. - -WWW: http://pdcurses.sourceforge.net/ diff --git a/devel/pdcurses-the/pkg-plist b/devel/pdcurses-the/pkg-plist deleted file mode 100644 index ff3747182bf5..000000000000 --- a/devel/pdcurses-the/pkg-plist +++ /dev/null @@ -1,13 +0,0 @@ -bin/xcurses-config -include/xcurses.h -include/xcurses/curses.h -include/xcurses/curspriv.h -include/xcurses/panel.h -include/xcurses/term.h -include/xpanel.h -lib/libXCurses.a -lib/libXCurses.so -lib/libXCurses.so.2 -lib/libXpanel.a -lib/libXpanel.so -@dirrm include/xcurses diff --git a/devel/php5-gettext/Makefile b/devel/php5-gettext/Makefile index ceb52e086d7a..20b22d6b3e6f 100644 --- a/devel/php5-gettext/Makefile +++ b/devel/php5-gettext/Makefile @@ -5,7 +5,6 @@ # $FreeBSD$ # -PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php5 diff --git a/devel/php5-pcre/Makefile b/devel/php5-pcre/Makefile deleted file mode 100644 index bfa9970c03c3..000000000000 --- a/devel/php5-pcre/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -# New ports collection makefile for: php5-pcre -# Date created: 7 Jul 2004 -# Whom: Alex Dupre <ale@FreeBSD.org> -# -# $FreeBSD$ -# - -CATEGORIES= devel - -MASTERDIR= ${.CURDIR}/../../lang/php5 - -PKGNAMESUFFIX= -pcre - -.include "${MASTERDIR}/Makefile" diff --git a/devel/php5-pcre/files/patch-php_pcre.c b/devel/php5-pcre/files/patch-php_pcre.c deleted file mode 100644 index 0a44d8ecdc0f..000000000000 --- a/devel/php5-pcre/files/patch-php_pcre.c +++ /dev/null @@ -1,13 +0,0 @@ ---- php_pcre.c.orig 2007-11-14 08:11:40.000000000 +0100 -+++ php_pcre.c 2007-11-14 08:11:50.000000000 +0100 -@@ -18,6 +18,10 @@ - - /* $Id: php_pcre.c,v 1.168.2.9.2.21 2007/09/20 08:10:44 tony2001 Exp $ */ - -+#ifdef HAVE_CONFIG_H -+#include "config.h" -+#endif -+ - #include "php.h" - #include "php_ini.h" - #include "php_globals.h" diff --git a/devel/py-Jinja2/Makefile b/devel/py-Jinja2/Makefile deleted file mode 100644 index 3397303d261c..000000000000 --- a/devel/py-Jinja2/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: jinja -# Date created: 2007-02-14 -# Whom: Nicola Vitale <nivit@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= Jinja -PORTVERSION= 1.2 -CATEGORIES= devel python -MASTER_SITES= CHEESESHOP \ - http://nivi.interfree.it/distfiles/${PORTNAME}/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} - -MAINTAINER= nivit@FreeBSD.org -COMMENT= A fast, and easy to use stand-alone template engine - -USE_PYTHON= 2.4+ -USE_PYDISTUTILS= easy_install - -PYEASYINSTALL_ARCHDEP= yes -PYEASYINSTALL_INSTALLARGS= -N ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG} -PYEASYINSTALL_UNINSTALLARGS= -q -m -N ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG} - -DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} - -.if defined(NOPORTDOCS) -MAKE_ENV= NOPORTDOCS=${NOPORTDOCS} -.else -RM_OPTS= -R -post-install: - @${MKDIR} ${DOCSDIR} - @${MV} ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG}/docs/html ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG}/docs/txt ${DOCSDIR}/ - @${RM} ${RM_OPTS} ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG}/docs -.endif - -.include <bsd.port.mk> diff --git a/devel/py-Jinja2/distinfo b/devel/py-Jinja2/distinfo deleted file mode 100644 index 8eb787b4777c..000000000000 --- a/devel/py-Jinja2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (Jinja-1.2.tar.gz) = 1235a005ade00b213800ff1e798c0241 -SHA256 (Jinja-1.2.tar.gz) = 36252f3d0356008a31a537a31cfba189f7b5898b8e2da454f72ea5f987db8b31 -SIZE (Jinja-1.2.tar.gz) = 252918 diff --git a/devel/py-Jinja2/files/patch-setup.py b/devel/py-Jinja2/files/patch-setup.py deleted file mode 100644 index 44213af0751e..000000000000 --- a/devel/py-Jinja2/files/patch-setup.py +++ /dev/null @@ -1,28 +0,0 @@ ---- setup.py 2007-11-17 18:13:24.000000000 +0100 -+++ setup.py.port 2008-02-16 14:36:17.000000000 +0100 -@@ -51,6 +51,13 @@ - print ' problem: %s' % e - print '=' * 79 - -+if not os.environ.has_key('NOPORTDOCS'): -+ port_data_files=[ -+ ('docs/html', list(list_files('docs/html'))), -+ ('docs/txt', list(list_files('docs/src'))) -+ ] -+else: -+ port_data_files=[] - - setup( - name='Jinja', -@@ -78,10 +85,7 @@ - ], - keywords=['python.templating.engines'], - packages=['jinja', 'jinja.translators'], -- data_files=[ -- ('docs/html', list(list_files('docs/html'))), -- ('docs/txt', list(list_files('docs/src'))) -- ], -+ data_files=port_data_files, - entry_points=''' - [python.templating.engines] - jinja = jinja.plugin:BuffetPlugin diff --git a/devel/py-Jinja2/pkg-descr b/devel/py-Jinja2/pkg-descr deleted file mode 100644 index 21cacb41cb8d..000000000000 --- a/devel/py-Jinja2/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Jinja is a sandboxed template engine written in pure Python licensed -under the BSD license. It provides a Django-like non-XML syntax and -compiles templates into executable python code. It's basically a -combination of Django templates and python code. - -Author: Armin Ronacher -WWW: http://jinja.pocoo.org/ diff --git a/devel/py-Jinja2/pkg-plist b/devel/py-Jinja2/pkg-plist deleted file mode 100644 index 84c6587609b2..000000000000 --- a/devel/py-Jinja2/pkg-plist +++ /dev/null @@ -1,130 +0,0 @@ -@comment $FreeBSD$ -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/entry_points.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/native_libs.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt -%%PORTDOCS%%%%DOCSDIR%%/html/altsyntax.html -%%PORTDOCS%%%%DOCSDIR%%/html/api.html -%%PORTDOCS%%%%DOCSDIR%%/html/builtins.html -%%PORTDOCS%%%%DOCSDIR%%/html/changelog.html -%%PORTDOCS%%%%DOCSDIR%%/html/debugging.html -%%PORTDOCS%%%%DOCSDIR%%/html/designerdoc.html -%%PORTDOCS%%%%DOCSDIR%%/html/devintro.html -%%PORTDOCS%%%%DOCSDIR%%/html/devrecipies.html -%%PORTDOCS%%%%DOCSDIR%%/html/escaping.html -%%PORTDOCS%%%%DOCSDIR%%/html/filters.html -%%PORTDOCS%%%%DOCSDIR%%/html/frameworks.html -%%PORTDOCS%%%%DOCSDIR%%/html/fromdjango.html -%%PORTDOCS%%%%DOCSDIR%%/html/i18n.html -%%PORTDOCS%%%%DOCSDIR%%/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/html/inheritance.html -%%PORTDOCS%%%%DOCSDIR%%/html/installation.html -%%PORTDOCS%%%%DOCSDIR%%/html/jinjabanner.png -%%PORTDOCS%%%%DOCSDIR%%/html/jinjalogo.png -%%PORTDOCS%%%%DOCSDIR%%/html/loaders.html -%%PORTDOCS%%%%DOCSDIR%%/html/objects.html -%%PORTDOCS%%%%DOCSDIR%%/html/recipies.html -%%PORTDOCS%%%%DOCSDIR%%/html/scopes.html -%%PORTDOCS%%%%DOCSDIR%%/html/streaming.html -%%PORTDOCS%%%%DOCSDIR%%/html/style.css -%%PORTDOCS%%%%DOCSDIR%%/html/templatei18n.html -%%PORTDOCS%%%%DOCSDIR%%/html/tests.html -%%PORTDOCS%%%%DOCSDIR%%/html/translators.html -%%PORTDOCS%%%%DOCSDIR%%/html/watermark.png -%%PORTDOCS%%%%DOCSDIR%%/txt/altsyntax.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/api.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/builtins.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/changelog.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/debugging.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/designerdoc.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/devintro.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/devrecipies.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/escaping.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/filters.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/frameworks.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/fromdjango.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/i18n.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/index.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/inheritance.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/installation.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/loaders.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/objects.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/recipies.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/scopes.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/streaming.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/templatei18n.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/tests.txt -%%PORTDOCS%%%%DOCSDIR%%/txt/translators.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/_debugger.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/_debugger.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/_debugger.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/_debugger.so -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/_native.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/_native.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/_native.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/_speedups.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/_speedups.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/_speedups.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/_speedups.so -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/constants.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/constants.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/constants.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/datastructure.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/datastructure.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/datastructure.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/debugger.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/debugger.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/debugger.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/defaults.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/defaults.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/defaults.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/environment.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/environment.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/environment.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/exceptions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/exceptions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/exceptions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/filters.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/filters.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/filters.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/lexer.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/lexer.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/lexer.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/loaders.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/loaders.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/loaders.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/nodes.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/nodes.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/nodes.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/parser.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/parser.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/parser.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/plugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/plugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/plugin.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/tests.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/tests.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/tests.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/translators/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/translators/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/translators/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/translators/python.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/translators/python.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/translators/python.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/utils.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/utils.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/utils.pyo -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/txt -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja/translators -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/jinja -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% diff --git a/devel/py-boto-devel/Makefile b/devel/py-boto-devel/Makefile deleted file mode 100644 index fb01e9c3387d..000000000000 --- a/devel/py-boto-devel/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# New ports collection makefile for: py-boto -# Date created: Aug 26, 2007 -# Whom: Peter Schuller <peter.schuller@infidyne.com> -# -# $FreeBSD$ -# - -PORTNAME= boto -PORTVERSION= 1.4a -CATEGORIES= devel python -MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} - -MAINTAINER= peter.schuller@infidyne.com -COMMENT= Python interface to Amazon Web Services - -USE_PYTHON= 2.4+ -USE_PYDISTUTILS=yes - -.include <bsd.port.mk> diff --git a/devel/py-boto-devel/distinfo b/devel/py-boto-devel/distinfo deleted file mode 100644 index 745e8eb80065..000000000000 --- a/devel/py-boto-devel/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (boto-1.4a.tar.gz) = f349767aad47a73455e1e71c356f23be -SHA256 (boto-1.4a.tar.gz) = bee52c9b9896840e82bb70246208008626240df05a6c1080daa7b11b1d1b093a -SIZE (boto-1.4a.tar.gz) = 123754 diff --git a/devel/py-boto-devel/pkg-descr b/devel/py-boto-devel/pkg-descr deleted file mode 100644 index 28f69628e098..000000000000 --- a/devel/py-boto-devel/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -An integrated interface to current and future infrastructural services -offered by Amazon Web Services. Currently, this includes: - - * Simple Storage Service (S3) - * Simple Queue Service (SQS) - * Elastic Compute Cloud (EC2) - * Mechanical Turk - -WWW: http://code.google.com/p/boto diff --git a/devel/py-boto-devel/pkg-plist b/devel/py-boto-devel/pkg-plist deleted file mode 100644 index cc33825789d7..000000000000 --- a/devel/py-boto-devel/pkg-plist +++ /dev/null @@ -1,237 +0,0 @@ -%%PYTHON_SITELIBDIR%%/boto/__init__.py -%%PYTHON_SITELIBDIR%%/boto/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/connection.py -%%PYTHON_SITELIBDIR%%/boto/connection.pyc -%%PYTHON_SITELIBDIR%%/boto/connection.pyo -%%PYTHON_SITELIBDIR%%/boto/contrib/__init__.py -%%PYTHON_SITELIBDIR%%/boto/contrib/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/contrib/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/contrib/m2helpers.py -%%PYTHON_SITELIBDIR%%/boto/contrib/m2helpers.pyc -%%PYTHON_SITELIBDIR%%/boto/contrib/m2helpers.pyo -%%PYTHON_SITELIBDIR%%/boto/contrib/ymlmessage.py -%%PYTHON_SITELIBDIR%%/boto/contrib/ymlmessage.pyc -%%PYTHON_SITELIBDIR%%/boto/contrib/ymlmessage.pyo -%%PYTHON_SITELIBDIR%%/boto/ec2/__init__.py -%%PYTHON_SITELIBDIR%%/boto/ec2/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/ec2/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/ec2/address.py -%%PYTHON_SITELIBDIR%%/boto/ec2/address.pyc -%%PYTHON_SITELIBDIR%%/boto/ec2/address.pyo -%%PYTHON_SITELIBDIR%%/boto/ec2/connection.py -%%PYTHON_SITELIBDIR%%/boto/ec2/connection.pyc -%%PYTHON_SITELIBDIR%%/boto/ec2/connection.pyo -%%PYTHON_SITELIBDIR%%/boto/ec2/image.py -%%PYTHON_SITELIBDIR%%/boto/ec2/image.pyc -%%PYTHON_SITELIBDIR%%/boto/ec2/image.pyo -%%PYTHON_SITELIBDIR%%/boto/ec2/instance.py -%%PYTHON_SITELIBDIR%%/boto/ec2/instance.pyc -%%PYTHON_SITELIBDIR%%/boto/ec2/instance.pyo -%%PYTHON_SITELIBDIR%%/boto/ec2/keypair.py -%%PYTHON_SITELIBDIR%%/boto/ec2/keypair.pyc -%%PYTHON_SITELIBDIR%%/boto/ec2/keypair.pyo -%%PYTHON_SITELIBDIR%%/boto/ec2/securitygroup.py -%%PYTHON_SITELIBDIR%%/boto/ec2/securitygroup.pyc -%%PYTHON_SITELIBDIR%%/boto/ec2/securitygroup.pyo -%%PYTHON_SITELIBDIR%%/boto/ec2/snapshot.py -%%PYTHON_SITELIBDIR%%/boto/ec2/snapshot.pyc -%%PYTHON_SITELIBDIR%%/boto/ec2/snapshot.pyo -%%PYTHON_SITELIBDIR%%/boto/ec2/volume.py -%%PYTHON_SITELIBDIR%%/boto/ec2/volume.pyc -%%PYTHON_SITELIBDIR%%/boto/ec2/volume.pyo -%%PYTHON_SITELIBDIR%%/boto/ec2/zone.py -%%PYTHON_SITELIBDIR%%/boto/ec2/zone.pyc -%%PYTHON_SITELIBDIR%%/boto/ec2/zone.pyo -%%PYTHON_SITELIBDIR%%/boto/exception.py -%%PYTHON_SITELIBDIR%%/boto/exception.pyc -%%PYTHON_SITELIBDIR%%/boto/exception.pyo -%%PYTHON_SITELIBDIR%%/boto/handler.py -%%PYTHON_SITELIBDIR%%/boto/handler.pyc -%%PYTHON_SITELIBDIR%%/boto/handler.pyo -%%PYTHON_SITELIBDIR%%/boto/mashups/__init__.py -%%PYTHON_SITELIBDIR%%/boto/mashups/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/mashups/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/mashups/interactive.py -%%PYTHON_SITELIBDIR%%/boto/mashups/interactive.pyc -%%PYTHON_SITELIBDIR%%/boto/mashups/interactive.pyo -%%PYTHON_SITELIBDIR%%/boto/mashups/iobject.py -%%PYTHON_SITELIBDIR%%/boto/mashups/iobject.pyc -%%PYTHON_SITELIBDIR%%/boto/mashups/iobject.pyo -%%PYTHON_SITELIBDIR%%/boto/mashups/order.py -%%PYTHON_SITELIBDIR%%/boto/mashups/order.pyc -%%PYTHON_SITELIBDIR%%/boto/mashups/order.pyo -%%PYTHON_SITELIBDIR%%/boto/mashups/server.py -%%PYTHON_SITELIBDIR%%/boto/mashups/server.pyc -%%PYTHON_SITELIBDIR%%/boto/mashups/server.pyo -%%PYTHON_SITELIBDIR%%/boto/mturk/__init__.py -%%PYTHON_SITELIBDIR%%/boto/mturk/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/mturk/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/mturk/connection.py -%%PYTHON_SITELIBDIR%%/boto/mturk/connection.pyc -%%PYTHON_SITELIBDIR%%/boto/mturk/connection.pyo -%%PYTHON_SITELIBDIR%%/boto/mturk/notification.py -%%PYTHON_SITELIBDIR%%/boto/mturk/notification.pyc -%%PYTHON_SITELIBDIR%%/boto/mturk/notification.pyo -%%PYTHON_SITELIBDIR%%/boto/mturk/price.py -%%PYTHON_SITELIBDIR%%/boto/mturk/price.pyc -%%PYTHON_SITELIBDIR%%/boto/mturk/price.pyo -%%PYTHON_SITELIBDIR%%/boto/mturk/question.py -%%PYTHON_SITELIBDIR%%/boto/mturk/question.pyc -%%PYTHON_SITELIBDIR%%/boto/mturk/question.pyo -%%PYTHON_SITELIBDIR%%/boto/pyami/__init__.py -%%PYTHON_SITELIBDIR%%/boto/pyami/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/pyami/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/pyami/bootstrap.py -%%PYTHON_SITELIBDIR%%/boto/pyami/bootstrap.pyc -%%PYTHON_SITELIBDIR%%/boto/pyami/bootstrap.pyo -%%PYTHON_SITELIBDIR%%/boto/pyami/config.py -%%PYTHON_SITELIBDIR%%/boto/pyami/config.pyc -%%PYTHON_SITELIBDIR%%/boto/pyami/config.pyo -%%PYTHON_SITELIBDIR%%/boto/pyami/copybot.py -%%PYTHON_SITELIBDIR%%/boto/pyami/copybot.pyc -%%PYTHON_SITELIBDIR%%/boto/pyami/copybot.pyo -%%PYTHON_SITELIBDIR%%/boto/pyami/helloworld.py -%%PYTHON_SITELIBDIR%%/boto/pyami/helloworld.pyc -%%PYTHON_SITELIBDIR%%/boto/pyami/helloworld.pyo -%%PYTHON_SITELIBDIR%%/boto/pyami/launch_ami.py -%%PYTHON_SITELIBDIR%%/boto/pyami/launch_ami.pyc -%%PYTHON_SITELIBDIR%%/boto/pyami/launch_ami.pyo -%%PYTHON_SITELIBDIR%%/boto/pyami/scriptbase.py -%%PYTHON_SITELIBDIR%%/boto/pyami/scriptbase.pyc -%%PYTHON_SITELIBDIR%%/boto/pyami/scriptbase.pyo -%%PYTHON_SITELIBDIR%%/boto/pyami/startup.py -%%PYTHON_SITELIBDIR%%/boto/pyami/startup.pyc -%%PYTHON_SITELIBDIR%%/boto/pyami/startup.pyo -%%PYTHON_SITELIBDIR%%/boto/resultset.py -%%PYTHON_SITELIBDIR%%/boto/resultset.pyc -%%PYTHON_SITELIBDIR%%/boto/resultset.pyo -%%PYTHON_SITELIBDIR%%/boto/s3/__init__.py -%%PYTHON_SITELIBDIR%%/boto/s3/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/s3/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/s3/acl.py -%%PYTHON_SITELIBDIR%%/boto/s3/acl.pyc -%%PYTHON_SITELIBDIR%%/boto/s3/acl.pyo -%%PYTHON_SITELIBDIR%%/boto/s3/bucket.py -%%PYTHON_SITELIBDIR%%/boto/s3/bucket.pyc -%%PYTHON_SITELIBDIR%%/boto/s3/bucket.pyo -%%PYTHON_SITELIBDIR%%/boto/s3/bucketlistresultset.py -%%PYTHON_SITELIBDIR%%/boto/s3/bucketlistresultset.pyc -%%PYTHON_SITELIBDIR%%/boto/s3/bucketlistresultset.pyo -%%PYTHON_SITELIBDIR%%/boto/s3/connection.py -%%PYTHON_SITELIBDIR%%/boto/s3/connection.pyc -%%PYTHON_SITELIBDIR%%/boto/s3/connection.pyo -%%PYTHON_SITELIBDIR%%/boto/s3/key.py -%%PYTHON_SITELIBDIR%%/boto/s3/key.pyc -%%PYTHON_SITELIBDIR%%/boto/s3/key.pyo -%%PYTHON_SITELIBDIR%%/boto/s3/prefix.py -%%PYTHON_SITELIBDIR%%/boto/s3/prefix.pyc -%%PYTHON_SITELIBDIR%%/boto/s3/prefix.pyo -%%PYTHON_SITELIBDIR%%/boto/s3/user.py -%%PYTHON_SITELIBDIR%%/boto/s3/user.pyc -%%PYTHON_SITELIBDIR%%/boto/s3/user.pyo -%%PYTHON_SITELIBDIR%%/boto/sdb/__init__.py -%%PYTHON_SITELIBDIR%%/boto/sdb/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/sdb/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/sdb/connection.py -%%PYTHON_SITELIBDIR%%/boto/sdb/connection.pyc -%%PYTHON_SITELIBDIR%%/boto/sdb/connection.pyo -%%PYTHON_SITELIBDIR%%/boto/sdb/domain.py -%%PYTHON_SITELIBDIR%%/boto/sdb/domain.pyc -%%PYTHON_SITELIBDIR%%/boto/sdb/domain.pyo -%%PYTHON_SITELIBDIR%%/boto/sdb/item.py -%%PYTHON_SITELIBDIR%%/boto/sdb/item.pyc -%%PYTHON_SITELIBDIR%%/boto/sdb/item.pyo -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/__init__.py -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/checker.py -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/checker.pyc -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/checker.pyo -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/object.py -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/object.pyc -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/object.pyo -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/property.py -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/property.pyc -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/property.pyo -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/test_persist.py -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/test_persist.pyc -%%PYTHON_SITELIBDIR%%/boto/sdb/persist/test_persist.pyo -%%PYTHON_SITELIBDIR%%/boto/sdb/queryresultset.py -%%PYTHON_SITELIBDIR%%/boto/sdb/queryresultset.pyc -%%PYTHON_SITELIBDIR%%/boto/sdb/queryresultset.pyo -%%PYTHON_SITELIBDIR%%/boto/services/__init__.py -%%PYTHON_SITELIBDIR%%/boto/services/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/services/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/services/bs.py -%%PYTHON_SITELIBDIR%%/boto/services/bs.pyc -%%PYTHON_SITELIBDIR%%/boto/services/bs.pyo -%%PYTHON_SITELIBDIR%%/boto/services/message.py -%%PYTHON_SITELIBDIR%%/boto/services/message.pyc -%%PYTHON_SITELIBDIR%%/boto/services/message.pyo -%%PYTHON_SITELIBDIR%%/boto/services/result.py -%%PYTHON_SITELIBDIR%%/boto/services/result.pyc -%%PYTHON_SITELIBDIR%%/boto/services/result.pyo -%%PYTHON_SITELIBDIR%%/boto/services/service.py -%%PYTHON_SITELIBDIR%%/boto/services/service.pyc -%%PYTHON_SITELIBDIR%%/boto/services/service.pyo -%%PYTHON_SITELIBDIR%%/boto/services/servicedef.py -%%PYTHON_SITELIBDIR%%/boto/services/servicedef.pyc -%%PYTHON_SITELIBDIR%%/boto/services/servicedef.pyo -%%PYTHON_SITELIBDIR%%/boto/services/sonofmmm.py -%%PYTHON_SITELIBDIR%%/boto/services/sonofmmm.pyc -%%PYTHON_SITELIBDIR%%/boto/services/sonofmmm.pyo -%%PYTHON_SITELIBDIR%%/boto/services/submit.py -%%PYTHON_SITELIBDIR%%/boto/services/submit.pyc -%%PYTHON_SITELIBDIR%%/boto/services/submit.pyo -%%PYTHON_SITELIBDIR%%/boto/sqs/__init__.py -%%PYTHON_SITELIBDIR%%/boto/sqs/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/sqs/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/sqs/attributes.py -%%PYTHON_SITELIBDIR%%/boto/sqs/attributes.pyc -%%PYTHON_SITELIBDIR%%/boto/sqs/attributes.pyo -%%PYTHON_SITELIBDIR%%/boto/sqs/connection.py -%%PYTHON_SITELIBDIR%%/boto/sqs/connection.pyc -%%PYTHON_SITELIBDIR%%/boto/sqs/connection.pyo -%%PYTHON_SITELIBDIR%%/boto/sqs/jsonmessage.py -%%PYTHON_SITELIBDIR%%/boto/sqs/jsonmessage.pyc -%%PYTHON_SITELIBDIR%%/boto/sqs/jsonmessage.pyo -%%PYTHON_SITELIBDIR%%/boto/sqs/message.py -%%PYTHON_SITELIBDIR%%/boto/sqs/message.pyc -%%PYTHON_SITELIBDIR%%/boto/sqs/message.pyo -%%PYTHON_SITELIBDIR%%/boto/sqs/queue.py -%%PYTHON_SITELIBDIR%%/boto/sqs/queue.pyc -%%PYTHON_SITELIBDIR%%/boto/sqs/queue.pyo -%%PYTHON_SITELIBDIR%%/boto/tests/__init__.py -%%PYTHON_SITELIBDIR%%/boto/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/boto/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/boto/tests/test.py -%%PYTHON_SITELIBDIR%%/boto/tests/test.pyc -%%PYTHON_SITELIBDIR%%/boto/tests/test.pyo -%%PYTHON_SITELIBDIR%%/boto/tests/test_ec2connection.py -%%PYTHON_SITELIBDIR%%/boto/tests/test_ec2connection.pyc -%%PYTHON_SITELIBDIR%%/boto/tests/test_ec2connection.pyo -%%PYTHON_SITELIBDIR%%/boto/tests/test_s3connection.py -%%PYTHON_SITELIBDIR%%/boto/tests/test_s3connection.pyc -%%PYTHON_SITELIBDIR%%/boto/tests/test_s3connection.pyo -%%PYTHON_SITELIBDIR%%/boto/tests/test_sdbconnection.py -%%PYTHON_SITELIBDIR%%/boto/tests/test_sdbconnection.pyc -%%PYTHON_SITELIBDIR%%/boto/tests/test_sdbconnection.pyo -%%PYTHON_SITELIBDIR%%/boto/tests/test_sqsconnection.py -%%PYTHON_SITELIBDIR%%/boto/tests/test_sqsconnection.pyc -%%PYTHON_SITELIBDIR%%/boto/tests/test_sqsconnection.pyo -%%PYTHON_SITELIBDIR%%/boto/utils.py -%%PYTHON_SITELIBDIR%%/boto/utils.pyc -%%PYTHON_SITELIBDIR%%/boto/utils.pyo -@dirrm %%PYTHON_SITELIBDIR%%/boto/contrib -@dirrm %%PYTHON_SITELIBDIR%%/boto/ec2 -@dirrm %%PYTHON_SITELIBDIR%%/boto/mashups -@dirrm %%PYTHON_SITELIBDIR%%/boto/mturk -@dirrm %%PYTHON_SITELIBDIR%%/boto/pyami -@dirrm %%PYTHON_SITELIBDIR%%/boto/s3 -@dirrm %%PYTHON_SITELIBDIR%%/boto/services -@dirrm %%PYTHON_SITELIBDIR%%/boto/sdb/persist -@dirrm %%PYTHON_SITELIBDIR%%/boto/sdb -@dirrm %%PYTHON_SITELIBDIR%%/boto/sqs -@dirrm %%PYTHON_SITELIBDIR%%/boto/tests -@dirrm %%PYTHON_SITELIBDIR%%/boto diff --git a/devel/py-jsonlib2/Makefile b/devel/py-jsonlib2/Makefile deleted file mode 100644 index 146e320190c4..000000000000 --- a/devel/py-jsonlib2/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# New ports collection makefile for: py-jsonlib -# Date created: 2008-07-21 -# Whom: Wen Heping <wenheping@gmail.com> -# -# $FreeBSD$ -# - -PORTNAME= jsonlib -PORTVERSION= 1.3.6 -CATEGORIES= devel python -MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} - -MAINTAINER= wenheping@gmail.com -COMMENT= JSON Serializer/Deserializer for Python - -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -PYEASYINSTALL_ARCHDEP= yes - -PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% - -.include <bsd.port.mk> diff --git a/devel/py-jsonlib2/distinfo b/devel/py-jsonlib2/distinfo deleted file mode 100644 index 058b4f0e9e6d..000000000000 --- a/devel/py-jsonlib2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (jsonlib-1.3.6.tar.gz) = 834f95a9797ee01b7630aacf72d611fc -SHA256 (jsonlib-1.3.6.tar.gz) = 62372d4068a6116fad8485623b276ff692c91e38eecf263eb5723f84f8575cc8 -SIZE (jsonlib-1.3.6.tar.gz) = 19205 diff --git a/devel/py-jsonlib2/pkg-descr b/devel/py-jsonlib2/pkg-descr deleted file mode 100644 index 738fce98dbab..000000000000 --- a/devel/py-jsonlib2/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -py-json is a lightweight data-interchange format. -It is often used for exchanging data between a web -server and user agent. This module aims to produce -a library for serializing and deserializing JSON -that conforms strictly to RFC 4627. - -WWW: http://pypi.python.org/pypi/jsonlib/ diff --git a/devel/py-turbojson11/Makefile b/devel/py-turbojson11/Makefile deleted file mode 100644 index 41e44107f802..000000000000 --- a/devel/py-turbojson11/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# New ports collection makefile for: py-turbojson -# Date created: 2006-12-02 -# Whom: Nicola Vitale <nivit@email.it> -# -# $FreeBSD$ -# - -PORTNAME= TurboJson -PORTVERSION= 1.1.3 -PORTREVISION= 1 -CATEGORIES= devel python -MASTER_SITES= CHEESESHOP \ - http://nivi.interfree.it/distfiles/${PORTNAME}/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} - -MAINTAINER= nivit@FreeBSD.org -COMMENT= Python template plugin for TurboGears that supports json - -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}RuleDispatch>=0.5.a0.r2306:${PORTSDIR}/devel/py-ruledispatch \ - ${PYTHON_PKGNAMEPREFIX}simplejson>=1.9.1:${PORTSDIR}/devel/py-simplejson \ - ${PYTHON_PKGNAMEPREFIX}sqlobject>=0.10.0_1:${PORTSDIR}/databases/py-sqlobject - -USE_PYTHON= 2.4+ -USE_PYDISTUTILS= easy_install - -.include <bsd.port.mk> diff --git a/devel/py-turbojson11/distinfo b/devel/py-turbojson11/distinfo deleted file mode 100644 index 2043eba111bb..000000000000 --- a/devel/py-turbojson11/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (TurboJson-1.1.3.tar.gz) = 9abbd9e50352941d6c658af3c43f0eb5 -SHA256 (TurboJson-1.1.3.tar.gz) = 3812c8a0787475e038762e6155d6155970efd964e372f0443dd83b1587610afd -SIZE (TurboJson-1.1.3.tar.gz) = 5919 diff --git a/devel/py-turbojson11/pkg-descr b/devel/py-turbojson11/pkg-descr deleted file mode 100644 index 8c863a60d66a..000000000000 --- a/devel/py-turbojson11/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Python template plugin for TurboGears that supports json - -Author: Elvelind Grandin -WWW: http://www.turbogears.org/docs/plugins/template.html diff --git a/devel/py-turbojson11/pkg-plist b/devel/py-turbojson11/pkg-plist deleted file mode 100644 index e2f0647f3ba8..000000000000 --- a/devel/py-turbojson11/pkg-plist +++ /dev/null @@ -1,33 +0,0 @@ -@comment $FreeBSD$ -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/entry_points.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/jsonify.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/jsonify.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/jsonify.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/jsonsupport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/jsonsupport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/jsonsupport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/test_jsonify.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/test_jsonify.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/test_jsonify.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/test_sqlalchemy.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/test_sqlalchemy.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/test_sqlalchemy.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/test_sqlobject.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/test_sqlobject.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests/test_sqlobject.pyo -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson/tests -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/turbojson -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% diff --git a/devel/py-zope.interface/Makefile b/devel/py-zope.interface/Makefile deleted file mode 100644 index 4538cc307a84..000000000000 --- a/devel/py-zope.interface/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: py-zopeInterface -# Date created: 13 April 2005 -# Whom: Neal Nelson <neal@nelson.name> -# -# $FreeBSD$ -# - -PORTNAME= zopeInterface -PORTVERSION= 3.3.0.1 -CATEGORIES= devel zope python -MASTER_SITES= http://cheeseshop.python.org/packages/source/z/zope.interface/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= zope.interface-${PORTVERSION} - -MAINTAINER= neal@nelson.name -COMMENT= Zope.interface package from Zope 3 - -USE_PYTHON= yes -USE_PYDISTUTILS= easy_install -PYDISTUTILS_NOEGGINFO= yes -PYDISTUTILS_PKGNAME= zope.interface -PYEASYINSTALL_ARCHDEP= yes - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 600000 -MANUAL_PACKAGE_BUILD= does not build in tinderbox environment -.endif - -.include <bsd.port.post.mk> diff --git a/devel/py-zope.interface/distinfo b/devel/py-zope.interface/distinfo deleted file mode 100644 index 4a1fe7cf9d13..000000000000 --- a/devel/py-zope.interface/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (zope.interface-3.3.0.1.tar.gz) = 9f2388c0f67757e3b2530216a4f29b86 -SHA256 (zope.interface-3.3.0.1.tar.gz) = 3dc5c140f7d564223e960969cb7a36ae453d9eafff2645c6db7ab0f59ab4c9c4 -SIZE (zope.interface-3.3.0.1.tar.gz) = 105075 diff --git a/devel/py-zope.interface/pkg-descr b/devel/py-zope.interface/pkg-descr deleted file mode 100644 index e782c3e450bf..000000000000 --- a/devel/py-zope.interface/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This is a separate distribution of the zope.interface package used in Zope 3, -along with the packages it depends on. - -WWW: http://www.zope.org/Products/ZopeInterface - --- Neal Nelson <neal@nelson.name> diff --git a/devel/py-zope.interface/pkg-plist b/devel/py-zope.interface/pkg-plist deleted file mode 100644 index ddeca3305720..000000000000 --- a/devel/py-zope.interface/pkg-plist +++ /dev/null @@ -1,140 +0,0 @@ -@comment $FreeBSD$ -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/namespace_packages.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/DEPENDENCIES.cfg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/PUBLICATION.cfg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/README.ru.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/README.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/SETUP.cfg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/_flatten.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/_flatten.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/_flatten.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/_zope_interface_coptimizations.c -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/_zope_interface_coptimizations.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/_zope_interface_coptimizations.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/_zope_interface_coptimizations.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/_zope_interface_coptimizations.so -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/adapter.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/adapter.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/adapter.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/adapter.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/advice.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/advice.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/advice.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/idatetime.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/idatetime.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/idatetime.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/interfaces.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/interfaces.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/interfaces.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/mapping.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/mapping.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/mapping.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/sequence.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/sequence.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/sequence.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/basemapping.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/basemapping.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/basemapping.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/test_idatetime.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/test_idatetime.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/test_idatetime.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/test_import_interfaces.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/test_import_interfaces.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests/test_import_interfaces.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/declarations.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/declarations.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/declarations.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/document.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/document.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/document.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/exceptions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/exceptions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/exceptions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/human.ru.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/human.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/interface.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/interface.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/interface.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/interfaces.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/interfaces.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/interfaces.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/ro.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/ro.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/ro.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/dummy.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/dummy.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/dummy.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/foodforthought.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/ifoo.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/ifoo.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/ifoo.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/m1.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/m1.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/m1.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/m2.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/m2.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/m2.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/odd.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/odd.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/odd.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_adapter.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_adapter.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_adapter.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_advice.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_advice.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_advice.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_declarations.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_declarations.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_declarations.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_document.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_document.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_document.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_element.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_element.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_element.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_interface.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_interface.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_interface.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_odd_declarations.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_odd_declarations.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_odd_declarations.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_sorting.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_sorting.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_sorting.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_verify.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_verify.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/test_verify.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/unitfixtures.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/unitfixtures.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests/unitfixtures.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/verify.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/verify.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/verify.pyo -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/tests -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common/tests -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface/common -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/interface -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% diff --git a/devel/rubygem-gettext/Makefile b/devel/rubygem-gettext/Makefile deleted file mode 100644 index e49fefa1750e..000000000000 --- a/devel/rubygem-gettext/Makefile +++ /dev/null @@ -1,54 +0,0 @@ -# New ports collection makefile for: Ruby GetText Package -# Date created: 4 February 2002 -# Whom: Akinori MUSHA aka knu <knu@idaemons.org> -# -# $FreeBSD$ -# - -PORTNAME= gettext -PORTVERSION= 1.10.0 -PORTREVISION= 1 -CATEGORIES= devel ruby -MASTER_SITES= ${MASTER_SITE_RUBYFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= ruby-${PORTNAME}-package-${PORTVERSION} -DIST_SUBDIR= ruby - -MAINTAINER= knu@FreeBSD.org -COMMENT= A Ruby implementation of the gettext library - -BUILD_DEPENDS= racc:${PORTSDIR}/devel/ruby-racc - -USE_GETTEXT= yes -USE_RUBY= yes -USE_RUBY_FEATURES= racc-runtime iconv -USE_RUBY_SETUP= yes - -RUBY_SHEBANG_FILES= ${WRKSRC}/samples/*.rb - -DOCSDIR= ${RUBY_MODDOCDIR} -PORTDOCS= ChangeLog NEWS README - -RUBY_REQUIRE= Ruby >= 184 - -.include <bsd.port.pre.mk> - -.if !defined(RUBY_PROVIDED) -IGNORE= requires Ruby 1.8.4 or later -.endif - -post-install: doc-install - -doc-install: -.if !defined(NOPORTDOCS) - cd ${WRKSRC}/samples; ${RUBY} makemo.rb - ${MKDIR} ${RUBY_MODEXAMPLESDIR} - ${CP} -R ${WRKSRC}/samples/* ${RUBY_MODEXAMPLESDIR}/ - ${MKDIR} ${RUBY_MODDOCDIR} -.for f in ${PORTDOCS} - ${CP} -R ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ -.endfor -.endif - -.include <bsd.port.post.mk> diff --git a/devel/rubygem-gettext/distinfo b/devel/rubygem-gettext/distinfo deleted file mode 100644 index a4c1fdb2d230..000000000000 --- a/devel/rubygem-gettext/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ruby/ruby-gettext-package-1.10.0.tar.gz) = 3519b450d9c00156bbf0ba05577c4cf4 -SHA256 (ruby/ruby-gettext-package-1.10.0.tar.gz) = 74e48ae040569970b182353aebee23b90aae62586eb95218ee7c38f15a7d2c7d -SIZE (ruby/ruby-gettext-package-1.10.0.tar.gz) = 347575 diff --git a/devel/rubygem-gettext/pkg-descr b/devel/rubygem-gettext/pkg-descr deleted file mode 100644 index 6b55400c6f5c..000000000000 --- a/devel/rubygem-gettext/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Ruby GetText Package is Native Language Support Library and Tools -which modeled after GNU GetText package, but the API is simpler than -that of GNU GetText. - -Author: Masao Mutoh <mutoh@highway.ne.jp> -WWW: http://www.yotabanana.com/hiki/ruby-gettext.html diff --git a/devel/rubygem-gettext/pkg-plist b/devel/rubygem-gettext/pkg-plist deleted file mode 100644 index c6f78a5a13cc..000000000000 --- a/devel/rubygem-gettext/pkg-plist +++ /dev/null @@ -1,948 +0,0 @@ -bin/rgettext -bin/rmsgfmt -bin/rmsgmerge -%%RUBY_SITEARCHLIBDIR%%/locale_system.so -%%RUBY_SITELIBDIR%%/gettext.rb -%%RUBY_SITELIBDIR%%/gettext/active_record.rb -%%RUBY_SITELIBDIR%%/gettext/cgi.rb -%%RUBY_SITELIBDIR%%/gettext/container.rb -%%RUBY_SITELIBDIR%%/gettext/erb.rb -%%RUBY_SITELIBDIR%%/gettext/iconv.rb -%%RUBY_SITELIBDIR%%/gettext/locale.rb -%%RUBY_SITELIBDIR%%/gettext/locale_cgi.rb -%%RUBY_SITELIBDIR%%/gettext/locale_object.rb -%%RUBY_SITELIBDIR%%/gettext/locale_posix.rb -%%RUBY_SITELIBDIR%%/gettext/locale_table_win32.rb -%%RUBY_SITELIBDIR%%/gettext/locale_win32.rb -%%RUBY_SITELIBDIR%%/gettext/mo.rb -%%RUBY_SITELIBDIR%%/gettext/parser/active_record.rb -%%RUBY_SITELIBDIR%%/gettext/parser/erb.rb -%%RUBY_SITELIBDIR%%/gettext/parser/glade.rb -%%RUBY_SITELIBDIR%%/gettext/parser/ruby.rb -%%RUBY_SITELIBDIR%%/gettext/poparser.rb -%%RUBY_SITELIBDIR%%/gettext/rails.rb -%%RUBY_SITELIBDIR%%/gettext/rails_compat.rb -%%RUBY_SITELIBDIR%%/gettext/rgettext.rb -%%RUBY_SITELIBDIR%%/gettext/rmsgfmt.rb -%%RUBY_SITELIBDIR%%/gettext/rmsgmerge.rb -%%RUBY_SITELIBDIR%%/gettext/string.rb -%%RUBY_SITELIBDIR%%/gettext/textdomain.rb -%%RUBY_SITELIBDIR%%/gettext/textdomainmanager.rb -%%RUBY_SITELIBDIR%%/gettext/utils.rb -%%RUBY_SITELIBDIR%%/gettext/version.rb -@dirrm %%RUBY_SITELIBDIR%%/gettext/parser -@dirrm %%RUBY_SITELIBDIR%%/gettext -share/locale/bs/LC_MESSAGES/rails.mo -share/locale/bs/LC_MESSAGES/rgettext.mo -share/locale/ca/LC_MESSAGES/rails.mo -share/locale/ca/LC_MESSAGES/rgettext.mo -share/locale/cs/LC_MESSAGES/rails.mo -share/locale/cs/LC_MESSAGES/rgettext.mo -share/locale/de/LC_MESSAGES/rails.mo -share/locale/de/LC_MESSAGES/rgettext.mo -share/locale/el/LC_MESSAGES/rails.mo -share/locale/el/LC_MESSAGES/rgettext.mo -share/locale/eo/LC_MESSAGES/rails.mo -share/locale/eo/LC_MESSAGES/rgettext.mo -share/locale/es/LC_MESSAGES/rails.mo -share/locale/es/LC_MESSAGES/rgettext.mo -share/locale/et/LC_MESSAGES/rails.mo -share/locale/fr/LC_MESSAGES/rails.mo -share/locale/fr/LC_MESSAGES/rgettext.mo -share/locale/hr/LC_MESSAGES/rails.mo -share/locale/hr/LC_MESSAGES/rgettext.mo -share/locale/it/LC_MESSAGES/rails.mo -share/locale/it/LC_MESSAGES/rgettext.mo -share/locale/ja/LC_MESSAGES/rails.mo -share/locale/ja/LC_MESSAGES/rgettext.mo -share/locale/ko/LC_MESSAGES/rails.mo -share/locale/ko/LC_MESSAGES/rgettext.mo -share/locale/nb/LC_MESSAGES/rails.mo -share/locale/nb/LC_MESSAGES/rgettext.mo -share/locale/nl/LC_MESSAGES/rails.mo -share/locale/nl/LC_MESSAGES/rgettext.mo -share/locale/pt_BR/LC_MESSAGES/rails.mo -share/locale/pt_BR/LC_MESSAGES/rgettext.mo -share/locale/ru/LC_MESSAGES/rails.mo -share/locale/ru/LC_MESSAGES/rgettext.mo -share/locale/sv/LC_MESSAGES/rgettext.mo -share/locale/vi/LC_MESSAGES/rails.mo -share/locale/vi/LC_MESSAGES/rgettext.mo -share/locale/zh/LC_MESSAGES/rails.mo -share/locale/zh/LC_MESSAGES/rgettext.mo -share/locale/zh_TW/LC_MESSAGES/rails.mo -share/locale/zh_TW/LC_MESSAGES/rgettext.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/README -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/README -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/Rakefile -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/cookie.cgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/gettext.css -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/helloerb.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/helloerb1.cgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/helloerb2.cgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/hellolib.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/http.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/index.cgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/de/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/de/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/de/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/de/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/el/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/el/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/el/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/el/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/es/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/es/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/es/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/es/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/it/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/it/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/it/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/it/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/other.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/bs/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/bs/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/bs/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/bs/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ca/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ca/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ca/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ca/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/cs/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/cs/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/cs/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/cs/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/de/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/de/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/de/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/de/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/el/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/el/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/el/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/el/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/eo/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/eo/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/eo/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/eo/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/es/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/es/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/es/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/es/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/fr/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/fr/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/fr/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/fr/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/helloerb1.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/helloerb2.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/hellolib.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/hr/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/hr/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/hr/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/hr/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/it/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/it/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/it/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/it/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ja/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ja/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ja/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ja/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ko/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ko/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ko/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ko/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/main.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nb/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nb/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nb/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nb/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nl/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nl/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nl/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nl/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/pt_BR/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/pt_BR/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/pt_BR/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/pt_BR/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ru/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ru/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ru/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ru/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/vi/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/vi/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/vi/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/vi/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh_TW/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh_TW/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh_TW/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh_TW/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/ruby.bat -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hello.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hello2.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hello_noop.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hello_plural.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hello_textdomain.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/helloglade2.glade -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/helloglade2.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hellogtk.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hellogtk2.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hellotk.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/makemo.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hello.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hello2.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hello_noop.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hello_plural.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/helloglade2.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hellogtk.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hellotk.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/README -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/Rakefile -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/controllers/application.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/controllers/blog_controller.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/helpers/application_helper.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/helpers/blog_helper.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/models/article.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog/_form.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog/edit.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog/list.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog/new.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog/show.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/layouts/blog.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/boot.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/database.yml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/environment.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/environments/development.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/environments/production.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/environments/test.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/routes.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/db/schema.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/lib/tasks/gettext.rake -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/bs/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/ca/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/cs/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/de/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/el/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/en/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/eo/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/es/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/fr/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/hr/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/it/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/ja/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/ko/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/nb/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/nl/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/pt_BR/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/ru/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/vi/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/zh/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/zh_TW/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/blog.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/bs/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/ca/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/cs/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/de/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/el/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/en/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/eo/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/es/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/fr/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/hr/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/it/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/ja/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/ko/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/nb/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/nl/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/pt_BR/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/ru/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/vi/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/zh/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/zh_TW/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/404.html -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/500.html -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/dispatch.cgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/dispatch.fcgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/dispatch.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/favicon.ico -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/images/rails.png -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/index.html -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/javascripts/controls.js -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/javascripts/dragdrop.js -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/javascripts/effects.js -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/javascripts/prototype.js -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/robots.txt -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/stylesheets/blog.css -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/stylesheets/scaffold.css -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/about -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/breakpointer -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/console -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/destroy -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/generate -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/performance/benchmarker -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/performance/profiler -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/plugin -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/process/reaper -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/process/spawner -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/process/spinner -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/runner -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/server -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/test/fixtures/articles.yml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/test/functional/blog_controller_test.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/test/test_helper.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/test/unit/article_test.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/README -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/Rakefile -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/init.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/lib/gettext_plugin.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/bs/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ca/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/cs/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/de/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/el/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/es/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/fr/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/hr/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ja/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ko/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nb/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nl/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ru/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/vi/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh_TW/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/bs/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ca/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/cs/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/de/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/el/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/es/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/fr/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/gettext_plugin.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/hr/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/it/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ja/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ko/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/nb/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/nl/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/pt_BR/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ru/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/vi/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/zh/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/zh_TW/gettext_plugin.po -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh_TW/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/vi/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ru/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/pt_BR/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nl/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nb/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ko/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ja/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/hr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/fr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/es/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/el/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/de/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/cs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ca/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/bs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/lib -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/test/unit -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/test/functional -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/test/fixtures -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/test -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/script/process -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/script/performance -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/script -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/public/stylesheets -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/public/javascripts -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/public/images -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/public -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/en -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/log -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/zh_TW/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/zh/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/vi/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ru/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/pt_BR/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/nl/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/nb/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ko/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ja/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/it/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/hr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/fr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/es/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/eo/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/en/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/en -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/el/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/de/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/cs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ca/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/bs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/lib/tasks -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/lib -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/db -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/config/environments -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/config -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/views/layouts -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/views -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/models -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/helpers -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/controllers -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/sv -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/sv -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/it/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/es/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/el/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/de/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%% -@comment ... and doc files diff --git a/devel/rubygem-locale/Makefile b/devel/rubygem-locale/Makefile deleted file mode 100644 index e49fefa1750e..000000000000 --- a/devel/rubygem-locale/Makefile +++ /dev/null @@ -1,54 +0,0 @@ -# New ports collection makefile for: Ruby GetText Package -# Date created: 4 February 2002 -# Whom: Akinori MUSHA aka knu <knu@idaemons.org> -# -# $FreeBSD$ -# - -PORTNAME= gettext -PORTVERSION= 1.10.0 -PORTREVISION= 1 -CATEGORIES= devel ruby -MASTER_SITES= ${MASTER_SITE_RUBYFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= ruby-${PORTNAME}-package-${PORTVERSION} -DIST_SUBDIR= ruby - -MAINTAINER= knu@FreeBSD.org -COMMENT= A Ruby implementation of the gettext library - -BUILD_DEPENDS= racc:${PORTSDIR}/devel/ruby-racc - -USE_GETTEXT= yes -USE_RUBY= yes -USE_RUBY_FEATURES= racc-runtime iconv -USE_RUBY_SETUP= yes - -RUBY_SHEBANG_FILES= ${WRKSRC}/samples/*.rb - -DOCSDIR= ${RUBY_MODDOCDIR} -PORTDOCS= ChangeLog NEWS README - -RUBY_REQUIRE= Ruby >= 184 - -.include <bsd.port.pre.mk> - -.if !defined(RUBY_PROVIDED) -IGNORE= requires Ruby 1.8.4 or later -.endif - -post-install: doc-install - -doc-install: -.if !defined(NOPORTDOCS) - cd ${WRKSRC}/samples; ${RUBY} makemo.rb - ${MKDIR} ${RUBY_MODEXAMPLESDIR} - ${CP} -R ${WRKSRC}/samples/* ${RUBY_MODEXAMPLESDIR}/ - ${MKDIR} ${RUBY_MODDOCDIR} -.for f in ${PORTDOCS} - ${CP} -R ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ -.endfor -.endif - -.include <bsd.port.post.mk> diff --git a/devel/rubygem-locale/distinfo b/devel/rubygem-locale/distinfo deleted file mode 100644 index a4c1fdb2d230..000000000000 --- a/devel/rubygem-locale/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ruby/ruby-gettext-package-1.10.0.tar.gz) = 3519b450d9c00156bbf0ba05577c4cf4 -SHA256 (ruby/ruby-gettext-package-1.10.0.tar.gz) = 74e48ae040569970b182353aebee23b90aae62586eb95218ee7c38f15a7d2c7d -SIZE (ruby/ruby-gettext-package-1.10.0.tar.gz) = 347575 diff --git a/devel/rubygem-locale/pkg-descr b/devel/rubygem-locale/pkg-descr deleted file mode 100644 index 6b55400c6f5c..000000000000 --- a/devel/rubygem-locale/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Ruby GetText Package is Native Language Support Library and Tools -which modeled after GNU GetText package, but the API is simpler than -that of GNU GetText. - -Author: Masao Mutoh <mutoh@highway.ne.jp> -WWW: http://www.yotabanana.com/hiki/ruby-gettext.html diff --git a/devel/rubygem-locale/pkg-plist b/devel/rubygem-locale/pkg-plist deleted file mode 100644 index c6f78a5a13cc..000000000000 --- a/devel/rubygem-locale/pkg-plist +++ /dev/null @@ -1,948 +0,0 @@ -bin/rgettext -bin/rmsgfmt -bin/rmsgmerge -%%RUBY_SITEARCHLIBDIR%%/locale_system.so -%%RUBY_SITELIBDIR%%/gettext.rb -%%RUBY_SITELIBDIR%%/gettext/active_record.rb -%%RUBY_SITELIBDIR%%/gettext/cgi.rb -%%RUBY_SITELIBDIR%%/gettext/container.rb -%%RUBY_SITELIBDIR%%/gettext/erb.rb -%%RUBY_SITELIBDIR%%/gettext/iconv.rb -%%RUBY_SITELIBDIR%%/gettext/locale.rb -%%RUBY_SITELIBDIR%%/gettext/locale_cgi.rb -%%RUBY_SITELIBDIR%%/gettext/locale_object.rb -%%RUBY_SITELIBDIR%%/gettext/locale_posix.rb -%%RUBY_SITELIBDIR%%/gettext/locale_table_win32.rb -%%RUBY_SITELIBDIR%%/gettext/locale_win32.rb -%%RUBY_SITELIBDIR%%/gettext/mo.rb -%%RUBY_SITELIBDIR%%/gettext/parser/active_record.rb -%%RUBY_SITELIBDIR%%/gettext/parser/erb.rb -%%RUBY_SITELIBDIR%%/gettext/parser/glade.rb -%%RUBY_SITELIBDIR%%/gettext/parser/ruby.rb -%%RUBY_SITELIBDIR%%/gettext/poparser.rb -%%RUBY_SITELIBDIR%%/gettext/rails.rb -%%RUBY_SITELIBDIR%%/gettext/rails_compat.rb -%%RUBY_SITELIBDIR%%/gettext/rgettext.rb -%%RUBY_SITELIBDIR%%/gettext/rmsgfmt.rb -%%RUBY_SITELIBDIR%%/gettext/rmsgmerge.rb -%%RUBY_SITELIBDIR%%/gettext/string.rb -%%RUBY_SITELIBDIR%%/gettext/textdomain.rb -%%RUBY_SITELIBDIR%%/gettext/textdomainmanager.rb -%%RUBY_SITELIBDIR%%/gettext/utils.rb -%%RUBY_SITELIBDIR%%/gettext/version.rb -@dirrm %%RUBY_SITELIBDIR%%/gettext/parser -@dirrm %%RUBY_SITELIBDIR%%/gettext -share/locale/bs/LC_MESSAGES/rails.mo -share/locale/bs/LC_MESSAGES/rgettext.mo -share/locale/ca/LC_MESSAGES/rails.mo -share/locale/ca/LC_MESSAGES/rgettext.mo -share/locale/cs/LC_MESSAGES/rails.mo -share/locale/cs/LC_MESSAGES/rgettext.mo -share/locale/de/LC_MESSAGES/rails.mo -share/locale/de/LC_MESSAGES/rgettext.mo -share/locale/el/LC_MESSAGES/rails.mo -share/locale/el/LC_MESSAGES/rgettext.mo -share/locale/eo/LC_MESSAGES/rails.mo -share/locale/eo/LC_MESSAGES/rgettext.mo -share/locale/es/LC_MESSAGES/rails.mo -share/locale/es/LC_MESSAGES/rgettext.mo -share/locale/et/LC_MESSAGES/rails.mo -share/locale/fr/LC_MESSAGES/rails.mo -share/locale/fr/LC_MESSAGES/rgettext.mo -share/locale/hr/LC_MESSAGES/rails.mo -share/locale/hr/LC_MESSAGES/rgettext.mo -share/locale/it/LC_MESSAGES/rails.mo -share/locale/it/LC_MESSAGES/rgettext.mo -share/locale/ja/LC_MESSAGES/rails.mo -share/locale/ja/LC_MESSAGES/rgettext.mo -share/locale/ko/LC_MESSAGES/rails.mo -share/locale/ko/LC_MESSAGES/rgettext.mo -share/locale/nb/LC_MESSAGES/rails.mo -share/locale/nb/LC_MESSAGES/rgettext.mo -share/locale/nl/LC_MESSAGES/rails.mo -share/locale/nl/LC_MESSAGES/rgettext.mo -share/locale/pt_BR/LC_MESSAGES/rails.mo -share/locale/pt_BR/LC_MESSAGES/rgettext.mo -share/locale/ru/LC_MESSAGES/rails.mo -share/locale/ru/LC_MESSAGES/rgettext.mo -share/locale/sv/LC_MESSAGES/rgettext.mo -share/locale/vi/LC_MESSAGES/rails.mo -share/locale/vi/LC_MESSAGES/rgettext.mo -share/locale/zh/LC_MESSAGES/rails.mo -share/locale/zh/LC_MESSAGES/rgettext.mo -share/locale/zh_TW/LC_MESSAGES/rails.mo -share/locale/zh_TW/LC_MESSAGES/rgettext.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/README -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/README -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/Rakefile -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/cookie.cgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/gettext.css -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/helloerb.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/helloerb1.cgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/helloerb2.cgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/hellolib.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/http.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/index.cgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/de/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/de/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/de/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/de/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/el/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/el/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/el/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/el/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/es/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/es/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/es/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/es/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/it/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/it/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/it/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/it/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW/LC_MESSAGES/main.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/other.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/bs/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/bs/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/bs/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/bs/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ca/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ca/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ca/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ca/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/cs/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/cs/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/cs/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/cs/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/de/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/de/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/de/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/de/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/el/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/el/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/el/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/el/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/eo/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/eo/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/eo/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/eo/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/es/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/es/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/es/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/es/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/fr/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/fr/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/fr/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/fr/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/helloerb1.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/helloerb2.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/hellolib.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/hr/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/hr/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/hr/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/hr/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/it/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/it/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/it/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/it/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ja/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ja/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ja/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ja/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ko/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ko/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ko/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ko/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/main.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nb/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nb/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nb/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nb/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nl/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nl/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nl/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/nl/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/pt_BR/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/pt_BR/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/pt_BR/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/pt_BR/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ru/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ru/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ru/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/ru/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/vi/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/vi/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/vi/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/vi/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh_TW/helloerb1.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh_TW/helloerb2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh_TW/hellolib.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/po/zh_TW/main.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/cgi/ruby.bat -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hello.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hello2.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hello_noop.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hello_plural.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hello_textdomain.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/helloglade2.glade -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/helloglade2.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hellogtk.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hellogtk2.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hellotk.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hello.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hello2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hello_noop.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hello_plural.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/helloglade2.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hellogtk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES/hellotk.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/makemo.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/bs/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ca/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/cs/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/de/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/el/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/eo/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/es/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/fr/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hello.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hello2.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hello_noop.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hello_plural.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/helloglade2.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hellogtk.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hellotk.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/hr/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/it/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ja/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ko/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nb/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/nl/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/pt_BR/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/ru/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/sv/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/vi/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hello.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hello2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hello_noop.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hello_plural.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/helloglade2.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hellogtk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/po/zh_TW/hellotk.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/README -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/Rakefile -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/controllers/application.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/controllers/blog_controller.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/helpers/application_helper.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/helpers/blog_helper.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/models/article.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog/_form.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog/edit.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog/list.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog/new.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog/show.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/app/views/layouts/blog.rhtml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/boot.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/database.yml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/environment.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/environments/development.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/environments/production.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/environments/test.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/config/routes.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/db/schema.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/lib/tasks/gettext.rake -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/bs/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/ca/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/cs/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/de/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/el/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/en/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/eo/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/es/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/fr/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/hr/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/it/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/ja/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/ko/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/nb/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/nl/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/pt_BR/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/ru/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/vi/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/zh/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/locale/zh_TW/LC_MESSAGES/blog.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/blog.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/bs/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/ca/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/cs/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/de/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/el/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/en/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/eo/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/es/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/fr/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/hr/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/it/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/ja/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/ko/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/nb/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/nl/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/pt_BR/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/ru/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/vi/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/zh/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/po/zh_TW/blog.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/404.html -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/500.html -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/dispatch.cgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/dispatch.fcgi -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/dispatch.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/favicon.ico -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/images/rails.png -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/index.html -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/javascripts/controls.js -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/javascripts/dragdrop.js -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/javascripts/effects.js -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/javascripts/prototype.js -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/robots.txt -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/stylesheets/blog.css -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/public/stylesheets/scaffold.css -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/about -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/breakpointer -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/console -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/destroy -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/generate -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/performance/benchmarker -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/performance/profiler -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/plugin -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/process/reaper -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/process/spawner -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/process/spinner -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/runner -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/script/server -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/test/fixtures/articles.yml -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/test/functional/blog_controller_test.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/test/test_helper.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/test/unit/article_test.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/README -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/Rakefile -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/init.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/lib/gettext_plugin.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/bs/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ca/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/cs/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/de/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/el/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/es/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/fr/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/hr/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ja/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ko/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nb/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nl/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ru/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/vi/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh_TW/LC_MESSAGES/gettext_plugin.mo -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/bs/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ca/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/cs/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/de/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/el/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/es/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/fr/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/gettext_plugin.pot -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/hr/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/it/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ja/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ko/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/nb/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/nl/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/pt_BR/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ru/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/vi/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/zh/gettext_plugin.po -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/zh_TW/gettext_plugin.po -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/po -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh_TW/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/vi/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ru/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/pt_BR/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nl/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nb/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ko/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ja/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/hr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/fr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/es/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/el/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/de/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/cs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ca/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/bs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/locale -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext/lib -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins/gettext -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor/plugins -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/vendor -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/test/unit -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/test/functional -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/test/fixtures -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/test -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/script/process -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/script/performance -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/script -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/public/stylesheets -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/public/javascripts -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/public/images -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/public -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/en -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/po -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/log -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/zh_TW/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/zh/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/vi/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ru/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/pt_BR/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/nl/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/nb/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ko/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ja/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/it/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/hr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/fr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/es/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/eo/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/en/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/en -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/el/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/de/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/cs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ca/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/bs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/locale -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/lib/tasks -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/lib -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/db -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/config/environments -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/config -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/views/layouts -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/views/blog -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/views -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/models -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/helpers -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app/controllers -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails/app -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/rails -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/sv -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/po -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/zh_TW/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/zh/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/vi/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/sv/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/sv -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ru/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/pt_BR/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/nl/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/nb/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ko/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ja/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/it/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/hr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/fr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/es/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/eo/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/el/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/de/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/cs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ca/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/bs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/locale -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/po -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh_TW -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/zh -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/vi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ru -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/pt_BR -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/nl -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/nb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ko -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ja -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/it/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/it -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/hr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/fr -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/es/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/es -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/eo -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/el/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/el -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/de/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/de -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/cs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/ca -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs/LC_MESSAGES -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale/bs -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi/locale -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%/cgi -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%% -@comment ... and doc files diff --git a/devel/rubygem-rubygame/Makefile b/devel/rubygem-rubygame/Makefile deleted file mode 100644 index 5d53b09c208a..000000000000 --- a/devel/rubygem-rubygame/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: ruby-game -# Date created: 9 June 2006 -# Whom: ws -# -# $FreeBSD$ -# - -PORTNAME= game -PORTVERSION= 1.1.0 -PORTREVISION= 3 -CATEGORIES= devel ruby -MASTER_SITES= http://rubygame.seul.org/files/ -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= ruby${PORTNAME}-${PORTVERSION} -DIST_SUBDIR= ruby - -MAINTAINER= jaj@hcl-club.lu -COMMENT= A game-development extension and library for the ruby language - -USE_SDL= gfx image ttf -USE_RUBY= yes -USE_BZIP2= yes -USE_RUBY_SETUP= yes - -.include <bsd.port.pre.mk> - -do-patch: - ${REINPLACE_CMD} 's|"sdl-config"|"${SDL_CONFIG}"|' \ - ${WRKSRC}/ext/rubygame/extconf.rb - -.include <bsd.port.post.mk> diff --git a/devel/rubygem-rubygame/distinfo b/devel/rubygem-rubygame/distinfo deleted file mode 100644 index c5ac166e6843..000000000000 --- a/devel/rubygem-rubygame/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ruby/rubygame-1.1.0.tar.bz2) = b63c37a71dbcee9c179859148e330bcb -SHA256 (ruby/rubygame-1.1.0.tar.bz2) = c17b21ea69b34e871b895165409ac8d1abeea39fb7ff99b268a75f31157b6bad -SIZE (ruby/rubygame-1.1.0.tar.bz2) = 151706 diff --git a/devel/rubygem-rubygame/pkg-descr b/devel/rubygem-rubygame/pkg-descr deleted file mode 100644 index fed20e859233..000000000000 --- a/devel/rubygem-rubygame/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Rubygame is a game-development extension and library for the ruby -language, with similarities to pygame. The purpose of rubygame is -make the creation of games in the ruby language simple, easy, and -fun, without limiting flexibility. - -WWW: http://rubygame.seul.org/ diff --git a/devel/rubygem-rubygame/pkg-plist b/devel/rubygem-rubygame/pkg-plist deleted file mode 100644 index 924b2dd5ccce..000000000000 --- a/devel/rubygem-rubygame/pkg-plist +++ /dev/null @@ -1,12 +0,0 @@ -%%RUBY_SITEARCHLIBDIR%%/rubygame.so -%%RUBY_SITELIBDIR%%/rubygame.rb -%%RUBY_SITELIBDIR%%/rubygame/clock.rb -%%RUBY_SITELIBDIR%%/rubygame/constants.rb -%%RUBY_SITELIBDIR%%/rubygame/event.rb -%%RUBY_SITELIBDIR%%/rubygame/keyconstants.rb -%%RUBY_SITELIBDIR%%/rubygame/queue.rb -%%RUBY_SITELIBDIR%%/rubygame/rect.rb -%%RUBY_SITELIBDIR%%/rubygame/sfont.rb -%%RUBY_SITELIBDIR%%/rubygame/sprite.rb -%%RUBY_SITELIBDIR%%/rubygame/string.rb -@dirrm %%RUBY_SITELIBDIR%%/rubygame diff --git a/devel/rubygem-thrift/Makefile b/devel/rubygem-thrift/Makefile deleted file mode 100644 index f8454968e045..000000000000 --- a/devel/rubygem-thrift/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# New ports collection makefile for: thrift -# Date created: 27 September 2007 -# Whom: Sergey Skvortsov <skv@protey.ru> -# -# $FreeBSD$ -# - -PORTNAME= thrift -PORTVERSION= 20070917 -CATEGORIES= devel -PKGNAMEPREFIX= ruby- -DISTFILES= - -MAINTAINER= skv@FreeBSD.org -COMMENT= Ruby interface to thrift - -BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/devel/thrift:extract - -USE_RUBY= yes -USE_RUBY_SETUP= yes - -post-extract: - @${LN} -sfh \ - `cd ${PORTSDIR}/devel/thrift && ${MAKE} -V WRKSRC`/lib/rb ${WRKSRC} - -.include <bsd.port.mk> diff --git a/devel/rubygem-thrift/pkg-descr b/devel/rubygem-thrift/pkg-descr deleted file mode 100644 index 634be3a51ada..000000000000 --- a/devel/rubygem-thrift/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Ruby interface to Thrift. - -WWW: http://developers.facebook.com/thrift/ diff --git a/devel/rubygem-thrift/pkg-plist b/devel/rubygem-thrift/pkg-plist deleted file mode 100644 index 17eb6129084a..000000000000 --- a/devel/rubygem-thrift/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -%%RUBY_SITELIBDIR%%/thrift/thrift.rb -%%RUBY_SITELIBDIR%%/thrift/protocol/tbinaryprotocol.rb -%%RUBY_SITELIBDIR%%/thrift/protocol/tprotocol.rb -%%RUBY_SITELIBDIR%%/thrift/server/tserver.rb -%%RUBY_SITELIBDIR%%/thrift/transport/tsocket.rb -%%RUBY_SITELIBDIR%%/thrift/transport/ttransport.rb -@dirrm %%RUBY_SITELIBDIR%%/thrift/transport -@dirrm %%RUBY_SITELIBDIR%%/thrift/server -@dirrm %%RUBY_SITELIBDIR%%/thrift/protocol -@dirrm %%RUBY_SITELIBDIR%%/thrift diff --git a/devel/rubygem-zoom/Makefile b/devel/rubygem-zoom/Makefile deleted file mode 100644 index 8d6d3e8841fb..000000000000 --- a/devel/rubygem-zoom/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# New ports collection makefile for: Ruby-zoom -# Date created: 16 September 2005 -# Whom: Mitsuru YOSHIDA <mitsuru@riken.jp> -# -# $FreeBSD$ -# - -PORTNAME= zoom -PORTVERSION= 0.2.0 -PORTREVISION= 1 -CATEGORIES= devel ruby -MASTER_SITES= ${MASTER_SITE_RUBYFORGE} -MASTER_SITE_SUBDIR= ruby-${PORTNAME} -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= ruby-${PORTNAME}-${PORTVERSION} -DIST_SUBDIR= ruby - -MAINTAINER= mitsuru@riken.jp -COMMENT= A Ruby binding to the Z39.50 Object-Orientation Model (ZOOM) - -LIB_DEPENDS= yaz.3:${PORTSDIR}/net/yaz - -USE_RUBY= yes -USE_RUBY_EXTCONF= yes - -DOCS= ChangeLog README doc/ascii/api.txt doc/xhtml/* - -RUBY_REQUIRE= Ruby > 180 - -.include <bsd.port.pre.mk> - -.if !defined(RUBY_PROVIDED) -IGNORE= only works with Ruby 1.8.0 or later -.endif - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${RUBY_MODDOCDIR} -.for f in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ -.endfor - ${MKDIR} ${RUBY_MODEXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/sample/* ${RUBY_MODEXAMPLESDIR}/ -.endif - -.include <bsd.port.post.mk> diff --git a/devel/rubygem-zoom/distinfo b/devel/rubygem-zoom/distinfo deleted file mode 100644 index 404a0a3dcae9..000000000000 --- a/devel/rubygem-zoom/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ruby/ruby-zoom-0.2.0.tar.gz) = ef85f8aa8a78666fdd46c95d91a23e7c -SHA256 (ruby/ruby-zoom-0.2.0.tar.gz) = 364bf3abd0074142bc60a852a76b29fe0915bb1ce6250c7a39a0e55a8c4c7974 -SIZE (ruby/ruby-zoom-0.2.0.tar.gz) = 24168 diff --git a/devel/rubygem-zoom/files/patch-extconf.rb b/devel/rubygem-zoom/files/patch-extconf.rb deleted file mode 100644 index 9f06853a3e5c..000000000000 --- a/devel/rubygem-zoom/files/patch-extconf.rb +++ /dev/null @@ -1,10 +0,0 @@ ---- extconf.rb.org Fri Sep 2 20:18:20 2005 -+++ extconf.rb Fri Sep 2 20:38:41 2005 -@@ -9,6 +9,6 @@ - err "Yaz ZOOM header not available" unless have_header("yaz/zoom.h") - - $CFLAGS << " #{`yaz-config --cflags`} " --$LDFLAGS << " #{`yaz-config --libs`} " -+$LDFLAGS << " #{`yaz-config --libs`}".chomp - - create_makefile("zoom", "src") diff --git a/devel/rubygem-zoom/pkg-descr b/devel/rubygem-zoom/pkg-descr deleted file mode 100644 index f842f5d84c06..000000000000 --- a/devel/rubygem-zoom/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Ruby/ZOOM provides a Ruby binding to the Z39.50 Object-Orientation Model (ZOOM), -an abstract object-oriented programming interface to a subset of the services -specified by the Z39.50 standard, also known as the international standard -ISO 23950. - -WWW: http://ruby-zoom.rubyforge.org/ diff --git a/devel/rubygem-zoom/pkg-plist b/devel/rubygem-zoom/pkg-plist deleted file mode 100644 index b5b220a900a3..000000000000 --- a/devel/rubygem-zoom/pkg-plist +++ /dev/null @@ -1,15 +0,0 @@ -%%RUBY_SITEARCHLIBDIR%%/zoom.so -%%RUBY_SITELIBDIR%%/marc.rb -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ChangeLog -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/api.txt -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/api.xml -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ch01.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ch02.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ch03.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ch04.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/docbook.css -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/index.html -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/hello.rb -%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%% -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%% diff --git a/devel/subversion16/Makefile b/devel/subversion16/Makefile deleted file mode 100644 index 1fc3e76cc38d..000000000000 --- a/devel/subversion16/Makefile +++ /dev/null @@ -1,233 +0,0 @@ -# New ports collection makefile for: subversion -# Date created: 10 September 2001 -# Whom: rooneg@electricjellyfish.net -# -# $FreeBSD$ - -MAINTAINER= lev@freebsd.org -COMMENT= Version control system - -CONFLICTS?= subversion-devel-[0-9]* subversion-freebsd-[0-9]* - -USE_RC_SUBR= svnserve - -MAN1= svn.1 svnadmin.1 svnlook.1 svndumpfilter.1 svnsync.1 svnversion.1 -MAN5= svnserve.conf.5 -MAN8= svnserve.8 - -TXT_DOCS= BUGS CHANGES COMMITTERS COPYING HACKING INSTALL README - -OPTIONS= MOD_DAV_SVN "mod_dav_svn module for Apache 2.X" off \ - APACHE2_APR "Use APR from Apache 2.X" off \ - NEON "WebDAV/Delta-V repo access module (neon)" on \ - SERF "WebDAV/Delta-V repo access module (serf)" off \ - SASL "SASL2 authorization support" off \ - BDB "db4 repository backend" on \ - ASVN "Build and install Archive SVN (asvn)" off \ - MAINTAINER_DEBUG "Build debug version" off \ - SVNSERVE_WRAPPER "Enable svnserve wrapper" off \ - BOOK "Install the Subversion Book" off - -.include "${.CURDIR}/../../devel/subversion/Makefile.common" - -SVNREPOS?= /home/svn/repos -SVNFSTYPE?= fsfs - -.if make(repository) -WITH_REPOSITORY_CREATION= yes -.endif - -.if defined(WITH_REPOSITORY_CREATION) -MKREPOS_TARGET= _mkrepos -.endif - -.if defined(WITH_SVNSERVE_WRAPPER) -PLIST_SUB+= SVNSERVE_WRAPPER="" -SUB_LIST+= SVNSERVE_BIN_EXT=".bin" -EXTRA_PATCHES= ${PATCHDIR}/build-outputs.mk.patch -.else -PLIST_SUB+= SVNSERVE_WRAPPER="@comment " -SUB_LIST+= SVNSERVE_BIN_EXT="" -.endif - -.if !defined(NOPORTDOCS) && defined(WITH_BOOK) -BOOK_HTML= svn-book-html.tar.bz2 -BOOK_PDF= svn-book.pdf -DISTFILES+= ${BOOK_HTML}:book ${BOOK_PDF}:book -PLIST_SUB+= BOOK="" -.else -PLIST_SUB+= BOOK="@comment " -.endif - -.if defined(WITH_ASVN) -RUN_DEPENDS= ${LOCALBASE}/bin/gfind:${PORTSDIR}/misc/findutils:install -PLIST_SUB+= ASVN="" -.else -PLIST_SUB+= ASVN="@comment " -.endif - -SCRIPTS= - -SCRIPTS_DATA= - -pre-everything:: - @${ECHO_MSG} "" -.if defined(WITH_NEON) - @${ECHO_MSG} "WebDAV/Delta-V repository access module enabled." -.else - @${ECHO_MSG} "WebDAV/Delta-V repository access module disabled." -.endif - @${ECHO_MSG} "" -.if defined(WITH_BDB) - @${ECHO_MSG} "db4 repository backend enabled." -.else - @${ECHO_MSG} "db4 repository backend disabled." -.endif - @${ECHO_MSG} "" -.if defined(WITH_MAINTAINER_DEBUG) - @${ECHO_MSG} "Build debug version." - @${ECHO_MSG} "" -.endif -.if defined(WITH_MOD_DAV_SVN) - @${ECHO_MSG} "mod_dav_svn module for Apache 2.X enabled." - @${ECHO_MSG} "This option implies the WITH_APACHE2_APR option." -.else - @${ECHO_MSG} "You can enable the mod_dav_svn module for Apache 2.X" -.endif - @${ECHO_MSG} "" -.if defined(WITH_APACHE2_APR) - @${ECHO_MSG} "Using APR from ${APACHE_PORT}. If you have the devel/apr" - @${ECHO_MSG} "port/package installed, you may need to remove it." -.else - @${ECHO_MSG} "You can link subversion against the APR built with" - @${ECHO_MSG} "the ${APACHE_PORT} port, rather than the devel/apr port." -.endif - @${ECHO_MSG} "" -.if defined(WITH_SVNSERVE_WRAPPER) - @${ECHO_MSG} "svnserve wrapper enabled." - @${ECHO_MSG} "" -.endif -.if defined(WITH_REPOSITORY_CREATION) - @${ECHO_MSG} "I will create (or use, if it exists) \"${SVNGROUP}\" group." - @${ECHO_MSG} "Make sure that all committers are its members." - @${ECHO_MSG} "" - @${ECHO_MSG} "Repository will be created at '${SVNREPOS}' with group '${SVNGROUP}'." - @${ECHO_MSG} "Type of repository will be '${SVNFSTYPE}'." - @${ECHO_MSG} "You could change these settings by defining SVNREPOS, SVNGROUP and SVNFSTYPE." -.else - @${ECHO_MSG} "You can have the repository created for you by defining" - @${ECHO_MSG} "WITH_REPOSITORY_CREATION." - @${ECHO_MSG} "" - @${ECHO_MSG} "Make sure that:" - @${ECHO_MSG} "* all your svn users are members of a common group" - @${ECHO_MSG} "* this group is the group id of the db/ and locks/" - @${ECHO_MSG} " subdirectories of your repository" - @${ECHO_MSG} "* the above subdirectories are writable by this group" -.endif - @${ECHO_MSG} "" -.if !defined(NOPORTDOCS) && defined(WITH_BOOK) - @${ECHO_MSG} "Subversion Book will be installed." - @${ECHO_MSG} "" -.endif -.if defined(WITH_ASVN) - @${ECHO_MSG} "asvn will be installed" - @${ECHO_MSG} "" -.endif - @${ECHO_MSG} "Many useful scripts will be installed into ${DATADIR}}" - -pre-configure: - @if [ ! -x ${APR_APU_DIR}/${APR_CONFIG} -o ! -x ${APR_APU_DIR}/${APU_CONFIG} ] ; then \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} 'You selected to use`'"${APR_PORT}' for apr library." ; \ - ${ECHO_MSG} 'It seems that `'"${APR_PORT}' is not properly installed." ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi -.if !defined(WITHOUT_BDB) - @if [ `${APR_APU_DIR}/${APU_CONFIG} --db-version` != "4" ] ; then \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} 'You should build `'"${APR_PORT}' with db4 support to use subversion with it." ; \ - ${ECHO_MSG} 'Please rebuild `'"${APR_PORT}' with option "'`'"${OPT_NAME}' and try again." ; \ - ${ECHO_MSG} "" ; \ - ${ECHO_MSG} "Or you can disable db4 support. Only 'fs' repository backend will be available." ; \ - ${ECHO_MSG} "To disable db4 support, define WITHOUT_BDB." ; \ - ${ECHO_MSG} "" ; \ - ${FALSE} ; \ - fi -.endif - -.if defined(WITH_MOD_DAV_SVN) -pre-install: - ${APXS} -e -S LIBEXECDIR=${PREFIX}/${APACHEMODDIR} -a -n dav ${PREFIX}/${APACHEMODDIR}/mod_dav.so -.endif - -post-install: ${MKREPOS_TARGET} - @${MKDIR} ${DATADIR} - cd ${WRKSRC}/tools ; \ - ${TAR} --exclude '*.in' -cf - * | ${TAR} -C ${DATADIR} -xf - - @${CHMOD} -R a-st,o+rX ${DATADIR} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - for f in ${TXT_DOCS}; do \ - ${INSTALL_MAN} ${WRKSRC}/$$f ${DOCSDIR}; \ - done -.if defined(WITH_BOOK) - ${TAR} -xof ${DISTDIR}/${DIST_SUBDIR}/${BOOK_HTML} -C ${DOCSDIR} - ${INSTALL_MAN} ${DISTDIR}/${DIST_SUBDIR}/${BOOK_PDF} ${DOCSDIR} -.endif -.endif -.if defined(WITH_ASVN) - ${INSTALL_SCRIPT} ${WRKSRC}/contrib/client-side/asvn ${PREFIX}/bin -.endif -.if defined(WITH_SVNSERVE_WRAPPER) - @${INSTALL_SCRIPT} ${FILESDIR}/svnserve.wrapper ${PREFIX}/bin/svnserve -.endif - -repository: _mkrepos - -_SVNGRPFILES= dav db locks locks/db.lock locks/db-logs.lock -SVNGRPFILES= ${_SVNGRPFILES:S,^,${SVNREPOS}/,} - -_mkrepos: .USE -.if !exists(${SVNREPOS}) -.if defined(WITH_SVNSERVE_WRAPPER) - @if /usr/sbin/pw groupshow "${SVNGROUP}" >/dev/null 2>&1; then \ - ${ECHO_MSG} "You already have a group \"${SVNGROUP}\", so I will use it."; \ - else \ - if /usr/sbin/pw groupadd ${SVNGROUP} -h -; \ - then \ - ${ECHO_MSG} "Added group \"${SVNGROUP}\"."; \ - else \ - ${ECHO_MSG} "Adding group \"${SVNGROUP}\" failed..."; \ - ${ECHO_MSG} "Please create it, and try again."; \ - ${FALSE}; \ - fi; \ - fi -.endif - @${MKDIR} ${SVNREPOS} - @${PREFIX}/bin/svnadmin create --fs-type ${SVNFSTYPE} ${SVNREPOS} -.if defined(WITH_SVNSERVE_WRAPPER) - @${CHGRP} ${SVNGROUP} ${SVNGRPFILES} - @${CHMOD} g+w ${SVNGRPFILES} - @for i in ${SVNREPOS}/db/* ; do \ - i=$${i##*/}; \ - case $$i in \ - DB_CONFIG|fs-type|uuid) ;; \ - *) ${CHGRP} -R ${SVNGROUP} ${SVNREPOS}/db/$$i; \ - ${CHMOD} -R g+w ${SVNREPOS}/db/$$i; \ - ;; \ - esac; \ - done -.endif -.endif - -post-deinstall: -.if defined(WITH_MOD_DAV_SVN) - @PKG_PREFIX=${PREFIX} ${SH} ${PKGDEINSTALL} ${PKGNAME} POST-DEINSTALL -.endif - -svn-build-outputs-hack: - cd ${WRKSRC} && ./gen-make.py --release --installed-libs libsvn_client,libsvn_delta,libsvn_diff,libsvn_fs,libsvn_ra,libsvn_repos,libsvn_subr,libsvn_wc - ${MV} ${WRKSRC}/build-outputs.mk ${FILESDIR}/build-outputs.mk - -.include <bsd.port.post.mk> diff --git a/devel/subversion16/Makefile.common b/devel/subversion16/Makefile.common deleted file mode 100644 index a629f98c7e0e..000000000000 --- a/devel/subversion16/Makefile.common +++ /dev/null @@ -1,154 +0,0 @@ -# New ports collection makefile for: subversion -# Date created: 10 September 2001 -# Whom: rooneg@electricjellyfish.net -# -# $FreeBSD$ - -PORTNAME= subversion -PORTVERSION= 1.5.2 -PORTREVISION?= 0 -CATEGORIES+= devel -MASTER_SITES= http://subversion.tigris.org/downloads/:main \ - http://svnbook.red-bean.com/en/1.4/:book -DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}:main -DIST_SUBDIR= subversion -EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} - -USE_BZIP2= yes -USE_AUTOTOOLS= libtool:15 -CONFIGURE_ARGS= --with-ssl -WANT_PERL= yes - -.if defined(SVN_BUILD_BINDINGS) -# Bindings ports should use the same, as main port -OPTIONSFILE= ${PORT_DBDIR}/${PORTNAME}/options -# Dirty hack: if OPTIONS is not defined, OPTIONSFILE will not be included -OPTIONS= -.endif - -.include <bsd.port.pre.mk> - -CONFIGURE_ARGS+= --without-swig - -# Default is "on" -.if !defined(WITHOUT_NEON) -LIB_DEPENDS+= neon.28:${PORTSDIR}/www/neon28 -CONFIGURE_ARGS+= --with-neon=${LOCALBASE} -PLIST_SUB+= NEON="" -.else -CONFIGURE_ARGS+= --without-neon -PLIST_SUB+= NEON="@comment " -.endif - -.if defined(WITH_SASL) -LIB_DEPENDS+= sasl2.2:${PORTSDIR}/security/cyrus-sasl2 -CONFIGURE_ARGS+= --with-sasl=${LOCALBASE} -PLIST_SUB+= SASL="" -.else -CONFIGURE_ARGS+= --without-sasl -PLIST_SUB+= SASL="@comment " -.endif - -# Default us "on" -.if !defined(WITHOUT_BDB) -PLIST_SUB+= BDB="" -.else -CONFIGURE_ARGS+= --without-berkeley-db -PLIST_SUB+= BDB="@comment " -.endif - -.if defined(WITH_MOD_DAV_SVN) -WITH_APACHE2_APR= yes -CONFIGURE_ARGS+= --with-apxs=${APXS} -PLIST_SUB+= MOD_DAV_SVN="" -SVNGROUP?= www -.else -PLIST_SUB+= MOD_DAV_SVN="@comment " -PKGDEINSTALL= NONEXISTENT -SVNGROUP?= svn -.endif - -.if defined(WITH_APACHE2_APR) -USE_APACHE= 2.0+ -.include "${PORTSDIR}/Mk/bsd.apache.mk" -.if ${APACHE_VERSION} >= 21 -APR_APU_DIR= ${LOCALBASE}/bin -APR_CONFIG= apr-1-config -APU_CONFIG= apu-1-config -.else -APR_APU_DIR= ${LOCALBASE}/lib/apache2 -APR_CONFIG= apr-config -APU_CONFIG= apu-config -.endif -APR_PORT= ${APACHE_PORT} -.if !defined(WITHOUT_BDB) -DEPENDS_ARGS+= WITH_BERKELEYDB=db4 -OPT_NAME= WITH_BERKELEYDB=(db4|db41|db42) -.endif -.else -APR_APU_DIR= ${LOCALBASE}/bin -APR_CONFIG= apr-1-config -APU_CONFIG= apu-1-config -.if !defined(WITHOUT_BDB) -LIB_DEPENDS+= apr-1.3:${PORTSDIR}/devel/apr-svn -APR_PORT= devel/apr-svn -OPT_NAME= APR_UTIL_WITH_BERKELEY_DB=yes -.else -LIB_DEPENDS+= apr-1.3:${PORTSDIR}/devel/apr -APR_PORT= devel/apr -.endif -.endif -CONFIGURE_ARGS+=--with-apr=${APR_APU_DIR}/${APR_CONFIG} \ - --with-apr-util=${APR_APU_DIR}/${APU_CONFIG} - -.if defined(WITH_SERF) -LIB_DEPENDS+= serf-0.0:${PORTSDIR}/www/serf -CONFIGURE_ARGS+= --with-serf=${LOCALBASE} -PLIST_SUB+= SERF="" -.else -PLIST_SUB+= SERF="@comment " -.endif - -.if defined(SVN_BUILD_BINDINGS) -.if defined(WITH_FREEBSD_SUBVERSION) -LIB_DEPENDS+= svn_client-1:${PORTSDIR}/devel/subversion-freebsd -.else -LIB_DEPENDS+= svn_client-1:${PORTSDIR}/devel/subversion -.endif -EXTRA_PATCHES+= ${PATCHDIR}/bindings-patch-subversion--bindings--swig--perl--native--Makefile.PL.in -.endif - -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= WITHOUT_GETTEXT="" -.else -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= WITHOUT_GETTEXT="@comment " -.endif - -.if ${ARCH} == "amd64" || ${ARCH} == "ia64" -CFLAGS+= -fpic -DPIC -.endif - -.if defined(WITH_MAINTAINER_DEBUG) -CONFIGURE_ARGS+=--enable-maintainer-mode \ - --enable-debug -CFLAGS+= -g -.endif - -post-extract: - @${RM} -rf ${WRKSRC}/neon - @${RM} -rf ${WRKSRC}/apr - @${RM} -rf ${WRKSRC}/apr-util - -post-patch: -.if ${PREFIX} != "/usr" - @${REINPLACE_CMD} "s#/etc/subversion#${ETCDIR}#g" ${WRKSRC}/subversion/libsvn_subr/config_file.c - @${REINPLACE_CMD} "s#/etc/subversion#${ETCDIR}#g" ${WRKSRC}/subversion/libsvn_subr/config_impl.h -.endif - @${REINPLACE_CMD} "s#^swig_pydir =.*#swig_pydir = ${PYTHON_SITELIBDIR}/libsvn#" ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} "s#^swig_pydir_extra =.*#swig_pydir_extra = ${PYTHON_SITELIBDIR}/svn#" ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} "s#^LIBTOOL =.*#LIBTOOL = ${LIBTOOL}#" ${WRKSRC}/Makefile.in -.if defined(SVN_BUILD_BINDINGS) - @${CP} ${FILESDIR}/build-outputs.mk ${WRKSRC} -.endif diff --git a/devel/subversion16/distinfo b/devel/subversion16/distinfo deleted file mode 100644 index bd235b65ddbb..000000000000 --- a/devel/subversion16/distinfo +++ /dev/null @@ -1,12 +0,0 @@ -MD5 (subversion/subversion-1.5.2.tar.bz2) = 8321d0e1964846090f0174cb6bb18838 -SHA256 (subversion/subversion-1.5.2.tar.bz2) = 7c4c439035cd75722fa3da27433e2c3a4a2dc88694982a5ceb1ce5169982c7f5 -SIZE (subversion/subversion-1.5.2.tar.bz2) = 4902078 -MD5 (subversion/svn-book-html.tar.bz2) = eda5fa7d7e3aff9473adf063385d3527 -SHA256 (subversion/svn-book-html.tar.bz2) = a73110c724ee7fca4ab0e6090f0a47fdd3a03cfdfbecab799aca90c80824d9e0 -SIZE (subversion/svn-book-html.tar.bz2) = 366277 -MD5 (subversion/svn-book.pdf) = b4f04dfc6cae59212c255322e4fa27a4 -SHA256 (subversion/svn-book.pdf) = d3fffd8191d62faf2a571cfe96bdadc772ff90bd5e32364f888f9b2d7fd81b5d -SIZE (subversion/svn-book.pdf) = 1462807 -MD5 (subversion/svn_hacks_1.1.diff) = c936ad112897d698c6b3c066c8f93606 -SHA256 (subversion/svn_hacks_1.1.diff) = cbc4503e4f6a624ec40d23b8b8444ced84d71482308c4c08e3cce6f3452b64cb -SIZE (subversion/svn_hacks_1.1.diff) = 17813 diff --git a/devel/subversion16/files/bindings-patch-subversion--bindings--swig--perl--native--Makefile.PL.in b/devel/subversion16/files/bindings-patch-subversion--bindings--swig--perl--native--Makefile.PL.in deleted file mode 100644 index 3b59e541656a..000000000000 --- a/devel/subversion16/files/bindings-patch-subversion--bindings--swig--perl--native--Makefile.PL.in +++ /dev/null @@ -1,11 +0,0 @@ ---- subversion/bindings/swig/perl/native/Makefile.PL.in.orig 2008-02-03 00:14:22.000000000 +0300 -+++ subversion/bindings/swig/perl/native/Makefile.PL.in 2008-02-03 00:14:55.000000000 +0300 -@@ -44,7 +44,7 @@ - " -I$svnlib_builddir", - " -I$swig_srcdir -g"), - OBJECT => q/$(O_FILES)/, -- LIBS => [join(' ', $apr_ldflags, -+ LIBS => [join(' ', $ENV{'LDFLAGS'}, $apr_ldflags, - (map {$_ = abs_path($_); "-L$_"} @ldpaths), - @ldmodules, '-lsvn_swig_perl-1', - `$swig -perl -ldflags`)], diff --git a/devel/subversion16/files/build-outputs.mk b/devel/subversion16/files/build-outputs.mk deleted file mode 100644 index 5fa4eae6bc0d..000000000000 --- a/devel/subversion16/files/build-outputs.mk +++ /dev/null @@ -1,2181 +0,0 @@ -# DO NOT EDIT -- AUTOMATICALLY GENERATED - -######################################## -# Section 1: Global make variables -######################################## - -FS_BASE_DEPS = subversion/libsvn_fs_base/libsvn_fs_base-1.la subversion/libsvn_fs_util/libsvn_fs_util-1.la -FS_BASE_LINK = ../../subversion/libsvn_fs_base/libsvn_fs_base-1.la ../../subversion/libsvn_fs_util/libsvn_fs_util-1.la - -FS_FS_DEPS = subversion/libsvn_fs_fs/libsvn_fs_fs-1.la subversion/libsvn_fs_util/libsvn_fs_util-1.la -FS_FS_LINK = ../../subversion/libsvn_fs_fs/libsvn_fs_fs-1.la ../../subversion/libsvn_fs_util/libsvn_fs_util-1.la - -RA_LOCAL_DEPS = subversion/libsvn_ra_local/libsvn_ra_local-1.la -RA_LOCAL_LINK = ../../subversion/libsvn_ra_local/libsvn_ra_local-1.la - -RA_NEON_DEPS = subversion/libsvn_ra_neon/libsvn_ra_neon-1.la -RA_NEON_LINK = ../../subversion/libsvn_ra_neon/libsvn_ra_neon-1.la - -RA_SERF_DEPS = subversion/libsvn_ra_serf/libsvn_ra_serf-1.la -RA_SERF_LINK = ../../subversion/libsvn_ra_serf/libsvn_ra_serf-1.la - -RA_SVN_DEPS = subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -RA_SVN_LINK = ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la - -BUILD_DIRS = subversion/tests/libsvn_fs_base subversion/tests/libsvn_client subversion/tests/libsvn_subr tools/diff subversion/tests/libsvn_diff subversion/tests/libsvn_fs subversion/bindings/javahl/src/org/tigris/subversion/javahl subversion/bindings/javahl/classes subversion/bindings/javahl/include subversion/bindings/javahl/tests/org/tigris/subversion/javahl subversion/libsvn_client subversion/libsvn_delta subversion/libsvn_diff subversion/libsvn_fs subversion/libsvn_fs_base subversion/libsvn_fs_base/bdb subversion/libsvn_fs_base/util subversion/libsvn_fs_fs subversion/libsvn_fs_util subversion/libsvn_ra subversion/libsvn_ra_local subversion/libsvn_ra_neon subversion/libsvn_ra_serf subversion/libsvn_ra_svn subversion/libsvn_repos subversion/libsvn_subr subversion/bindings/swig/perl/libsvn_swig_perl subversion/bindings/swig/python/libsvn_swig_py subversion/bindings/swig/ruby/libsvn_swig_ruby subversion/tests subversion/libsvn_wc subversion/bindings/javahl/native subversion/po subversion/mod_authz_svn subversion/mod_dav_svn subversion/mod_dav_svn/reports subversion/tests/libsvn_ra_local subversion/tests/libsvn_delta subversion/tests/libsvn_repos subversion/svn tools/server-side contrib/client-side/svn-push subversion/svnadmin subversion/svndumpfilter subversion/svnlook contrib/client-side/svnmucc subversion/svnserve subversion/svnsync subversion/svnversion subversion/bindings/swig subversion/tests/cmdline subversion/bindings/swig/python subversion/bindings/swig/perl subversion/bindings/swig/ruby subversion/bindings/swig/proxy - -BDB_TEST_DEPS = subversion/tests/libsvn_fs_base/changes-test$(EXEEXT) subversion/tests/libsvn_fs_base/fs-base-test$(EXEEXT) subversion/tests/libsvn_fs_base/key-test$(EXEEXT) subversion/tests/libsvn_fs_base/skel-test$(EXEEXT) subversion/tests/libsvn_fs_base/strings-reps-test$(EXEEXT) - -BDB_TEST_PROGRAMS = subversion/tests/libsvn_fs_base/changes-test$(EXEEXT) subversion/tests/libsvn_fs_base/fs-base-test$(EXEEXT) subversion/tests/libsvn_fs_base/key-test$(EXEEXT) subversion/tests/libsvn_fs_base/skel-test$(EXEEXT) subversion/tests/libsvn_fs_base/strings-reps-test$(EXEEXT) - -TEST_DEPS = subversion/tests/libsvn_client/client-test$(EXEEXT) subversion/tests/libsvn_subr/compat-test$(EXEEXT) subversion/tests/libsvn_subr/config-test$(EXEEXT) subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT) subversion/tests/libsvn_subr/error-test$(EXEEXT) subversion/tests/libsvn_fs/fs-test$(EXEEXT) subversion/tests/libsvn_subr/hashdump-test$(EXEEXT) subversion/tests/libsvn_fs/locks-test$(EXEEXT) subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT) subversion/tests/libsvn_subr/opt-test$(EXEEXT) subversion/tests/libsvn_subr/path-test$(EXEEXT) subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT) subversion/tests/libsvn_delta/random-test$(EXEEXT) subversion/tests/libsvn_repos/repos-test$(EXEEXT) subversion/tests/libsvn_subr/revision-test$(EXEEXT) subversion/tests/libsvn_subr/stream-test$(EXEEXT) subversion/tests/libsvn_subr/string-test$(EXEEXT) subversion/tests/libsvn_delta/svndiff-test$(EXEEXT) subversion/tests/libsvn_subr/target-test$(EXEEXT) subversion/tests/libsvn_subr/time-test$(EXEEXT) subversion/tests/libsvn_subr/translate-test$(EXEEXT) subversion/tests/libsvn_subr/utf-test$(EXEEXT) subversion/tests/libsvn_delta/vdelta-test$(EXEEXT) subversion/tests/libsvn_subr/target-test.py subversion/tests/cmdline/getopt_tests.py subversion/tests/cmdline/basic_tests.py subversion/tests/cmdline/checkout_tests.py subversion/tests/cmdline/commit_tests.py subversion/tests/cmdline/update_tests.py subversion/tests/cmdline/switch_tests.py subversion/tests/cmdline/prop_tests.py subversion/tests/cmdline/schedule_tests.py subversion/tests/cmdline/log_tests.py subversion/tests/cmdline/copy_tests.py subversion/tests/cmdline/diff_tests.py subversion/tests/cmdline/export_tests.py subversion/tests/cmdline/externals_tests.py subversion/tests/cmdline/merge_tests.py subversion/tests/cmdline/merge_authz_tests.py subversion/tests/cmdline/revert_tests.py subversion/tests/cmdline/mergeinfo_tests.py subversion/tests/cmdline/stat_tests.py subversion/tests/cmdline/trans_tests.py subversion/tests/cmdline/autoprop_tests.py subversion/tests/cmdline/blame_tests.py subversion/tests/cmdline/special_tests.py subversion/tests/cmdline/svnadmin_tests.py subversion/tests/cmdline/svnlook_tests.py subversion/tests/cmdline/svnversion_tests.py subversion/tests/cmdline/utf8_tests.py subversion/tests/cmdline/history_tests.py subversion/tests/cmdline/lock_tests.py subversion/tests/cmdline/cat_tests.py subversion/tests/cmdline/import_tests.py subversion/tests/cmdline/svnsync_tests.py subversion/tests/cmdline/authz_tests.py subversion/tests/cmdline/depth_tests.py subversion/tests/cmdline/svndumpfilter_tests.py subversion/tests/cmdline/changelist_tests.py - -TEST_PROGRAMS = subversion/tests/libsvn_client/client-test$(EXEEXT) subversion/tests/libsvn_subr/compat-test$(EXEEXT) subversion/tests/libsvn_subr/config-test$(EXEEXT) subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT) subversion/tests/libsvn_subr/error-test$(EXEEXT) subversion/tests/libsvn_fs/fs-test$(EXEEXT) subversion/tests/libsvn_subr/hashdump-test$(EXEEXT) subversion/tests/libsvn_fs/locks-test$(EXEEXT) subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT) subversion/tests/libsvn_subr/opt-test$(EXEEXT) subversion/tests/libsvn_subr/path-test$(EXEEXT) subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT) subversion/tests/libsvn_delta/random-test$(EXEEXT) subversion/tests/libsvn_repos/repos-test$(EXEEXT) subversion/tests/libsvn_subr/revision-test$(EXEEXT) subversion/tests/libsvn_subr/stream-test$(EXEEXT) subversion/tests/libsvn_subr/string-test$(EXEEXT) subversion/tests/libsvn_subr/time-test$(EXEEXT) subversion/tests/libsvn_subr/translate-test$(EXEEXT) subversion/tests/libsvn_subr/utf-test$(EXEEXT) subversion/tests/libsvn_subr/target-test.py subversion/tests/cmdline/getopt_tests.py subversion/tests/cmdline/basic_tests.py subversion/tests/cmdline/checkout_tests.py subversion/tests/cmdline/commit_tests.py subversion/tests/cmdline/update_tests.py subversion/tests/cmdline/switch_tests.py subversion/tests/cmdline/prop_tests.py subversion/tests/cmdline/schedule_tests.py subversion/tests/cmdline/log_tests.py subversion/tests/cmdline/copy_tests.py subversion/tests/cmdline/diff_tests.py subversion/tests/cmdline/export_tests.py subversion/tests/cmdline/externals_tests.py subversion/tests/cmdline/merge_tests.py subversion/tests/cmdline/merge_authz_tests.py subversion/tests/cmdline/revert_tests.py subversion/tests/cmdline/mergeinfo_tests.py subversion/tests/cmdline/stat_tests.py subversion/tests/cmdline/trans_tests.py subversion/tests/cmdline/autoprop_tests.py subversion/tests/cmdline/blame_tests.py subversion/tests/cmdline/special_tests.py subversion/tests/cmdline/svnadmin_tests.py subversion/tests/cmdline/svnlook_tests.py subversion/tests/cmdline/svnversion_tests.py subversion/tests/cmdline/utf8_tests.py subversion/tests/cmdline/history_tests.py subversion/tests/cmdline/lock_tests.py subversion/tests/cmdline/cat_tests.py subversion/tests/cmdline/import_tests.py subversion/tests/cmdline/svnsync_tests.py subversion/tests/cmdline/authz_tests.py subversion/tests/cmdline/depth_tests.py subversion/tests/cmdline/svndumpfilter_tests.py subversion/tests/cmdline/changelist_tests.py - -MANPAGES = subversion/svn/svn.1 subversion/svnadmin/svnadmin.1 subversion/svndumpfilter/svndumpfilter.1 subversion/svnlook/svnlook.1 subversion/svnserve/svnserve.8 subversion/svnserve/svnserve.conf.5 subversion/svnsync/svnsync.1 subversion/svnversion/svnversion.1 - -CLEAN_FILES = contrib/client-side/svn-push/svn-push$(EXEEXT) contrib/client-side/svnmucc/svnmucc$(EXEEXT) subversion/svn/svn$(EXEEXT) subversion/svnadmin/svnadmin$(EXEEXT) subversion/svndumpfilter/svndumpfilter$(EXEEXT) subversion/svnlook/svnlook$(EXEEXT) subversion/svnserve/svnserve$(EXEEXT) subversion/svnsync/svnsync$(EXEEXT) subversion/svnversion/svnversion$(EXEEXT) subversion/tests/libsvn_client/client-test$(EXEEXT) subversion/tests/libsvn_delta/random-test$(EXEEXT) subversion/tests/libsvn_delta/svndiff-test$(EXEEXT) subversion/tests/libsvn_delta/vdelta-test$(EXEEXT) subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT) subversion/tests/libsvn_fs/fs-test$(EXEEXT) subversion/tests/libsvn_fs/locks-test$(EXEEXT) subversion/tests/libsvn_fs_base/changes-test$(EXEEXT) subversion/tests/libsvn_fs_base/fs-base-test$(EXEEXT) subversion/tests/libsvn_fs_base/key-test$(EXEEXT) subversion/tests/libsvn_fs_base/skel-test$(EXEEXT) subversion/tests/libsvn_fs_base/strings-reps-test$(EXEEXT) subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT) subversion/tests/libsvn_repos/repos-test$(EXEEXT) subversion/tests/libsvn_subr/compat-test$(EXEEXT) subversion/tests/libsvn_subr/config-test$(EXEEXT) subversion/tests/libsvn_subr/error-test$(EXEEXT) subversion/tests/libsvn_subr/hashdump-test$(EXEEXT) subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT) subversion/tests/libsvn_subr/opt-test$(EXEEXT) subversion/tests/libsvn_subr/path-test$(EXEEXT) subversion/tests/libsvn_subr/revision-test$(EXEEXT) subversion/tests/libsvn_subr/stream-test$(EXEEXT) subversion/tests/libsvn_subr/string-test$(EXEEXT) subversion/tests/libsvn_subr/target-test$(EXEEXT) subversion/tests/libsvn_subr/time-test$(EXEEXT) subversion/tests/libsvn_subr/translate-test$(EXEEXT) subversion/tests/libsvn_subr/utf-test$(EXEEXT) tools/diff/diff$(EXEEXT) tools/diff/diff3$(EXEEXT) tools/diff/diff4$(EXEEXT) tools/server-side/svn-populate-node-origins-index$(EXEEXT) tools/server-side/svnauthz-validate$(EXEEXT) - -SWIG_INCLUDES = -I$(abs_srcdir)/subversion/include \ - -I$(abs_srcdir)/subversion/bindings/swig \ - -I$(abs_srcdir)/subversion/bindings/swig/include \ - -I$(abs_srcdir)/subversion/bindings/swig/proxy \ - -I$(abs_builddir)/subversion/bindings/swig/proxy \ - $(SVN_APR_INCLUDES) $(SVN_APRUTIL_INCLUDES) - -RELEASE_MODE = 1 - - -######################################## -# Section 2: SWIG headers (wrappers and external runtimes) -######################################## - - -######################################## -# Section 3: SWIG autogen rules -######################################## - -autogen-swig-py: subversion/bindings/swig/python/core.c subversion/bindings/swig/python/svn_client.c subversion/bindings/swig/python/svn_delta.c subversion/bindings/swig/python/svn_diff.c subversion/bindings/swig/python/svn_fs.c subversion/bindings/swig/python/svn_ra.c subversion/bindings/swig/python/svn_repos.c subversion/bindings/swig/python/svn_wc.c -autogen-swig: autogen-swig-py - -autogen-swig-pl: subversion/bindings/swig/perl/native/core.c subversion/bindings/swig/perl/native/svn_client.c subversion/bindings/swig/perl/native/svn_delta.c subversion/bindings/swig/perl/native/svn_diff.c subversion/bindings/swig/perl/native/svn_fs.c subversion/bindings/swig/perl/native/svn_ra.c subversion/bindings/swig/perl/native/svn_repos.c subversion/bindings/swig/perl/native/svn_wc.c -autogen-swig: autogen-swig-pl - -autogen-swig-rb: subversion/bindings/swig/ruby/core.c subversion/bindings/swig/ruby/svn_client.c subversion/bindings/swig/ruby/svn_delta.c subversion/bindings/swig/ruby/svn_diff.c subversion/bindings/swig/ruby/svn_fs.c subversion/bindings/swig/ruby/svn_ra.c subversion/bindings/swig/ruby/svn_repos.c subversion/bindings/swig/ruby/svn_wc.c -autogen-swig: autogen-swig-rb - - - -######################################## -# Section 4: Rules to build SWIG .c files from .i files -######################################## - - - -######################################## -# Section 5: Individual target build rules -######################################## - -changes_test_PATH = subversion/tests/libsvn_fs_base -changes_test_DEPS = subversion/tests/libsvn_fs_base/changes-test.o subversion/tests/libsvn_test-1.la subversion/libsvn_fs_base/libsvn_fs_base-1.la -changes_test_OBJECTS = changes-test.o -subversion/tests/libsvn_fs_base/changes-test$(EXEEXT): $(changes_test_DEPS) - cd subversion/tests/libsvn_fs_base && $(LINK) -o changes-test$(EXEEXT) $(changes_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_fs-1 ../../../subversion/libsvn_fs_base/libsvn_fs_base-1.la -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -client_test_PATH = subversion/tests/libsvn_client -client_test_DEPS = subversion/tests/libsvn_client/client-test.o subversion/tests/libsvn_test-1.la -client_test_OBJECTS = client-test.o -subversion/tests/libsvn_client/client-test$(EXEEXT): $(client_test_DEPS) - cd subversion/tests/libsvn_client && $(LINK) -o client-test$(EXEEXT) $(client_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_delta-1 -lsvn_subr-1 -lsvn_client-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(NEON_LIBS) $(LIBS) - -compat_test_PATH = subversion/tests/libsvn_subr -compat_test_DEPS = subversion/tests/libsvn_subr/compat-test.o subversion/tests/libsvn_test-1.la -compat_test_OBJECTS = compat-test.o -subversion/tests/libsvn_subr/compat-test$(EXEEXT): $(compat_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o compat-test$(EXEEXT) $(compat_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -config_test_PATH = subversion/tests/libsvn_subr -config_test_DEPS = subversion/tests/libsvn_subr/config-test.o subversion/tests/libsvn_test-1.la -config_test_OBJECTS = config-test.o -subversion/tests/libsvn_subr/config-test$(EXEEXT): $(config_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o config-test$(EXEEXT) $(config_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -diff_PATH = tools/diff -diff_DEPS = tools/diff/diff.o -diff_OBJECTS = diff.o -tools/diff/diff$(EXEEXT): $(diff_DEPS) - cd tools/diff && $(LINK) -o diff$(EXEEXT) $(diff_OBJECTS) -lsvn_diff-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -diff_diff3_test_PATH = subversion/tests/libsvn_diff -diff_diff3_test_DEPS = subversion/tests/libsvn_diff/diff-diff3-test.o subversion/tests/libsvn_test-1.la -diff_diff3_test_OBJECTS = diff-diff3-test.o -subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT): $(diff_diff3_test_DEPS) - cd subversion/tests/libsvn_diff && $(LINK) -o diff-diff3-test$(EXEEXT) $(diff_diff3_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_diff-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -diff3_PATH = tools/diff -diff3_DEPS = tools/diff/diff3.o -diff3_OBJECTS = diff3.o -tools/diff/diff3$(EXEEXT): $(diff3_DEPS) - cd tools/diff && $(LINK) -o diff3$(EXEEXT) $(diff3_OBJECTS) -lsvn_diff-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -diff4_PATH = tools/diff -diff4_DEPS = tools/diff/diff4.o -diff4_OBJECTS = diff4.o -tools/diff/diff4$(EXEEXT): $(diff4_DEPS) - cd tools/diff && $(LINK) -o diff4$(EXEEXT) $(diff4_OBJECTS) -lsvn_diff-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -error_test_PATH = subversion/tests/libsvn_subr -error_test_DEPS = subversion/tests/libsvn_subr/error-test.o subversion/tests/libsvn_test-1.la -error_test_OBJECTS = error-test.o -subversion/tests/libsvn_subr/error-test$(EXEEXT): $(error_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o error-test$(EXEEXT) $(error_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -fs_base_test_PATH = subversion/tests/libsvn_fs_base -fs_base_test_DEPS = subversion/tests/libsvn_fs_base/fs-base-test.o subversion/tests/libsvn_test-1.la subversion/libsvn_fs_base/libsvn_fs_base-1.la subversion/libsvn_fs_util/libsvn_fs_util-1.la -fs_base_test_OBJECTS = fs-base-test.o -subversion/tests/libsvn_fs_base/fs-base-test$(EXEEXT): $(fs_base_test_DEPS) - cd subversion/tests/libsvn_fs_base && $(LINK) -o fs-base-test$(EXEEXT) $(fs_base_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_fs-1 ../../../subversion/libsvn_fs_base/libsvn_fs_base-1.la -lsvn_delta-1 ../../../subversion/libsvn_fs_util/libsvn_fs_util-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -fs_test_PATH = subversion/tests/libsvn_fs -fs_test_DEPS = subversion/tests/libsvn_fs/fs-test.o subversion/tests/libsvn_test-1.la -fs_test_OBJECTS = fs-test.o -subversion/tests/libsvn_fs/fs-test$(EXEEXT): $(fs_test_DEPS) - cd subversion/tests/libsvn_fs && $(LINK) -o fs-test$(EXEEXT) $(fs_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_fs-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -hashdump_test_PATH = subversion/tests/libsvn_subr -hashdump_test_DEPS = subversion/tests/libsvn_subr/hashdump-test.o subversion/tests/libsvn_test-1.la -hashdump_test_OBJECTS = hashdump-test.o -subversion/tests/libsvn_subr/hashdump-test$(EXEEXT): $(hashdump_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o hashdump-test$(EXEEXT) $(hashdump_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -javahl_java_PATH = subversion/bindings/javahl/classes -javahl_java_HEADERS = -javahl_java_OBJECTS = subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LockStatus.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/InfoCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DirEntry.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/OutputInterface.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProgressListener.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNAdmin.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictResult.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogMessage.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword2.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ClientException.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CopySource.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitItemStateFlags.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Status.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientSynchronized.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProplistCallbackImpl.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Depth.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Notify2.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ScheduleKind.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NativeResources.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ErrorCodes.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/InputInterface.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Mergeinfo.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/MergeinfoLogKind.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictDescriptor.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitItem.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PropertyData.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DiffSummaryReceiver.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Notify.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyStatus.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SubversionException.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientInterface.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Version.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword3.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallback2.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Lock.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Info.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/RevisionKind.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Info2.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallbackImpl.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NativeException.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClient.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/StatusCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNOutputStream.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NodeKind.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogMessageCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNInputStream.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ListCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DiffSummary.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Path.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ChangePath.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Revision.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/RevisionRange.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyInformation.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogDate.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProplistCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyAction.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientLogLevel.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/JNIError.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProgressEvent.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/StatusKind.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitMessage.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ChangelistCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictResolverCallback.class -javahl_java_DEPS = $(javahl_java_HEADERS) $(javahl_java_OBJECTS) -javahl-java: $(javahl_java_DEPS) -javahl_java_SRC = $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/LockStatus.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/InfoCallback.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/DirEntry.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/OutputInterface.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ProgressListener.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNAdmin.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ConflictResult.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/LogMessage.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/PromptUserPassword2.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/PromptUserPassword.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ClientException.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/CopySource.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/CommitItemStateFlags.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Status.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientSynchronized.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ProplistCallbackImpl.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Depth.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Notify2.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ScheduleKind.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/NativeResources.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ErrorCodes.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/InputInterface.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Mergeinfo.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/MergeinfoLogKind.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ConflictDescriptor.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/CommitItem.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/PropertyData.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/DiffSummaryReceiver.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Notify.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/NotifyStatus.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SubversionException.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientInterface.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Version.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/PromptUserPassword3.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/BlameCallback2.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Lock.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Info.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/RevisionKind.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Info2.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/BlameCallbackImpl.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/NativeException.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClient.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusCallback.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNOutputStream.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/NodeKind.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/BlameCallback.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/LogMessageCallback.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNInputStream.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ListCallback.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/DiffSummary.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Path.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ChangePath.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Revision.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/RevisionRange.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/NotifyInformation.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/LogDate.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ProplistCallback.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/NotifyAction.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientLogLevel.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/JNIError.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ProgressEvent.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusKind.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/CommitMessage.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ChangelistCallback.java $(abs_srcdir)/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ConflictResolverCallback.java -$(javahl_java_OBJECTS): $(javahl_java_SRC) - $(COMPILE_JAVAHL_JAVAC) -d subversion/bindings/javahl/classes -classpath subversion/bindings/javahl/classes:$(javahl_java_CLASSPATH) $(javahl_java_SRC) - - -javahl_javah_PATH = subversion/bindings/javahl/include -javahl_javah_HEADERS = subversion/bindings/javahl/include/org_tigris_subversion_javahl_LockStatus.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_InfoCallback.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_DirEntry.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_OutputInterface.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ProgressListener.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_SVNAdmin.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictResult.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_LogMessage.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_PromptUserPassword2.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_PromptUserPassword.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ClientException.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_CopySource.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_CommitItemStateFlags.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Status.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_SVNClientSynchronized.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ProplistCallbackImpl.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Depth.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Notify2.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ScheduleKind.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_NativeResources.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ErrorCodes.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_InputInterface.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Mergeinfo.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_MergeinfoLogKind.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictDescriptor.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_CommitItem.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_PropertyData.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_DiffSummaryReceiver.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Notify.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_NotifyStatus.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_SubversionException.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_SVNClientInterface.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Version.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_PromptUserPassword3.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_BlameCallback2.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Lock.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Info.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_RevisionKind.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Info2.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_BlameCallbackImpl.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_NativeException.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_SVNClient.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_StatusCallback.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_SVNOutputStream.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_NodeKind.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_BlameCallback.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_LogMessageCallback.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_SVNInputStream.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ListCallback.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_DiffSummary.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Path.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ChangePath.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Revision.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_RevisionRange.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_NotifyInformation.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_LogDate.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ProplistCallback.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_NotifyAction.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_SVNClientLogLevel.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_JNIError.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ProgressEvent.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_StatusKind.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_CommitMessage.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ChangelistCallback.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictResolverCallback.h -javahl_javah_OBJECTS = -javahl_javah_DEPS = $(javahl_javah_HEADERS) $(javahl_javah_OBJECTS) $(javahl_java_DEPS) -javahl-javah: $(javahl_javah_DEPS) -javahl_javah_CLASS_FILENAMES = subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LockStatus.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/InfoCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DirEntry.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/OutputInterface.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProgressListener.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNAdmin.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictResult.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogMessage.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword2.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ClientException.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CopySource.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitItemStateFlags.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Status.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientSynchronized.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProplistCallbackImpl.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Depth.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Notify2.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ScheduleKind.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NativeResources.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ErrorCodes.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/InputInterface.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Mergeinfo.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/MergeinfoLogKind.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictDescriptor.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitItem.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PropertyData.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DiffSummaryReceiver.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Notify.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyStatus.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SubversionException.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientInterface.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Version.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword3.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallback2.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Lock.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Info.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/RevisionKind.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Info2.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallbackImpl.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NativeException.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClient.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/StatusCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNOutputStream.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NodeKind.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogMessageCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNInputStream.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ListCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DiffSummary.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Path.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ChangePath.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Revision.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/RevisionRange.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyInformation.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogDate.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProplistCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyAction.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientLogLevel.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/JNIError.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProgressEvent.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/StatusKind.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitMessage.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ChangelistCallback.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictResolverCallback.class -javahl_javah_CLASSES = org.tigris.subversion.javahl.LockStatus org.tigris.subversion.javahl.InfoCallback org.tigris.subversion.javahl.DirEntry org.tigris.subversion.javahl.OutputInterface org.tigris.subversion.javahl.ProgressListener org.tigris.subversion.javahl.SVNAdmin org.tigris.subversion.javahl.ConflictResult org.tigris.subversion.javahl.LogMessage org.tigris.subversion.javahl.PromptUserPassword2 org.tigris.subversion.javahl.PromptUserPassword org.tigris.subversion.javahl.ClientException org.tigris.subversion.javahl.CopySource org.tigris.subversion.javahl.CommitItemStateFlags org.tigris.subversion.javahl.Status org.tigris.subversion.javahl.SVNClientSynchronized org.tigris.subversion.javahl.ProplistCallbackImpl org.tigris.subversion.javahl.Depth org.tigris.subversion.javahl.Notify2 org.tigris.subversion.javahl.ScheduleKind org.tigris.subversion.javahl.NativeResources org.tigris.subversion.javahl.ErrorCodes org.tigris.subversion.javahl.InputInterface org.tigris.subversion.javahl.Mergeinfo org.tigris.subversion.javahl.MergeinfoLogKind org.tigris.subversion.javahl.ConflictDescriptor org.tigris.subversion.javahl.CommitItem org.tigris.subversion.javahl.PropertyData org.tigris.subversion.javahl.DiffSummaryReceiver org.tigris.subversion.javahl.Notify org.tigris.subversion.javahl.NotifyStatus org.tigris.subversion.javahl.SubversionException org.tigris.subversion.javahl.SVNClientInterface org.tigris.subversion.javahl.Version org.tigris.subversion.javahl.PromptUserPassword3 org.tigris.subversion.javahl.BlameCallback2 org.tigris.subversion.javahl.Lock org.tigris.subversion.javahl.Info org.tigris.subversion.javahl.RevisionKind org.tigris.subversion.javahl.Info2 org.tigris.subversion.javahl.BlameCallbackImpl org.tigris.subversion.javahl.NativeException org.tigris.subversion.javahl.SVNClient org.tigris.subversion.javahl.StatusCallback org.tigris.subversion.javahl.SVNOutputStream org.tigris.subversion.javahl.NodeKind org.tigris.subversion.javahl.BlameCallback org.tigris.subversion.javahl.LogMessageCallback org.tigris.subversion.javahl.SVNInputStream org.tigris.subversion.javahl.ListCallback org.tigris.subversion.javahl.DiffSummary org.tigris.subversion.javahl.Path org.tigris.subversion.javahl.ChangePath org.tigris.subversion.javahl.Revision org.tigris.subversion.javahl.RevisionRange org.tigris.subversion.javahl.NotifyInformation org.tigris.subversion.javahl.LogDate org.tigris.subversion.javahl.ProplistCallback org.tigris.subversion.javahl.NotifyAction org.tigris.subversion.javahl.SVNClientLogLevel org.tigris.subversion.javahl.JNIError org.tigris.subversion.javahl.ProgressEvent org.tigris.subversion.javahl.StatusKind org.tigris.subversion.javahl.CommitMessage org.tigris.subversion.javahl.ChangelistCallback org.tigris.subversion.javahl.ConflictResolverCallback -$(javahl_javah_HEADERS): $(javahl_javah_CLASS_FILENAMES) - $(COMPILE_JAVAHL_JAVAH) -force -d subversion/bindings/javahl/include -classpath subversion/bindings/javahl/classes:$(javahl_javah_CLASSPATH) $(javahl_javah_CLASSES) - - -javahl_tests_PATH = subversion/bindings/javahl/classes -javahl_tests_HEADERS = -javahl_tests_OBJECTS = subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BasicTests.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNAdminTests.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/WC.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNTests.class subversion/bindings/javahl/classes/org/tigris/subversion/javahl/RunTests.class -javahl_tests_DEPS = $(javahl_tests_HEADERS) $(javahl_tests_OBJECTS) -javahl-tests: $(javahl_tests_DEPS) -javahl_tests_SRC = $(abs_srcdir)/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/BasicTests.java $(abs_srcdir)/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNAdminTests.java $(abs_srcdir)/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/WC.java $(abs_srcdir)/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNTests.java $(abs_srcdir)/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/RunTests.java -$(javahl_tests_OBJECTS): $(javahl_tests_SRC) - $(COMPILE_JAVAHL_JAVAC) -d subversion/bindings/javahl/classes -classpath subversion/bindings/javahl/classes:$(javahl_tests_CLASSPATH) $(javahl_tests_SRC) - - -key_test_PATH = subversion/tests/libsvn_fs_base -key_test_DEPS = subversion/tests/libsvn_fs_base/key-test.o subversion/tests/libsvn_test-1.la subversion/libsvn_fs_base/libsvn_fs_base-1.la -key_test_OBJECTS = key-test.o -subversion/tests/libsvn_fs_base/key-test$(EXEEXT): $(key_test_DEPS) - cd subversion/tests/libsvn_fs_base && $(LINK) -o key-test$(EXEEXT) $(key_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs_base/libsvn_fs_base-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvn_client_PATH = subversion/libsvn_client -libsvn_client_DEPS = subversion/libsvn_client/add.lo subversion/libsvn_client/blame.lo subversion/libsvn_client/cat.lo subversion/libsvn_client/changelist.lo subversion/libsvn_client/checkout.lo subversion/libsvn_client/cleanup.lo subversion/libsvn_client/commit.lo subversion/libsvn_client/commit_util.lo subversion/libsvn_client/compat_providers.lo subversion/libsvn_client/copy.lo subversion/libsvn_client/ctx.lo subversion/libsvn_client/delete.lo subversion/libsvn_client/diff.lo subversion/libsvn_client/export.lo subversion/libsvn_client/externals.lo subversion/libsvn_client/info.lo subversion/libsvn_client/list.lo subversion/libsvn_client/locking_commands.lo subversion/libsvn_client/log.lo subversion/libsvn_client/merge.lo subversion/libsvn_client/mergeinfo.lo subversion/libsvn_client/prop_commands.lo subversion/libsvn_client/ra.lo subversion/libsvn_client/relocate.lo subversion/libsvn_client/repos_diff.lo subversion/libsvn_client/repos_diff_summarize.lo subversion/libsvn_client/resolved.lo subversion/libsvn_client/revert.lo subversion/libsvn_client/revisions.lo subversion/libsvn_client/status.lo subversion/libsvn_client/switch.lo subversion/libsvn_client/update.lo subversion/libsvn_client/url.lo subversion/libsvn_client/util.lo subversion/libsvn_client/version.lo -libsvn_client_OBJECTS = add.lo blame.lo cat.lo changelist.lo checkout.lo cleanup.lo commit.lo commit_util.lo compat_providers.lo copy.lo ctx.lo delete.lo diff.lo export.lo externals.lo info.lo list.lo locking_commands.lo log.lo merge.lo mergeinfo.lo prop_commands.lo ra.lo relocate.lo repos_diff.lo repos_diff_summarize.lo resolved.lo revert.lo revisions.lo status.lo switch.lo update.lo url.lo util.lo version.lo -subversion/libsvn_client/libsvn_client-1.la: $(libsvn_client_DEPS) - cd subversion/libsvn_client && $(LINK) -o libsvn_client-1.la $(LT_NO_UNDEFINED) $(libsvn_client_OBJECTS) -lsvn_wc-1 -lsvn_ra-1 -lsvn_delta-1 -lsvn_diff-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvn_delta_PATH = subversion/libsvn_delta -libsvn_delta_DEPS = subversion/libsvn_delta/cancel.lo subversion/libsvn_delta/compat.lo subversion/libsvn_delta/compose_delta.lo subversion/libsvn_delta/debug_editor.lo subversion/libsvn_delta/default_editor.lo subversion/libsvn_delta/depth_filter_editor.lo subversion/libsvn_delta/path_driver.lo subversion/libsvn_delta/svndiff.lo subversion/libsvn_delta/text_delta.lo subversion/libsvn_delta/vdelta.lo subversion/libsvn_delta/version.lo subversion/libsvn_delta/xdelta.lo -libsvn_delta_OBJECTS = cancel.lo compat.lo compose_delta.lo debug_editor.lo default_editor.lo depth_filter_editor.lo path_driver.lo svndiff.lo text_delta.lo vdelta.lo version.lo xdelta.lo -subversion/libsvn_delta/libsvn_delta-1.la: $(libsvn_delta_DEPS) - cd subversion/libsvn_delta && $(LINK) -o libsvn_delta-1.la $(LT_NO_UNDEFINED) $(libsvn_delta_OBJECTS) -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(SVN_ZLIB_LIBS) $(LIBS) - -libsvn_diff_PATH = subversion/libsvn_diff -libsvn_diff_DEPS = subversion/libsvn_diff/diff.lo subversion/libsvn_diff/diff3.lo subversion/libsvn_diff/diff4.lo subversion/libsvn_diff/diff_file.lo subversion/libsvn_diff/diff_memory.lo subversion/libsvn_diff/lcs.lo subversion/libsvn_diff/token.lo subversion/libsvn_diff/util.lo -libsvn_diff_OBJECTS = diff.lo diff3.lo diff4.lo diff_file.lo diff_memory.lo lcs.lo token.lo util.lo -subversion/libsvn_diff/libsvn_diff-1.la: $(libsvn_diff_DEPS) - cd subversion/libsvn_diff && $(LINK) -o libsvn_diff-1.la $(LT_NO_UNDEFINED) $(libsvn_diff_OBJECTS) -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvn_fs_PATH = subversion/libsvn_fs -install-ramod-lib: $(SVN_FS_LIB_INSTALL_DEPS) -libsvn_fs_DEPS = $(SVN_FS_LIB_DEPS) subversion/libsvn_fs/access.lo subversion/libsvn_fs/fs-loader.lo -libsvn_fs_OBJECTS = access.lo fs-loader.lo -subversion/libsvn_fs/libsvn_fs-1.la: $(libsvn_fs_DEPS) - cd subversion/libsvn_fs && $(LINK) -o libsvn_fs-1.la $(LT_NO_UNDEFINED) $(libsvn_fs_OBJECTS) -lsvn_subr-1 $(SVN_FS_LIB_LINK) $(SVN_APR_LIBS) $(LIBS) - -libsvn_fs_base_PATH = subversion/libsvn_fs_base -libsvn_fs_base_DEPS = subversion/libsvn_fs_base/bdb/bdb-err.lo subversion/libsvn_fs_base/bdb/bdb_compat.lo subversion/libsvn_fs_base/bdb/changes-table.lo subversion/libsvn_fs_base/bdb/copies-table.lo subversion/libsvn_fs_base/bdb/dbt.lo subversion/libsvn_fs_base/bdb/env.lo subversion/libsvn_fs_base/bdb/lock-tokens-table.lo subversion/libsvn_fs_base/bdb/locks-table.lo subversion/libsvn_fs_base/bdb/node-origins-table.lo subversion/libsvn_fs_base/bdb/nodes-table.lo subversion/libsvn_fs_base/bdb/reps-table.lo subversion/libsvn_fs_base/bdb/rev-table.lo subversion/libsvn_fs_base/bdb/strings-table.lo subversion/libsvn_fs_base/bdb/txn-table.lo subversion/libsvn_fs_base/bdb/uuids-table.lo subversion/libsvn_fs_base/dag.lo subversion/libsvn_fs_base/err.lo subversion/libsvn_fs_base/fs.lo subversion/libsvn_fs_base/id.lo subversion/libsvn_fs_base/key-gen.lo subversion/libsvn_fs_base/lock.lo subversion/libsvn_fs_base/node-rev.lo subversion/libsvn_fs_base/reps-strings.lo subversion/libsvn_fs_base/revs-txns.lo subversion/libsvn_fs_base/trail.lo subversion/libsvn_fs_base/tree.lo subversion/libsvn_fs_base/util/fs_skels.lo subversion/libsvn_fs_base/util/skel.lo subversion/libsvn_fs_base/uuid.lo subversion/libsvn_fs_util/libsvn_fs_util-1.la -libsvn_fs_base_OBJECTS = bdb/bdb-err.lo bdb/bdb_compat.lo bdb/changes-table.lo bdb/copies-table.lo bdb/dbt.lo bdb/env.lo bdb/lock-tokens-table.lo bdb/locks-table.lo bdb/node-origins-table.lo bdb/nodes-table.lo bdb/reps-table.lo bdb/rev-table.lo bdb/strings-table.lo bdb/txn-table.lo bdb/uuids-table.lo dag.lo err.lo fs.lo id.lo key-gen.lo lock.lo node-rev.lo reps-strings.lo revs-txns.lo trail.lo tree.lo util/fs_skels.lo util/skel.lo uuid.lo -subversion/libsvn_fs_base/libsvn_fs_base-1.la: $(libsvn_fs_base_DEPS) - cd subversion/libsvn_fs_base && $(LINK) -o libsvn_fs_base-1.la $(LT_NO_UNDEFINED) $(libsvn_fs_base_OBJECTS) -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(SVN_DB_LIBS) ../../subversion/libsvn_fs_util/libsvn_fs_util-1.la $(LIBS) - -libsvn_fs_fs_PATH = subversion/libsvn_fs_fs -libsvn_fs_fs_DEPS = subversion/libsvn_fs_fs/dag.lo subversion/libsvn_fs_fs/err.lo subversion/libsvn_fs_fs/fs.lo subversion/libsvn_fs_fs/fs_fs.lo subversion/libsvn_fs_fs/id.lo subversion/libsvn_fs_fs/key-gen.lo subversion/libsvn_fs_fs/lock.lo subversion/libsvn_fs_fs/tree.lo subversion/libsvn_fs_util/libsvn_fs_util-1.la -libsvn_fs_fs_OBJECTS = dag.lo err.lo fs.lo fs_fs.lo id.lo key-gen.lo lock.lo tree.lo -subversion/libsvn_fs_fs/libsvn_fs_fs-1.la: $(libsvn_fs_fs_DEPS) - cd subversion/libsvn_fs_fs && $(LINK) -o libsvn_fs_fs-1.la $(LT_NO_UNDEFINED) $(libsvn_fs_fs_OBJECTS) -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) ../../subversion/libsvn_fs_util/libsvn_fs_util-1.la $(LIBS) - -libsvn_fs_util_PATH = subversion/libsvn_fs_util -libsvn_fs_util_DEPS = subversion/libsvn_fs_util/fs-util.lo -libsvn_fs_util_OBJECTS = fs-util.lo -subversion/libsvn_fs_util/libsvn_fs_util-1.la: $(libsvn_fs_util_DEPS) - cd subversion/libsvn_fs_util && $(LINK) -o libsvn_fs_util-1.la $(LT_NO_UNDEFINED) $(libsvn_fs_util_OBJECTS) -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvn_ra_PATH = subversion/libsvn_ra -install-lib: $(SVN_RA_LIB_INSTALL_DEPS) -libsvn_ra_DEPS = $(SVN_RA_LIB_DEPS) subversion/libsvn_ra/compat.lo subversion/libsvn_ra/ra_loader.lo subversion/libsvn_ra/util.lo -libsvn_ra_OBJECTS = compat.lo ra_loader.lo util.lo -subversion/libsvn_ra/libsvn_ra-1.la: $(libsvn_ra_DEPS) - cd subversion/libsvn_ra && $(LINK) -o libsvn_ra-1.la $(LT_NO_UNDEFINED) $(libsvn_ra_OBJECTS) -lsvn_delta-1 -lsvn_subr-1 $(SVN_RA_LIB_LINK) $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvn_ra_local_PATH = subversion/libsvn_ra_local -libsvn_ra_local_DEPS = subversion/libsvn_ra_local/ra_plugin.lo subversion/libsvn_ra_local/split_url.lo -libsvn_ra_local_OBJECTS = ra_plugin.lo split_url.lo -subversion/libsvn_ra_local/libsvn_ra_local-1.la: $(libsvn_ra_local_DEPS) - cd subversion/libsvn_ra_local && $(LINK) -o libsvn_ra_local-1.la $(LT_NO_UNDEFINED) $(libsvn_ra_local_OBJECTS) -lsvn_repos-1 -lsvn_fs-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvn_ra_neon_PATH = subversion/libsvn_ra_neon -libsvn_ra_neon_DEPS = subversion/libsvn_ra_neon/commit.lo subversion/libsvn_ra_neon/fetch.lo subversion/libsvn_ra_neon/file_revs.lo subversion/libsvn_ra_neon/get_dated_rev.lo subversion/libsvn_ra_neon/get_location_segments.lo subversion/libsvn_ra_neon/get_locations.lo subversion/libsvn_ra_neon/get_locks.lo subversion/libsvn_ra_neon/lock.lo subversion/libsvn_ra_neon/log.lo subversion/libsvn_ra_neon/merge.lo subversion/libsvn_ra_neon/mergeinfo.lo subversion/libsvn_ra_neon/options.lo subversion/libsvn_ra_neon/props.lo subversion/libsvn_ra_neon/replay.lo subversion/libsvn_ra_neon/session.lo subversion/libsvn_ra_neon/util.lo -libsvn_ra_neon_OBJECTS = commit.lo fetch.lo file_revs.lo get_dated_rev.lo get_location_segments.lo get_locations.lo get_locks.lo lock.lo log.lo merge.lo mergeinfo.lo options.lo props.lo replay.lo session.lo util.lo -subversion/libsvn_ra_neon/libsvn_ra_neon-1.la: $(libsvn_ra_neon_DEPS) - cd subversion/libsvn_ra_neon && $(LINK) -o libsvn_ra_neon-1.la $(LT_NO_UNDEFINED) $(libsvn_ra_neon_OBJECTS) -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(NEON_LIBS) $(LIBS) - -libsvn_ra_serf_PATH = subversion/libsvn_ra_serf -libsvn_ra_serf_DEPS = subversion/libsvn_ra_serf/auth.lo subversion/libsvn_ra_serf/blame.lo subversion/libsvn_ra_serf/commit.lo subversion/libsvn_ra_serf/getdate.lo subversion/libsvn_ra_serf/getlocations.lo subversion/libsvn_ra_serf/getlocationsegments.lo subversion/libsvn_ra_serf/getlocks.lo subversion/libsvn_ra_serf/locks.lo subversion/libsvn_ra_serf/log.lo subversion/libsvn_ra_serf/merge.lo subversion/libsvn_ra_serf/mergeinfo.lo subversion/libsvn_ra_serf/options.lo subversion/libsvn_ra_serf/property.lo subversion/libsvn_ra_serf/propfind_buckets.lo subversion/libsvn_ra_serf/replay.lo subversion/libsvn_ra_serf/serf.lo subversion/libsvn_ra_serf/update.lo subversion/libsvn_ra_serf/util.lo subversion/libsvn_ra_serf/win32_auth_sspi.lo subversion/libsvn_ra_serf/xml.lo -libsvn_ra_serf_OBJECTS = auth.lo blame.lo commit.lo getdate.lo getlocations.lo getlocationsegments.lo getlocks.lo locks.lo log.lo merge.lo mergeinfo.lo options.lo property.lo propfind_buckets.lo replay.lo serf.lo update.lo util.lo win32_auth_sspi.lo xml.lo -subversion/libsvn_ra_serf/libsvn_ra_serf-1.la: $(libsvn_ra_serf_DEPS) - cd subversion/libsvn_ra_serf && $(LINK) -o libsvn_ra_serf-1.la $(LT_NO_UNDEFINED) $(libsvn_ra_serf_OBJECTS) -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(SVN_SERF_LIBS) $(LIBS) - -libsvn_ra_svn_PATH = subversion/libsvn_ra_svn -libsvn_ra_svn_DEPS = subversion/libsvn_ra_svn/client.lo subversion/libsvn_ra_svn/cram.lo subversion/libsvn_ra_svn/cyrus_auth.lo subversion/libsvn_ra_svn/editorp.lo subversion/libsvn_ra_svn/internal_auth.lo subversion/libsvn_ra_svn/marshal.lo subversion/libsvn_ra_svn/streams.lo subversion/libsvn_ra_svn/version.lo -libsvn_ra_svn_OBJECTS = client.lo cram.lo cyrus_auth.lo editorp.lo internal_auth.lo marshal.lo streams.lo version.lo -subversion/libsvn_ra_svn/libsvn_ra_svn-1.la: $(libsvn_ra_svn_DEPS) - cd subversion/libsvn_ra_svn && $(LINK) -o libsvn_ra_svn-1.la $(LT_NO_UNDEFINED) $(libsvn_ra_svn_OBJECTS) -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(SVN_SASL_LIBS) $(LIBS) - -libsvn_repos_PATH = subversion/libsvn_repos -libsvn_repos_DEPS = subversion/libsvn_repos/authz.lo subversion/libsvn_repos/commit.lo subversion/libsvn_repos/delta.lo subversion/libsvn_repos/dump.lo subversion/libsvn_repos/fs-wrap.lo subversion/libsvn_repos/hooks.lo subversion/libsvn_repos/load.lo subversion/libsvn_repos/log.lo subversion/libsvn_repos/node_tree.lo subversion/libsvn_repos/replay.lo subversion/libsvn_repos/reporter.lo subversion/libsvn_repos/repos.lo subversion/libsvn_repos/rev_hunt.lo -libsvn_repos_OBJECTS = authz.lo commit.lo delta.lo dump.lo fs-wrap.lo hooks.lo load.lo log.lo node_tree.lo replay.lo reporter.lo repos.lo rev_hunt.lo -subversion/libsvn_repos/libsvn_repos-1.la: $(libsvn_repos_DEPS) - cd subversion/libsvn_repos && $(LINK) -o libsvn_repos-1.la $(LT_NO_UNDEFINED) $(libsvn_repos_OBJECTS) -lsvn_fs-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvn_subr_PATH = subversion/libsvn_subr -libsvn_subr_DEPS = subversion/libsvn_subr/atomic.lo subversion/libsvn_subr/auth.lo subversion/libsvn_subr/cmdline.lo subversion/libsvn_subr/compat.lo subversion/libsvn_subr/config.lo subversion/libsvn_subr/config_auth.lo subversion/libsvn_subr/config_file.lo subversion/libsvn_subr/config_win.lo subversion/libsvn_subr/constructors.lo subversion/libsvn_subr/ctype.lo subversion/libsvn_subr/date.lo subversion/libsvn_subr/dso.lo subversion/libsvn_subr/error.lo subversion/libsvn_subr/hash.lo subversion/libsvn_subr/io.lo subversion/libsvn_subr/iter.lo subversion/libsvn_subr/kitchensink.lo subversion/libsvn_subr/lock.lo subversion/libsvn_subr/md5.lo subversion/libsvn_subr/mergeinfo.lo subversion/libsvn_subr/nls.lo subversion/libsvn_subr/opt.lo subversion/libsvn_subr/path.lo subversion/libsvn_subr/pool.lo subversion/libsvn_subr/prompt.lo subversion/libsvn_subr/properties.lo subversion/libsvn_subr/quoprint.lo subversion/libsvn_subr/simple_providers.lo subversion/libsvn_subr/sorts.lo subversion/libsvn_subr/ssl_client_cert_providers.lo subversion/libsvn_subr/ssl_client_cert_pw_providers.lo subversion/libsvn_subr/ssl_server_trust_providers.lo subversion/libsvn_subr/stream.lo subversion/libsvn_subr/subst.lo subversion/libsvn_subr/svn_base64.lo subversion/libsvn_subr/svn_string.lo subversion/libsvn_subr/target.lo subversion/libsvn_subr/time.lo subversion/libsvn_subr/user.lo subversion/libsvn_subr/username_providers.lo subversion/libsvn_subr/utf.lo subversion/libsvn_subr/utf_validate.lo subversion/libsvn_subr/validate.lo subversion/libsvn_subr/version.lo subversion/libsvn_subr/win32_crashrpt.lo subversion/libsvn_subr/win32_xlate.lo subversion/libsvn_subr/xml.lo -libsvn_subr_OBJECTS = atomic.lo auth.lo cmdline.lo compat.lo config.lo config_auth.lo config_file.lo config_win.lo constructors.lo ctype.lo date.lo dso.lo error.lo hash.lo io.lo iter.lo kitchensink.lo lock.lo md5.lo mergeinfo.lo nls.lo opt.lo path.lo pool.lo prompt.lo properties.lo quoprint.lo simple_providers.lo sorts.lo ssl_client_cert_providers.lo ssl_client_cert_pw_providers.lo ssl_server_trust_providers.lo stream.lo subst.lo svn_base64.lo svn_string.lo target.lo time.lo user.lo username_providers.lo utf.lo utf_validate.lo validate.lo version.lo win32_crashrpt.lo win32_xlate.lo xml.lo -subversion/libsvn_subr/libsvn_subr-1.la: $(libsvn_subr_DEPS) - cd subversion/libsvn_subr && $(LINK) -o libsvn_subr-1.la $(LT_NO_UNDEFINED) $(libsvn_subr_OBJECTS) $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(SVN_XML_LIBS) $(SVN_ZLIB_LIBS) $(LIBS) - -libsvn_swig_perl_PATH = subversion/bindings/swig/perl/libsvn_swig_perl -libsvn_swig_perl_DEPS = subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.lo -libsvn_swig_perl_OBJECTS = swigutil_pl.lo -subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la: $(libsvn_swig_perl_DEPS) - cd subversion/bindings/swig/perl/libsvn_swig_perl && $(LINK) -o libsvn_swig_perl-1.la $(LT_NO_UNDEFINED) $(libsvn_swig_perl_OBJECTS) -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvn_swig_py_PATH = subversion/bindings/swig/python/libsvn_swig_py -libsvn_swig_py_DEPS = subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.lo -libsvn_swig_py_OBJECTS = swigutil_py.lo -subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la: $(libsvn_swig_py_DEPS) - cd subversion/bindings/swig/python/libsvn_swig_py && $(LINK) $(SWIG_PY_LIBS) -o libsvn_swig_py-1.la $(LT_NO_UNDEFINED) $(libsvn_swig_py_OBJECTS) -lsvn_client-1 -lsvn_wc-1 -lsvn_ra-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvn_swig_ruby_PATH = subversion/bindings/swig/ruby/libsvn_swig_ruby -libsvn_swig_ruby_DEPS = subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.lo -libsvn_swig_ruby_OBJECTS = swigutil_rb.lo -subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la: $(libsvn_swig_ruby_DEPS) - cd subversion/bindings/swig/ruby/libsvn_swig_ruby && $(LINK) $(SWIG_RB_LIBS) -o libsvn_swig_ruby-1.la $(LT_NO_UNDEFINED) $(libsvn_swig_ruby_OBJECTS) -lsvn_client-1 -lsvn_wc-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvn_test_PATH = subversion/tests -libsvn_test_DEPS = subversion/tests/svn_test_editor.lo subversion/tests/svn_test_fs.lo subversion/tests/svn_test_main.lo -libsvn_test_OBJECTS = svn_test_editor.lo svn_test_fs.lo svn_test_main.lo -subversion/tests/libsvn_test-1.la: $(libsvn_test_DEPS) - cd subversion/tests && $(LINK) -o libsvn_test-1.la $(libsvn_test_OBJECTS) -lsvn_repos-1 -lsvn_fs-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvn_wc_PATH = subversion/libsvn_wc -libsvn_wc_DEPS = subversion/libsvn_wc/adm_crawler.lo subversion/libsvn_wc/adm_files.lo subversion/libsvn_wc/adm_ops.lo subversion/libsvn_wc/ambient_depth_filter_editor.lo subversion/libsvn_wc/copy.lo subversion/libsvn_wc/diff.lo subversion/libsvn_wc/entries.lo subversion/libsvn_wc/lock.lo subversion/libsvn_wc/log.lo subversion/libsvn_wc/merge.lo subversion/libsvn_wc/props.lo subversion/libsvn_wc/questions.lo subversion/libsvn_wc/relocate.lo subversion/libsvn_wc/revision_status.lo subversion/libsvn_wc/status.lo subversion/libsvn_wc/translate.lo subversion/libsvn_wc/update_editor.lo subversion/libsvn_wc/util.lo -libsvn_wc_OBJECTS = adm_crawler.lo adm_files.lo adm_ops.lo ambient_depth_filter_editor.lo copy.lo diff.lo entries.lo lock.lo log.lo merge.lo props.lo questions.lo relocate.lo revision_status.lo status.lo translate.lo update_editor.lo util.lo -subversion/libsvn_wc/libsvn_wc-1.la: $(libsvn_wc_DEPS) - cd subversion/libsvn_wc && $(LINK) -o libsvn_wc-1.la $(LT_NO_UNDEFINED) $(libsvn_wc_OBJECTS) -lsvn_delta-1 -lsvn_diff-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -libsvnjavahl_PATH = subversion/bindings/javahl/native -libsvnjavahl_DEPS = $(javahl_javah_DEPS) $(javahl_java_DEPS) subversion/bindings/javahl/native/BlameCallback.lo subversion/bindings/javahl/native/ChangelistCallback.lo subversion/bindings/javahl/native/CommitMessage.lo subversion/bindings/javahl/native/ConflictResolverCallback.lo subversion/bindings/javahl/native/CopySources.lo subversion/bindings/javahl/native/DiffSummaryReceiver.lo subversion/bindings/javahl/native/EnumMapper.lo subversion/bindings/javahl/native/InfoCallback.lo subversion/bindings/javahl/native/Inputer.lo subversion/bindings/javahl/native/JNIByteArray.lo subversion/bindings/javahl/native/JNICriticalSection.lo subversion/bindings/javahl/native/JNIMutex.lo subversion/bindings/javahl/native/JNIStackElement.lo subversion/bindings/javahl/native/JNIStringHolder.lo subversion/bindings/javahl/native/JNIThreadData.lo subversion/bindings/javahl/native/JNIUtil.lo subversion/bindings/javahl/native/ListCallback.lo subversion/bindings/javahl/native/LogMessageCallback.lo subversion/bindings/javahl/native/MessageReceiver.lo subversion/bindings/javahl/native/Notify.lo subversion/bindings/javahl/native/Notify2.lo subversion/bindings/javahl/native/Outputer.lo subversion/bindings/javahl/native/Path.lo subversion/bindings/javahl/native/Pool.lo subversion/bindings/javahl/native/ProgressListener.lo subversion/bindings/javahl/native/Prompter.lo subversion/bindings/javahl/native/ProplistCallback.lo subversion/bindings/javahl/native/Revision.lo subversion/bindings/javahl/native/RevisionRange.lo subversion/bindings/javahl/native/RevpropTable.lo subversion/bindings/javahl/native/SVNAdmin.lo subversion/bindings/javahl/native/SVNBase.lo subversion/bindings/javahl/native/SVNClient.lo subversion/bindings/javahl/native/StatusCallback.lo subversion/bindings/javahl/native/StringArray.lo subversion/bindings/javahl/native/Targets.lo subversion/bindings/javahl/native/libsvnjavahl.la.lo subversion/bindings/javahl/native/org_tigris_subversion_javahl_NativeResources.lo subversion/bindings/javahl/native/org_tigris_subversion_javahl_Path.lo subversion/bindings/javahl/native/org_tigris_subversion_javahl_SVNAdmin.lo subversion/bindings/javahl/native/org_tigris_subversion_javahl_SVNClient.lo subversion/bindings/javahl/native/org_tigris_subversion_javahl_Version.lo -libsvnjavahl_OBJECTS = BlameCallback.lo ChangelistCallback.lo CommitMessage.lo ConflictResolverCallback.lo CopySources.lo DiffSummaryReceiver.lo EnumMapper.lo InfoCallback.lo Inputer.lo JNIByteArray.lo JNICriticalSection.lo JNIMutex.lo JNIStackElement.lo JNIStringHolder.lo JNIThreadData.lo JNIUtil.lo ListCallback.lo LogMessageCallback.lo MessageReceiver.lo Notify.lo Notify2.lo Outputer.lo Path.lo Pool.lo ProgressListener.lo Prompter.lo ProplistCallback.lo Revision.lo RevisionRange.lo RevpropTable.lo SVNAdmin.lo SVNBase.lo SVNClient.lo StatusCallback.lo StringArray.lo Targets.lo libsvnjavahl.la.lo org_tigris_subversion_javahl_NativeResources.lo org_tigris_subversion_javahl_Path.lo org_tigris_subversion_javahl_SVNAdmin.lo org_tigris_subversion_javahl_SVNClient.lo org_tigris_subversion_javahl_Version.lo -subversion/bindings/javahl/native/libsvnjavahl-1.la: $(libsvnjavahl_DEPS) - cd subversion/bindings/javahl/native && $(LINK_JAVAHL_CXX) -o libsvnjavahl-1.la $(LT_NO_UNDEFINED) $(libsvnjavahl_OBJECTS) -lsvn_repos-1 -lsvn_client-1 -lsvn_wc-1 -lsvn_ra-1 -lsvn_delta-1 -lsvn_diff-1 -lsvn_subr-1 -lsvn_fs-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(NEON_LIBS) $(LIBS) - -locale_PATH = subversion/po -locale_DEPS = subversion/po/de.mo subversion/po/es.mo subversion/po/fr.mo subversion/po/it.mo subversion/po/ja.mo subversion/po/ko.mo subversion/po/nb.mo subversion/po/pl.mo subversion/po/pt_BR.mo subversion/po/sv.mo subversion/po/zh_CN.mo subversion/po/zh_TW.mo -locale: $(locale_DEPS) - -locks_test_PATH = subversion/tests/libsvn_fs -locks_test_DEPS = subversion/tests/libsvn_fs/locks-test.o subversion/tests/libsvn_test-1.la -locks_test_OBJECTS = locks-test.o -subversion/tests/libsvn_fs/locks-test$(EXEEXT): $(locks_test_DEPS) - cd subversion/tests/libsvn_fs && $(LINK) -o locks-test$(EXEEXT) $(locks_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_fs-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -mergeinfo_test_PATH = subversion/tests/libsvn_subr -mergeinfo_test_DEPS = subversion/tests/libsvn_subr/mergeinfo-test.o subversion/tests/libsvn_test-1.la -mergeinfo_test_OBJECTS = mergeinfo-test.o -subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT): $(mergeinfo_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o mergeinfo-test$(EXEEXT) $(mergeinfo_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -mod_authz_svn_PATH = subversion/mod_authz_svn -mod_authz_svn_DEPS = subversion/mod_authz_svn/mod_authz_svn.lo subversion/mod_dav_svn/mod_dav_svn.la -mod_authz_svn_OBJECTS = mod_authz_svn.lo -subversion/mod_authz_svn/mod_authz_svn.la: $(mod_authz_svn_DEPS) - cd subversion/mod_authz_svn && $(LINK_APACHE_MOD) -o mod_authz_svn.la $(LT_NO_UNDEFINED) $(mod_authz_svn_OBJECTS) -lsvn_repos-1 -lsvn_subr-1 $(LIBS) - -mod_dav_svn_PATH = subversion/mod_dav_svn -mod_dav_svn_DEPS = subversion/mod_dav_svn/activity.lo subversion/mod_dav_svn/authz.lo subversion/mod_dav_svn/deadprops.lo subversion/mod_dav_svn/liveprops.lo subversion/mod_dav_svn/lock.lo subversion/mod_dav_svn/merge.lo subversion/mod_dav_svn/mirror.lo subversion/mod_dav_svn/mod_dav_svn.lo subversion/mod_dav_svn/reports/dated-rev.lo subversion/mod_dav_svn/reports/file-revs.lo subversion/mod_dav_svn/reports/get-location-segments.lo subversion/mod_dav_svn/reports/get-locations.lo subversion/mod_dav_svn/reports/get-locks.lo subversion/mod_dav_svn/reports/log.lo subversion/mod_dav_svn/reports/mergeinfo.lo subversion/mod_dav_svn/reports/replay.lo subversion/mod_dav_svn/reports/update.lo subversion/mod_dav_svn/repos.lo subversion/mod_dav_svn/util.lo subversion/mod_dav_svn/version.lo -mod_dav_svn_OBJECTS = activity.lo authz.lo deadprops.lo liveprops.lo lock.lo merge.lo mirror.lo mod_dav_svn.lo reports/dated-rev.lo reports/file-revs.lo reports/get-location-segments.lo reports/get-locations.lo reports/get-locks.lo reports/log.lo reports/mergeinfo.lo reports/replay.lo reports/update.lo repos.lo util.lo version.lo -subversion/mod_dav_svn/mod_dav_svn.la: $(mod_dav_svn_DEPS) - cd subversion/mod_dav_svn && $(LINK_APACHE_MOD) -o mod_dav_svn.la $(LT_NO_UNDEFINED) $(mod_dav_svn_OBJECTS) -lsvn_repos-1 -lsvn_fs-1 -lsvn_delta-1 -lsvn_subr-1 $(LIBS) - -opt_test_PATH = subversion/tests/libsvn_subr -opt_test_DEPS = subversion/tests/libsvn_subr/opt-test.o subversion/tests/libsvn_test-1.la -opt_test_OBJECTS = opt-test.o -subversion/tests/libsvn_subr/opt-test$(EXEEXT): $(opt_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o opt-test$(EXEEXT) $(opt_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -path_test_PATH = subversion/tests/libsvn_subr -path_test_DEPS = subversion/tests/libsvn_subr/path-test.o subversion/tests/libsvn_test-1.la -path_test_OBJECTS = path-test.o -subversion/tests/libsvn_subr/path-test$(EXEEXT): $(path_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o path-test$(EXEEXT) $(path_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -perl_client_PATH = subversion/bindings/swig/perl/native -perl_client_DEPS = subversion/bindings/swig/perl/native/svn_client.lo subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la subversion/bindings/swig/perl/native/_Core.la -perl_client_OBJECTS = svn_client.lo -subversion/bindings/swig/perl/native/_Client.la: $(perl_client_DEPS) - cd subversion/bindings/swig/perl/native && $(LINK_PL_WRAPPER) -o _Client.la $(LT_NO_UNDEFINED) $(perl_client_OBJECTS) ../../../../../subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la -lsvn_client-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -perl_core_PATH = subversion/bindings/swig/perl/native -perl_core_DEPS = subversion/bindings/swig/perl/native/core.lo subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la -perl_core_OBJECTS = core.lo -subversion/bindings/swig/perl/native/_Core.la: $(perl_core_DEPS) - cd subversion/bindings/swig/perl/native && $(LINK_PL_WRAPPER) -o _Core.la $(LT_NO_UNDEFINED) $(perl_core_OBJECTS) ../../../../../subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la -lsvn_diff-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -perl_delta_PATH = subversion/bindings/swig/perl/native -perl_delta_DEPS = subversion/bindings/swig/perl/native/svn_delta.lo subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la subversion/bindings/swig/perl/native/_Core.la -perl_delta_OBJECTS = svn_delta.lo -subversion/bindings/swig/perl/native/_Delta.la: $(perl_delta_DEPS) - cd subversion/bindings/swig/perl/native && $(LINK_PL_WRAPPER) -o _Delta.la $(LT_NO_UNDEFINED) $(perl_delta_OBJECTS) ../../../../../subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la -lsvn_delta-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -perl_diff_PATH = subversion/bindings/swig/perl/native -perl_diff_DEPS = subversion/bindings/swig/perl/native/svn_diff.lo subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la subversion/bindings/swig/perl/native/_Core.la -perl_diff_OBJECTS = svn_diff.lo -subversion/bindings/swig/perl/native/_Diff.la: $(perl_diff_DEPS) - cd subversion/bindings/swig/perl/native && $(LINK_PL_WRAPPER) -o _Diff.la $(LT_NO_UNDEFINED) $(perl_diff_OBJECTS) ../../../../../subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la -lsvn_diff-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -perl_fs_PATH = subversion/bindings/swig/perl/native -perl_fs_DEPS = subversion/bindings/swig/perl/native/svn_fs.lo subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la subversion/bindings/swig/perl/native/_Core.la -perl_fs_OBJECTS = svn_fs.lo -subversion/bindings/swig/perl/native/_Fs.la: $(perl_fs_DEPS) - cd subversion/bindings/swig/perl/native && $(LINK_PL_WRAPPER) -o _Fs.la $(LT_NO_UNDEFINED) $(perl_fs_OBJECTS) ../../../../../subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la -lsvn_fs-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -perl_ra_PATH = subversion/bindings/swig/perl/native -perl_ra_DEPS = subversion/bindings/swig/perl/native/svn_ra.lo subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la subversion/bindings/swig/perl/native/_Core.la -perl_ra_OBJECTS = svn_ra.lo -subversion/bindings/swig/perl/native/_Ra.la: $(perl_ra_DEPS) - cd subversion/bindings/swig/perl/native && $(LINK_PL_WRAPPER) -o _Ra.la $(LT_NO_UNDEFINED) $(perl_ra_OBJECTS) ../../../../../subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la -lsvn_ra-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -perl_repos_PATH = subversion/bindings/swig/perl/native -perl_repos_DEPS = subversion/bindings/swig/perl/native/svn_repos.lo subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la subversion/bindings/swig/perl/native/_Core.la -perl_repos_OBJECTS = svn_repos.lo -subversion/bindings/swig/perl/native/_Repos.la: $(perl_repos_DEPS) - cd subversion/bindings/swig/perl/native && $(LINK_PL_WRAPPER) -o _Repos.la $(LT_NO_UNDEFINED) $(perl_repos_OBJECTS) ../../../../../subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la -lsvn_repos-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -perl_wc_PATH = subversion/bindings/swig/perl/native -perl_wc_DEPS = subversion/bindings/swig/perl/native/svn_wc.lo subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la subversion/bindings/swig/perl/native/_Core.la -perl_wc_OBJECTS = svn_wc.lo -subversion/bindings/swig/perl/native/_Wc.la: $(perl_wc_DEPS) - cd subversion/bindings/swig/perl/native && $(LINK_PL_WRAPPER) -o _Wc.la $(LT_NO_UNDEFINED) $(perl_wc_OBJECTS) ../../../../../subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la -lsvn_wc-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -python_client_PATH = subversion/bindings/swig/python -python_client_DEPS = subversion/bindings/swig/python/svn_client.lo subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la subversion/bindings/swig/python/_core.la -python_client_OBJECTS = svn_client.lo -subversion/bindings/swig/python/_client.la: $(python_client_DEPS) - cd subversion/bindings/swig/python && $(LINK_PY_WRAPPER) -o _client.la $(LT_NO_UNDEFINED) $(python_client_OBJECTS) ../../../../subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la -lsvn_client-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -python_core_PATH = subversion/bindings/swig/python -python_core_DEPS = subversion/bindings/swig/python/core.lo subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la -python_core_OBJECTS = core.lo -subversion/bindings/swig/python/_core.la: $(python_core_DEPS) - cd subversion/bindings/swig/python && $(LINK_PY_WRAPPER) -o _core.la $(LT_NO_UNDEFINED) $(python_core_OBJECTS) ../../../../subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la -lsvn_diff-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -python_delta_PATH = subversion/bindings/swig/python -python_delta_DEPS = subversion/bindings/swig/python/svn_delta.lo subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la subversion/bindings/swig/python/_core.la -python_delta_OBJECTS = svn_delta.lo -subversion/bindings/swig/python/_delta.la: $(python_delta_DEPS) - cd subversion/bindings/swig/python && $(LINK_PY_WRAPPER) -o _delta.la $(LT_NO_UNDEFINED) $(python_delta_OBJECTS) ../../../../subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la -lsvn_delta-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -python_diff_PATH = subversion/bindings/swig/python -python_diff_DEPS = subversion/bindings/swig/python/svn_diff.lo subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la subversion/bindings/swig/python/_core.la -python_diff_OBJECTS = svn_diff.lo -subversion/bindings/swig/python/_diff.la: $(python_diff_DEPS) - cd subversion/bindings/swig/python && $(LINK_PY_WRAPPER) -o _diff.la $(LT_NO_UNDEFINED) $(python_diff_OBJECTS) ../../../../subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la -lsvn_diff-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -python_fs_PATH = subversion/bindings/swig/python -python_fs_DEPS = subversion/bindings/swig/python/svn_fs.lo subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la subversion/bindings/swig/python/_core.la -python_fs_OBJECTS = svn_fs.lo -subversion/bindings/swig/python/_fs.la: $(python_fs_DEPS) - cd subversion/bindings/swig/python && $(LINK_PY_WRAPPER) -o _fs.la $(LT_NO_UNDEFINED) $(python_fs_OBJECTS) ../../../../subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la -lsvn_fs-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -python_ra_PATH = subversion/bindings/swig/python -python_ra_DEPS = subversion/bindings/swig/python/svn_ra.lo subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la subversion/bindings/swig/python/_core.la -python_ra_OBJECTS = svn_ra.lo -subversion/bindings/swig/python/_ra.la: $(python_ra_DEPS) - cd subversion/bindings/swig/python && $(LINK_PY_WRAPPER) -o _ra.la $(LT_NO_UNDEFINED) $(python_ra_OBJECTS) ../../../../subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la -lsvn_ra-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -python_repos_PATH = subversion/bindings/swig/python -python_repos_DEPS = subversion/bindings/swig/python/svn_repos.lo subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la subversion/bindings/swig/python/_core.la -python_repos_OBJECTS = svn_repos.lo -subversion/bindings/swig/python/_repos.la: $(python_repos_DEPS) - cd subversion/bindings/swig/python && $(LINK_PY_WRAPPER) -o _repos.la $(LT_NO_UNDEFINED) $(python_repos_OBJECTS) ../../../../subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la -lsvn_repos-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -python_wc_PATH = subversion/bindings/swig/python -python_wc_DEPS = subversion/bindings/swig/python/svn_wc.lo subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la subversion/bindings/swig/python/_core.la -python_wc_OBJECTS = svn_wc.lo -subversion/bindings/swig/python/_wc.la: $(python_wc_DEPS) - cd subversion/bindings/swig/python && $(LINK_PY_WRAPPER) -o _wc.la $(LT_NO_UNDEFINED) $(python_wc_OBJECTS) ../../../../subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la -lsvn_wc-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -ra_local_test_PATH = subversion/tests/libsvn_ra_local -ra_local_test_DEPS = subversion/tests/libsvn_ra_local/ra-local-test.o subversion/tests/libsvn_test-1.la subversion/libsvn_ra_local/libsvn_ra_local-1.la -ra_local_test_OBJECTS = ra-local-test.o -subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT): $(ra_local_test_DEPS) - cd subversion/tests/libsvn_ra_local && $(LINK) -o ra-local-test$(EXEEXT) $(ra_local_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_ra_local/libsvn_ra_local-1.la -lsvn_ra-1 -lsvn_fs-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(NEON_LIBS) $(LIBS) - -random_test_PATH = subversion/tests/libsvn_delta -random_test_DEPS = subversion/tests/libsvn_delta/random-test.o subversion/tests/libsvn_test-1.la -random_test_OBJECTS = random-test.o -subversion/tests/libsvn_delta/random-test$(EXEEXT): $(random_test_DEPS) - cd subversion/tests/libsvn_delta && $(LINK) -o random-test$(EXEEXT) $(random_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -repos_test_PATH = subversion/tests/libsvn_repos -repos_test_DEPS = subversion/tests/libsvn_repos/dir-delta-editor.o subversion/tests/libsvn_repos/repos-test.o subversion/tests/libsvn_test-1.la -repos_test_OBJECTS = dir-delta-editor.o repos-test.o -subversion/tests/libsvn_repos/repos-test$(EXEEXT): $(repos_test_DEPS) - cd subversion/tests/libsvn_repos && $(LINK) -o repos-test$(EXEEXT) $(repos_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_repos-1 -lsvn_fs-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -revision_test_PATH = subversion/tests/libsvn_subr -revision_test_DEPS = subversion/tests/libsvn_subr/revision-test.o subversion/tests/libsvn_test-1.la -revision_test_OBJECTS = revision-test.o -subversion/tests/libsvn_subr/revision-test$(EXEEXT): $(revision_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o revision-test$(EXEEXT) $(revision_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -ruby_client_PATH = subversion/bindings/swig/ruby -ruby_client_DEPS = subversion/bindings/swig/ruby/svn_client.lo subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la subversion/bindings/swig/ruby/core.la -ruby_client_OBJECTS = svn_client.lo -subversion/bindings/swig/ruby/client.la: $(ruby_client_DEPS) - cd subversion/bindings/swig/ruby && $(LINK_RB_WRAPPER) -o client.la $(LT_NO_UNDEFINED) $(ruby_client_OBJECTS) ../../../../subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la -lsvn_client-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -ruby_core_PATH = subversion/bindings/swig/ruby -ruby_core_DEPS = subversion/bindings/swig/ruby/core.lo subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la -ruby_core_OBJECTS = core.lo -subversion/bindings/swig/ruby/core.la: $(ruby_core_DEPS) - cd subversion/bindings/swig/ruby && $(LINK_RB_WRAPPER) -o core.la $(LT_NO_UNDEFINED) $(ruby_core_OBJECTS) ../../../../subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la -lsvn_diff-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -ruby_delta_PATH = subversion/bindings/swig/ruby -ruby_delta_DEPS = subversion/bindings/swig/ruby/svn_delta.lo subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la subversion/bindings/swig/ruby/core.la -ruby_delta_OBJECTS = svn_delta.lo -subversion/bindings/swig/ruby/delta.la: $(ruby_delta_DEPS) - cd subversion/bindings/swig/ruby && $(LINK_RB_WRAPPER) -o delta.la $(LT_NO_UNDEFINED) $(ruby_delta_OBJECTS) ../../../../subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la -lsvn_delta-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -ruby_diff_PATH = subversion/bindings/swig/ruby -ruby_diff_DEPS = subversion/bindings/swig/ruby/svn_diff.lo subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la subversion/bindings/swig/ruby/core.la -ruby_diff_OBJECTS = svn_diff.lo -subversion/bindings/swig/ruby/diff.la: $(ruby_diff_DEPS) - cd subversion/bindings/swig/ruby && $(LINK_RB_WRAPPER) -o diff.la $(LT_NO_UNDEFINED) $(ruby_diff_OBJECTS) ../../../../subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la -lsvn_diff-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -ruby_fs_PATH = subversion/bindings/swig/ruby -ruby_fs_DEPS = subversion/bindings/swig/ruby/svn_fs.lo subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la subversion/bindings/swig/ruby/core.la -ruby_fs_OBJECTS = svn_fs.lo -subversion/bindings/swig/ruby/fs.la: $(ruby_fs_DEPS) - cd subversion/bindings/swig/ruby && $(LINK_RB_WRAPPER) -o fs.la $(LT_NO_UNDEFINED) $(ruby_fs_OBJECTS) ../../../../subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la -lsvn_fs-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -ruby_ra_PATH = subversion/bindings/swig/ruby -ruby_ra_DEPS = subversion/bindings/swig/ruby/svn_ra.lo subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la subversion/bindings/swig/ruby/core.la -ruby_ra_OBJECTS = svn_ra.lo -subversion/bindings/swig/ruby/ra.la: $(ruby_ra_DEPS) - cd subversion/bindings/swig/ruby && $(LINK_RB_WRAPPER) -o ra.la $(LT_NO_UNDEFINED) $(ruby_ra_OBJECTS) ../../../../subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la -lsvn_ra-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -ruby_repos_PATH = subversion/bindings/swig/ruby -ruby_repos_DEPS = subversion/bindings/swig/ruby/svn_repos.lo subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la subversion/bindings/swig/ruby/core.la -ruby_repos_OBJECTS = svn_repos.lo -subversion/bindings/swig/ruby/repos.la: $(ruby_repos_DEPS) - cd subversion/bindings/swig/ruby && $(LINK_RB_WRAPPER) -o repos.la $(LT_NO_UNDEFINED) $(ruby_repos_OBJECTS) ../../../../subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la -lsvn_repos-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -ruby_wc_PATH = subversion/bindings/swig/ruby -ruby_wc_DEPS = subversion/bindings/swig/ruby/svn_wc.lo subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la subversion/bindings/swig/ruby/core.la -ruby_wc_OBJECTS = svn_wc.lo -subversion/bindings/swig/ruby/wc.la: $(ruby_wc_DEPS) - cd subversion/bindings/swig/ruby && $(LINK_RB_WRAPPER) -o wc.la $(LT_NO_UNDEFINED) $(ruby_wc_OBJECTS) ../../../../subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la -lsvn_wc-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -skel_test_PATH = subversion/tests/libsvn_fs_base -skel_test_DEPS = subversion/tests/libsvn_fs_base/skel-test.o subversion/tests/libsvn_test-1.la subversion/libsvn_fs_base/libsvn_fs_base-1.la -skel_test_OBJECTS = skel-test.o -subversion/tests/libsvn_fs_base/skel-test$(EXEEXT): $(skel_test_DEPS) - cd subversion/tests/libsvn_fs_base && $(LINK) -o skel-test$(EXEEXT) $(skel_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la ../../../subversion/libsvn_fs_base/libsvn_fs_base-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -stream_test_PATH = subversion/tests/libsvn_subr -stream_test_DEPS = subversion/tests/libsvn_subr/stream-test.o subversion/tests/libsvn_test-1.la -stream_test_OBJECTS = stream-test.o -subversion/tests/libsvn_subr/stream-test$(EXEEXT): $(stream_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o stream-test$(EXEEXT) $(stream_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -string_test_PATH = subversion/tests/libsvn_subr -string_test_DEPS = subversion/tests/libsvn_subr/string-test.o subversion/tests/libsvn_test-1.la -string_test_OBJECTS = string-test.o -subversion/tests/libsvn_subr/string-test$(EXEEXT): $(string_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o string-test$(EXEEXT) $(string_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -strings_reps_test_PATH = subversion/tests/libsvn_fs_base -strings_reps_test_DEPS = subversion/tests/libsvn_fs_base/strings-reps-test.o subversion/tests/libsvn_test-1.la subversion/libsvn_fs_base/libsvn_fs_base-1.la -strings_reps_test_OBJECTS = strings-reps-test.o -subversion/tests/libsvn_fs_base/strings-reps-test$(EXEEXT): $(strings_reps_test_DEPS) - cd subversion/tests/libsvn_fs_base && $(LINK) -o strings-reps-test$(EXEEXT) $(strings_reps_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_fs-1 ../../../subversion/libsvn_fs_base/libsvn_fs_base-1.la -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -svn_PATH = subversion/svn -svn_DEPS = subversion/svn/add-cmd.o subversion/svn/blame-cmd.o subversion/svn/cat-cmd.o subversion/svn/changelist-cmd.o subversion/svn/checkout-cmd.o subversion/svn/cleanup-cmd.o subversion/svn/commit-cmd.o subversion/svn/conflict-callbacks.o subversion/svn/copy-cmd.o subversion/svn/delete-cmd.o subversion/svn/diff-cmd.o subversion/svn/export-cmd.o subversion/svn/help-cmd.o subversion/svn/import-cmd.o subversion/svn/info-cmd.o subversion/svn/list-cmd.o subversion/svn/lock-cmd.o subversion/svn/log-cmd.o subversion/svn/main.o subversion/svn/merge-cmd.o subversion/svn/mergeinfo-cmd.o subversion/svn/mkdir-cmd.o subversion/svn/move-cmd.o subversion/svn/notify.o subversion/svn/propdel-cmd.o subversion/svn/propedit-cmd.o subversion/svn/propget-cmd.o subversion/svn/proplist-cmd.o subversion/svn/props.o subversion/svn/propset-cmd.o subversion/svn/resolve-cmd.o subversion/svn/resolved-cmd.o subversion/svn/revert-cmd.o subversion/svn/status-cmd.o subversion/svn/status.o subversion/svn/switch-cmd.o subversion/svn/unlock-cmd.o subversion/svn/update-cmd.o subversion/svn/util.o -svn_OBJECTS = add-cmd.o blame-cmd.o cat-cmd.o changelist-cmd.o checkout-cmd.o cleanup-cmd.o commit-cmd.o conflict-callbacks.o copy-cmd.o delete-cmd.o diff-cmd.o export-cmd.o help-cmd.o import-cmd.o info-cmd.o list-cmd.o lock-cmd.o log-cmd.o main.o merge-cmd.o mergeinfo-cmd.o mkdir-cmd.o move-cmd.o notify.o propdel-cmd.o propedit-cmd.o propget-cmd.o proplist-cmd.o props.o propset-cmd.o resolve-cmd.o resolved-cmd.o revert-cmd.o status-cmd.o status.o switch-cmd.o unlock-cmd.o update-cmd.o util.o -subversion/svn/svn$(EXEEXT): $(svn_DEPS) - cd subversion/svn && $(LINK) -o svn$(EXEEXT) $(svn_OBJECTS) -lsvn_client-1 -lsvn_wc-1 -lsvn_ra-1 -lsvn_delta-1 -lsvn_diff-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(NEON_LIBS) $(LIBS) - -svn_populate_node_origins_index_PATH = tools/server-side -svn_populate_node_origins_index_DEPS = tools/server-side/svn-populate-node-origins-index.o -svn_populate_node_origins_index_OBJECTS = svn-populate-node-origins-index.o -tools/server-side/svn-populate-node-origins-index$(EXEEXT): $(svn_populate_node_origins_index_DEPS) - cd tools/server-side && $(LINK) -o svn-populate-node-origins-index$(EXEEXT) $(svn_populate_node_origins_index_OBJECTS) -lsvn_repos-1 -lsvn_fs-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -svn_push_PATH = contrib/client-side/svn-push -svn_push_DEPS = contrib/client-side/svn-push/svn-push.o -svn_push_OBJECTS = svn-push.o -contrib/client-side/svn-push/svn-push$(EXEEXT): $(svn_push_DEPS) - cd contrib/client-side/svn-push && $(LINK) -o svn-push$(EXEEXT) $(svn_push_OBJECTS) -lsvn_ra-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(NEON_LIBS) $(LIBS) - -svnadmin_PATH = subversion/svnadmin -svnadmin_DEPS = subversion/svnadmin/main.o -svnadmin_OBJECTS = main.o -subversion/svnadmin/svnadmin$(EXEEXT): $(svnadmin_DEPS) - cd subversion/svnadmin && $(LINK) -o svnadmin$(EXEEXT) $(svnadmin_OBJECTS) -lsvn_repos-1 -lsvn_fs-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -svnauthz_validate_PATH = tools/server-side -svnauthz_validate_DEPS = tools/server-side/svnauthz-validate.o -svnauthz_validate_OBJECTS = svnauthz-validate.o -tools/server-side/svnauthz-validate$(EXEEXT): $(svnauthz_validate_DEPS) - cd tools/server-side && $(LINK) -o svnauthz-validate$(EXEEXT) $(svnauthz_validate_OBJECTS) -lsvn_repos-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(LIBS) - -svndiff_test_PATH = subversion/tests/libsvn_delta -svndiff_test_DEPS = subversion/tests/libsvn_delta/svndiff-test.o -svndiff_test_OBJECTS = svndiff-test.o -subversion/tests/libsvn_delta/svndiff-test$(EXEEXT): $(svndiff_test_DEPS) - cd subversion/tests/libsvn_delta && $(LINK) -o svndiff-test$(EXEEXT) $(svndiff_test_OBJECTS) -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -svndumpfilter_PATH = subversion/svndumpfilter -svndumpfilter_DEPS = subversion/svndumpfilter/main.o -svndumpfilter_OBJECTS = main.o -subversion/svndumpfilter/svndumpfilter$(EXEEXT): $(svndumpfilter_DEPS) - cd subversion/svndumpfilter && $(LINK) -o svndumpfilter$(EXEEXT) $(svndumpfilter_OBJECTS) -lsvn_repos-1 -lsvn_fs-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -svnlook_PATH = subversion/svnlook -svnlook_DEPS = subversion/svnlook/main.o -svnlook_OBJECTS = main.o -subversion/svnlook/svnlook$(EXEEXT): $(svnlook_DEPS) - cd subversion/svnlook && $(LINK) -o svnlook$(EXEEXT) $(svnlook_OBJECTS) -lsvn_repos-1 -lsvn_fs-1 -lsvn_delta-1 -lsvn_diff-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -svnmucc_PATH = contrib/client-side/svnmucc -svnmucc_DEPS = contrib/client-side/svnmucc/svnmucc.o -svnmucc_OBJECTS = svnmucc.o -contrib/client-side/svnmucc/svnmucc$(EXEEXT): $(svnmucc_DEPS) - cd contrib/client-side/svnmucc && $(LINK) -o svnmucc$(EXEEXT) $(svnmucc_OBJECTS) -lsvn_client-1 -lsvn_ra-1 -lsvn_subr-1 -lsvn_delta-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(NEON_LIBS) $(LIBS) - -svnserve_PATH = subversion/svnserve -svnserve_DEPS = subversion/svnserve/cyrus_auth.o subversion/svnserve/main.o subversion/svnserve/serve.o subversion/svnserve/winservice.o subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -svnserve_OBJECTS = cyrus_auth.o main.o serve.o winservice.o -subversion/svnserve/svnserve$(EXEEXT): $(svnserve_DEPS) - cd subversion/svnserve && $(LINK) -o svnserve$(EXEEXT) $(svnserve_OBJECTS) -lsvn_repos-1 -lsvn_fs-1 -lsvn_delta-1 -lsvn_subr-1 ../../subversion/libsvn_ra_svn/libsvn_ra_svn-1.la $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(SVN_SASL_LIBS) $(LIBS) - -svnsync_PATH = subversion/svnsync -svnsync_DEPS = subversion/svnsync/main.o -svnsync_OBJECTS = main.o -subversion/svnsync/svnsync$(EXEEXT): $(svnsync_DEPS) - cd subversion/svnsync && $(LINK) -o svnsync$(EXEEXT) $(svnsync_OBJECTS) -lsvn_ra-1 -lsvn_delta-1 -lsvn_subr-1 $(SVN_APR_LIBS) $(NEON_LIBS) $(LIBS) - -svnversion_PATH = subversion/svnversion -svnversion_DEPS = subversion/svnversion/main.o -svnversion_OBJECTS = main.o -subversion/svnversion/svnversion$(EXEEXT): $(svnversion_DEPS) - cd subversion/svnversion && $(LINK) -o svnversion$(EXEEXT) $(svnversion_OBJECTS) -lsvn_wc-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -target_test_PATH = subversion/tests/libsvn_subr -target_test_DEPS = subversion/tests/libsvn_subr/target-test.o -target_test_OBJECTS = target-test.o -subversion/tests/libsvn_subr/target-test$(EXEEXT): $(target_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o target-test$(EXEEXT) $(target_test_OBJECTS) -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -time_test_PATH = subversion/tests/libsvn_subr -time_test_DEPS = subversion/tests/libsvn_subr/time-test.o subversion/tests/libsvn_test-1.la -time_test_OBJECTS = time-test.o -subversion/tests/libsvn_subr/time-test$(EXEEXT): $(time_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o time-test$(EXEEXT) $(time_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -translate_test_PATH = subversion/tests/libsvn_subr -translate_test_DEPS = subversion/tests/libsvn_subr/translate-test.o subversion/tests/libsvn_test-1.la -translate_test_OBJECTS = translate-test.o -subversion/tests/libsvn_subr/translate-test$(EXEEXT): $(translate_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o translate-test$(EXEEXT) $(translate_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -utf_test_PATH = subversion/tests/libsvn_subr -utf_test_DEPS = subversion/tests/libsvn_subr/utf-test.o subversion/tests/libsvn_test-1.la -utf_test_OBJECTS = utf-test.o -subversion/tests/libsvn_subr/utf-test$(EXEEXT): $(utf_test_DEPS) - cd subversion/tests/libsvn_subr && $(LINK) -o utf-test$(EXEEXT) $(utf_test_OBJECTS) ../../../subversion/tests/libsvn_test-1.la -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - -vdelta_test_PATH = subversion/tests/libsvn_delta -vdelta_test_DEPS = subversion/tests/libsvn_delta/vdelta-test.o -vdelta_test_OBJECTS = vdelta-test.o -subversion/tests/libsvn_delta/vdelta-test$(EXEEXT): $(vdelta_test_DEPS) - cd subversion/tests/libsvn_delta && $(LINK) -o vdelta-test$(EXEEXT) $(vdelta_test_OBJECTS) -lsvn_delta-1 -lsvn_subr-1 $(SVN_APRUTIL_LIBS) $(SVN_APR_LIBS) $(LIBS) - - -######################################## -# Section 6: Install-Group build targets -######################################## - -apache-mod: subversion/mod_authz_svn/mod_authz_svn.la subversion/mod_dav_svn/mod_dav_svn.la - -bdb-lib: subversion/libsvn_fs_base/libsvn_fs_base-1.la - -bdb-test: subversion/tests/libsvn_fs_base/changes-test$(EXEEXT) subversion/tests/libsvn_fs_base/fs-base-test$(EXEEXT) subversion/tests/libsvn_fs_base/key-test$(EXEEXT) subversion/tests/libsvn_fs_base/skel-test$(EXEEXT) subversion/tests/libsvn_fs_base/strings-reps-test$(EXEEXT) - -bin: subversion/svn/svn$(EXEEXT) subversion/svnadmin/svnadmin$(EXEEXT) subversion/svndumpfilter/svndumpfilter$(EXEEXT) subversion/svnlook/svnlook$(EXEEXT) subversion/svnserve/svnserve$(EXEEXT) subversion/svnsync/svnsync$(EXEEXT) subversion/svnversion/svnversion$(EXEEXT) - -contrib: tools/diff/diff$(EXEEXT) tools/diff/diff3$(EXEEXT) tools/diff/diff4$(EXEEXT) contrib/client-side/svn-push/svn-push$(EXEEXT) tools/server-side/svnauthz-validate$(EXEEXT) - -fsmod-lib: subversion/libsvn_delta/libsvn_delta-1.la subversion/libsvn_fs_fs/libsvn_fs_fs-1.la subversion/libsvn_fs_util/libsvn_fs_util-1.la subversion/libsvn_subr/libsvn_subr-1.la - -javahl-java: - -javahl-javah: - -javahl-lib: subversion/bindings/javahl/native/libsvnjavahl-1.la - -javahl-tests: - -lib: subversion/libsvn_client/libsvn_client-1.la subversion/libsvn_diff/libsvn_diff-1.la subversion/libsvn_ra/libsvn_ra-1.la subversion/libsvn_wc/libsvn_wc-1.la - -locale: - -neon-lib: subversion/libsvn_ra_neon/libsvn_ra_neon-1.la - -ramod-lib: subversion/libsvn_fs/libsvn_fs-1.la subversion/libsvn_ra_local/libsvn_ra_local-1.la subversion/libsvn_ra_svn/libsvn_ra_svn-1.la subversion/libsvn_repos/libsvn_repos-1.la - -serf-lib: subversion/libsvn_ra_serf/libsvn_ra_serf-1.la - -swig-pl-lib: subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la - -swig-py: subversion/bindings/swig/python/_client.la subversion/bindings/swig/python/_core.la subversion/bindings/swig/python/_delta.la subversion/bindings/swig/python/_diff.la subversion/bindings/swig/python/_fs.la subversion/bindings/swig/python/_ra.la subversion/bindings/swig/python/_repos.la subversion/bindings/swig/python/_wc.la - -swig-py-lib: subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la - -swig-rb: subversion/bindings/swig/ruby/client.la subversion/bindings/swig/ruby/core.la subversion/bindings/swig/ruby/delta.la subversion/bindings/swig/ruby/diff.la subversion/bindings/swig/ruby/fs.la subversion/bindings/swig/ruby/ra.la subversion/bindings/swig/ruby/repos.la subversion/bindings/swig/ruby/wc.la - -swig-rb-lib: subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la - -test: subversion/tests/libsvn_client/client-test$(EXEEXT) subversion/tests/libsvn_subr/compat-test$(EXEEXT) subversion/tests/libsvn_subr/config-test$(EXEEXT) subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT) subversion/tests/libsvn_subr/error-test$(EXEEXT) subversion/tests/libsvn_fs/fs-test$(EXEEXT) subversion/tests/libsvn_subr/hashdump-test$(EXEEXT) subversion/tests/libsvn_test-1.la subversion/tests/libsvn_fs/locks-test$(EXEEXT) subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT) subversion/tests/libsvn_subr/opt-test$(EXEEXT) subversion/tests/libsvn_subr/path-test$(EXEEXT) subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT) subversion/tests/libsvn_delta/random-test$(EXEEXT) subversion/tests/libsvn_repos/repos-test$(EXEEXT) subversion/tests/libsvn_subr/revision-test$(EXEEXT) subversion/tests/libsvn_subr/stream-test$(EXEEXT) subversion/tests/libsvn_subr/string-test$(EXEEXT) subversion/tests/libsvn_delta/svndiff-test$(EXEEXT) subversion/tests/libsvn_subr/target-test$(EXEEXT) subversion/tests/libsvn_subr/time-test$(EXEEXT) subversion/tests/libsvn_subr/translate-test$(EXEEXT) subversion/tests/libsvn_subr/utf-test$(EXEEXT) subversion/tests/libsvn_delta/vdelta-test$(EXEEXT) - -tools: tools/server-side/svn-populate-node-origins-index$(EXEEXT) contrib/client-side/svnmucc/svnmucc$(EXEEXT) - - -######################################## -# Section 7: Install-Group install targets -######################################## - -install-mods-shared: subversion/mod_dav_svn/mod_dav_svn.la subversion/mod_authz_svn/mod_authz_svn.la - cd subversion/mod_dav_svn ; $(MKDIR) "$(APACHE_LIBEXECDIR)" ; $(INSTALL_MOD_SHARED) -n dav_svn mod_dav_svn.la - cd subversion/mod_authz_svn ; $(MKDIR) "$(APACHE_LIBEXECDIR)" ; $(INSTALL_MOD_SHARED) -n authz_svn mod_authz_svn.la - -install-mods-static: subversion/libsvn_delta/libsvn_delta-1.la-a subversion/libsvn_fs/libsvn_fs-1.la-a subversion/libsvn_repos/libsvn_repos-1.la-a subversion/libsvn_subr/libsvn_subr-1.la-a subversion/mod_authz_svn/mod_authz_svn.la-a subversion/mod_dav_svn/mod_dav_svn.la-a subversion/mod_dav_svn/static/Makefile.in subversion/mod_dav_svn/static/config.m4 - $(MKDIR) $(DESTDIR)$(APACHE_TARGET)/.libs - $(INSTALL_MOD_STATIC) subversion/libsvn_delta/.libs/libsvn_delta-1.a $(DESTDIR)$(APACHE_TARGET)/.libs/libsvn_delta-1.a - $(INSTALL_MOD_STATIC) subversion/libsvn_delta/libsvn_delta-1.la-a $(DESTDIR)$(APACHE_TARGET)/libsvn_delta-1.la - $(INSTALL_MOD_STATIC) subversion/libsvn_fs/.libs/libsvn_fs-1.a $(DESTDIR)$(APACHE_TARGET)/.libs/libsvn_fs-1.a - $(INSTALL_MOD_STATIC) subversion/libsvn_fs/libsvn_fs-1.la-a $(DESTDIR)$(APACHE_TARGET)/libsvn_fs-1.la - $(INSTALL_MOD_STATIC) subversion/libsvn_repos/.libs/libsvn_repos-1.a $(DESTDIR)$(APACHE_TARGET)/.libs/libsvn_repos-1.a - $(INSTALL_MOD_STATIC) subversion/libsvn_repos/libsvn_repos-1.la-a $(DESTDIR)$(APACHE_TARGET)/libsvn_repos-1.la - $(INSTALL_MOD_STATIC) subversion/libsvn_subr/.libs/libsvn_subr-1.a $(DESTDIR)$(APACHE_TARGET)/.libs/libsvn_subr-1.a - $(INSTALL_MOD_STATIC) subversion/libsvn_subr/libsvn_subr-1.la-a $(DESTDIR)$(APACHE_TARGET)/libsvn_subr-1.la - $(INSTALL_MOD_STATIC) subversion/mod_authz_svn/.libs/mod_authz_svn.a $(DESTDIR)$(APACHE_TARGET)/.libs/mod_authz_svn.a - $(INSTALL_MOD_STATIC) subversion/mod_authz_svn/mod_authz_svn.la-a $(DESTDIR)$(APACHE_TARGET)/mod_authz_svn.la - $(INSTALL_MOD_STATIC) subversion/mod_dav_svn/.libs/mod_dav_svn.a $(DESTDIR)$(APACHE_TARGET)/.libs/mod_dav_svn.a - $(INSTALL_MOD_STATIC) subversion/mod_dav_svn/mod_dav_svn.la-a $(DESTDIR)$(APACHE_TARGET)/mod_dav_svn.la - $(INSTALL_MOD_STATIC) subversion/mod_dav_svn/static/Makefile.in $(DESTDIR)$(APACHE_TARGET)/Makefile.in - $(INSTALL_MOD_STATIC) subversion/mod_dav_svn/static/config.m4 $(DESTDIR)$(APACHE_TARGET)/config.m4 - -install-bdb-lib: subversion/libsvn_fs_base/libsvn_fs_base-1.la - $(MKDIR) $(DESTDIR)$(bdb_libdir) - cd subversion/libsvn_fs_base ; $(INSTALL_BDB_LIB) libsvn_fs_base-1.la $(DESTDIR)$(bdb_libdir)/libsvn_fs_base-1.la - -install-bin: subversion/svn/svn$(EXEEXT) subversion/svnadmin/svnadmin$(EXEEXT) subversion/svndumpfilter/svndumpfilter$(EXEEXT) subversion/svnlook/svnlook$(EXEEXT) subversion/svnserve/svnserve$(EXEEXT) subversion/svnsync/svnsync$(EXEEXT) subversion/svnversion/svnversion$(EXEEXT) - $(MKDIR) $(DESTDIR)$(bindir) - cd subversion/svn ; $(INSTALL_BIN) svn$(EXEEXT) $(DESTDIR)$(bindir)/svn$(EXEEXT) - cd subversion/svnadmin ; $(INSTALL_BIN) svnadmin$(EXEEXT) $(DESTDIR)$(bindir)/svnadmin$(EXEEXT) - cd subversion/svndumpfilter ; $(INSTALL_BIN) svndumpfilter$(EXEEXT) $(DESTDIR)$(bindir)/svndumpfilter$(EXEEXT) - cd subversion/svnlook ; $(INSTALL_BIN) svnlook$(EXEEXT) $(DESTDIR)$(bindir)/svnlook$(EXEEXT) - cd subversion/svnserve ; $(INSTALL_BIN) svnserve$(EXEEXT) $(DESTDIR)$(bindir)/svnserve$(EXEEXT) - cd subversion/svnsync ; $(INSTALL_BIN) svnsync$(EXEEXT) $(DESTDIR)$(bindir)/svnsync$(EXEEXT) - cd subversion/svnversion ; $(INSTALL_BIN) svnversion$(EXEEXT) $(DESTDIR)$(bindir)/svnversion$(EXEEXT) - -install-contrib: tools/diff/diff$(EXEEXT) tools/diff/diff3$(EXEEXT) tools/diff/diff4$(EXEEXT) contrib/client-side/svn-push/svn-push$(EXEEXT) tools/server-side/svnauthz-validate$(EXEEXT) - $(MKDIR) $(DESTDIR)$(contribdir) - cd tools/diff ; $(INSTALL_CONTRIB) diff$(EXEEXT) $(DESTDIR)$(contribdir)/diff$(EXEEXT) - cd tools/diff ; $(INSTALL_CONTRIB) diff3$(EXEEXT) $(DESTDIR)$(contribdir)/diff3$(EXEEXT) - cd tools/diff ; $(INSTALL_CONTRIB) diff4$(EXEEXT) $(DESTDIR)$(contribdir)/diff4$(EXEEXT) - cd contrib/client-side/svn-push ; $(INSTALL_CONTRIB) svn-push$(EXEEXT) $(DESTDIR)$(contribdir)/svn-push$(EXEEXT) - cd tools/server-side ; $(INSTALL_CONTRIB) svnauthz-validate$(EXEEXT) $(DESTDIR)$(contribdir)/svnauthz-validate$(EXEEXT) - -install-fsmod-lib: subversion/libsvn_subr/libsvn_subr-1.la subversion/libsvn_delta/libsvn_delta-1.la subversion/libsvn_fs_util/libsvn_fs_util-1.la subversion/libsvn_fs_fs/libsvn_fs_fs-1.la - $(MKDIR) $(DESTDIR)$(fsmod_libdir) - cd subversion/libsvn_subr ; $(INSTALL_FSMOD_LIB) libsvn_subr-1.la $(DESTDIR)$(fsmod_libdir)/libsvn_subr-1.la - cd subversion/libsvn_delta ; $(INSTALL_FSMOD_LIB) libsvn_delta-1.la $(DESTDIR)$(fsmod_libdir)/libsvn_delta-1.la - cd subversion/libsvn_fs_util ; $(INSTALL_FSMOD_LIB) libsvn_fs_util-1.la $(DESTDIR)$(fsmod_libdir)/libsvn_fs_util-1.la - cd subversion/libsvn_fs_fs ; $(INSTALL_FSMOD_LIB) libsvn_fs_fs-1.la $(DESTDIR)$(fsmod_libdir)/libsvn_fs_fs-1.la - -install-javahl-java: - $(MKDIR) $(DESTDIR)$(javahl_javadir) - $(INSTALL_EXTRA_JAVAHL_JAVA) - -install-javahl-javah: - $(MKDIR) $(DESTDIR)$(javahl_javahdir) - $(INSTALL_EXTRA_JAVAHL_JAVAH) - -install-javahl-lib: subversion/bindings/javahl/native/libsvnjavahl-1.la - $(MKDIR) $(DESTDIR)$(javahl_libdir) - cd subversion/bindings/javahl/native ; $(INSTALL_JAVAHL_LIB) libsvnjavahl-1.la $(DESTDIR)$(javahl_libdir)/libsvnjavahl-1.la - $(INSTALL_EXTRA_JAVAHL_LIB) - -install-javahl-tests: - $(MKDIR) $(DESTDIR)$(javahl_testsdir) - $(INSTALL_EXTRA_JAVAHL_TESTS) - -install-lib: subversion/libsvn_diff/libsvn_diff-1.la subversion/libsvn_ra/libsvn_ra-1.la subversion/libsvn_wc/libsvn_wc-1.la subversion/libsvn_client/libsvn_client-1.la - $(MKDIR) $(DESTDIR)$(libdir) - cd subversion/libsvn_diff ; $(INSTALL_LIB) libsvn_diff-1.la $(DESTDIR)$(libdir)/libsvn_diff-1.la - cd subversion/libsvn_ra ; $(INSTALL_LIB) libsvn_ra-1.la $(DESTDIR)$(libdir)/libsvn_ra-1.la - cd subversion/libsvn_wc ; $(INSTALL_LIB) libsvn_wc-1.la $(DESTDIR)$(libdir)/libsvn_wc-1.la - cd subversion/libsvn_client ; $(INSTALL_LIB) libsvn_client-1.la $(DESTDIR)$(libdir)/libsvn_client-1.la - -install-locale: subversion/po/de.mo subversion/po/es.mo subversion/po/fr.mo subversion/po/it.mo subversion/po/ja.mo subversion/po/ko.mo subversion/po/nb.mo subversion/po/pl.mo subversion/po/pt_BR.mo subversion/po/sv.mo subversion/po/zh_CN.mo subversion/po/zh_TW.mo - $(MKDIR) $(DESTDIR)$(localedir) - $(MKDIR) $(DESTDIR)$(localedir)/de/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) de.mo $(DESTDIR)$(localedir)/de/LC_MESSAGES/$(PACKAGE_NAME).mo - $(MKDIR) $(DESTDIR)$(localedir)/es/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) es.mo $(DESTDIR)$(localedir)/es/LC_MESSAGES/$(PACKAGE_NAME).mo - $(MKDIR) $(DESTDIR)$(localedir)/fr/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) fr.mo $(DESTDIR)$(localedir)/fr/LC_MESSAGES/$(PACKAGE_NAME).mo - $(MKDIR) $(DESTDIR)$(localedir)/it/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) it.mo $(DESTDIR)$(localedir)/it/LC_MESSAGES/$(PACKAGE_NAME).mo - $(MKDIR) $(DESTDIR)$(localedir)/ja/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) ja.mo $(DESTDIR)$(localedir)/ja/LC_MESSAGES/$(PACKAGE_NAME).mo - $(MKDIR) $(DESTDIR)$(localedir)/ko/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) ko.mo $(DESTDIR)$(localedir)/ko/LC_MESSAGES/$(PACKAGE_NAME).mo - $(MKDIR) $(DESTDIR)$(localedir)/nb/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) nb.mo $(DESTDIR)$(localedir)/nb/LC_MESSAGES/$(PACKAGE_NAME).mo - $(MKDIR) $(DESTDIR)$(localedir)/pl/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) pl.mo $(DESTDIR)$(localedir)/pl/LC_MESSAGES/$(PACKAGE_NAME).mo - $(MKDIR) $(DESTDIR)$(localedir)/pt_BR/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) pt_BR.mo $(DESTDIR)$(localedir)/pt_BR/LC_MESSAGES/$(PACKAGE_NAME).mo - $(MKDIR) $(DESTDIR)$(localedir)/sv/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) sv.mo $(DESTDIR)$(localedir)/sv/LC_MESSAGES/$(PACKAGE_NAME).mo - $(MKDIR) $(DESTDIR)$(localedir)/zh_CN/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) zh_CN.mo $(DESTDIR)$(localedir)/zh_CN/LC_MESSAGES/$(PACKAGE_NAME).mo - $(MKDIR) $(DESTDIR)$(localedir)/zh_TW/LC_MESSAGES - cd subversion/po ; $(INSTALL_LOCALE) zh_TW.mo $(DESTDIR)$(localedir)/zh_TW/LC_MESSAGES/$(PACKAGE_NAME).mo - -install-neon-lib: subversion/libsvn_ra_neon/libsvn_ra_neon-1.la - $(MKDIR) $(DESTDIR)$(neon_libdir) - cd subversion/libsvn_ra_neon ; $(INSTALL_NEON_LIB) libsvn_ra_neon-1.la $(DESTDIR)$(neon_libdir)/libsvn_ra_neon-1.la - -install-ramod-lib: subversion/libsvn_fs/libsvn_fs-1.la subversion/libsvn_ra_svn/libsvn_ra_svn-1.la subversion/libsvn_repos/libsvn_repos-1.la subversion/libsvn_ra_local/libsvn_ra_local-1.la - $(MKDIR) $(DESTDIR)$(ramod_libdir) - cd subversion/libsvn_fs ; $(INSTALL_RAMOD_LIB) libsvn_fs-1.la $(DESTDIR)$(ramod_libdir)/libsvn_fs-1.la - cd subversion/libsvn_ra_svn ; $(INSTALL_RAMOD_LIB) libsvn_ra_svn-1.la $(DESTDIR)$(ramod_libdir)/libsvn_ra_svn-1.la - cd subversion/libsvn_repos ; $(INSTALL_RAMOD_LIB) libsvn_repos-1.la $(DESTDIR)$(ramod_libdir)/libsvn_repos-1.la - cd subversion/libsvn_ra_local ; $(INSTALL_RAMOD_LIB) libsvn_ra_local-1.la $(DESTDIR)$(ramod_libdir)/libsvn_ra_local-1.la - -install-serf-lib: subversion/libsvn_ra_serf/libsvn_ra_serf-1.la - $(MKDIR) $(DESTDIR)$(serf_libdir) - cd subversion/libsvn_ra_serf ; $(INSTALL_SERF_LIB) libsvn_ra_serf-1.la $(DESTDIR)$(serf_libdir)/libsvn_ra_serf-1.la - -install-swig-pl-lib: subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la - $(MKDIR) $(DESTDIR)$(swig_pl_libdir) - cd subversion/bindings/swig/perl/libsvn_swig_perl ; $(INSTALL_SWIG_PL_LIB) libsvn_swig_perl-1.la $(DESTDIR)$(swig_pl_libdir)/libsvn_swig_perl-1.la - -install-swig-py: subversion/bindings/swig/python/_core.la subversion/bindings/swig/python/_client.la subversion/bindings/swig/python/_delta.la subversion/bindings/swig/python/_diff.la subversion/bindings/swig/python/_fs.la subversion/bindings/swig/python/_ra.la subversion/bindings/swig/python/_repos.la subversion/bindings/swig/python/_wc.la - $(MKDIR) $(DESTDIR)$(swig_pydir) - cd subversion/bindings/swig/python ; $(INSTALL_SWIG_PY) _core.la $(DESTDIR)$(swig_pydir)/_core.la - cd subversion/bindings/swig/python ; $(INSTALL_SWIG_PY) _client.la $(DESTDIR)$(swig_pydir)/_client.la - cd subversion/bindings/swig/python ; $(INSTALL_SWIG_PY) _delta.la $(DESTDIR)$(swig_pydir)/_delta.la - cd subversion/bindings/swig/python ; $(INSTALL_SWIG_PY) _diff.la $(DESTDIR)$(swig_pydir)/_diff.la - cd subversion/bindings/swig/python ; $(INSTALL_SWIG_PY) _fs.la $(DESTDIR)$(swig_pydir)/_fs.la - cd subversion/bindings/swig/python ; $(INSTALL_SWIG_PY) _ra.la $(DESTDIR)$(swig_pydir)/_ra.la - cd subversion/bindings/swig/python ; $(INSTALL_SWIG_PY) _repos.la $(DESTDIR)$(swig_pydir)/_repos.la - cd subversion/bindings/swig/python ; $(INSTALL_SWIG_PY) _wc.la $(DESTDIR)$(swig_pydir)/_wc.la - $(INSTALL_EXTRA_SWIG_PY) - -install-swig-py-lib: subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la - $(MKDIR) $(DESTDIR)$(swig_py_libdir) - cd subversion/bindings/swig/python/libsvn_swig_py ; $(INSTALL_SWIG_PY_LIB) libsvn_swig_py-1.la $(DESTDIR)$(swig_py_libdir)/libsvn_swig_py-1.la - -install-swig-rb: subversion/bindings/swig/ruby/core.la subversion/bindings/swig/ruby/client.la subversion/bindings/swig/ruby/delta.la subversion/bindings/swig/ruby/diff.la subversion/bindings/swig/ruby/fs.la subversion/bindings/swig/ruby/ra.la subversion/bindings/swig/ruby/repos.la subversion/bindings/swig/ruby/wc.la - $(MKDIR) $(DESTDIR)$(swig_rbdir) - cd subversion/bindings/swig/ruby ; $(INSTALL_SWIG_RB) core.la $(DESTDIR)$(swig_rbdir)/core.la - cd subversion/bindings/swig/ruby ; $(INSTALL_SWIG_RB) client.la $(DESTDIR)$(swig_rbdir)/client.la - cd subversion/bindings/swig/ruby ; $(INSTALL_SWIG_RB) delta.la $(DESTDIR)$(swig_rbdir)/delta.la - cd subversion/bindings/swig/ruby ; $(INSTALL_SWIG_RB) diff.la $(DESTDIR)$(swig_rbdir)/diff.la - cd subversion/bindings/swig/ruby ; $(INSTALL_SWIG_RB) fs.la $(DESTDIR)$(swig_rbdir)/fs.la - cd subversion/bindings/swig/ruby ; $(INSTALL_SWIG_RB) ra.la $(DESTDIR)$(swig_rbdir)/ra.la - cd subversion/bindings/swig/ruby ; $(INSTALL_SWIG_RB) repos.la $(DESTDIR)$(swig_rbdir)/repos.la - cd subversion/bindings/swig/ruby ; $(INSTALL_SWIG_RB) wc.la $(DESTDIR)$(swig_rbdir)/wc.la - $(INSTALL_EXTRA_SWIG_RB) - -install-swig-rb-lib: subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la - $(MKDIR) $(DESTDIR)$(swig_rb_libdir) - cd subversion/bindings/swig/ruby/libsvn_swig_ruby ; $(INSTALL_SWIG_RB_LIB) libsvn_swig_ruby-1.la $(DESTDIR)$(swig_rb_libdir)/libsvn_swig_ruby-1.la - -install-tools: tools/server-side/svn-populate-node-origins-index$(EXEEXT) contrib/client-side/svnmucc/svnmucc$(EXEEXT) - $(MKDIR) $(DESTDIR)$(toolsdir) - cd tools/server-side ; $(INSTALL_TOOLS) svn-populate-node-origins-index$(EXEEXT) $(DESTDIR)$(toolsdir)/svn-populate-node-origins-index$(EXEEXT) - cd contrib/client-side/svnmucc ; $(INSTALL_TOOLS) svnmucc$(EXEEXT) $(DESTDIR)$(toolsdir)/svnmucc$(EXEEXT) - - -######################################## -# Section 8: The install-include rule -######################################## - -install-include: subversion/include/svn_ra.h subversion/include/svn_path.h subversion/include/svn_string.h subversion/include/svn_wc.h subversion/include/svn_cmdline.h subversion/include/mod_authz_svn.h subversion/include/svn_types.h subversion/include/svn_auth.h subversion/include/svn_compat.h subversion/include/svn_subst.h subversion/include/svn_ctype.h subversion/include/svn_quoprint.h subversion/include/svn_pools.h subversion/include/mod_dav_svn.h subversion/include/svn_md5.h subversion/include/svn_base64.h subversion/include/svn_client.h subversion/include/svn_iter.h subversion/include/svn_utf.h subversion/include/svn_error_codes.h subversion/include/svn_opt.h subversion/include/svn_user.h subversion/include/svn_ra_svn.h subversion/include/svn_nls.h subversion/include/svn_fs.h subversion/include/svn_xml.h subversion/include/svn_sorts.h subversion/include/svn_delta.h subversion/include/svn_hash.h subversion/include/svn_props.h subversion/include/svn_config.h subversion/include/svn_diff.h subversion/include/svn_version.h subversion/include/svn_io.h subversion/include/svn_dso.h subversion/include/svn_mergeinfo.h subversion/include/svn_time.h subversion/include/svn_repos.h subversion/include/svn_dav.h subversion/include/svn_error.h - $(MKDIR) $(DESTDIR)$(includedir)/subversion-1 - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_ra.h $(DESTDIR)$(includedir)/subversion-1/svn_ra.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_path.h $(DESTDIR)$(includedir)/subversion-1/svn_path.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_string.h $(DESTDIR)$(includedir)/subversion-1/svn_string.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_wc.h $(DESTDIR)$(includedir)/subversion-1/svn_wc.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_cmdline.h $(DESTDIR)$(includedir)/subversion-1/svn_cmdline.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/mod_authz_svn.h $(DESTDIR)$(includedir)/subversion-1/mod_authz_svn.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_types.h $(DESTDIR)$(includedir)/subversion-1/svn_types.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_auth.h $(DESTDIR)$(includedir)/subversion-1/svn_auth.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_compat.h $(DESTDIR)$(includedir)/subversion-1/svn_compat.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_subst.h $(DESTDIR)$(includedir)/subversion-1/svn_subst.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_ctype.h $(DESTDIR)$(includedir)/subversion-1/svn_ctype.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_quoprint.h $(DESTDIR)$(includedir)/subversion-1/svn_quoprint.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_pools.h $(DESTDIR)$(includedir)/subversion-1/svn_pools.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/mod_dav_svn.h $(DESTDIR)$(includedir)/subversion-1/mod_dav_svn.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_md5.h $(DESTDIR)$(includedir)/subversion-1/svn_md5.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_base64.h $(DESTDIR)$(includedir)/subversion-1/svn_base64.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_client.h $(DESTDIR)$(includedir)/subversion-1/svn_client.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_iter.h $(DESTDIR)$(includedir)/subversion-1/svn_iter.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_utf.h $(DESTDIR)$(includedir)/subversion-1/svn_utf.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_error_codes.h $(DESTDIR)$(includedir)/subversion-1/svn_error_codes.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_opt.h $(DESTDIR)$(includedir)/subversion-1/svn_opt.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_user.h $(DESTDIR)$(includedir)/subversion-1/svn_user.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_ra_svn.h $(DESTDIR)$(includedir)/subversion-1/svn_ra_svn.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_nls.h $(DESTDIR)$(includedir)/subversion-1/svn_nls.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_fs.h $(DESTDIR)$(includedir)/subversion-1/svn_fs.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_xml.h $(DESTDIR)$(includedir)/subversion-1/svn_xml.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_sorts.h $(DESTDIR)$(includedir)/subversion-1/svn_sorts.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_delta.h $(DESTDIR)$(includedir)/subversion-1/svn_delta.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_hash.h $(DESTDIR)$(includedir)/subversion-1/svn_hash.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_props.h $(DESTDIR)$(includedir)/subversion-1/svn_props.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_config.h $(DESTDIR)$(includedir)/subversion-1/svn_config.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_diff.h $(DESTDIR)$(includedir)/subversion-1/svn_diff.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_version.h $(DESTDIR)$(includedir)/subversion-1/svn_version.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_io.h $(DESTDIR)$(includedir)/subversion-1/svn_io.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_dso.h $(DESTDIR)$(includedir)/subversion-1/svn_dso.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_mergeinfo.h $(DESTDIR)$(includedir)/subversion-1/svn_mergeinfo.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_time.h $(DESTDIR)$(includedir)/subversion-1/svn_time.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_repos.h $(DESTDIR)$(includedir)/subversion-1/svn_repos.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_dav.h $(DESTDIR)$(includedir)/subversion-1/svn_dav.h - $(INSTALL_INCLUDE) $(abs_srcdir)/subversion/include/svn_error.h $(DESTDIR)$(includedir)/subversion-1/svn_error.h - -######################################## -# Section 9: Shortcut targets for manual builds of specific items -######################################## - -changes-test: subversion/tests/libsvn_fs_base/changes-test$(EXEEXT) -client-test: subversion/tests/libsvn_client/client-test$(EXEEXT) -compat-test: subversion/tests/libsvn_subr/compat-test$(EXEEXT) -config-test: subversion/tests/libsvn_subr/config-test$(EXEEXT) -diff: tools/diff/diff$(EXEEXT) -diff-diff3-test: subversion/tests/libsvn_diff/diff-diff3-test$(EXEEXT) -diff3: tools/diff/diff3$(EXEEXT) -diff4: tools/diff/diff4$(EXEEXT) -error-test: subversion/tests/libsvn_subr/error-test$(EXEEXT) -fs-base-test: subversion/tests/libsvn_fs_base/fs-base-test$(EXEEXT) -fs-test: subversion/tests/libsvn_fs/fs-test$(EXEEXT) -hashdump-test: subversion/tests/libsvn_subr/hashdump-test$(EXEEXT) -key-test: subversion/tests/libsvn_fs_base/key-test$(EXEEXT) -libsvn_client: subversion/libsvn_client/libsvn_client-1.la -libsvn_delta: subversion/libsvn_delta/libsvn_delta-1.la -libsvn_diff: subversion/libsvn_diff/libsvn_diff-1.la -libsvn_fs: subversion/libsvn_fs/libsvn_fs-1.la -libsvn_fs_base: subversion/libsvn_fs_base/libsvn_fs_base-1.la -libsvn_fs_fs: subversion/libsvn_fs_fs/libsvn_fs_fs-1.la -libsvn_fs_util: subversion/libsvn_fs_util/libsvn_fs_util-1.la -libsvn_ra: subversion/libsvn_ra/libsvn_ra-1.la -libsvn_ra_local: subversion/libsvn_ra_local/libsvn_ra_local-1.la -libsvn_ra_neon: subversion/libsvn_ra_neon/libsvn_ra_neon-1.la -libsvn_ra_serf: subversion/libsvn_ra_serf/libsvn_ra_serf-1.la -libsvn_ra_svn: subversion/libsvn_ra_svn/libsvn_ra_svn-1.la -libsvn_repos: subversion/libsvn_repos/libsvn_repos-1.la -libsvn_subr: subversion/libsvn_subr/libsvn_subr-1.la -libsvn_swig_perl: subversion/bindings/swig/perl/libsvn_swig_perl/libsvn_swig_perl-1.la -libsvn_swig_py: subversion/bindings/swig/python/libsvn_swig_py/libsvn_swig_py-1.la -libsvn_swig_ruby: subversion/bindings/swig/ruby/libsvn_swig_ruby/libsvn_swig_ruby-1.la -libsvn_test: subversion/tests/libsvn_test-1.la -libsvn_wc: subversion/libsvn_wc/libsvn_wc-1.la -libsvnjavahl: subversion/bindings/javahl/native/libsvnjavahl-1.la -locks-test: subversion/tests/libsvn_fs/locks-test$(EXEEXT) -mergeinfo-test: subversion/tests/libsvn_subr/mergeinfo-test$(EXEEXT) -mod_authz_svn: subversion/mod_authz_svn/mod_authz_svn.la -mod_dav_svn: subversion/mod_dav_svn/mod_dav_svn.la -opt-test: subversion/tests/libsvn_subr/opt-test$(EXEEXT) -path-test: subversion/tests/libsvn_subr/path-test$(EXEEXT) -perl_client: subversion/bindings/swig/perl/native/_Client.la -perl_core: subversion/bindings/swig/perl/native/_Core.la -perl_delta: subversion/bindings/swig/perl/native/_Delta.la -perl_diff: subversion/bindings/swig/perl/native/_Diff.la -perl_fs: subversion/bindings/swig/perl/native/_Fs.la -perl_ra: subversion/bindings/swig/perl/native/_Ra.la -perl_repos: subversion/bindings/swig/perl/native/_Repos.la -perl_wc: subversion/bindings/swig/perl/native/_Wc.la -python_client: subversion/bindings/swig/python/_client.la -python_core: subversion/bindings/swig/python/_core.la -python_delta: subversion/bindings/swig/python/_delta.la -python_diff: subversion/bindings/swig/python/_diff.la -python_fs: subversion/bindings/swig/python/_fs.la -python_ra: subversion/bindings/swig/python/_ra.la -python_repos: subversion/bindings/swig/python/_repos.la -python_wc: subversion/bindings/swig/python/_wc.la -ra-local-test: subversion/tests/libsvn_ra_local/ra-local-test$(EXEEXT) -random-test: subversion/tests/libsvn_delta/random-test$(EXEEXT) -repos-test: subversion/tests/libsvn_repos/repos-test$(EXEEXT) -revision-test: subversion/tests/libsvn_subr/revision-test$(EXEEXT) -ruby_client: subversion/bindings/swig/ruby/client.la -ruby_core: subversion/bindings/swig/ruby/core.la -ruby_delta: subversion/bindings/swig/ruby/delta.la -ruby_diff: subversion/bindings/swig/ruby/diff.la -ruby_fs: subversion/bindings/swig/ruby/fs.la -ruby_ra: subversion/bindings/swig/ruby/ra.la -ruby_repos: subversion/bindings/swig/ruby/repos.la -ruby_wc: subversion/bindings/swig/ruby/wc.la -skel-test: subversion/tests/libsvn_fs_base/skel-test$(EXEEXT) -stream-test: subversion/tests/libsvn_subr/stream-test$(EXEEXT) -string-test: subversion/tests/libsvn_subr/string-test$(EXEEXT) -strings-reps-test: subversion/tests/libsvn_fs_base/strings-reps-test$(EXEEXT) -svn: subversion/svn/svn$(EXEEXT) -svn-populate-node-origins-index: tools/server-side/svn-populate-node-origins-index$(EXEEXT) -svn-push: contrib/client-side/svn-push/svn-push$(EXEEXT) -svnadmin: subversion/svnadmin/svnadmin$(EXEEXT) -svnauthz-validate: tools/server-side/svnauthz-validate$(EXEEXT) -svndiff-test: subversion/tests/libsvn_delta/svndiff-test$(EXEEXT) -svndumpfilter: subversion/svndumpfilter/svndumpfilter$(EXEEXT) -svnlook: subversion/svnlook/svnlook$(EXEEXT) -svnmucc: contrib/client-side/svnmucc/svnmucc$(EXEEXT) -svnserve: subversion/svnserve/svnserve$(EXEEXT) -svnsync: subversion/svnsync/svnsync$(EXEEXT) -svnversion: subversion/svnversion/svnversion$(EXEEXT) -target-test: subversion/tests/libsvn_subr/target-test$(EXEEXT) -time-test: subversion/tests/libsvn_subr/time-test$(EXEEXT) -translate-test: subversion/tests/libsvn_subr/translate-test$(EXEEXT) -utf-test: subversion/tests/libsvn_subr/utf-test$(EXEEXT) -vdelta-test: subversion/tests/libsvn_delta/vdelta-test$(EXEEXT) - -######################################## -# Section 10: Rules to build all other kinds of object-like files -######################################## - -contrib/client-side/svn-push/svn-push.o: contrib/client-side/svn-push/svn-push.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h - -contrib/client-side/svnmucc/svnmucc.o: contrib/client-side/svnmucc/svnmucc.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BasicTests.class: subversion/bindings/javahl/tests/org/tigris/subversion/javahl/BasicTests.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallback.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/BlameCallback.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallback2.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/BlameCallback2.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallbackImpl.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/BlameCallbackImpl.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ChangePath.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ChangePath.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ChangelistCallback.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ChangelistCallback.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ClientException.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ClientException.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitItem.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/CommitItem.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitItemStateFlags.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/CommitItemStateFlags.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitMessage.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/CommitMessage.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictDescriptor.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ConflictDescriptor.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictResolverCallback.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ConflictResolverCallback.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictResult.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ConflictResult.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CopySource.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/CopySource.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Depth.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/Depth.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DiffSummary.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/DiffSummary.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DiffSummaryReceiver.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/DiffSummaryReceiver.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DirEntry.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/DirEntry.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ErrorCodes.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ErrorCodes.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Info.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/Info.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Info2.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/Info2.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/InfoCallback.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/InfoCallback.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/InputInterface.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/InputInterface.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/JNIError.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/JNIError.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ListCallback.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ListCallback.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Lock.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/Lock.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LockStatus.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/LockStatus.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogDate.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/LogDate.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogMessage.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/LogMessage.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogMessageCallback.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/LogMessageCallback.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Mergeinfo.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/Mergeinfo.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/MergeinfoLogKind.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/MergeinfoLogKind.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NativeException.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/NativeException.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NativeResources.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/NativeResources.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NodeKind.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/NodeKind.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Notify.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/Notify.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Notify2.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/Notify2.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyAction.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/NotifyAction.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyInformation.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/NotifyInformation.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyStatus.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/NotifyStatus.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/OutputInterface.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/OutputInterface.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Path.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/Path.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProgressEvent.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ProgressEvent.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProgressListener.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ProgressListener.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/PromptUserPassword.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword2.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/PromptUserPassword2.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword3.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/PromptUserPassword3.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PropertyData.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/PropertyData.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProplistCallback.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ProplistCallback.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProplistCallbackImpl.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ProplistCallbackImpl.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Revision.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/Revision.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/RevisionKind.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/RevisionKind.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/RevisionRange.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/RevisionRange.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/RunTests.class: subversion/bindings/javahl/tests/org/tigris/subversion/javahl/RunTests.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNAdmin.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNAdmin.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNAdminTests.class: subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNAdminTests.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClient.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClient.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientInterface.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientInterface.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientLogLevel.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientLogLevel.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientSynchronized.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientSynchronized.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNInputStream.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNInputStream.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNOutputStream.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNOutputStream.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNTests.class: subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNTests.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ScheduleKind.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/ScheduleKind.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Status.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/Status.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/StatusCallback.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusCallback.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/StatusKind.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusKind.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SubversionException.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/SubversionException.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Version.class: subversion/bindings/javahl/src/org/tigris/subversion/javahl/Version.java - -subversion/bindings/javahl/classes/org/tigris/subversion/javahl/WC.class: subversion/bindings/javahl/tests/org/tigris/subversion/javahl/WC.java - -subversion/bindings/javahl/include/BlameCallback.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallback.class - -subversion/bindings/javahl/include/BlameCallback2.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallback2.class - -subversion/bindings/javahl/include/BlameCallbackImpl.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/BlameCallbackImpl.class - -subversion/bindings/javahl/include/ChangePath.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ChangePath.class - -subversion/bindings/javahl/include/ChangelistCallback.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ChangelistCallback.class - -subversion/bindings/javahl/include/ClientException.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ClientException.class - -subversion/bindings/javahl/include/CommitItem.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitItem.class - -subversion/bindings/javahl/include/CommitItemStateFlags.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitItemStateFlags.class - -subversion/bindings/javahl/include/CommitMessage.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CommitMessage.class - -subversion/bindings/javahl/include/ConflictDescriptor.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictDescriptor.class - -subversion/bindings/javahl/include/ConflictResolverCallback.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictResolverCallback.class - -subversion/bindings/javahl/include/ConflictResult.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ConflictResult.class - -subversion/bindings/javahl/include/CopySource.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/CopySource.class - -subversion/bindings/javahl/include/Depth.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Depth.class - -subversion/bindings/javahl/include/DiffSummary.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DiffSummary.class - -subversion/bindings/javahl/include/DiffSummaryReceiver.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DiffSummaryReceiver.class - -subversion/bindings/javahl/include/DirEntry.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/DirEntry.class - -subversion/bindings/javahl/include/ErrorCodes.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ErrorCodes.class - -subversion/bindings/javahl/include/Info.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Info.class - -subversion/bindings/javahl/include/Info2.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Info2.class - -subversion/bindings/javahl/include/InfoCallback.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/InfoCallback.class - -subversion/bindings/javahl/include/InputInterface.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/InputInterface.class - -subversion/bindings/javahl/include/JNIError.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/JNIError.class - -subversion/bindings/javahl/include/ListCallback.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ListCallback.class - -subversion/bindings/javahl/include/Lock.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Lock.class - -subversion/bindings/javahl/include/LockStatus.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LockStatus.class - -subversion/bindings/javahl/include/LogDate.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogDate.class - -subversion/bindings/javahl/include/LogMessage.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogMessage.class - -subversion/bindings/javahl/include/LogMessageCallback.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/LogMessageCallback.class - -subversion/bindings/javahl/include/Mergeinfo.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Mergeinfo.class - -subversion/bindings/javahl/include/MergeinfoLogKind.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/MergeinfoLogKind.class - -subversion/bindings/javahl/include/NativeException.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NativeException.class - -subversion/bindings/javahl/include/NativeResources.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NativeResources.class - -subversion/bindings/javahl/include/NodeKind.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NodeKind.class - -subversion/bindings/javahl/include/Notify.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Notify.class - -subversion/bindings/javahl/include/Notify2.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Notify2.class - -subversion/bindings/javahl/include/NotifyAction.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyAction.class - -subversion/bindings/javahl/include/NotifyInformation.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyInformation.class - -subversion/bindings/javahl/include/NotifyStatus.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/NotifyStatus.class - -subversion/bindings/javahl/include/OutputInterface.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/OutputInterface.class - -subversion/bindings/javahl/include/Path.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Path.class - -subversion/bindings/javahl/include/ProgressEvent.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProgressEvent.class - -subversion/bindings/javahl/include/ProgressListener.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProgressListener.class - -subversion/bindings/javahl/include/PromptUserPassword.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword.class - -subversion/bindings/javahl/include/PromptUserPassword2.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword2.class - -subversion/bindings/javahl/include/PromptUserPassword3.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PromptUserPassword3.class - -subversion/bindings/javahl/include/PropertyData.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/PropertyData.class - -subversion/bindings/javahl/include/ProplistCallback.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProplistCallback.class - -subversion/bindings/javahl/include/ProplistCallbackImpl.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ProplistCallbackImpl.class - -subversion/bindings/javahl/include/Revision.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Revision.class - -subversion/bindings/javahl/include/RevisionKind.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/RevisionKind.class - -subversion/bindings/javahl/include/RevisionRange.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/RevisionRange.class - -subversion/bindings/javahl/include/SVNAdmin.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNAdmin.class - -subversion/bindings/javahl/include/SVNClient.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClient.class - -subversion/bindings/javahl/include/SVNClientInterface.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientInterface.class - -subversion/bindings/javahl/include/SVNClientLogLevel.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientLogLevel.class - -subversion/bindings/javahl/include/SVNClientSynchronized.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNClientSynchronized.class - -subversion/bindings/javahl/include/SVNInputStream.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNInputStream.class - -subversion/bindings/javahl/include/SVNOutputStream.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SVNOutputStream.class - -subversion/bindings/javahl/include/ScheduleKind.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/ScheduleKind.class - -subversion/bindings/javahl/include/Status.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Status.class - -subversion/bindings/javahl/include/StatusCallback.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/StatusCallback.class - -subversion/bindings/javahl/include/StatusKind.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/StatusKind.class - -subversion/bindings/javahl/include/SubversionException.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/SubversionException.class - -subversion/bindings/javahl/include/Version.h: subversion/bindings/javahl/classes/org/tigris/subversion/javahl/Version.class - -subversion/bindings/javahl/native/BlameCallback.lo: subversion/bindings/javahl/native/BlameCallback.cpp subversion/bindings/javahl/native/BlameCallback.h subversion/bindings/javahl/native/JNIUtil.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/BlameCallback.cpp - -subversion/bindings/javahl/native/ChangelistCallback.lo: subversion/bindings/javahl/native/ChangelistCallback.cpp subversion/bindings/javahl/native/ChangelistCallback.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/SVNBase.h subversion/bindings/javahl/native/SVNClient.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/ChangelistCallback.cpp - -subversion/bindings/javahl/native/CommitMessage.lo: subversion/bindings/javahl/native/CommitMessage.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_CommitItemStateFlags.h subversion/bindings/javahl/native/CommitMessage.h subversion/bindings/javahl/native/JNIUtil.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/CommitMessage.cpp - -subversion/bindings/javahl/native/ConflictResolverCallback.lo: subversion/bindings/javahl/native/ConflictResolverCallback.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictResult.h subversion/bindings/javahl/native/ConflictResolverCallback.h subversion/bindings/javahl/native/EnumMapper.h subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIUtil.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/ConflictResolverCallback.cpp - -subversion/bindings/javahl/native/CopySources.lo: subversion/bindings/javahl/native/CopySources.cpp subversion/bindings/javahl/native/CopySources.h subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Pool.h subversion/bindings/javahl/native/Revision.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/CopySources.cpp - -subversion/bindings/javahl/native/DiffSummaryReceiver.lo: subversion/bindings/javahl/native/DiffSummaryReceiver.cpp subversion/bindings/javahl/native/DiffSummaryReceiver.h subversion/bindings/javahl/native/EnumMapper.h subversion/bindings/javahl/native/JNIUtil.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/DiffSummaryReceiver.cpp - -subversion/bindings/javahl/native/EnumMapper.lo: subversion/bindings/javahl/native/EnumMapper.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_CommitItemStateFlags.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictDescriptor_Action.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictDescriptor_Kind.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictDescriptor_Reason.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_LockStatus.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_NodeKind.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_NotifyAction.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_NotifyStatus.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Revision.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_ScheduleKind.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_StatusKind.h subversion/bindings/javahl/native/EnumMapper.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/EnumMapper.cpp - -subversion/bindings/javahl/native/InfoCallback.lo: subversion/bindings/javahl/native/InfoCallback.cpp subversion/bindings/javahl/native/EnumMapper.h subversion/bindings/javahl/native/InfoCallback.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/SVNBase.h subversion/bindings/javahl/native/SVNClient.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/InfoCallback.cpp - -subversion/bindings/javahl/native/Inputer.lo: subversion/bindings/javahl/native/Inputer.cpp subversion/bindings/javahl/native/Inputer.h subversion/bindings/javahl/native/JNIByteArray.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Pool.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/Inputer.cpp - -subversion/bindings/javahl/native/JNIByteArray.lo: subversion/bindings/javahl/native/JNIByteArray.cpp subversion/bindings/javahl/native/JNIByteArray.h subversion/bindings/javahl/native/JNIUtil.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/JNIByteArray.cpp - -subversion/bindings/javahl/native/JNICriticalSection.lo: subversion/bindings/javahl/native/JNICriticalSection.cpp subversion/bindings/javahl/native/JNICriticalSection.h subversion/bindings/javahl/native/JNIMutex.h subversion/bindings/javahl/native/JNIUtil.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/JNICriticalSection.cpp - -subversion/bindings/javahl/native/JNIMutex.lo: subversion/bindings/javahl/native/JNIMutex.cpp subversion/bindings/javahl/native/JNIMutex.h subversion/bindings/javahl/native/JNIUtil.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/JNIMutex.cpp - -subversion/bindings/javahl/native/JNIStackElement.lo: subversion/bindings/javahl/native/JNIStackElement.cpp subversion/bindings/javahl/native/JNIStackElement.h subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIThreadData.h subversion/bindings/javahl/native/JNIUtil.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/JNIStackElement.cpp - -subversion/bindings/javahl/native/JNIStringHolder.lo: subversion/bindings/javahl/native/JNIStringHolder.cpp subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIUtil.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/JNIStringHolder.cpp - -subversion/bindings/javahl/native/JNIThreadData.lo: subversion/bindings/javahl/native/JNIThreadData.cpp subversion/bindings/javahl/native/JNIThreadData.h subversion/bindings/javahl/native/JNIUtil.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/JNIThreadData.cpp - -subversion/bindings/javahl/native/JNIUtil.lo: subversion/bindings/javahl/native/JNIUtil.cpp subversion/bindings/javahl/native/JNICriticalSection.h subversion/bindings/javahl/native/JNIMutex.h subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIThreadData.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Pool.h subversion/bindings/javahl/native/SVNBase.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/JNIUtil.cpp - -subversion/bindings/javahl/native/ListCallback.lo: subversion/bindings/javahl/native/ListCallback.cpp subversion/bindings/javahl/native/EnumMapper.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/ListCallback.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/SVNBase.h subversion/bindings/javahl/native/SVNClient.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/ListCallback.cpp - -subversion/bindings/javahl/native/LogMessageCallback.lo: subversion/bindings/javahl/native/LogMessageCallback.cpp subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/LogMessageCallback.h subversion/bindings/javahl/native/ProplistCallback.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_compat.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/LogMessageCallback.cpp - -subversion/bindings/javahl/native/MessageReceiver.lo: subversion/bindings/javahl/native/MessageReceiver.cpp subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/MessageReceiver.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/MessageReceiver.cpp - -subversion/bindings/javahl/native/Notify.lo: subversion/bindings/javahl/native/Notify.cpp subversion/bindings/javahl/native/EnumMapper.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Notify.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/Notify.cpp - -subversion/bindings/javahl/native/Notify2.lo: subversion/bindings/javahl/native/Notify2.cpp subversion/bindings/javahl/native/EnumMapper.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Notify2.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/RevisionRange.h subversion/bindings/javahl/native/SVNBase.h subversion/bindings/javahl/native/SVNClient.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/Notify2.cpp - -subversion/bindings/javahl/native/Outputer.lo: subversion/bindings/javahl/native/Outputer.cpp subversion/bindings/javahl/native/JNIByteArray.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Outputer.h subversion/bindings/javahl/native/Pool.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/Outputer.cpp - -subversion/bindings/javahl/native/Path.lo: subversion/bindings/javahl/native/Path.cpp subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/Pool.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/Path.cpp - -subversion/bindings/javahl/native/Pool.lo: subversion/bindings/javahl/native/Pool.cpp subversion/bindings/javahl/native/JNICriticalSection.h subversion/bindings/javahl/native/JNIMutex.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Pool.h subversion/include/svn_pools.h subversion/include/svn_types.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/Pool.cpp - -subversion/bindings/javahl/native/ProgressListener.lo: subversion/bindings/javahl/native/ProgressListener.cpp subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/ProgressListener.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/ProgressListener.cpp - -subversion/bindings/javahl/native/Prompter.lo: subversion/bindings/javahl/native/Prompter.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_PromptUserPassword2.h subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Pool.h subversion/bindings/javahl/native/Prompter.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/Prompter.cpp - -subversion/bindings/javahl/native/ProplistCallback.lo: subversion/bindings/javahl/native/ProplistCallback.cpp subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/ProplistCallback.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/ProplistCallback.cpp - -subversion/bindings/javahl/native/Revision.lo: subversion/bindings/javahl/native/Revision.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_RevisionKind.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Revision.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/Revision.cpp - -subversion/bindings/javahl/native/RevisionRange.lo: subversion/bindings/javahl/native/RevisionRange.cpp subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Pool.h subversion/bindings/javahl/native/Revision.h subversion/bindings/javahl/native/RevisionRange.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/RevisionRange.cpp - -subversion/bindings/javahl/native/RevpropTable.lo: subversion/bindings/javahl/native/RevpropTable.cpp subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/Pool.h subversion/bindings/javahl/native/RevpropTable.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/RevpropTable.cpp - -subversion/bindings/javahl/native/SVNAdmin.lo: subversion/bindings/javahl/native/SVNAdmin.cpp subversion/bindings/javahl/native/Inputer.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/MessageReceiver.h subversion/bindings/javahl/native/Outputer.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/Pool.h subversion/bindings/javahl/native/Revision.h subversion/bindings/javahl/native/SVNAdmin.h subversion/bindings/javahl/native/SVNBase.h subversion/bindings/javahl/native/SVNClient.h subversion/bindings/javahl/native/Targets.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/SVNAdmin.cpp - -subversion/bindings/javahl/native/SVNBase.lo: subversion/bindings/javahl/native/SVNBase.cpp subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/SVNBase.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/SVNBase.cpp - -subversion/bindings/javahl/native/SVNClient.lo: subversion/bindings/javahl/native/SVNClient.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_NodeKind.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Revision.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_StatusKind.h subversion/bindings/javahl/native/BlameCallback.h subversion/bindings/javahl/native/ChangelistCallback.h subversion/bindings/javahl/native/CommitMessage.h subversion/bindings/javahl/native/ConflictResolverCallback.h subversion/bindings/javahl/native/CopySources.h subversion/bindings/javahl/native/DiffSummaryReceiver.h subversion/bindings/javahl/native/EnumMapper.h subversion/bindings/javahl/native/InfoCallback.h subversion/bindings/javahl/native/JNIByteArray.h subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/ListCallback.h subversion/bindings/javahl/native/LogMessageCallback.h subversion/bindings/javahl/native/Notify.h subversion/bindings/javahl/native/Notify2.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/Pool.h subversion/bindings/javahl/native/ProgressListener.h subversion/bindings/javahl/native/Prompter.h subversion/bindings/javahl/native/ProplistCallback.h subversion/bindings/javahl/native/Revision.h subversion/bindings/javahl/native/RevisionRange.h subversion/bindings/javahl/native/RevpropTable.h subversion/bindings/javahl/native/SVNBase.h subversion/bindings/javahl/native/SVNClient.h subversion/bindings/javahl/native/StatusCallback.h subversion/bindings/javahl/native/StringArray.h subversion/bindings/javahl/native/Targets.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/SVNClient.cpp - -subversion/bindings/javahl/native/StatusCallback.lo: subversion/bindings/javahl/native/StatusCallback.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_NodeKind.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_Revision.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_StatusKind.h subversion/bindings/javahl/native/EnumMapper.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/SVNBase.h subversion/bindings/javahl/native/SVNClient.h subversion/bindings/javahl/native/StatusCallback.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/StatusCallback.cpp - -subversion/bindings/javahl/native/StringArray.lo: subversion/bindings/javahl/native/StringArray.cpp subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/Pool.h subversion/bindings/javahl/native/StringArray.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/StringArray.cpp - -subversion/bindings/javahl/native/Targets.lo: subversion/bindings/javahl/native/Targets.cpp subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/Pool.h subversion/bindings/javahl/native/Targets.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/Targets.cpp - -subversion/bindings/javahl/native/libsvnjavahl.la.lo: subversion/bindings/javahl/native/libsvnjavahl.la.c - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/libsvnjavahl.la.c - -subversion/bindings/javahl/native/org_tigris_subversion_javahl_NativeResources.lo: subversion/bindings/javahl/native/org_tigris_subversion_javahl_NativeResources.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_NativeResources.h subversion/bindings/javahl/native/JNIUtil.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/org_tigris_subversion_javahl_NativeResources.cpp - -subversion/bindings/javahl/native/org_tigris_subversion_javahl_Path.lo: subversion/bindings/javahl/native/org_tigris_subversion_javahl_Path.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_Path.h subversion/bindings/javahl/native/JNIStackElement.h subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/Path.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/org_tigris_subversion_javahl_Path.cpp - -subversion/bindings/javahl/native/org_tigris_subversion_javahl_SVNAdmin.lo: subversion/bindings/javahl/native/org_tigris_subversion_javahl_SVNAdmin.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_SVNAdmin.h subversion/bindings/javahl/native/Inputer.h subversion/bindings/javahl/native/JNIByteArray.h subversion/bindings/javahl/native/JNIStackElement.h subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/MessageReceiver.h subversion/bindings/javahl/native/Outputer.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/Pool.h subversion/bindings/javahl/native/Revision.h subversion/bindings/javahl/native/SVNAdmin.h subversion/bindings/javahl/native/SVNBase.h subversion/bindings/javahl/native/Targets.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/svn_private_config.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/org_tigris_subversion_javahl_SVNAdmin.cpp - -subversion/bindings/javahl/native/org_tigris_subversion_javahl_SVNClient.lo: subversion/bindings/javahl/native/org_tigris_subversion_javahl_SVNClient.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_SVNClient.h subversion/bindings/javahl/include/org_tigris_subversion_javahl_SVNClientLogLevel.h subversion/bindings/javahl/native/BlameCallback.h subversion/bindings/javahl/native/ChangelistCallback.h subversion/bindings/javahl/native/CommitMessage.h subversion/bindings/javahl/native/ConflictResolverCallback.h subversion/bindings/javahl/native/CopySources.h subversion/bindings/javahl/native/DiffSummaryReceiver.h subversion/bindings/javahl/native/InfoCallback.h subversion/bindings/javahl/native/JNIByteArray.h subversion/bindings/javahl/native/JNIStackElement.h subversion/bindings/javahl/native/JNIStringHolder.h subversion/bindings/javahl/native/JNIUtil.h subversion/bindings/javahl/native/ListCallback.h subversion/bindings/javahl/native/LogMessageCallback.h subversion/bindings/javahl/native/Notify.h subversion/bindings/javahl/native/Notify2.h subversion/bindings/javahl/native/Outputer.h subversion/bindings/javahl/native/Path.h subversion/bindings/javahl/native/Pool.h subversion/bindings/javahl/native/ProgressListener.h subversion/bindings/javahl/native/Prompter.h subversion/bindings/javahl/native/ProplistCallback.h subversion/bindings/javahl/native/Revision.h subversion/bindings/javahl/native/RevisionRange.h subversion/bindings/javahl/native/RevpropTable.h subversion/bindings/javahl/native/SVNBase.h subversion/bindings/javahl/native/SVNClient.h subversion/bindings/javahl/native/StatusCallback.h subversion/bindings/javahl/native/StringArray.h subversion/bindings/javahl/native/Targets.h subversion/bindings/javahl/native/version.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/org_tigris_subversion_javahl_SVNClient.cpp - -subversion/bindings/javahl/native/org_tigris_subversion_javahl_Version.lo: subversion/bindings/javahl/native/org_tigris_subversion_javahl_Version.cpp subversion/bindings/javahl/include/org_tigris_subversion_javahl_Version.h subversion/bindings/javahl/native/JNIStackElement.h subversion/bindings/javahl/native/JNIUtil.h subversion/include/svn_types.h subversion/include/svn_version.h - $(COMPILE_JAVAHL_CXX) $(abs_srcdir)/subversion/bindings/javahl/native/org_tigris_subversion_javahl_Version.cpp - -subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.lo: subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/proxy/swig_perl_external_runtime.swg subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_SWIG_PL) $(abs_srcdir)/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c - -subversion/bindings/swig/perl/native/core.lo: subversion/bindings/swig/perl/native/core.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_fs.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PL_WRAPPER) subversion/bindings/swig/perl/native/core.c - -subversion/bindings/swig/perl/native/svn_client.lo: subversion/bindings/swig/perl/native/svn_client.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_fs.h subversion/include/svn_repos.h subversion/svn_private_config.h - $(COMPILE_PL_WRAPPER) subversion/bindings/swig/perl/native/svn_client.c - -subversion/bindings/swig/perl/native/svn_delta.lo: subversion/bindings/swig/perl/native/svn_delta.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_fs.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PL_WRAPPER) subversion/bindings/swig/perl/native/svn_delta.c - -subversion/bindings/swig/perl/native/svn_diff.lo: subversion/bindings/swig/perl/native/svn_diff.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_fs.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PL_WRAPPER) subversion/bindings/swig/perl/native/svn_diff.c - -subversion/bindings/swig/perl/native/svn_fs.lo: subversion/bindings/swig/perl/native/svn_fs.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PL_WRAPPER) subversion/bindings/swig/perl/native/svn_fs.c - -subversion/bindings/swig/perl/native/svn_ra.lo: subversion/bindings/swig/perl/native/svn_ra.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_fs.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PL_WRAPPER) subversion/bindings/swig/perl/native/svn_ra.c - -subversion/bindings/swig/perl/native/svn_repos.lo: subversion/bindings/swig/perl/native/svn_repos.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_ra.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PL_WRAPPER) subversion/bindings/swig/perl/native/svn_repos.c - -subversion/bindings/swig/perl/native/svn_wc.lo: subversion/bindings/swig/perl/native/svn_wc.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_fs.h subversion/include/svn_repos.h subversion/svn_private_config.h - $(COMPILE_PL_WRAPPER) subversion/bindings/swig/perl/native/svn_wc.c - -subversion/bindings/swig/python/core.lo: subversion/bindings/swig/python/core.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_fs.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PY_WRAPPER) subversion/bindings/swig/python/core.c - -subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.lo: subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.c subversion/bindings/swig/proxy/swig_python_external_runtime.swg subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_SWIG_PY) $(abs_srcdir)/subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.c - -subversion/bindings/swig/python/svn_client.lo: subversion/bindings/swig/python/svn_client.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_fs.h subversion/include/svn_repos.h subversion/svn_private_config.h - $(COMPILE_PY_WRAPPER) subversion/bindings/swig/python/svn_client.c - -subversion/bindings/swig/python/svn_delta.lo: subversion/bindings/swig/python/svn_delta.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_fs.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PY_WRAPPER) subversion/bindings/swig/python/svn_delta.c - -subversion/bindings/swig/python/svn_diff.lo: subversion/bindings/swig/python/svn_diff.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_fs.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PY_WRAPPER) subversion/bindings/swig/python/svn_diff.c - -subversion/bindings/swig/python/svn_fs.lo: subversion/bindings/swig/python/svn_fs.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PY_WRAPPER) subversion/bindings/swig/python/svn_fs.c - -subversion/bindings/swig/python/svn_ra.lo: subversion/bindings/swig/python/svn_ra.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_fs.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PY_WRAPPER) subversion/bindings/swig/python/svn_ra.c - -subversion/bindings/swig/python/svn_repos.lo: subversion/bindings/swig/python/svn_repos.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_ra.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_PY_WRAPPER) subversion/bindings/swig/python/svn_repos.c - -subversion/bindings/swig/python/svn_wc.lo: subversion/bindings/swig/python/svn_wc.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_fs.h subversion/include/svn_repos.h subversion/svn_private_config.h - $(COMPILE_PY_WRAPPER) subversion/bindings/swig/python/svn_wc.c - -subversion/bindings/swig/ruby/core.lo: subversion/bindings/swig/ruby/core.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_fs.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_RB_WRAPPER) subversion/bindings/swig/ruby/core.c - -subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.lo: subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.c subversion/bindings/swig/proxy/swig_ruby_external_runtime.swg subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_nls.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_SWIG_RB) $(abs_srcdir)/subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.c - -subversion/bindings/swig/ruby/svn_client.lo: subversion/bindings/swig/ruby/svn_client.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_fs.h subversion/include/svn_repos.h subversion/svn_private_config.h - $(COMPILE_RB_WRAPPER) subversion/bindings/swig/ruby/svn_client.c - -subversion/bindings/swig/ruby/svn_delta.lo: subversion/bindings/swig/ruby/svn_delta.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_fs.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_RB_WRAPPER) subversion/bindings/swig/ruby/svn_delta.c - -subversion/bindings/swig/ruby/svn_diff.lo: subversion/bindings/swig/ruby/svn_diff.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_fs.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_RB_WRAPPER) subversion/bindings/swig/ruby/svn_diff.c - -subversion/bindings/swig/ruby/svn_fs.lo: subversion/bindings/swig/ruby/svn_fs.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_RB_WRAPPER) subversion/bindings/swig/ruby/svn_fs.c - -subversion/bindings/swig/ruby/svn_ra.lo: subversion/bindings/swig/ruby/svn_ra.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_fs.h subversion/include/svn_repos.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_RB_WRAPPER) subversion/bindings/swig/ruby/svn_ra.c - -subversion/bindings/swig/ruby/svn_repos.lo: subversion/bindings/swig/ruby/svn_repos.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_ra.h subversion/include/svn_wc.h subversion/svn_private_config.h - $(COMPILE_RB_WRAPPER) subversion/bindings/swig/ruby/svn_repos.c - -subversion/bindings/swig/ruby/svn_wc.lo: subversion/bindings/swig/ruby/svn_wc.c subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h subversion/bindings/swig/python/libsvn_swig_py/swigutil_py.h subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.h subversion/include/svn_client.h subversion/include/svn_fs.h subversion/include/svn_repos.h subversion/svn_private_config.h - $(COMPILE_RB_WRAPPER) subversion/bindings/swig/ruby/svn_wc.c - -subversion/libsvn_client/add.lo: subversion/libsvn_client/add.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/blame.lo: subversion/libsvn_client/blame.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/cat.lo: subversion/libsvn_client/cat.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/changelist.lo: subversion/libsvn_client/changelist.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h - -subversion/libsvn_client/checkout.lo: subversion/libsvn_client/checkout.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/cleanup.lo: subversion/libsvn_client/cleanup.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/commit.lo: subversion/libsvn_client/commit.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_iter.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/commit_util.lo: subversion/libsvn_client/commit_util.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_iter.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/compat_providers.lo: subversion/libsvn_client/compat_providers.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - -subversion/libsvn_client/copy.lo: subversion/libsvn_client/copy.c subversion/include/private/svn_mergeinfo_private.h subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/libsvn_client/mergeinfo.h subversion/svn_private_config.h - -subversion/libsvn_client/ctx.lo: subversion/libsvn_client/ctx.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - -subversion/libsvn_client/delete.lo: subversion/libsvn_client/delete.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/diff.lo: subversion/libsvn_client/diff.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/export.lo: subversion/libsvn_client/export.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/externals.lo: subversion/libsvn_client/externals.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/info.lo: subversion/libsvn_client/info.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/list.lo: subversion/libsvn_client/list.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/locking_commands.lo: subversion/libsvn_client/locking_commands.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/log.lo: subversion/libsvn_client/log.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_compat.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/merge.lo: subversion/libsvn_client/merge.c subversion/include/private/svn_mergeinfo_private.h subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/libsvn_client/mergeinfo.h subversion/svn_private_config.h - -subversion/libsvn_client/mergeinfo.lo: subversion/libsvn_client/mergeinfo.c subversion/include/private/svn_mergeinfo_private.h subversion/include/private/svn_ra_private.h subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/libsvn_client/mergeinfo.h subversion/svn_private_config.h - -subversion/libsvn_client/prop_commands.lo: subversion/libsvn_client/prop_commands.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/ra.lo: subversion/libsvn_client/ra.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/libsvn_client/mergeinfo.h subversion/svn_private_config.h - -subversion/libsvn_client/relocate.lo: subversion/libsvn_client/relocate.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/repos_diff.lo: subversion/libsvn_client/repos_diff.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h - -subversion/libsvn_client/repos_diff_summarize.lo: subversion/libsvn_client/repos_diff_summarize.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h - -subversion/libsvn_client/resolved.lo: subversion/libsvn_client/resolved.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h - -subversion/libsvn_client/revert.lo: subversion/libsvn_client/revert.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h - -subversion/libsvn_client/revisions.lo: subversion/libsvn_client/revisions.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/status.lo: subversion/libsvn_client/status.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/switch.lo: subversion/libsvn_client/switch.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/update.lo: subversion/libsvn_client/update.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/url.lo: subversion/libsvn_client/url.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/util.lo: subversion/libsvn_client/util.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/client.h subversion/svn_private_config.h - -subversion/libsvn_client/version.lo: subversion/libsvn_client/version.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h - -subversion/libsvn_delta/cancel.lo: subversion/libsvn_delta/cancel.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -subversion/libsvn_delta/compat.lo: subversion/libsvn_delta/compat.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -subversion/libsvn_delta/compose_delta.lo: subversion/libsvn_delta/compose_delta.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_delta/delta.h - -subversion/libsvn_delta/debug_editor.lo: subversion/libsvn_delta/debug_editor.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_delta/debug_editor.h - -subversion/libsvn_delta/default_editor.lo: subversion/libsvn_delta/default_editor.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -subversion/libsvn_delta/depth_filter_editor.lo: subversion/libsvn_delta/depth_filter_editor.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -subversion/libsvn_delta/path_driver.lo: subversion/libsvn_delta/path_driver.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -subversion/libsvn_delta/svndiff.lo: subversion/libsvn_delta/svndiff.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_delta/delta.h subversion/svn_private_config.h - -subversion/libsvn_delta/text_delta.lo: subversion/libsvn_delta/text_delta.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_delta/delta.h - -subversion/libsvn_delta/vdelta.lo: subversion/libsvn_delta/vdelta.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_delta/delta.h - -subversion/libsvn_delta/version.lo: subversion/libsvn_delta/version.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -subversion/libsvn_delta/xdelta.lo: subversion/libsvn_delta/xdelta.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_delta/delta.h - -subversion/libsvn_diff/diff.lo: subversion/libsvn_diff/diff.c subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_diff/diff.h - -subversion/libsvn_diff/diff3.lo: subversion/libsvn_diff/diff3.c subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_diff/diff.h - -subversion/libsvn_diff/diff4.lo: subversion/libsvn_diff/diff4.c subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_diff/diff.h - -subversion/libsvn_diff/diff_file.lo: subversion/libsvn_diff/diff_file.c subversion/include/svn_ctype.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/libsvn_diff/diff.h subversion/svn_private_config.h - -subversion/libsvn_diff/diff_memory.lo: subversion/libsvn_diff/diff_memory.c subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/libsvn_diff/diff.h subversion/svn_private_config.h - -subversion/libsvn_diff/lcs.lo: subversion/libsvn_diff/lcs.c subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_diff/diff.h - -subversion/libsvn_diff/token.lo: subversion/libsvn_diff/token.c subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_diff/diff.h - -subversion/libsvn_diff/util.lo: subversion/libsvn_diff/util.c subversion/include/svn_ctype.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_diff/diff.h - -subversion/libsvn_fs/access.lo: subversion/libsvn_fs/access.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h - -subversion/libsvn_fs/fs-loader.lo: subversion/libsvn_fs/fs-loader.c subversion/include/svn_delta.h subversion/include/svn_dso.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_fs/fs-loader.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/bdb-err.lo: subversion/libsvn_fs_base/bdb/bdb-err.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/bdb_compat.lo: subversion/libsvn_fs_base/bdb/bdb_compat.c subversion/libsvn_fs_base/bdb/bdb_compat.h - -subversion/libsvn_fs_base/bdb/changes-table.lo: subversion/libsvn_fs_base/bdb/changes-table.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/changes-table.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/id.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/copies-table.lo: subversion/libsvn_fs_base/bdb/copies-table.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/copies-table.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/rev-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/key-gen.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/dbt.lo: subversion/libsvn_fs_base/bdb/dbt.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/id.h subversion/libsvn_fs_base/util/skel.h - -subversion/libsvn_fs_base/bdb/env.lo: subversion/libsvn_fs_base/bdb/env.c subversion/include/private/svn_atomic.h subversion/include/private/svn_dep_compat.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/env.h - -subversion/libsvn_fs_base/bdb/lock-tokens-table.lo: subversion/libsvn_fs_base/bdb/lock-tokens-table.c subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/lock-tokens-table.h subversion/libsvn_fs_base/bdb/locks-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/locks-table.lo: subversion/libsvn_fs_base/bdb/locks-table.c subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/lock-tokens-table.h subversion/libsvn_fs_base/bdb/locks-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/node-origins-table.lo: subversion/libsvn_fs_base/bdb/node-origins-table.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/node-origins-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/id.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/nodes-table.lo: subversion/libsvn_fs_base/bdb/nodes-table.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/nodes-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/id.h subversion/libsvn_fs_base/key-gen.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/reps-table.lo: subversion/libsvn_fs_base/bdb/reps-table.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/reps-table.h subversion/libsvn_fs_base/bdb/strings-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/key-gen.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/rev-table.lo: subversion/libsvn_fs_base/bdb/rev-table.c subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/rev-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/strings-table.lo: subversion/libsvn_fs_base/bdb/strings-table.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/strings-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/key-gen.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/txn-table.lo: subversion/libsvn_fs_base/bdb/txn-table.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/txn-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/key-gen.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/bdb/uuids-table.lo: subversion/libsvn_fs_base/bdb/uuids-table.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/dbt.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/uuids-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/dag.lo: subversion/libsvn_fs_base/dag.c subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/copies-table.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/nodes-table.h subversion/libsvn_fs_base/bdb/reps-table.h subversion/libsvn_fs_base/bdb/rev-table.h subversion/libsvn_fs_base/bdb/strings-table.h subversion/libsvn_fs_base/bdb/txn-table.h subversion/libsvn_fs_base/dag.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/id.h subversion/libsvn_fs_base/key-gen.h subversion/libsvn_fs_base/node-rev.h subversion/libsvn_fs_base/reps-strings.h subversion/libsvn_fs_base/revs-txns.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/err.lo: subversion/libsvn_fs_base/err.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/id.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/fs.lo: subversion/libsvn_fs_base/fs.c subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/changes-table.h subversion/libsvn_fs_base/bdb/copies-table.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/lock-tokens-table.h subversion/libsvn_fs_base/bdb/locks-table.h subversion/libsvn_fs_base/bdb/node-origins-table.h subversion/libsvn_fs_base/bdb/nodes-table.h subversion/libsvn_fs_base/bdb/reps-table.h subversion/libsvn_fs_base/bdb/rev-table.h subversion/libsvn_fs_base/bdb/strings-table.h subversion/libsvn_fs_base/bdb/txn-table.h subversion/libsvn_fs_base/bdb/uuids-table.h subversion/libsvn_fs_base/dag.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/id.h subversion/libsvn_fs_base/lock.h subversion/libsvn_fs_base/revs-txns.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/tree.h subversion/libsvn_fs_base/uuid.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/id.lo: subversion/libsvn_fs_base/id.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/id.h - -subversion/libsvn_fs_base/key-gen.lo: subversion/libsvn_fs_base/key-gen.c subversion/include/svn_types.h subversion/libsvn_fs_base/key-gen.h - -subversion/libsvn_fs_base/lock.lo: subversion/libsvn_fs_base/lock.c subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/lock-tokens-table.h subversion/libsvn_fs_base/bdb/locks-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/lock.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/tree.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/node-rev.lo: subversion/libsvn_fs_base/node-rev.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/node-origins-table.h subversion/libsvn_fs_base/bdb/nodes-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/id.h subversion/libsvn_fs_base/node-rev.h subversion/libsvn_fs_base/reps-strings.h subversion/libsvn_fs_base/trail.h - -subversion/libsvn_fs_base/reps-strings.lo: subversion/libsvn_fs_base/reps-strings.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/reps-table.h subversion/libsvn_fs_base/bdb/strings-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/reps-strings.h subversion/libsvn_fs_base/trail.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/revs-txns.lo: subversion/libsvn_fs_base/revs-txns.c subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/changes-table.h subversion/libsvn_fs_base/bdb/copies-table.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/rev-table.h subversion/libsvn_fs_base/bdb/txn-table.h subversion/libsvn_fs_base/dag.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/id.h subversion/libsvn_fs_base/key-gen.h subversion/libsvn_fs_base/revs-txns.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/tree.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/trail.lo: subversion/libsvn_fs_base/trail.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb-err.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/trail.h - -subversion/libsvn_fs_base/tree.lo: subversion/libsvn_fs_base/tree.c subversion/include/private/svn_fs_util.h subversion/include/private/svn_mergeinfo_private.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/changes-table.h subversion/libsvn_fs_base/bdb/copies-table.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/node-origins-table.h subversion/libsvn_fs_base/bdb/nodes-table.h subversion/libsvn_fs_base/bdb/rev-table.h subversion/libsvn_fs_base/bdb/txn-table.h subversion/libsvn_fs_base/dag.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/id.h subversion/libsvn_fs_base/key-gen.h subversion/libsvn_fs_base/lock.h subversion/libsvn_fs_base/node-rev.h subversion/libsvn_fs_base/revs-txns.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/tree.h subversion/svn_private_config.h - -subversion/libsvn_fs_base/util/fs_skels.lo: subversion/libsvn_fs_base/util/fs_skels.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/id.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h - -subversion/libsvn_fs_base/util/skel.lo: subversion/libsvn_fs_base/util/skel.c subversion/include/svn_string.h subversion/include/svn_types.h subversion/libsvn_fs_base/key-gen.h subversion/libsvn_fs_base/util/skel.h - -subversion/libsvn_fs_base/uuid.lo: subversion/libsvn_fs_base/uuid.c subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/uuids-table.h subversion/libsvn_fs_base/err.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/uuid.h subversion/svn_private_config.h - -subversion/libsvn_fs_fs/dag.lo: subversion/libsvn_fs_fs/dag.c subversion/include/private/svn_fs_private.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_fs/dag.h subversion/libsvn_fs_fs/err.h subversion/libsvn_fs_fs/fs.h subversion/libsvn_fs_fs/fs_fs.h subversion/libsvn_fs_fs/id.h subversion/libsvn_fs_fs/key-gen.h subversion/svn_private_config.h - -subversion/libsvn_fs_fs/err.lo: subversion/libsvn_fs_fs/err.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_fs/err.h subversion/libsvn_fs_fs/id.h subversion/svn_private_config.h - -subversion/libsvn_fs_fs/fs.lo: subversion/libsvn_fs_fs/fs.c subversion/include/private/svn_fs_private.h subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_fs/err.h subversion/libsvn_fs_fs/fs.h subversion/libsvn_fs_fs/fs_fs.h subversion/libsvn_fs_fs/lock.h subversion/libsvn_fs_fs/tree.h subversion/svn_private_config.h - -subversion/libsvn_fs_fs/fs_fs.lo: subversion/libsvn_fs_fs/fs_fs.c subversion/include/private/svn_fs_private.h subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_fs/err.h subversion/libsvn_fs_fs/fs.h subversion/libsvn_fs_fs/fs_fs.h subversion/libsvn_fs_fs/id.h subversion/libsvn_fs_fs/key-gen.h subversion/libsvn_fs_fs/lock.h subversion/libsvn_fs_fs/tree.h subversion/svn_private_config.h - -subversion/libsvn_fs_fs/id.lo: subversion/libsvn_fs_fs/id.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_fs/id.h - -subversion/libsvn_fs_fs/key-gen.lo: subversion/libsvn_fs_fs/key-gen.c subversion/include/private/svn_fs_private.h subversion/include/svn_types.h subversion/libsvn_fs_fs/key-gen.h - -subversion/libsvn_fs_fs/lock.lo: subversion/libsvn_fs_fs/lock.c subversion/include/private/svn_fs_private.h subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_fs/err.h subversion/libsvn_fs_fs/fs.h subversion/libsvn_fs_fs/fs_fs.h subversion/libsvn_fs_fs/lock.h subversion/libsvn_fs_fs/tree.h subversion/svn_private_config.h - -subversion/libsvn_fs_fs/tree.lo: subversion/libsvn_fs_fs/tree.c subversion/include/private/svn_fs_private.h subversion/include/private/svn_fs_util.h subversion/include/private/svn_mergeinfo_private.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/libsvn_fs_fs/dag.h subversion/libsvn_fs_fs/err.h subversion/libsvn_fs_fs/fs.h subversion/libsvn_fs_fs/fs_fs.h subversion/libsvn_fs_fs/id.h subversion/libsvn_fs_fs/key-gen.h subversion/libsvn_fs_fs/lock.h subversion/libsvn_fs_fs/tree.h subversion/svn_private_config.h - -subversion/libsvn_fs_util/fs-util.lo: subversion/libsvn_fs_util/fs-util.c subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs/fs-loader.h subversion/svn_private_config.h - -subversion/libsvn_ra/compat.lo: subversion/libsvn_ra/compat.c subversion/include/svn_auth.h subversion/include/svn_compat.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra/ra_loader.h subversion/svn_private_config.h - -subversion/libsvn_ra/ra_loader.lo: subversion/libsvn_ra/ra_loader.c subversion/include/private/svn_ra_private.h subversion/include/svn_auth.h subversion/include/svn_compat.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_dso.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/svn_private_config.h - -subversion/libsvn_ra/util.lo: subversion/libsvn_ra/util.c subversion/include/private/svn_ra_private.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/svn_private_config.h - -subversion/libsvn_ra_local/ra_plugin.lo: subversion/libsvn_ra_local/ra_plugin.c subversion/include/private/svn_mergeinfo_private.h subversion/include/svn_auth.h subversion/include/svn_compat.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra/wrapper_template.h subversion/libsvn_ra_local/ra_local.h subversion/svn_private_config.h - -subversion/libsvn_ra_local/split_url.lo: subversion/libsvn_ra_local/split_url.c subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra_local/ra_local.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/commit.lo: subversion/libsvn_ra_neon/commit.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/fetch.lo: subversion/libsvn_ra_neon/fetch.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/file_revs.lo: subversion/libsvn_ra_neon/file_revs.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/get_dated_rev.lo: subversion/libsvn_ra_neon/get_dated_rev.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/get_location_segments.lo: subversion/libsvn_ra_neon/get_location_segments.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/get_locations.lo: subversion/libsvn_ra_neon/get_locations.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/get_locks.lo: subversion/libsvn_ra_neon/get_locks.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/lock.lo: subversion/libsvn_ra_neon/lock.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/log.lo: subversion/libsvn_ra_neon/log.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/merge.lo: subversion/libsvn_ra_neon/merge.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/mergeinfo.lo: subversion/libsvn_ra_neon/mergeinfo.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/options.lo: subversion/libsvn_ra_neon/options.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/props.lo: subversion/libsvn_ra_neon/props.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/replay.lo: subversion/libsvn_ra_neon/replay.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/session.lo: subversion/libsvn_ra_neon/session.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_compat.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra/wrapper_template.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_neon/util.lo: subversion/libsvn_ra_neon/util.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra_neon/ra_neon.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/auth.lo: subversion/libsvn_ra_serf/auth.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra_serf/ra_serf.h subversion/libsvn_ra_serf/win32_auth_sspi.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/blame.lo: subversion/libsvn_ra_serf/blame.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/commit.lo: subversion/libsvn_ra_serf/commit.c subversion/include/private/svn_dav_protocol.h subversion/include/private/svn_dep_compat.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/getdate.lo: subversion/libsvn_ra_serf/getdate.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/getlocations.lo: subversion/libsvn_ra_serf/getlocations.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/getlocationsegments.lo: subversion/libsvn_ra_serf/getlocationsegments.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/getlocks.lo: subversion/libsvn_ra_serf/getlocks.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/locks.lo: subversion/libsvn_ra_serf/locks.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/log.lo: subversion/libsvn_ra_serf/log.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/merge.lo: subversion/libsvn_ra_serf/merge.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/mergeinfo.lo: subversion/libsvn_ra_serf/mergeinfo.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/options.lo: subversion/libsvn_ra_serf/options.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/property.lo: subversion/libsvn_ra_serf/property.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/propfind_buckets.lo: subversion/libsvn_ra_serf/propfind_buckets.c subversion/include/private/svn_dav_protocol.h subversion/include/private/svn_dep_compat.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra_serf/ra_serf.h - -subversion/libsvn_ra_serf/replay.lo: subversion/libsvn_ra_serf/replay.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/serf.lo: subversion/libsvn_ra_serf/serf.c subversion/include/private/svn_dav_protocol.h subversion/include/private/svn_dep_compat.h subversion/include/svn_auth.h subversion/include/svn_compat.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra/wrapper_template.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/update.lo: subversion/libsvn_ra_serf/update.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/util.lo: subversion/libsvn_ra_serf/util.c subversion/include/private/svn_dav_protocol.h subversion/include/private/svn_dep_compat.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_serf/win32_auth_sspi.lo: subversion/libsvn_ra_serf/win32_auth_sspi.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra_serf/ra_serf.h subversion/libsvn_ra_serf/win32_auth_sspi.h - -subversion/libsvn_ra_serf/xml.lo: subversion/libsvn_ra_serf/xml.c subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra_serf/ra_serf.h subversion/svn_private_config.h - -subversion/libsvn_ra_svn/client.lo: subversion/libsvn_ra_svn/client.c subversion/include/svn_auth.h subversion/include/svn_compat.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_ra_svn.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra/ra_loader.h subversion/libsvn_ra/wrapper_template.h subversion/libsvn_ra_svn/ra_svn.h subversion/svn_private_config.h - -subversion/libsvn_ra_svn/cram.lo: subversion/libsvn_ra_svn/cram.c subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_ra_svn.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra_svn/ra_svn.h subversion/svn_private_config.h - -subversion/libsvn_ra_svn/cyrus_auth.lo: subversion/libsvn_ra_svn/cyrus_auth.c subversion/include/private/ra_svn_sasl.h subversion/include/private/svn_atomic.h subversion/include/private/svn_dep_compat.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_ra_svn.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra_svn/ra_svn.h subversion/svn_private_config.h - -subversion/libsvn_ra_svn/editorp.lo: subversion/libsvn_ra_svn/editorp.c subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_ra_svn.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra_svn/ra_svn.h subversion/svn_private_config.h - -subversion/libsvn_ra_svn/internal_auth.lo: subversion/libsvn_ra_svn/internal_auth.c subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_ra_svn.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra_svn/ra_svn.h subversion/svn_private_config.h - -subversion/libsvn_ra_svn/marshal.lo: subversion/libsvn_ra_svn/marshal.c subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_ra_svn.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra_svn/ra_svn.h subversion/svn_private_config.h - -subversion/libsvn_ra_svn/streams.lo: subversion/libsvn_ra_svn/streams.c subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_ra_svn.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_ra_svn/ra_svn.h subversion/svn_private_config.h - -subversion/libsvn_ra_svn/version.lo: subversion/libsvn_ra_svn/version.c subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_props.h subversion/include/svn_ra_svn.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -subversion/libsvn_repos/authz.lo: subversion/libsvn_repos/authz.c subversion/include/svn_config.h subversion/include/svn_ctype.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -subversion/libsvn_repos/commit.lo: subversion/libsvn_repos/commit.c subversion/include/svn_compat.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_repos/repos.h subversion/svn_private_config.h - -subversion/libsvn_repos/delta.lo: subversion/libsvn_repos/delta.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_repos/repos.h subversion/svn_private_config.h - -subversion/libsvn_repos/dump.lo: subversion/libsvn_repos/dump.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_iter.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/svn_private_config.h - -subversion/libsvn_repos/fs-wrap.lo: subversion/libsvn_repos/fs-wrap.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_repos/repos.h subversion/svn_private_config.h - -subversion/libsvn_repos/hooks.lo: subversion/libsvn_repos/hooks.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/libsvn_repos/repos.h subversion/svn_private_config.h - -subversion/libsvn_repos/load.lo: subversion/libsvn_repos/load.c subversion/include/private/svn_mergeinfo_private.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_repos/repos.h subversion/svn_private_config.h - -subversion/libsvn_repos/log.lo: subversion/libsvn_repos/log.c subversion/include/svn_compat.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_repos/repos.h subversion/svn_private_config.h - -subversion/libsvn_repos/node_tree.lo: subversion/libsvn_repos/node_tree.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_repos/repos.h subversion/svn_private_config.h - -subversion/libsvn_repos/replay.lo: subversion/libsvn_repos/replay.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/svn_private_config.h - -subversion/libsvn_repos/reporter.lo: subversion/libsvn_repos/reporter.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_repos/repos.h subversion/svn_private_config.h - -subversion/libsvn_repos/repos.lo: subversion/libsvn_repos/repos.c subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/libsvn_repos/repos.h subversion/svn_private_config.h - -subversion/libsvn_repos/rev_hunt.lo: subversion/libsvn_repos/rev_hunt.c subversion/include/svn_compat.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_repos/repos.h subversion/svn_private_config.h - -subversion/libsvn_subr/atomic.lo: subversion/libsvn_subr/atomic.c subversion/include/private/svn_atomic.h subversion/include/private/svn_dep_compat.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/auth.lo: subversion/libsvn_subr/auth.c subversion/include/svn_auth.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/cmdline.lo: subversion/libsvn_subr/cmdline.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_dso.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_nls.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/libsvn_subr/utf_impl.h subversion/libsvn_subr/win32_crashrpt.h subversion/svn_private_config.h - -subversion/libsvn_subr/compat.lo: subversion/libsvn_subr/compat.c subversion/include/svn_compat.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/config.lo: subversion/libsvn_subr/config.c subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/libsvn_subr/config_impl.h subversion/svn_private_config.h - -subversion/libsvn_subr/config_auth.lo: subversion/libsvn_subr/config_auth.c subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/libsvn_subr/config_impl.h subversion/svn_private_config.h - -subversion/libsvn_subr/config_file.lo: subversion/libsvn_subr/config_file.c subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_user.h subversion/include/svn_utf.h subversion/libsvn_subr/config_impl.h subversion/svn_private_config.h - -subversion/libsvn_subr/config_win.lo: subversion/libsvn_subr/config_win.c subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/libsvn_subr/config_impl.h subversion/svn_private_config.h - -subversion/libsvn_subr/constructors.lo: subversion/libsvn_subr/constructors.c subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/ctype.lo: subversion/libsvn_subr/ctype.c subversion/include/svn_ctype.h - -subversion/libsvn_subr/date.lo: subversion/libsvn_subr/date.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/svn_private_config.h - -subversion/libsvn_subr/dso.lo: subversion/libsvn_subr/dso.c subversion/include/svn_dso.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/svn_private_config.h - -subversion/libsvn_subr/error.lo: subversion/libsvn_subr/error.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/svn_private_config.h - -subversion/libsvn_subr/hash.lo: subversion/libsvn_subr/hash.c subversion/include/private/svn_dep_compat.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/io.lo: subversion/libsvn_subr/io.c subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/svn_private_config.h - -subversion/libsvn_subr/iter.lo: subversion/libsvn_subr/iter.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_iter.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/kitchensink.lo: subversion/libsvn_subr/kitchensink.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_mergeinfo.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/svn_private_config.h - -subversion/libsvn_subr/lock.lo: subversion/libsvn_subr/lock.c subversion/include/svn_types.h - -subversion/libsvn_subr/md5.lo: subversion/libsvn_subr/md5.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_md5.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/mergeinfo.lo: subversion/libsvn_subr/mergeinfo.c subversion/include/private/svn_mergeinfo_private.h subversion/include/svn_ctype.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/svn_private_config.h - -subversion/libsvn_subr/nls.lo: subversion/libsvn_subr/nls.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_nls.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/svn_private_config.h - -subversion/libsvn_subr/opt.lo: subversion/libsvn_subr/opt.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/svn_private_config.h - -subversion/libsvn_subr/path.lo: subversion/libsvn_subr/path.c subversion/include/svn_ctype.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/svn_private_config.h - -subversion/libsvn_subr/pool.lo: subversion/libsvn_subr/pool.c subversion/include/svn_pools.h subversion/include/svn_types.h - -subversion/libsvn_subr/prompt.lo: subversion/libsvn_subr/prompt.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/svn_private_config.h - -subversion/libsvn_subr/properties.lo: subversion/libsvn_subr/properties.c subversion/include/svn_ctype.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/quoprint.lo: subversion/libsvn_subr/quoprint.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_quoprint.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/simple_providers.lo: subversion/libsvn_subr/simple_providers.c subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_user.h subversion/include/svn_utf.h subversion/svn_private_config.h - -subversion/libsvn_subr/sorts.lo: subversion/libsvn_subr/sorts.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/ssl_client_cert_providers.lo: subversion/libsvn_subr/ssl_client_cert_providers.c subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/ssl_client_cert_pw_providers.lo: subversion/libsvn_subr/ssl_client_cert_pw_providers.c subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/ssl_server_trust_providers.lo: subversion/libsvn_subr/ssl_server_trust_providers.c subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/stream.lo: subversion/libsvn_subr/stream.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/svn_private_config.h - -subversion/libsvn_subr/subst.lo: subversion/libsvn_subr/subst.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/svn_private_config.h - -subversion/libsvn_subr/svn_base64.lo: subversion/libsvn_subr/svn_base64.c subversion/include/svn_base64.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/svn_string.lo: subversion/libsvn_subr/svn_string.c subversion/include/svn_ctype.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/target.lo: subversion/libsvn_subr/target.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h - -subversion/libsvn_subr/time.lo: subversion/libsvn_subr/time.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/svn_private_config.h - -subversion/libsvn_subr/user.lo: subversion/libsvn_subr/user.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_user.h subversion/include/svn_utf.h - -subversion/libsvn_subr/username_providers.lo: subversion/libsvn_subr/username_providers.c subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_user.h subversion/include/svn_utf.h - -subversion/libsvn_subr/utf.lo: subversion/libsvn_subr/utf.c subversion/include/svn_ctype.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/libsvn_subr/utf_impl.h subversion/libsvn_subr/win32_xlate.h subversion/svn_private_config.h - -subversion/libsvn_subr/utf_validate.lo: subversion/libsvn_subr/utf_validate.c subversion/include/svn_types.h subversion/libsvn_subr/utf_impl.h - -subversion/libsvn_subr/validate.lo: subversion/libsvn_subr/validate.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/svn_private_config.h - -subversion/libsvn_subr/version.lo: subversion/libsvn_subr/version.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/svn_private_config.h - -subversion/libsvn_subr/win32_crashrpt.lo: subversion/libsvn_subr/win32_crashrpt.c subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_subr/win32_crashrpt.h subversion/libsvn_subr/win32_crashrpt_dll.h - -subversion/libsvn_subr/win32_xlate.lo: subversion/libsvn_subr/win32_xlate.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/libsvn_subr/win32_xlate.h - -subversion/libsvn_subr/xml.lo: subversion/libsvn_subr/xml.c subversion/include/svn_ctype.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_xml.h subversion/libsvn_subr/utf_impl.h subversion/svn_private_config.h - -subversion/libsvn_wc/adm_crawler.lo: subversion/libsvn_wc/adm_crawler.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/lock.h subversion/libsvn_wc/props.h subversion/libsvn_wc/translate.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/adm_files.lo: subversion/libsvn_wc/adm_files.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/lock.h subversion/libsvn_wc/props.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/adm_ops.lo: subversion/libsvn_wc/adm_ops.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/adm_ops.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/lock.h subversion/libsvn_wc/log.h subversion/libsvn_wc/props.h subversion/libsvn_wc/translate.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/ambient_depth_filter_editor.lo: subversion/libsvn_wc/ambient_depth_filter_editor.c subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/wc.h - -subversion/libsvn_wc/copy.lo: subversion/libsvn_wc/copy.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/props.h subversion/libsvn_wc/translate.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/diff.lo: subversion/libsvn_wc/diff.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/props.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/entries.lo: subversion/libsvn_wc/entries.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_ctype.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/adm_ops.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/lock.h subversion/libsvn_wc/props.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/lock.lo: subversion/libsvn_wc/lock.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/lock.h subversion/libsvn_wc/log.h subversion/libsvn_wc/props.h subversion/libsvn_wc/questions.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/log.lo: subversion/libsvn_wc/log.c subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_iter.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/lock.h subversion/libsvn_wc/log.h subversion/libsvn_wc/props.h subversion/libsvn_wc/questions.h subversion/libsvn_wc/translate.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/merge.lo: subversion/libsvn_wc/merge.c subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/log.h subversion/libsvn_wc/questions.h subversion/libsvn_wc/translate.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/props.lo: subversion/libsvn_wc/props.c subversion/include/private/svn_mergeinfo_private.h subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/lock.h subversion/libsvn_wc/log.h subversion/libsvn_wc/props.h subversion/libsvn_wc/questions.h subversion/libsvn_wc/translate.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/questions.lo: subversion/libsvn_wc/questions.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/props.h subversion/libsvn_wc/questions.h subversion/libsvn_wc/translate.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/relocate.lo: subversion/libsvn_wc/relocate.c subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/lock.h subversion/libsvn_wc/props.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/revision_status.lo: subversion/libsvn_wc/revision_status.c subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/status.lo: subversion/libsvn_wc/status.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/lock.h subversion/libsvn_wc/props.h subversion/libsvn_wc/translate.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/translate.lo: subversion/libsvn_wc/translate.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/props.h subversion/libsvn_wc/translate.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/update_editor.lo: subversion/libsvn_wc/update_editor.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/libsvn_wc/adm_files.h subversion/libsvn_wc/adm_ops.h subversion/libsvn_wc/entries.h subversion/libsvn_wc/lock.h subversion/libsvn_wc/log.h subversion/libsvn_wc/props.h subversion/libsvn_wc/questions.h subversion/libsvn_wc/translate.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/libsvn_wc/util.lo: subversion/libsvn_wc/util.c subversion/include/private/svn_wc_private.h subversion/include/svn_auth.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_wc/wc.h subversion/svn_private_config.h - -subversion/mod_authz_svn/mod_authz_svn.lo: subversion/mod_authz_svn/mod_authz_svn.c subversion/include/mod_authz_svn.h subversion/include/mod_dav_svn.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_authz_svn/mod_authz_svn.c - -subversion/mod_dav_svn/activity.lo: subversion/mod_dav_svn/activity.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/private/svn_fs_private.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/activity.c - -subversion/mod_dav_svn/authz.lo: subversion/mod_dav_svn/authz.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/authz.c - -subversion/mod_dav_svn/deadprops.lo: subversion/mod_dav_svn/deadprops.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/deadprops.c - -subversion/mod_dav_svn/liveprops.lo: subversion/mod_dav_svn/liveprops.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/liveprops.c - -subversion/mod_dav_svn/lock.lo: subversion/mod_dav_svn/lock.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/lock.c - -subversion/mod_dav_svn/merge.lo: subversion/mod_dav_svn/merge.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/merge.c - -subversion/mod_dav_svn/mirror.lo: subversion/mod_dav_svn/mirror.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/mirror.c - -subversion/mod_dav_svn/mod_dav_svn.lo: subversion/mod_dav_svn/mod_dav_svn.c subversion/include/mod_authz_svn.h subversion/include/mod_dav_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_delta.h subversion/include/svn_dso.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/mod_dav_svn.c - -subversion/mod_dav_svn/reports/dated-rev.lo: subversion/mod_dav_svn/reports/dated-rev.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/reports/dated-rev.c - -subversion/mod_dav_svn/reports/file-revs.lo: subversion/mod_dav_svn/reports/file-revs.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/reports/file-revs.c - -subversion/mod_dav_svn/reports/get-location-segments.lo: subversion/mod_dav_svn/reports/get-location-segments.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/reports/get-location-segments.c - -subversion/mod_dav_svn/reports/get-locations.lo: subversion/mod_dav_svn/reports/get-locations.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/reports/get-locations.c - -subversion/mod_dav_svn/reports/get-locks.lo: subversion/mod_dav_svn/reports/get-locks.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/reports/get-locks.c - -subversion/mod_dav_svn/reports/log.lo: subversion/mod_dav_svn/reports/log.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/reports/log.c - -subversion/mod_dav_svn/reports/mergeinfo.lo: subversion/mod_dav_svn/reports/mergeinfo.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/private/svn_mergeinfo_private.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/reports/mergeinfo.c - -subversion/mod_dav_svn/reports/replay.lo: subversion/mod_dav_svn/reports/replay.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/reports/replay.c - -subversion/mod_dav_svn/reports/update.lo: subversion/mod_dav_svn/reports/update.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/reports/update.c - -subversion/mod_dav_svn/repos.lo: subversion/mod_dav_svn/repos.c subversion/include/mod_authz_svn.h subversion/include/mod_dav_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_auth.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/repos.c - -subversion/mod_dav_svn/util.lo: subversion/mod_dav_svn/util.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/util.c - -subversion/mod_dav_svn/version.lo: subversion/mod_dav_svn/version.c subversion/include/mod_authz_svn.h subversion/include/private/svn_dav_protocol.h subversion/include/svn_base64.h subversion/include/svn_dav.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_xml.h subversion/mod_dav_svn/dav_svn.h - $(COMPILE_APACHE_MOD) $(abs_srcdir)/subversion/mod_dav_svn/version.c - -subversion/po/de.mo: subversion/po/de.po - -subversion/po/es.mo: subversion/po/es.po - -subversion/po/fr.mo: subversion/po/fr.po - -subversion/po/it.mo: subversion/po/it.po - -subversion/po/ja.mo: subversion/po/ja.po - -subversion/po/ko.mo: subversion/po/ko.po - -subversion/po/nb.mo: subversion/po/nb.po - -subversion/po/pl.mo: subversion/po/pl.po - -subversion/po/pt_BR.mo: subversion/po/pt_BR.po - -subversion/po/sv.mo: subversion/po/sv.po - -subversion/po/zh_CN.mo: subversion/po/zh_CN.po - -subversion/po/zh_TW.mo: subversion/po/zh_TW.po - -subversion/svn/add-cmd.o: subversion/svn/add-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h - -subversion/svn/blame-cmd.o: subversion/svn/blame-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/cat-cmd.o: subversion/svn/cat-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h - -subversion/svn/changelist-cmd.o: subversion/svn/changelist-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/checkout-cmd.o: subversion/svn/checkout-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/cleanup-cmd.o: subversion/svn/cleanup-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h - -subversion/svn/commit-cmd.o: subversion/svn/commit-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h - -subversion/svn/conflict-callbacks.o: subversion/svn/conflict-callbacks.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/copy-cmd.o: subversion/svn/copy-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/delete-cmd.o: subversion/svn/delete-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/diff-cmd.o: subversion/svn/diff-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/export-cmd.o: subversion/svn/export-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/help-cmd.o: subversion/svn/help-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/import-cmd.o: subversion/svn/import-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/info-cmd.o: subversion/svn/info-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/list-cmd.o: subversion/svn/list-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/lock-cmd.o: subversion/svn/lock-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/log-cmd.o: subversion/svn/log-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_compat.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/main.o: subversion/svn/main.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/merge-cmd.o: subversion/svn/merge-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/mergeinfo-cmd.o: subversion/svn/mergeinfo-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/mkdir-cmd.o: subversion/svn/mkdir-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/move-cmd.o: subversion/svn/move-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/notify.o: subversion/svn/notify.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/propdel-cmd.o: subversion/svn/propdel-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/propedit-cmd.o: subversion/svn/propedit-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/propget-cmd.o: subversion/svn/propget-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/proplist-cmd.o: subversion/svn/proplist-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/props.o: subversion/svn/props.c subversion/include/svn_auth.h subversion/include/svn_base64.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/propset-cmd.o: subversion/svn/propset-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/resolve-cmd.o: subversion/svn/resolve-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/resolved-cmd.o: subversion/svn/resolved-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/revert-cmd.o: subversion/svn/revert-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/status-cmd.o: subversion/svn/status-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/status.o: subversion/svn/status.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/switch-cmd.o: subversion/svn/switch-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/unlock-cmd.o: subversion/svn/unlock-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/update-cmd.o: subversion/svn/update-cmd.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svn/util.o: subversion/svn/util.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_ctype.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/include/svn_xml.h subversion/svn/cl.h subversion/svn_private_config.h - -subversion/svnadmin/main.o: subversion/svnadmin/main.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_user.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/svn_private_config.h - -subversion/svndumpfilter/main.o: subversion/svndumpfilter/main.c subversion/include/private/svn_mergeinfo_private.h subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_sorts.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/svn_private_config.h - -subversion/svnlook/main.o: subversion/svnlook/main.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/svn_private_config.h - -subversion/svnserve/cyrus_auth.o: subversion/svnserve/cyrus_auth.c subversion/include/private/ra_svn_sasl.h subversion/include/private/svn_atomic.h subversion/include/private/svn_dep_compat.h subversion/include/svn_base64.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra_svn.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/svn_private_config.h subversion/svnserve/server.h - -subversion/svnserve/main.o: subversion/svnserve/main.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra_svn.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/svn_private_config.h subversion/svnserve/server.h subversion/svnserve/winservice.h - -subversion/svnserve/serve.o: subversion/svnserve/serve.c subversion/include/private/svn_mergeinfo_private.h subversion/include/svn_auth.h subversion/include/svn_compat.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_ra_svn.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_user.h subversion/include/svn_version.h subversion/svn_private_config.h subversion/svnserve/server.h - -subversion/svnserve/winservice.o: subversion/svnserve/winservice.c subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/svn_private_config.h subversion/svnserve/winservice.h - -subversion/svnsync/main.o: subversion/svnsync/main.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/svn_private_config.h - -subversion/svnversion/main.o: subversion/svnversion/main.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/svn_private_config.h - -subversion/tests/libsvn_client/client-test.o: subversion/tests/libsvn_client/client-test.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_client/mergeinfo.h subversion/tests/svn_test.h - -subversion/tests/libsvn_delta/random-test.o: subversion/tests/libsvn_delta/random-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_delta/compose_delta.c subversion/libsvn_delta/delta.h subversion/tests/libsvn_delta/delta-window-test.h subversion/tests/libsvn_delta/range-index-test.h subversion/tests/svn_test.h - -subversion/tests/libsvn_delta/svndiff-test.o: subversion/tests/libsvn_delta/svndiff-test.c subversion/include/svn_base64.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_quoprint.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -subversion/tests/libsvn_delta/vdelta-test.o: subversion/tests/libsvn_delta/vdelta-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_delta/delta.h subversion/tests/libsvn_delta/delta-window-test.h - -subversion/tests/libsvn_diff/diff-diff3-test.o: subversion/tests/libsvn_diff/diff-diff3-test.c subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_fs/fs-test.o: subversion/tests/libsvn_fs/fs-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_delta/delta.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h - -subversion/tests/libsvn_fs/locks-test.o: subversion/tests/libsvn_fs/locks-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h - -subversion/tests/libsvn_fs_base/changes-test.o: subversion/tests/libsvn_fs_base/changes-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/changes-table.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h - -subversion/tests/libsvn_fs_base/fs-base-test.o: subversion/tests/libsvn_fs_base/fs-base-test.c subversion/include/private/svn_fs_util.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_md5.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_delta/delta.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/nodes-table.h subversion/libsvn_fs_base/bdb/txn-table.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/id.h subversion/libsvn_fs_base/trail.h subversion/svn_private_config.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h - -subversion/tests/libsvn_fs_base/key-test.o: subversion/tests/libsvn_fs_base/key-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs_base/key-gen.h subversion/tests/svn_test.h - -subversion/tests/libsvn_fs_base/skel-test.o: subversion/tests/libsvn_fs_base/skel-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/util/skel.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h - -subversion/tests/libsvn_fs_base/strings-reps-test.o: subversion/tests/libsvn_fs_base/strings-reps-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/libsvn_fs_base/bdb/bdb_compat.h subversion/libsvn_fs_base/bdb/env.h subversion/libsvn_fs_base/bdb/reps-table.h subversion/libsvn_fs_base/bdb/strings-table.h subversion/libsvn_fs_base/fs.h subversion/libsvn_fs_base/trail.h subversion/libsvn_fs_base/util/fs_skels.h subversion/libsvn_fs_base/util/skel.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h - -subversion/tests/libsvn_ra_local/ra-local-test.o: subversion/tests/libsvn_ra_local/ra-local-test.c subversion/include/svn_auth.h subversion/include/svn_client.h subversion/include/svn_delta.h subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_ra.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/include/svn_wc.h subversion/libsvn_ra_local/ra_local.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h - -subversion/tests/libsvn_repos/dir-delta-editor.o: subversion/tests/libsvn_repos/dir-delta-editor.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/libsvn_repos/dir-delta-editor.h subversion/tests/svn_test.h - -subversion/tests/libsvn_repos/repos-test.o: subversion/tests/libsvn_repos/repos-test.c subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/libsvn_repos/dir-delta-editor.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h - -subversion/tests/libsvn_subr/compat-test.o: subversion/tests/libsvn_subr/compat-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/config-test.o: subversion/tests/libsvn_subr/config-test.c subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/error-test.o: subversion/tests/libsvn_subr/error-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/hashdump-test.o: subversion/tests/libsvn_subr/hashdump-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_hash.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/mergeinfo-test.o: subversion/tests/libsvn_subr/mergeinfo-test.c subversion/include/private/svn_mergeinfo_private.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/opt-test.o: subversion/tests/libsvn_subr/opt-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/path-test.o: subversion/tests/libsvn_subr/path-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/revision-test.o: subversion/tests/libsvn_subr/revision-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/stream-test.o: subversion/tests/libsvn_subr/stream-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/string-test.o: subversion/tests/libsvn_subr/string-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/target-test.o: subversion/tests/libsvn_subr/target-test.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h - -subversion/tests/libsvn_subr/time-test.o: subversion/tests/libsvn_subr/time-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_time.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/translate-test.o: subversion/tests/libsvn_subr/translate-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_subst.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/libsvn_subr/utf-test.o: subversion/tests/libsvn_subr/utf-test.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/libsvn_subr/utf_impl.h subversion/tests/svn_test.h - -subversion/tests/svn_test_editor.lo: subversion/tests/svn_test_editor.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_path.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h - -subversion/tests/svn_test_fs.lo: subversion/tests/svn_test_fs.c subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h subversion/tests/svn_test.h subversion/tests/svn_test_fs.h - -subversion/tests/svn_test_main.lo: subversion/tests/svn_test_main.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_opt.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h subversion/svn_private_config.h subversion/tests/svn_test.h - -tools/diff/diff.o: tools/diff/diff.c subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -tools/diff/diff3.o: tools/diff/diff3.c subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -tools/diff/diff4.o: tools/diff/diff4.c subversion/include/svn_diff.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_io.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_version.h - -tools/server-side/svn-populate-node-origins-index.o: tools/server-side/svn-populate-node-origins-index.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_path.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h - -tools/server-side/svnauthz-validate.o: tools/server-side/svnauthz-validate.c subversion/include/svn_auth.h subversion/include/svn_cmdline.h subversion/include/svn_config.h subversion/include/svn_delta.h subversion/include/svn_error.h subversion/include/svn_error_codes.h subversion/include/svn_fs.h subversion/include/svn_io.h subversion/include/svn_mergeinfo.h subversion/include/svn_pools.h subversion/include/svn_props.h subversion/include/svn_repos.h subversion/include/svn_string.h subversion/include/svn_types.h subversion/include/svn_utf.h subversion/include/svn_version.h - diff --git a/devel/subversion16/files/build-outputs.mk.patch b/devel/subversion16/files/build-outputs.mk.patch deleted file mode 100644 index 60a73547df27..000000000000 --- a/devel/subversion16/files/build-outputs.mk.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- build-outputs.mk.orig Fri Sep 8 03:22:07 2006 -+++ build-outputs.mk Wed Sep 13 14:15:17 2006 -@@ -670,7 +670,7 @@ - cd subversion/svnadmin ; $(INSTALL_BIN) svnadmin$(EXEEXT) $(DESTDIR)$(bindir)/svnadmin$(EXEEXT) - cd subversion/svndumpfilter ; $(INSTALL_BIN) svndumpfilter$(EXEEXT) $(DESTDIR)$(bindir)/svndumpfilter$(EXEEXT) - cd subversion/svnlook ; $(INSTALL_BIN) svnlook$(EXEEXT) $(DESTDIR)$(bindir)/svnlook$(EXEEXT) -- cd subversion/svnserve ; $(INSTALL_BIN) svnserve$(EXEEXT) $(DESTDIR)$(bindir)/svnserve$(EXEEXT) -+ cd subversion/svnserve ; $(INSTALL_BIN) svnserve$(EXEEXT) $(DESTDIR)$(bindir)/svnserve.bin$(EXEEXT) - cd subversion/svnsync ; $(INSTALL_BIN) svnsync$(EXEEXT) $(DESTDIR)$(bindir)/svnsync$(EXEEXT) - cd subversion/svnversion ; $(INSTALL_BIN) svnversion$(EXEEXT) $(DESTDIR)$(bindir)/svnversion$(EXEEXT) - diff --git a/devel/subversion16/files/patch-build--ac-macros--neon.m4 b/devel/subversion16/files/patch-build--ac-macros--neon.m4 deleted file mode 100644 index eb1660263b85..000000000000 --- a/devel/subversion16/files/patch-build--ac-macros--neon.m4 +++ /dev/null @@ -1,17 +0,0 @@ ---- build/ac-macros/neon.m4.orig Sat Nov 5 16:12:58 2005 -+++ build/ac-macros/neon.m4 Sat Nov 5 16:13:14 2005 -@@ -1,4 +1,4 @@ --dnl SVN_LIB_NEON(wanted_regex, latest_working_ver, url) -+ dnl SVN_LIB_NEON(wanted_regex, latest_working_ver, url) - dnl - dnl Search for a suitable version of neon. wanted_regex is a - dnl regular expression used in a Bourne shell switch/case statement -@@ -132,7 +132,7 @@ - if test "$NEON_VERSION" = "$svn_allowed_neon" -o $svn_allowed_neon = "any"; then - svn_allowed_neon_on_system="yes" - SVN_NEON_INCLUDES=[`$neon_config --cflags | sed -e 's/-D[^ ]*//g'`] -- NEON_LIBS=`$neon_config --la-file` -+ NEON_LIBS=`$neon_config --libs` - CFLAGS=["$CFLAGS `$neon_config --cflags | sed -e 's/-I[^ ]*//g'`"] - svn_lib_neon="yes" - break diff --git a/devel/subversion16/files/patch-build--ltmain.sh b/devel/subversion16/files/patch-build--ltmain.sh deleted file mode 100644 index 1e37810f843c..000000000000 --- a/devel/subversion16/files/patch-build--ltmain.sh +++ /dev/null @@ -1,11 +0,0 @@ ---- build/ltmain.sh.orig Fri May 20 21:41:54 2005 -+++ build/ltmain.sh Wed May 25 14:38:21 2005 -@@ -1492,7 +1492,7 @@ - # These systems don't actually have a C library (as such) - test "X$arg" = "X-lc" && continue - ;; -- *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) -+ *-*-openbsd* | *-*-freebsd4* | *-*-dragonfly*) - # Do not include libc due to us having libc/libc_r. - test "X$arg" = "X-lc" && continue - ;; diff --git a/devel/subversion16/files/patch-configure b/devel/subversion16/files/patch-configure deleted file mode 100644 index 562bede4f5ad..000000000000 --- a/devel/subversion16/files/patch-configure +++ /dev/null @@ -1,20 +0,0 @@ ---- configure.orig 2007-12-17 23:01:31.000000000 +0100 -+++ configure 2007-12-30 11:12:10.000000000 +0100 -@@ -4004,7 +4004,7 @@ - test "$svn_allowed_neon" = "any"; then - svn_allowed_neon_on_system="yes" - SVN_NEON_INCLUDES=`$neon_config --cflags | sed -e 's/-D[^ ]*//g'` -- NEON_LIBS=`$neon_config --la-file` -+ NEON_LIBS=`$neon_config --libs` - CFLAGS="$CFLAGS `$neon_config --cflags | sed -e 's/-I[^ ]*//g'`" - svn_lib_neon="yes" - break -@@ -4345,7 +4345,7 @@ - test "$svn_allowed_neon" = "any"; then - svn_allowed_neon_on_system="yes" - SVN_NEON_INCLUDES=`$neon_config --cflags | sed -e 's/-D[^ ]*//g'` -- NEON_LIBS=`$neon_config --la-file` -+ NEON_LIBS=`$neon_config --libs` - CFLAGS="$CFLAGS `$neon_config --cflags | sed -e 's/-I[^ ]*//g'`" - svn_lib_neon="yes" - break diff --git a/devel/subversion16/files/patch-contrib--client-side--asvn b/devel/subversion16/files/patch-contrib--client-side--asvn deleted file mode 100644 index bdf407f6ee8e..000000000000 --- a/devel/subversion16/files/patch-contrib--client-side--asvn +++ /dev/null @@ -1,114 +0,0 @@ ---- contrib/client-side/asvn.orig 2008-01-28 03:24:25.000000000 +0300 -+++ contrib/client-side/asvn 2008-06-28 12:10:05.554369000 +0400 -@@ -52,7 +52,7 @@ - TMPFILE2=/tmp/asvn.tmp2.$$ - PCWD=`/bin/pwd` - SKIPSVN='\( -name .svn -prune -false \)' --PRINTDETAILS="-printf \"file='%p' mode=%m user=%u(%U) group=%g(%G)\n\"" -+PRINTDETAILS="-printf \"file='%p' mode=%m user=(%U) group=(%G)\n\"" - - trap cleanup 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 - -@@ -64,7 +64,8 @@ - function basedirname() - { - refname="$1" -- dir="`dirname \"$2\"`" -+ shift -+ dir="`dirname \"$*\"`" - ref="`expr \"$dir\" : \"$refname/\(.*\)\"`" - if [ -z "$ref" ] - then -@@ -111,7 +112,7 @@ - - function recorddirinfo - { -- eval "find $PCWD $SKIPSVN -o \( -type d ! -name .svn -print \)" |while read dirlist -+ eval "gfind \"$PCWD\" $SKIPSVN -o \( -type d ! -name .svn -print \)" |while read dirlist - do - updatedirsymlinks $1 "$dirlist" - updatedirdevices $1 "$dirlist" -@@ -132,7 +133,7 @@ - # - # Obtain the list of devices in this directory - # -- find "$dir" \( \( -type b -o -type c -o -type p \) -print \) -o -type d ! -name "`basename \"$dir\"`" -prune | while read file -+ gfind "$dir" \( \( -type b -o -type c -o -type p \) -print \) -o -type d ! -name "`basename \"$dir\"`" -prune | while read file - do - echo -n `find "$file" -printf "file='%f' mode=%m user=%u(%U) group=%g(%G)"` - [ -b "$file" ] && echo -n ' type=b' -@@ -200,10 +201,10 @@ - grep -q "$info" $TMPFILE && continue # This line still matches - file="`expr \"$info\" : \"file='\(.*\)' \"`" - mode=`expr "$info" : ".*' mode=\([0-9]*\) "` -- user=`expr "$info" : ".* user=\([^(]*\)("` -- uid=`expr "$info" : ".* user=[^(]*(\([0-9]*\) "` -- group=`expr "$info" : ".* group=\([^(]*\)("` -- gid=`expr "$info" : ".* group=[^(]*(\([0-9]*\) "` -+# user=`expr "$info" : ".* user=\([^(]*\)("` -+ uid=`expr "$info" : ".* user=[^(]*(\([0-9]*\)"` -+# group=`expr "$info" : ".* group=\([^(]*\)("` -+ gid=`expr "$info" : ".* group=[^(]*(\([0-9]*\)"` - type=`expr "$info" : ".* type=\(.\)"` - major=`expr "$info" : ".* major=\([0-9]*\)"` - minor=`expr "$info" : ".* minor=\([0-9]*\)"` -@@ -213,7 +214,8 @@ - # - rm -f "$dir/$file" - mknod --mode=$mode "$dir/$file" $type $major $minor -- chown $user:$group "$dir/$file" -+# chown $user:$group "$dir/$file" -+ chown $uid:$gid "$dir/$file" - addignorefile "$dir/$file" - done - fi -@@ -234,7 +236,7 @@ - # - # Obtain the list of symlinks in this directory - # -- find "$dir" \( -type l -printf "file='%f' dest='%l'\n" \) -o -type d ! -name "`basename \"$dir\"`" -prune | -+ gfind "$dir" \( -type l -printf "file='%f' dest='%l'\n" \) -o -type d ! -name "`basename \"$dir\"`" -prune | - sort >$TMPFILE - - # -@@ -320,7 +322,7 @@ - # Find all the directories and files - cp /dev/null $TMPFILE - -- eval "find $PCWD $SKIPSVN -o \( \( -type d ! -name .svn \) -o -type f \) $PRINTDETAILS" | while read info -+ eval "gfind \"$PCWD\" $SKIPSVN -o \( \( -type d ! -name .svn \) -o -type f \) $PRINTDETAILS" | while read info - do - device=`expr "$info" : "file='\(.*\)' mode"` - info=`expr "$info" : "file='.*' \(mode.*\)"` -@@ -343,15 +345,16 @@ - else - info=`$SVN propget $FILE_PROP "$dir/$file"` - mode=`expr "$info" : "mode=\([0-9]*\) "` -- user=`expr "$info" : ".* user=\([^(]*\)("` -- uid=`expr "$info" : ".* user=[^(]*(\([0-9]*\) "` -- group=`expr "$info" : ".* group=\([^(]*\)("` -- gid=`expr "$info" : ".* group=[^(]*(\([0-9]*\) "` -- if [ "$user" = "" -o "$group" = "" -o "$mode" = "" ] -+# user=`expr "$info" : ".* user=\([^(]*\)("` -+ uid=`expr "$info" : ".* user=[^(]*(\([0-9]*\)"` -+# group=`expr "$info" : ".* group=\([^(]*\)("` -+ gid=`expr "$info" : ".* group=[^(]*(\([0-9]*\)"` -+ if [ "$uid" = "" -o "$gid" = "" -o "$mode" = "" ] - then - echo "property $FILE_PROP not set for $dir/$file" - else -- chown $user:$group "$dir/$file" -+# chown $user:$group "$dir/$file" -+ chown $uid:$gid "$dir/$file" - chmod $mode "$dir/$file" - fi - fi -@@ -391,7 +394,7 @@ - - [ "$ACTION" = "pre" ] && pre_checkin $@ - --$SVN $@ -+$SVN "$@" - - [ $? = 0 -a "$ACTION" = "post" ] && post_checkout $@ - diff --git a/devel/subversion16/files/patch-subversion::bindings::swig::perl::natives::Base.pm b/devel/subversion16/files/patch-subversion::bindings::swig::perl::natives::Base.pm deleted file mode 100644 index 143db2f1ce38..000000000000 --- a/devel/subversion16/files/patch-subversion::bindings::swig::perl::natives::Base.pm +++ /dev/null @@ -1,10 +0,0 @@ ---- subversion/bindings/swig/perl/native/Base.pm.orig 2004-10-20 10:46:59.000000000 +0400 -+++ subversion/bindings/swig/perl/native/Base.pm 2004-11-05 11:43:35.578125000 +0300 -@@ -60,6 +60,7 @@ - package SVN::_$pkg; - require DynaLoader; - bootstrap SVN::_$pkg; -+sub dl_load_flags { 0x01 } - 1; - ' or die $@; - }; diff --git a/devel/subversion16/files/patch-subversion::bindings::swig::perl::natives::Makefle.PL.in b/devel/subversion16/files/patch-subversion::bindings::swig::perl::natives::Makefle.PL.in deleted file mode 100644 index d26dc6f84b53..000000000000 --- a/devel/subversion16/files/patch-subversion::bindings::swig::perl::natives::Makefle.PL.in +++ /dev/null @@ -1,39 +0,0 @@ ---- subversion/bindings/swig/perl/native/Makefile.PL.in.orig Sat Oct 15 00:45:33 2005 -+++ subversion/bindings/swig/perl/native/Makefile.PL.in Wed Nov 2 21:58:44 2005 -@@ -1,4 +1,5 @@ --#!/usr/bin/perl -+#!/usr/bin/perl -w -+use strict; - use ExtUtils::MakeMaker; - use Config; - use Cwd 'abs_path'; -@@ -15,6 +16,11 @@ - my $swig_srcdir = "${svnlib_srcdir}/bindings/swig"; - my $swig_builddir = "${svnlib_builddir}/bindings/swig"; - -+my $top_builddir = '../../../../..'; -+my $top_srcdir = '@top_srcdir@'; -+my $svnlib_srcdir = "${top_srcdir}/subversion"; -+my $swig_srcdir = "${svnlib_srcdir}/bindings/swig"; -+ - my @modules = qw/client delta fs ra repos wc/; - my @ldpaths = ("$swig_builddir/perl/libsvn_swig_perl/.libs", - map {"$svnlib_builddir/libsvn_$_/.libs"} (@modules, qw/diff subr -@@ -45,8 +51,7 @@ - OBJECT => q/$(O_FILES)/, - LIBS => [join(' ', $apr_ldflags, - (map {$_ = abs_path($_); "-L$_"} @ldpaths), -- @ldmodules, '-lsvn_swig_perl-1', -- `$swig -perl -ldflags`)], -+ @ldmodules, '-lsvn_swig_perl-1')], - test => { TESTS => "$swig_srcdir/perl/native/t/*.t" } - ); - -@@ -61,6 +66,7 @@ - "\$(INST_LIBDIR)/$_.pm") } - map { perlish $_ } - ('base', 'core', @modules)}, -+ LDFROM => '$(O_FILES) '."../libsvn_swig_perl/.libs/libsvn_swig_perl-1.a", - MAN3PODS => {map { ("$swig_srcdir/perl/native/$_.pm" => - "\$(INST_MAN3DIR)/SVN::$_.\$(MAN3EXT)") } - map { perlish $_ } diff --git a/devel/subversion16/files/svnserve.in b/devel/subversion16/files/svnserve.in deleted file mode 100644 index 809bf08c440e..000000000000 --- a/devel/subversion16/files/svnserve.in +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# -# svnserve.sh for rc.d usage (c) 2005 Thomas E. Spanjaard. -# $Id$ - -# PROVIDE: svnserve -# REQUIRE: DAEMON -# BEFORE: LOGIN -# KEYWORD: shutdown -# -# Add the following line to /etc/rc.conf to enable SVNServe: -# -# svnserve_enable="YES" -# # optional -# svnserve_flags="-d --listen-port=3690" -# svnserve_data="/usr/local/repositories" -# svnserve_user="svn" -# svnserve_group="svn" - -. "%%RC_SUBR%%" - -# Set some defaults -svnserve_enable=${svnserve_enable:-"NO"} -svnserve_flags=${svnserve_flags:-"-d --listen-port=3690"} -svnserve_data=${svnserve_data:-"%%PREFIX%%/repositories"} -svnserve_user=${svnserve_user:-"svn"} -svnserve_group=${svnserve_group:-"svn"} - -name=svnserve -rcvar=`set_rcvar` -load_rc_config $name -command=%%PREFIX%%/bin/svnserve%%SVNSERVE_BIN_EXT%% -command_args="-r ${svnserve_data}" - -run_rc_command "$1" diff --git a/devel/subversion16/files/svnserve.wrapper b/devel/subversion16/files/svnserve.wrapper deleted file mode 100644 index 92fffc384652..000000000000 --- a/devel/subversion16/files/svnserve.wrapper +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -SVNSERVE=$(dirname $(realpath $0))/svnserve.bin - -umask 002 -$SVNSERVE "$@" - diff --git a/devel/subversion16/pkg-deinstall b/devel/subversion16/pkg-deinstall deleted file mode 100644 index 8a03c3956aac..000000000000 --- a/devel/subversion16/pkg-deinstall +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh -# -# Try to de-activate mod_dav_svn in the installed httpd.conf and warn -# if this fails. -# -# $FreeBSD$ -# - -if [ "$2" != "POST-DEINSTALL" ]; then - exit 0 -fi - -TMPDIR=${TMPDIR:=/tmp} -PKG_TMPDIR=${PKG_TMPDIR:=${TMPDIR}} - -apxscmd=${PKG_PREFIX}/sbin/apxs -tmpdir=${PKG_TMPDIR}/deinstmod_dav_svn.$$ - -if [ ! -x ${apxscmd} ]; then - echo Can\'t find the apxs program: ${apxscmd}. - exit 1 -fi - -confdir=`${apxscmd} -q SYSCONFDIR` - -if [ ! -d ${confdir} ]; then - echo Can\'t find Apache conf dir: ${confdir} - exit 1 -fi - -if [ -f ${confdir}/httpd.conf ]; then - conffile=httpd.conf -fi -if [ -f ${confdir}/httpd.conf.default ]; then - conffile="${conffile} httpd.conf.default" -fi -if [ -z "${conffile}" ]; then - echo Can\'t find either of ${confdir}/httpd.conf or - echo ${confdir}/httpd.conf.default. - exit 1 -fi - -if ! mkdir ${tmpdir}; then - echo Can\'t create temporary directory: ${tmpdir} - exit 1 -fi - -for i in ${conffile}; do - awk '{if (!/^LoadModule dav_svn_module/ && - !/^AddModule mod_dav_svn.c/ &&\ - !/^LoadModule authz_svn_module/ &&\ - !/^AddModule mod_authz_svn.c/ ) \ - print $0}' < ${confdir}/$i > ${tmpdir}/$i - echo Removing dav_svn_module and authz_svn_module from $i in config dir: ${confdir} - cat ${tmpdir}/$i > ${confdir}/$i -done - -rm -rf ${tmpdir} - -exit 0 diff --git a/devel/subversion16/pkg-descr b/devel/subversion16/pkg-descr deleted file mode 100644 index b0743f27a8c3..000000000000 --- a/devel/subversion16/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Subversion is a version control system designed to be as similar to cvs(1) -as possible, while fixing many outstanding problems with cvs(1). - -WWW: http://subversion.tigris.org/ diff --git a/devel/subversion16/pkg-plist b/devel/subversion16/pkg-plist deleted file mode 100644 index af24426de3ea..000000000000 --- a/devel/subversion16/pkg-plist +++ /dev/null @@ -1,301 +0,0 @@ -@comment $FreeBSD$ -bin/svn -bin/svnadmin -bin/svndumpfilter -bin/svnlook -bin/svnserve -bin/svnsync -%%ASVN%%bin/asvn -%%SVNSERVE_WRAPPER%%bin/svnserve.bin -bin/svnversion -include/subversion-1/mod_authz_svn.h -include/subversion-1/mod_dav_svn.h -include/subversion-1/svn-revision.txt -include/subversion-1/svn_auth.h -include/subversion-1/svn_base64.h -include/subversion-1/svn_client.h -include/subversion-1/svn_cmdline.h -include/subversion-1/svn_compat.h -include/subversion-1/svn_config.h -include/subversion-1/svn_ctype.h -include/subversion-1/svn_dav.h -include/subversion-1/svn_delta.h -include/subversion-1/svn_diff.h -include/subversion-1/svn_dso.h -include/subversion-1/svn_error.h -include/subversion-1/svn_error_codes.h -include/subversion-1/svn_fs.h -include/subversion-1/svn_hash.h -include/subversion-1/svn_io.h -include/subversion-1/svn_iter.h -include/subversion-1/svn_md5.h -include/subversion-1/svn_mergeinfo.h -include/subversion-1/svn_nls.h -include/subversion-1/svn_opt.h -include/subversion-1/svn_path.h -include/subversion-1/svn_pools.h -include/subversion-1/svn_props.h -include/subversion-1/svn_quoprint.h -include/subversion-1/svn_ra.h -include/subversion-1/svn_ra_svn.h -include/subversion-1/svn_repos.h -include/subversion-1/svn_sorts.h -include/subversion-1/svn_string.h -include/subversion-1/svn_subst.h -include/subversion-1/svn_time.h -include/subversion-1/svn_types.h -include/subversion-1/svn_user.h -include/subversion-1/svn_utf.h -include/subversion-1/svn_version.h -include/subversion-1/svn_wc.h -include/subversion-1/svn_xml.h -@dirrm include/subversion-1 -lib/libsvn_client-1.a -lib/libsvn_client-1.la -lib/libsvn_client-1.so -lib/libsvn_client-1.so.0 -lib/libsvn_delta-1.a -lib/libsvn_delta-1.la -lib/libsvn_delta-1.so -lib/libsvn_delta-1.so.0 -lib/libsvn_diff-1.a -lib/libsvn_diff-1.la -lib/libsvn_diff-1.so -lib/libsvn_diff-1.so.0 -lib/libsvn_fs-1.a -lib/libsvn_fs-1.la -lib/libsvn_fs-1.so -lib/libsvn_fs-1.so.0 -%%BDB%%lib/libsvn_fs_base-1.a -%%BDB%%lib/libsvn_fs_base-1.la -%%BDB%%lib/libsvn_fs_base-1.so -%%BDB%%lib/libsvn_fs_base-1.so.0 -lib/libsvn_fs_fs-1.a -lib/libsvn_fs_fs-1.la -lib/libsvn_fs_fs-1.so -lib/libsvn_fs_fs-1.so.0 -lib/libsvn_fs_util-1.a -lib/libsvn_fs_util-1.la -lib/libsvn_fs_util-1.so -lib/libsvn_fs_util-1.so.0 -lib/libsvn_ra-1.a -lib/libsvn_ra-1.la -lib/libsvn_ra-1.so -lib/libsvn_ra-1.so.0 -%%NEON%%lib/libsvn_ra_neon-1.a -%%NEON%%lib/libsvn_ra_neon-1.la -%%NEON%%lib/libsvn_ra_neon-1.so -%%NEON%%lib/libsvn_ra_neon-1.so.0 -lib/libsvn_ra_local-1.a -lib/libsvn_ra_local-1.la -lib/libsvn_ra_local-1.so -lib/libsvn_ra_local-1.so.0 -lib/libsvn_ra_svn-1.a -lib/libsvn_ra_svn-1.la -lib/libsvn_ra_svn-1.so -lib/libsvn_ra_svn-1.so.0 -lib/libsvn_repos-1.a -lib/libsvn_repos-1.la -lib/libsvn_repos-1.so -lib/libsvn_repos-1.so.0 -%%SERF%%lib/libsvn_ra_serf-1.a -%%SERF%%lib/libsvn_ra_serf-1.la -%%SERF%%lib/libsvn_ra_serf-1.so -%%SERF%%lib/libsvn_ra_serf-1.so.0 -lib/libsvn_subr-1.a -lib/libsvn_subr-1.la -lib/libsvn_subr-1.so -lib/libsvn_subr-1.so.0 -lib/libsvn_wc-1.a -lib/libsvn_wc-1.la -lib/libsvn_wc-1.so -lib/libsvn_wc-1.so.0 -%%PORTDOCS%%%%DOCSDIR%%/BUGS -%%PORTDOCS%%%%DOCSDIR%%/CHANGES -%%PORTDOCS%%%%DOCSDIR%%/COMMITTERS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/HACKING -%%PORTDOCS%%%%DOCSDIR%%/INSTALL -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch01dia1.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch02dia1.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch02dia2.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch02dia3.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch02dia4.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch02dia5.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch02dia6.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch02dia7.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch04dia1.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch04dia2.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch04dia3.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch04dia4.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch08dia1.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/ch08dia2.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/note.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/tip.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/images/warning.png -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/styles.css -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book-html/svn-book.html -%%PORTDOCS%%%%BOOK%%%%DOCSDIR%%/svn-book.pdf -%%WITHOUT_GETTEXT%%share/locale/de/LC_MESSAGES/subversion.mo -%%WITHOUT_GETTEXT%%share/locale/es/LC_MESSAGES/subversion.mo -%%WITHOUT_GETTEXT%%share/locale/fr/LC_MESSAGES/subversion.mo -%%WITHOUT_GETTEXT%%share/locale/it/LC_MESSAGES/subversion.mo -%%WITHOUT_GETTEXT%%share/locale/ja/LC_MESSAGES/subversion.mo -%%WITHOUT_GETTEXT%%share/locale/ko/LC_MESSAGES/subversion.mo -%%WITHOUT_GETTEXT%%share/locale/nb/LC_MESSAGES/subversion.mo -%%WITHOUT_GETTEXT%%share/locale/pl/LC_MESSAGES/subversion.mo -%%WITHOUT_GETTEXT%%share/locale/pt_BR/LC_MESSAGES/subversion.mo -%%WITHOUT_GETTEXT%%share/locale/sv/LC_MESSAGES/subversion.mo -%%WITHOUT_GETTEXT%%share/locale/zh_CN/LC_MESSAGES/subversion.mo -%%WITHOUT_GETTEXT%%share/locale/zh_TW/LC_MESSAGES/subversion.mo -%%DATADIR%%/README -%%DATADIR%%/backup/hot-backup.py -%%DATADIR%%/bdb/erase-all-text-data.py -%%DATADIR%%/bdb/skel.py -%%DATADIR%%/bdb/svn-bdb-view.py -%%DATADIR%%/bdb/svnfs.py -%%DATADIR%%/bdb/whatis-rep.py -%%DATADIR%%/buildbot/slaves/README -%%DATADIR%%/buildbot/slaves/i686-debian-sarge1/mount-ramdrive.c -%%DATADIR%%/buildbot/slaves/i686-debian-sarge1/svnbuild.sh -%%DATADIR%%/buildbot/slaves/i686-debian-sarge1/svncheck.sh -%%DATADIR%%/buildbot/slaves/i686-debian-sarge1/svnclean.sh -%%DATADIR%%/buildbot/slaves/i686-debian-sarge1/svnlog.sh -%%DATADIR%%/buildbot/slaves/i686-debian-sarge1/unmount-ramdrive.c -%%DATADIR%%/buildbot/slaves/osx10.4-gcc4.0.1-ia32/svnbuild.sh -%%DATADIR%%/buildbot/slaves/osx10.4-gcc4.0.1-ia32/svncheck.sh -%%DATADIR%%/buildbot/slaves/osx10.4-gcc4.0.1-ia32/svnclean.sh -%%DATADIR%%/buildbot/slaves/osx10.4-gcc4.0.1-ia32/svnlog.sh -%%DATADIR%%/buildbot/slaves/win32-xp VS2005/config.bat -%%DATADIR%%/buildbot/slaves/win32-xp VS2005/do_all.bat -%%DATADIR%%/buildbot/slaves/win32-xp VS2005/svnbuild.bat -%%DATADIR%%/buildbot/slaves/win32-xp VS2005/svncheck.bat -%%DATADIR%%/buildbot/slaves/win32-xp VS2005/svnclean.bat -%%DATADIR%%/buildbot/slaves/win32-xp VS2005/svnlog.bat -%%DATADIR%%/buildbot/slaves/xp-vc60-ia32/config.bat.tmpl -%%DATADIR%%/buildbot/slaves/xp-vc60-ia32/svnbuild.bat -%%DATADIR%%/buildbot/slaves/xp-vc60-ia32/svncheck.bat -%%DATADIR%%/buildbot/slaves/xp-vc60-ia32/svnclean.bat -%%DATADIR%%/buildbot/slaves/xp-vc60-ia32/svnlog.bat -%%DATADIR%%/client-side/bash_completion -%%DATADIR%%/client-side/bash_completion_test -%%DATADIR%%/client-side/change-svn-wc-format.py -%%DATADIR%%/client-side/server-version.py -%%DATADIR%%/client-side/showchange.pl -%%DATADIR%%/client-side/svn-graph.pl -%%DATADIR%%/client-side/wcfind -%%DATADIR%%/dev/check-license.py -%%DATADIR%%/dev/datecheck.py -%%DATADIR%%/dev/contribulyze.py -%%DATADIR%%/dev/gcov.patch -%%DATADIR%%/dev/gen-javahl-errors.py -%%DATADIR%%/dev/gnuify-changelog.pl -%%DATADIR%%/dev/graph-dav-servers.py -%%DATADIR%%/dev/iz/defect.dem -%%DATADIR%%/dev/iz/ff2csv.command -%%DATADIR%%/dev/iz/ff2csv.py -%%DATADIR%%/dev/iz/find-fix.py -%%DATADIR%%/dev/iz/run-queries.sh -%%DATADIR%%/dev/lock-check.py -%%DATADIR%%/dev/mlpatch.py -%%DATADIR%%/dev/normalize-dump.py -%%DATADIR%%/dev/prebuild-cleanup.sh -%%DATADIR%%/dev/random-commits.py -%%DATADIR%%/dev/po-merge.py -%%DATADIR%%/dev/scramble-tree.py -%%DATADIR%%/dev/stress.pl -%%DATADIR%%/dev/svn-dev.el -%%DATADIR%%/dev/svn-dev.vim -%%DATADIR%%/dev/svn-entries.el -%%DATADIR%%/dev/svn-merge-revs.py -%%DATADIR%%/dev/trails.py -%%DATADIR%%/dev/verify-history.py -%%DATADIR%%/dev/warn-ignored-err.sh -%%DATADIR%%/dev/which-error.py -%%DATADIR%%/diff/diff.c -%%DATADIR%%/diff/diff3.c -%%DATADIR%%/diff/diff4.c -%%DATADIR%%/dist/construct-rolling-environment.sh -%%DATADIR%%/dist/dist.sh -%%DATADIR%%/dist/download-release.sh -%%DATADIR%%/dist/extract-for-examination.sh -%%DATADIR%%/dist/getsigs.pl -%%DATADIR%%/dist/roll.sh -%%DATADIR%%/dist/sample-rc-warning-index.html -%%DATADIR%%/dist/test.sh -%%DATADIR%%/dist/write-announcement.py -%%DATADIR%%/examples/blame.py -%%DATADIR%%/examples/check-modified.py -%%DATADIR%%/examples/dumpprops.py -%%DATADIR%%/examples/get-location-segments.py -%%DATADIR%%/examples/getfile.py -%%DATADIR%%/examples/getlocks_test.c -%%DATADIR%%/examples/geturl.py -%%DATADIR%%/examples/headrev.c -%%DATADIR%%/examples/minimal_client.c -%%DATADIR%%/examples/putfile.py -%%DATADIR%%/examples/revplist.py -%%DATADIR%%/examples/svnlog2html.rb -%%DATADIR%%/examples/svnlook.py -%%DATADIR%%/examples/svnlook.rb -%%DATADIR%%/examples/svnput.c -%%DATADIR%%/examples/svnserve-sgid.c -%%DATADIR%%/examples/svnshell.py -%%DATADIR%%/examples/svnshell.rb -%%DATADIR%%/examples/testwrite.c -%%DATADIR%%/hook-scripts/commit-access-control.cfg.example -%%DATADIR%%/hook-scripts/commit-access-control.pl -%%DATADIR%%/hook-scripts/commit-email.pl -%%DATADIR%%/hook-scripts/commit-email.rb -%%DATADIR%%/hook-scripts/log-police.py -%%DATADIR%%/hook-scripts/mailer/mailer.conf.example -%%DATADIR%%/hook-scripts/mailer/mailer.py -%%DATADIR%%/hook-scripts/mailer/tests/mailer.conf -%%DATADIR%%/hook-scripts/mailer/tests/mailer-init.sh -%%DATADIR%%/hook-scripts/mailer/tests/mailer-t1.output -%%DATADIR%%/hook-scripts/mailer/tests/mailer-t1.sh -%%DATADIR%%/hook-scripts/mailer/tests/mailer-tweak.py -%%DATADIR%%/hook-scripts/README -%%DATADIR%%/hook-scripts/svn2feed.py -%%DATADIR%%/hook-scripts/svnperms.conf.example -%%DATADIR%%/hook-scripts/svnperms.py -%%DATADIR%%/hook-scripts/verify-po.py -%%DATADIR%%/po/l10n-report.py -%%DATADIR%%/po/po-update.sh -%%DATADIR%%/server-side/fsfs-reshard.py -%%DATADIR%%/server-side/svn-backup-dumps.py -%%DATADIR%%/server-side/svn-populate-node-origins-index.c -%%DATADIR%%/server-side/svnauthz-validate.c -%%DATADIR%%/server-side/svn_dav_log_parse.py -%%DATADIR%%/server-side/test_svn_dav_log_parse.py -%%DATADIR%%/xslt/svnindex.css -%%DATADIR%%/xslt/svnindex.xsl -%%MOD_DAV_SVN%%%%APACHEMODDIR%%/mod_dav_svn.so -%%MOD_DAV_SVN%%%%APACHEMODDIR%%/mod_authz_svn.so -%%MOD_DAV_SVN%%@exec %D/sbin/apxs -e -S LIBEXECDIR=%D/%%APACHEMODDIR%% -a -n dav libexec/%%APACHEDIR%%/mod_dav.so -%%MOD_DAV_SVN%%@exec %D/sbin/apxs -e -S LIBEXECDIR=%D/%%APACHEMODDIR%% -a -n dav_svn libexec/%%APACHEDIR%%/mod_dav_svn.so -%%PORTDOCS%%%%BOOK%%@dirrm %%DOCSDIR%%/svn-book-html/images -%%PORTDOCS%%%%BOOK%%@dirrm %%DOCSDIR%%/svn-book-html -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%DATADIR%%/backup -@dirrm %%DATADIR%%/bdb -@dirrm %%DATADIR%%/buildbot/slaves/i686-debian-sarge1 -@dirrm %%DATADIR%%/buildbot/slaves/osx10.4-gcc4.0.1-ia32 -@dirrm %%DATADIR%%/buildbot/slaves/win32-xp VS2005 -@dirrm %%DATADIR%%/buildbot/slaves/xp-vc60-ia32 -@dirrm %%DATADIR%%/buildbot/slaves -@dirrm %%DATADIR%%/buildbot -@dirrm %%DATADIR%%/client-side -@dirrm %%DATADIR%%/dev/iz -@dirrm %%DATADIR%%/dev -@dirrm %%DATADIR%%/diff -@dirrm %%DATADIR%%/dist -@dirrm %%DATADIR%%/examples -@dirrm %%DATADIR%%/hook-scripts/mailer/tests -@dirrm %%DATADIR%%/hook-scripts/mailer -@dirrm %%DATADIR%%/hook-scripts -@dirrm %%DATADIR%%/po -@dirrm %%DATADIR%%/server-side -@dirrm %%DATADIR%%/xslt -@dirrm %%DATADIR%% diff --git a/devel/swig20/Makefile b/devel/swig20/Makefile deleted file mode 100644 index d7a4f08361d4..000000000000 --- a/devel/swig20/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# New ports collection makefile for: SWIG -# Date created: 19 April 1996 -# Whom: jkh -# -# $FreeBSD$ -# - -PORTNAME= swig -PORTVERSION= 1.3.36 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= rafan@FreeBSD.org -COMMENT= Simplified Wrapper and Interface Generator - -USE_AUTOTOOLS= autoconf:262:env libtool:15 - -VER= ${PORTVERSION:R} -PLIST_SUB+= PORTVERSION=${PORTVERSION} - -# Supported languages: allegrocl c# clisp chicken guile java lua ocaml Octave -# perl php pike python R ruby tcl - -WRKSRC= ${WRKDIR}/${DISTNAME} -CONFIGURE_ENV+= CFLAGS="${CFLAGS} -fPIC -DPIC" -ALL_TARGET= swig -PLIST_SUB+= VER="${VER}" - -WANT_LUA= yes -WANT_LUA_VER= 5.0+ - -.include <bsd.port.pre.mk> - -.if ${HAVE_LUA:Mlua-5.*} != "" -USE_LUA= yes -LUA_COMPS= lua:build -CONFIGURE_ARGS+=--with-lua=${LUA_BINDIR}/lua \ - --with-luaincl=${LUA_INCDIR} \ - --with-lualib=${LUA_LIBDIR} -.endif - -OCTAVE_VER_CMD= ${LOCALBASE}/bin/octave-config -v 2>/dev/null || ${TRUE} - -post-patch: - ${SETENV} OCTAVE_VER=$$(${OCTAVE_VER_CMD}) \ - ${REINPLACE_CMD} -e 's|$$RUBY |${RUBY} |; \ - s|^PHP4CONFIG=.*$$|PHP4CONFIG=php-config|; \ - s|OCTAVEDIR=".*"|OCTAVEDIR="${LOCALBASE}/include/octave-$${OCTAVE_VER}"|; \ - ' ${WRKSRC}/configure - ${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' \ - ${WRKSRC}/Lib/lua/luarun.swg - -post-configure: - ${REINPLACE_CMD} -e 's#null#&|| true#' ${WRKSRC}/Makefile - -post-install: - ${LN} -f ${PREFIX}/bin/swig ${PREFIX}/bin/swig${VER} -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR}/${PORTVERSION} - cd ${WRKSRC}/Examples && ${FIND} . -type d \ - -exec ${INSTALL} -d ${EXAMPLESDIR}/${PORTVERSION}/{} \; - cd ${WRKSRC}/Examples && ${FIND} . -type f \ - -exec ${INSTALL_DATA} {} ${EXAMPLESDIR}/${PORTVERSION}/{} \; -.endif -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR}/${PORTVERSION} - cd ${WRKSRC}/Doc && ${FIND} . -type d \ - -exec ${INSTALL} -d ${DOCSDIR}/${PORTVERSION}/{} \; - cd ${WRKSRC}/Doc && ${FIND} . -type f \ - -exec ${INSTALL_DATA} {} ${DOCSDIR}/${PORTVERSION}/{} \; -.endif - -.if defined(MAINTAINER_MODE) -TMP_PREFIX= /tmp/${PKGNAME} -gen-pkg-plist: - ${RM} -rf ${PLIST} ${TMP_PREFIX} - ${MAKE} PLIST=pkg-plist PKG_DBDIR=${TMP_PREFIX}/pkgdb PREFIX=${TMP_PREFIX}/local clean all install - ${PORTSDIR}/Tools/scripts/plist \ - -d -m ${PORTSDIR}/Templates/BSD.local.dist ${TMP_PREFIX}/local | ${SED} '\ - s,${DATADIR_REL},%%DATADIR%%,; \ - s,${DOCSDIR_REL},%%DOCSDIR%%,; \ - s,${EXAMPLESDIR_REL},%%EXAMPLESDIR%%,; \ - /%%DOCSDIR%%/s,^,%%PORTDOCS%%,; \ - /%%EXAMPLESDIR%%/s,^,%%PORTEXAMPLES%%,; \ - s,${PORTVERSION},%%PORTVERSION%%,; \ - s,${VER},%%VER%%, \ - ' > ${PLIST} -.endif - -.include <bsd.port.post.mk> diff --git a/devel/swig20/distinfo b/devel/swig20/distinfo deleted file mode 100644 index f2a5e69931bd..000000000000 --- a/devel/swig20/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (swig-1.3.36.tar.gz) = 8f30aa4130b62404099bbcba1bf429b1 -SHA256 (swig-1.3.36.tar.gz) = 47439796e3332dd6f5f9e2a45a26c5dc2a6bc93461c2e009d7cb493d1816dc1f -SIZE (swig-1.3.36.tar.gz) = 4604982 diff --git a/devel/swig20/pkg-descr b/devel/swig20/pkg-descr deleted file mode 100644 index 188307a145ab..000000000000 --- a/devel/swig20/pkg-descr +++ /dev/null @@ -1,21 +0,0 @@ -SWIG is a tool for automatically generating the wrapper code needed -to link collections of functions written in C/C++ with interpreted -scripting languages. Currently, SWIG supports : - - - Tcl - - Python - - Perl5 - - Java - - Guile - - MzScheme - - Ruby - - CSharp - - Modula-3 - - Allegro CL - - Chicken - -Using SWIG, it is possible to greatly simplify interface development -and to put interesting interfaces on existing applications with -little effort. - -WWW: http://www.swig.org/ diff --git a/devel/swig20/pkg-plist b/devel/swig20/pkg-plist deleted file mode 100644 index 5f1739b38bbc..000000000000 --- a/devel/swig20/pkg-plist +++ /dev/null @@ -1,3613 +0,0 @@ -bin/swig -bin/swig%%VER%% -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/cmdopt.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/engineering.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/file.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/index.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/internals.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/migrate.txt -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/parm.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/runtime.txt -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/scanner.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/tree.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Devel/wrapobj.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Allegrocl.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Arguments.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/CSharp.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Chicken.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Contents.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Contract.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Customization.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Extending.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Guile.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Introduction.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Java.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Library.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Lisp.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Lua.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Makefile -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Modula3.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Modules.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Mzscheme.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Ocaml.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Octave.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Perl5.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Php.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Pike.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Preface.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Preprocessor.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Python.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/R.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/README -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Ruby.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/SWIG.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/SWIGDocumentation.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/SWIGDocumentation.pdf -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/SWIGPlus.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Scripting.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Sections.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Tcl.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Typemaps.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Varargs.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Warnings.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Windows.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/ch11.1.png -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/ch11.2.png -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/ch1%%VER%%.png -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/ch12.1.png -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/ch2.1.png -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/ch9.table.2.png -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/chapters -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/fixstyle.py -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/index.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/makechap.py -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/maketoc.py -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/margin-left.patch -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/style.css -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/swig16.png -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/swightml.book -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/swigpdf.book -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/full/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/full/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/full/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/full/gifplot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/full/test-gifplot.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/simple/simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/simple/test-simple.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Common-Lisp/full/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Common-Lisp/full/gifplot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Common-Lisp/full/runme.lisp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/full/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/full/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/full/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/full/gifplot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/full/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/simple/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/simple/simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Include/gifplot.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Interface/gifplot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/full/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/full/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/full/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/full/gifplot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/full/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/shadow/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/shadow/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/shadow/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/shadow/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/simple/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/simple/simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Lib/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Lib/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Lib/color.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Lib/font.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Lib/frame.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Lib/gif.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Lib/matrix.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Lib/pixmap.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Lib/plot2d.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Lib/plot3d.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/full/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/full/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/full/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/full/gifplot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/full/runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/simple/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/simple/runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/simple/simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/full/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/full/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/full/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/full/gifplot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/full/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/shadow/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/shadow/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/shadow/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/shadow/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/simple/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/simple/simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/full/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/full/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/full/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/full/gifplot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/full/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/shadow/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/shadow/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/shadow/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/shadow/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/simple/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/simple/simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Pike/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Pike/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Pike/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Pike/simple/runme.pike -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Pike/simple/simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/full/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/full/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/full/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/full/gifplot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/full/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/shadow/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/shadow/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/shadow/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/shadow/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/simple/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/simple/simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/full/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/full/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/full/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/full/gifplot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/full/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/shadow/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/shadow/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/shadow/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/shadow/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/simple/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/simple/simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/full/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/full/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/full/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/full/gifplot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/full/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/mandel/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/mandel/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/mandel/cmap -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/mandel/display.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/mandel/mandel.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/mandel/mandel.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/simple/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/simple/simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/test-lowlevel-class.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class/test-tinyclos-class.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/constants/test-constants.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/mod1.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/mod2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/multi.setup -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/multi_init.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/single.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/single.setup -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg/test.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/multimap/test-multimap.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload/test-overload.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/simple/test-simple.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/zlib/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/zlib/README.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/zlib/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/zlib/test-zlib.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_c/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_c/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_c/runme1.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_c/runme2.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/runme1.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/runme2.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx/runme3.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example-cs.csproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example-vc.vcproj -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/example.sln -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables/runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/constants/constants.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/main.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/matrix.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/matrix.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/matrix.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/package.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/vector.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/vector.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix/vector.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multimap/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multivalue/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multivalue/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multivalue/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multivalue/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/port/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/port/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/port/port.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/port/port.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/port/port.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/simple/example.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/std_vector/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/std_vector/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/std_vector/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/guile/std_vector/runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/class/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/constants/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/constants/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/multimap/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/multimap/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/native/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/native/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/native/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/native/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/pointer/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/pointer/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/template/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/template/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/template/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/template/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/typemap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/typemap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/typemap/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/typemap/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables/main.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/arrays/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/arrays/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/arrays/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/arrays/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/class/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/constants/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/dual/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/dual/dual.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/dual/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/dual/example2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed/embed.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed2/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed2/embed2.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed2/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed2/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed2/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/embed3.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/example.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/exception/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/exception/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/exception/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/exception/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/funcptr3/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/funcptr3/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/funcptr3/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/funcptr3/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/funcptr3/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functest/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functest/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functest/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functest/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functor/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functor/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functor/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/bar.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/bar.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/base.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/base.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/foo.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/foo.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/spam.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import/spam.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/lua.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/owner/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/owner/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/owner/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/owner/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/owner/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/pointer/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/simple/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/lua/variables/runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/class/swig.tmpl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/exception/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/exception/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/exception/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/typemap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/typemap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/multimap/example.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/simple/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/simple/example.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/std_vector/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/std_vector/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/std_vector/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/std_vector/example.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/argout_ref/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/argout_ref/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/argout_ref/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/argout_ref/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/contract/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/contract/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/contract/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/scoped_enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/scoped_enum/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/scoped_enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/scoped_enum/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/scoped_enum/foo.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/shapes/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/shapes/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/shapes/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/shapes/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/shapes/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/simple/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/simple/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_string/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_string/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_string/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_string/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_string/runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_vector/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_vector/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_vector/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_vector/runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/stl/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/stl/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/stl/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/stl/runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/string_from_ptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/string_from_ptr/example_prog.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/string_from_ptr/foolib.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/strings_test/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/strings_test/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/strings_test/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/strings_test/runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/callback/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/callback/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/callback/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/callback/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/callback/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/class/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/constants/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/contract/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/contract/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/contract/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/contract/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/enum/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/extend/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/extend/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/extend/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/extend/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/extend/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr2/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr2/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr2/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr2/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr2/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/functor/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/functor/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/functor/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/operator/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/operator/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/operator/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/operator/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/pointer/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/reference/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/simple/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/template/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/template/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/template/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/octave/variables/runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants2/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants2/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants2/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/bar.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/bar.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/bar.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/base.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/base.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/base.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/example.dsw -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/foo.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/foo.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/foo.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/spam.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/spam.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import/spam.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/inline/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/inline/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/inline/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/java/Example.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/java/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/java/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/java/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multimap/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multimap/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multiple_inheritance/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multiple_inheritance/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multiple_inheritance/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multiple_inheritance/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/pointer/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/pointer/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring/xmlstring.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/class/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/constants/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/cpointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/cpointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/cpointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/cpointer/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/disown/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/disown/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/disown/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/disown/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/disown/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/enum/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/funcptr/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/overloading/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/overloading/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/overloading/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/overloading/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/overloading/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/pointer/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/pragmas/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/pragmas/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/pragmas/include.php -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/pragmas/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/proxy/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/proxy/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/proxy/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/proxy/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/proxy/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/reference/BUILD-proxy.sh -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/reference/runme-proxy.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/reference/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/simple/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/sync/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/sync/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/sync/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/sync/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/sync/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/value/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/value/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/value/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/value/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/value/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/variables/runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/php4/variables/runme.php4.old -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/class/runme.pike -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/constants/runme.pike -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/enum/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/enum/runme.pike -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/overload/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/overload/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/overload/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/overload/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/overload/runme.pike -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/simple/runme.pike -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/template/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/template/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/pike/template/runme.pike -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/callback/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/callback/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/callback/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/callback/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/callback/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/callback/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/class/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/class/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/class/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/constants/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/constants/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/contract/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/contract/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/contract/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/contract/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/contract/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/docstrings/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/docstrings/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/docstrings/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/docstrings/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/docstrings/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/enum/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/enum/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/exception/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/exception/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/exception/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/exception/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/exceptproxy/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/exceptproxy/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/exceptproxy/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/exceptproxy/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/extend/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/extend/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/extend/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/extend/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/extend/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/extend/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr2/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr2/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr2/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr2/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr2/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/functor/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/functor/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/functor/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/bar.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/bar.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/bar.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/base.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/base.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/base.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/example.dsw -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/foo.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/foo.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/foo.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/spam.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/spam.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import/spam.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template/bar.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template/bar.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template/base.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template/base.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template/foo.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template/foo.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template/spam.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template/spam.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/java/Example.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/java/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/java/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/java/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/libffi/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/libffi/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/multimap/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/multimap/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/operator/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/operator/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/operator/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/operator/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/pointer/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/pointer/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/reference/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/reference/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/simple/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/simple/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/simple/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/smartptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/smartptr/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/smartptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/smartptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/smartptr/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/smartptr/smartptr.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/std_map/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/std_map/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/std_map/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/std_map/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/std_vector/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/std_vector/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/std_vector/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/std_vector/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/swigrun/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/swigrun/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/swigrun/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/swigrun/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/swigrun/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/template/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/template/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/template/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/varargs/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/varargs/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/varargs/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/variables/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/variables/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/weave/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/weave/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/weave/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/weave/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/weave/runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/python/weave/swigptr2.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/class/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/class/runme.R -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/simple/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/r/simple/runme.R -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/class/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/class/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/class/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/constants/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/constants/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/enum/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/enum/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/exception_class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/exception_class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/exception_class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/exception_class/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/free_function/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/free_function/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/free_function/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/free_function/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/free_function/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/free_function/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr2/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr2/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr2/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr2/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr2/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/functor/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/functor/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/functor/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/hashargs/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/hashargs/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/hashargs/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/bar.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/bar.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/bar.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/base.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/base.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/base.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/example.dsw -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/foo.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/foo.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/foo.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/spam.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/spam.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import/spam.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template/bar.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template/bar.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template/base.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template/base.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template/foo.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template/foo.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template/spam.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template/spam.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/java/Example.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/java/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/java/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/java/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/mark_function/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/mark_function/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/mark_function/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/mark_function/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/mark_function/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/mark_function/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/multimap/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/multimap/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/operator/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/operator/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/operator/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/operator/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/overloading/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/overloading/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/overloading/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/overloading/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/overloading/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/pointer/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/pointer/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/reference/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/reference/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/simple/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/simple/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/simple/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/std_vector/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/std_vector/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/std_vector/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/std_vector/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/template/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/template/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/template/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/template/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/value/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/value/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/value/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/value/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/value/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/value/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/variables/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/variables/runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/s-exp/uffi.lisp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/check.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/class/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/class/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/class/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/class/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/class/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/class/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/class/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/class/runme2.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/constants/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/constants/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/constants/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/constants/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/contract/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/contract/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/contract/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/contract/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/contract/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/enum/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/enum/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/enum/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/enum/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/enum/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/enum/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/funcptr/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/funcptr/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/funcptr/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/funcptr/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/funcptr/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/funcptr/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/bar.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/bar.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/bar.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/base.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/base.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/base.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/example.dsw -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/foo.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/foo.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/foo.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/spam.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/spam.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import/spam.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/java/Example.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/java/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/java/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/java/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/multimap/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/multimap/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/multimap/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/multimap/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/multimap/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/operator/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/operator/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/operator/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/operator/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/pointer/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/pointer/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/pointer/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/pointer/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/pointer/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/reference/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/reference/example.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/reference/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/reference/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/reference/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/reference/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/simple/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/simple/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/simple/example.dsp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/simple/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/simple/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/simple/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/std_vector/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/std_vector/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/std_vector/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/std_vector/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/value/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/value/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/value/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/value/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/value/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/value/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/variables/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/variables/example.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/variables/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/variables/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/variables/index.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/variables/runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/abstract_access.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/abstract_inherit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/abstract_inherit_ok.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/abstract_signature.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/abstract_typedef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/abstract_typedef2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/abstract_virtual.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/access_change.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/add_link.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/aggregate.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/allegrocl/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/allegrocl/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/allowexcept.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/allprotected.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/anonymous_bitfield.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/apply_signed_char.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/apply_strings.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/argout.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/array_member.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/array_typedef_memberin.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/arrayref.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/arrays.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/arrays_dimensionless.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/arrays_global.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/arrays_global_twodim.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/arrays_scope.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/bloody_hell.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/bools.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cast_operator.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/casts.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cffi/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cffi/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/char_constant.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/char_strings.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/casts_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/char_constant_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/class_ignore_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/clientdata_prop_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/constover_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/contract_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/cpp_basic_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/cpp_enum_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/cpp_namespace_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/dynamic_cast_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/ext_test.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/ext_test_external.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/ext_test_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/global_vars_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/global_vars_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/import_nomodule_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/imports_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/inherit_missing_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/li_std_string_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/li_std_string_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/li_typemaps_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/li_typemaps_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/list_vector_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/member_pointer_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/multiple_inheritance_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/multivalue_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/name_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/newobject1_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/newobject2_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/newobject2_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/overload_complicated_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/overload_copy_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/overload_copy_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/overload_extend_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/overload_extend_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/overload_simple_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/overload_simple_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/overload_subtype_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/overload_subtype_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/pointer_in_out_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/reference_global_vars_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/testsuite.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/throw_exception_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/typedef_inherit_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/typename_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/unions_runme.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken/unions_runme_proxy.ss -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/class_ignore.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/class_scope_weird.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/clientdata_prop.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/clientdata_prop_a.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/clientdata_prop_a.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/clientdata_prop_b.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/clientdata_prop_b.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/clisp/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/clisp/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/common.mk -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/compactdefaultargs.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/const_const.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/const_const_2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/constant_pointers.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/constants.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/constover.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/constructor_copy.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/constructor_exception.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/constructor_explicit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/constructor_ignore.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/constructor_value.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/contract.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/conversion.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/conversion_namespace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/conversion_ns_template.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cplusplus_throw.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cpp_basic.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cpp_broken.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cpp_enum.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cpp_namespace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cpp_nodefault.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cpp_static.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cpp_typedef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/aggregate_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/allprotected_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/apply_strings_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/bools_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/char_strings_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/constover_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/csharp_attributes_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/csharp_exceptions_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/csharp_prepost_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/csharp_typemaps_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/default_args_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/default_constructor_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/director_classes_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/director_classic_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/director_ignore_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/director_primitives_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/director_protected_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/director_string_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/enum_thorough_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/enum_thorough_simple_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/enum_thorough_typesafe_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/imports_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/intermediary_classname_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/li_boost_shared_ptr_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/li_std_except_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/li_std_string_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/li_std_vector_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/li_std_wstring_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/li_typemaps_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/long_long_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/member_pointer_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/operator_overload_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/overload_complicated_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/overload_template_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/pointer_reference_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/sizet_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/sneaky1_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/threads_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/throw_exception_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/typemap_namespace_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/varargs_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp/virtual_poly_runme.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp_attributes.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp_exceptions.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp_features.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp_prepost.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp_typemaps.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/default_args.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/default_constructor.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/defvalue_constructor.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/derived_byvalue.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/derived_nested.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/destructor_reprotected.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_abstract.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_basic.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_classes.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_classic.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_constructor.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_default.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_detect.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_enum.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_exception.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_extend.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_finalizer.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_frob.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_ignore.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_namespace_clash.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_nested.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_overload.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_primitives.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_protected.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_redefined.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_string.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_thread.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_unroll.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_using.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_wombat.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/director_wstring.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/disown.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/dynamic_cast.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/empty.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/enum_plus.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/enum_scope_template.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/enum_template.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/enum_thorough.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/enum_thorough_proper.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/enum_thorough_simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/enum_thorough_typesafe.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/enum_thorough_typeunsafe.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/enum_var.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/enums.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_bad_name.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_bad_native.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_class.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_default_error.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_deprecated.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_empty_char.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_enum_badvalue.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_extra_rblock.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_extra_rbrace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_extra_unsigned.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_insert_missing.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_long_short.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_missing_rbrace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_missing_semi.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_redefine.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_varargs.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/c_varargs_neg.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_bad_extern.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_extend_redefine.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_extend_undefined.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_inline_namespace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_missing_rtemplate.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_namespace_alias.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_namespace_aliasnot.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_namespace_aliasundef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_nested.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_no_access.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_nobase.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_overload.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_private_defvalue.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_private_inherit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_template_argname.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_template_nargs.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_template_not.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_template_partial.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_template_repeat.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_template_undef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_using_not.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/cpp_using_undef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/make.sh -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/nomodule.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_badeval.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_defined.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_macro_args.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_macro_badchar.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_macro_nargs.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_macro_redef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_macro_rparen.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_macro_unterminated.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_misplaced_elif.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_misplaced_else.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_missing_enddef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_missing_endif.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_missing_file.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_missing_rblock.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_unterm_char.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_unterm_comment.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/pp_unterm_string.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/swig_apply_nargs.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/swig_identifier.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/swig_insert_bad.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/swig_typemap_copy.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors/swig_typemap_old.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/evil_diamond.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/evil_diamond_ns.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/evil_diamond_prop.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/exception_order.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/exception_partial_info.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/extend.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/extend_default.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/extend_placement.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/extend_template.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/extend_template_ns.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/extend_variable.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/extern_declaration.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/extern_namespace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/extern_throws.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/features.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/file_test.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/fragments.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/friends.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/funcptr.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/function_typedef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/fvirtual.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/global_ns_arg.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/global_vars.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/grouping.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/casts_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/char_constant_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/class_ignore_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/constover_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/contract_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/cpp_enum_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/cpp_namespace_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/dynamic_cast_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/import_nomodule_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/imports_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/inherit_missing_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/integers_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/li_std_string_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/li_typemaps_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/list_vector_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/multivalue_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/name_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/overload_complicated_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/overload_copy_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/overload_extend_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/overload_simple_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/overload_subtype_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/pointer_in_out_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/reference_global_vars_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/testsuite.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/throw_exception_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/typedef_inherit_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/typename_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile/unions_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guilescm/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guilescm/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guilescm/ext_test.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guilescm/ext_test_external.cxx -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guilescm/ext_test_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ignore_parameter.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ignore_template_constructor.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/immutable.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/import_nomodule.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/import_nomodule.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/imports.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/imports_a.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/imports_a.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/imports_b.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/imports_b.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/inctest.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/inctest.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/inherit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/inherit_missing.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/inherit_same_name.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/inherit_target_language.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/inherit_void_arg.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/inline_initializer.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/integers.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/intermediary_classname.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/aggregate_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/allprotected_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/apply_signed_char_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/apply_strings_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/array_member_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/arrays_global_twodim_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/char_strings_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/cpp_typedef_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/default_args_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/default_constructor_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_abstract_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_basic_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_classes_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_classic_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_default_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_enum_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_exception_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_frob_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_ignore_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_primitives_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_protected_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_string_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_thread_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_unroll_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/director_wombat_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/dynamic_cast_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/enum_thorough_proper_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/enum_thorough_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/enum_thorough_simple_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/enum_thorough_typeunsafe_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/extend_default_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/extern_declaration_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/ignore_parameter_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/imports_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/inctest_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/inherit_target_language_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/intermediary_classname_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_constants_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_director_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_enums_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_jnitypes_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_lib_arrays_dimensionless_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_lib_arrays_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_lib_various_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_pgcpp_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_pragmas_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_prepost_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_throws_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_typemaps_proxy_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_typemaps_typewrapper_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/li_boost_shared_ptr_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/li_carrays_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/li_std_except_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/li_std_string_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/li_std_vector_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/li_typemaps_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/long_long_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/member_pointer_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/minherit2_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/multiple_inheritance_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/operator_overload_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/overload_complicated_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/overload_template_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/pointer_reference_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/primitive_ref_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/profiletest_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/rename1_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/rename2_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/rename3_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/rename4_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/ret_by_value_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/rname_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/sizet_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/special_variables_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_classes_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_default_arg_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_default_class_parms_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_methods_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_template_parameters_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/typemap_namespace_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/unions_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/using_pointers_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/varargs_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/virtual_poly_runme.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_constants.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_director.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_enums.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_jnitypes.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_lib_arrays.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_lib_arrays_dimensionless.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_lib_various.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_pgcpp.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_pragmas.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_prepost.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_throws.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_typemaps_proxy.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_typemaps_typewrapper.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/keyword_rename.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/kind.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/langobj.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lextype.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_attribute.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_boost_shared_ptr.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_boost_shared_ptr_bits.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_carrays.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_cdata.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_cdata_carrays.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_cmalloc.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_constraints.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_cpointer.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_cstring.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_cwstring.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_factory.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_implicit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_math.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_deque.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_except.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_map.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_pair.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_set.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_stream.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_string.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_vector.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_wstring.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_stdint.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_typemaps.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_windows.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/list_vector.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/long_long.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/long_long_apply.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/abstract_access_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/cpp_basic_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/disown_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/dynamic_cast_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/enums_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/exception_order_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/exception_partial_info_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/import.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/import_nomodule_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/imports_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/li_carrays_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/li_std_except_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/li_std_pair_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/li_std_string_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/li_std_vector_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/li_typemaps_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/member_pointer_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/multi_import_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/newobject1_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/newobject2_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/operator_overload_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/overload_simple_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/overload_template_fast_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/overload_template_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/pointer_reference_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/primitive_ref_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/ret_by_value_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/sizet_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/smart_pointer_overload_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/template_default_arg_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua/voidtest_runme.lua -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/member_pointer.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/member_template.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/memberin1.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/minherit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/minherit2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mixed_types.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mod.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mod.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mod_a.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mod_b.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/multi_import.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/multi_import.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/multi_import_a.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/multi_import_b.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/multi_import_c.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/multiple_inheritance.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/multivalue.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mzscheme/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mzscheme/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mzscheme/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mzscheme/casts_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mzscheme/char_constant_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mzscheme/imports_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mzscheme/integers_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mzscheme/name_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mzscheme/unions_runme.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/name.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/name_cxx.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/name_warnings.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_class.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_enum.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_extend.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_nested.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_spaces.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_template.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_typedef_class.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_typemap.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_union.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_virtual_method.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/naturalvar.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/nested.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/nested_comment.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/newobject1.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/newobject2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/null_pointer.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/class_ignore_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/imports_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/makedebugtop -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/minherit_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/name_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/newobject1_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/overload_copy_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/sneaky1_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/throw_exception_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/typedef_mptr_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/typename_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/unions_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/using_protected_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/varargs_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml/voidtest_runme.ml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/abstract_access_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/abstract_typedef2_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/abstract_typedef_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/abstract_virtual_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/argcargvtest_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/array_member_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/arrays_global_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/callback_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/cell_deref.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/cell_deref_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/class_ignore_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/class_scope_weird_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/compactdefaultargs_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/complextest_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/constover_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/constructor_copy_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/contract_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/cpp_enum_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/cpp_namespace_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/default_args_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/default_constructor_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_abstract_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_basic_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_classic_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_default_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_detect_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_enum_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_exception_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_extend_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_finalizer_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_frob_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_nested_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_stl_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_string_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_unroll_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/director_wstring_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/dynamic_cast_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/empty_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/enum_template_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/enums_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/exception_order_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/extend_placement_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/extend_template_ns_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/extend_template_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/extend_variable_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/file_test_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/friends_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/fvirtual_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/global_ns_arg_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/grouping_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/iadd_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/implicittest.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/import_nomodule_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/imports_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/inctest_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/inherit_missing_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/inout_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/inplaceadd_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/input_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_attribute_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_boost_shared_ptr_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_carrays_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_cmalloc_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_cpointer_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_cstring_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_cwstring_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_factory_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_implicit_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_std_carray_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_std_map_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_std_pair.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_std_pair_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_std_set_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_std_stream_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_std_string.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_std_string_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_std_vector_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_std_wstream_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/li_std_wstring_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/member_pointer_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/minherit_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/mod_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/multi_import_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/namespace_class_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/namespace_typemap_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/namespace_virtual_method_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/naturalvar_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/nondynamic_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/null_pointer_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/overload_complicated_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/overload_copy_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/overload_extend_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/overload_extendc_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/overload_rename_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/overload_simple_cast_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/overload_simple_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/overload_subtype_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/overload_template_fast_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/overload_template_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/preproc_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/primitive_ref_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/primitive_types_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/profiletest_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/refcount_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/reference_global_vars_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/rename_scope_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/ret_by_value_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/return_const_value_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/smart_pointer_extend_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/smart_pointer_member_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/smart_pointer_multi_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/smart_pointer_multi_typedef_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/smart_pointer_not_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/smart_pointer_overload_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/smart_pointer_rename_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/smart_pointer_simple_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/smart_pointer_templatevariables_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/smart_pointer_typedef_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/sneaky1_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/static_const_member_2_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/std_containers_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/struct_rename_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/struct_value_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/swigobject_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_construct_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_default_arg_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_extend1_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_extend2_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_inherit_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_matrix_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_ns4_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_ns_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_opaque_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_ref_type_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_rename_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_static_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_tbase_template_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_type_namespace_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_typedef_cplx2_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_typedef_cplx3_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_typedef_cplx4_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_typedef_cplx_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_typedef_import_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/template_typedef_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/typedef_class_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/typedef_inherit_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/typedef_scope_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/typemap_namespace_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/typemap_ns_using_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/typename_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/types_directive_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/unions_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/using1_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/using2_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/using_composition_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/using_extend_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/using_inherit_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/using_private_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/using_protected_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/varargs_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/virtual_derivation_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/virtual_poly_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/voidtest_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave/wrapmacro_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/operator_overload.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/operator_overload_break.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ordering.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/overload_complicated.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/overload_copy.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/overload_extend.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/overload_extendc.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/overload_rename.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/overload_simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/overload_subtype.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/overload_template.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/overload_template_fast.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/packageoption.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/packageoption.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/packageoption_a.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/packageoption_b.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/Test/Builder.pm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/Test/More.pm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/aggregate_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/apply_signed_char_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/apply_strings_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/array_member_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/char_strings_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/class_ignore_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/contract_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/default_args_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/default_constructor_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/disown_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/dynamic_cast_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/enum_template_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/enum_thorough_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/exception_order_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/global_vars_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/grouping_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/ignore_parameter_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/import_nomodule_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/imports_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/inctest_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/inherit_missing_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/inherit_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/li_carrays_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/li_cdata_carrays_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/li_std_except_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/li_std_list.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/li_std_string_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/li_typemaps_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/member_pointer_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/minherit_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/multiple_inheritance_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/naturalvar_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/operator_overload_break_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/operator_overload_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/overload_copy_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/overload_simple_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/packageoption_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/preproc_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/primitive_ref_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/primitive_types_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/profiletest_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/reference_global_vars_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/rename_scope_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/ret_by_value_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/return_const_value_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/run-perl-test.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/sizet_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/sneaky1_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/template_default_arg_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/template_ref_type_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/template_typedef_cplx2_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/template_typedef_cplx3_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/template_typedef_cplx_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/typedef_class_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/typemap_namespace_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/typename_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/unions_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/using1_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/using2_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/varargs_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/virtual_poly_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/voidtest_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/wrapmacro_runme.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/abstract_inherit_ok_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/abstract_inherit_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/add_link_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/argout_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/arrayptr_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/arrays_global_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/arrays_global_twodim_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/arrays_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/arrays_scope_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/casts_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/class_ignore_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/conversion_namespace_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/conversion_ns_template_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/conversion_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/cpp_static_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/enum_scope_template_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/evil_diamond_ns_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/evil_diamond_prop_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/evil_diamond_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/extend_template_ns_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/extend_template_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/grouping_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/ignore_parameter_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/li_carrays_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/li_std_string_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/namewarn_rename.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/rename_scope_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/skel.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/smart_pointer_rename_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/sym_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/template_arg_typename_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/template_construct_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/tests.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/typedef_reference_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/typemap_ns_using_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/using1_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/using2_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4/valuewrapper_base_runme.php4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/pike/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/pike/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/pointer_in_out.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/pointer_reference.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/preproc.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/primitive_ref.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/primitive_types.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/private_assign.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/profiletest.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/protected_rename.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/pure_virtual.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/abstract_access_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/abstract_typedef2_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/abstract_typedef_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/abstract_virtual_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/argcargvtest.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/argcargvtest_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/array_member_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/arrays_global_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/autodoc.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/callback.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/callback_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/class_ignore_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/class_scope_weird_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/compactdefaultargs_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/complextest.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/complextest_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/constover_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/constructor_copy_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/contract_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/cpp_enum_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/cpp_namespace_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/default_args_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/default_constructor_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_abstract_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_basic_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_classic_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_default_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_detect_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_enum_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_exception_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_extend_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_finalizer_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_frob_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_nested_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_profile.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_profile_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_protected_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_stl.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_stl_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_string_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_thread_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_unroll_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/director_wstring_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/disown_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/dynamic_cast_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/empty_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/enum_template_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/enums_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/exception_order_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/extend_placement_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/extend_template_ns_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/extend_template_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/extend_variable_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/file_test_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/friends_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/fvirtual_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/global_ns_arg_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/grouping_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/hugemod.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/iadd.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/iadd.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/iadd_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/implicittest.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/import_nomodule_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/imports_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/inctest_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/inherit_missing_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/inout.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/inout_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/inplaceadd.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/inplaceadd_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/input.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/input_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/keyword_rename_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/kwargs.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/kwargs_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/langobj_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_attribute_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_boost_shared_ptr_bits_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_boost_shared_ptr_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_carrays_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_cmalloc_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_cpointer_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_cstring_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_cwstring_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_factory_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_implicit_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_carray.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_carray_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_map.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_map_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_pair.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_pair_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_set.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_set_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_stream.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_stream_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_string.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_string_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_vector.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_vector_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_vectora.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_wstream.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_wstream_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_wstring.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_wstring_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/member_pointer_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/minherit_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/mod_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/multi_import_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/namespace_class_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/namespace_typemap_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/namespace_virtual_method_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/naturalvar_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/nondynamic.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/nondynamic_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/overload_complicated_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/overload_copy_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/overload_extend_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/overload_extendc_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/overload_rename_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/overload_simple_cast.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/overload_simple_cast_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/overload_simple_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/overload_subtype_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/overload_template_fast_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/overload_template_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/preproc_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/primitive_ref_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/primitive_types_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/profiletest_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/profiletestc_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/pythonswig.supp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/refcount_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/reference_global_vars_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/rename_scope_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/ret_by_value_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/return_const_value_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/simutry.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/smart_pointer_extend_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/smart_pointer_member_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/smart_pointer_multi_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/smart_pointer_multi_typedef_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/smart_pointer_not_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/smart_pointer_overload_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/smart_pointer_rename_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/smart_pointer_simple_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/smart_pointer_templatevariables_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/smart_pointer_typedef_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/sneaky1_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/static_const_member_2_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/std_containers.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/std_containers_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/struct_rename_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/struct_value_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/swigobject.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/swigobject_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/tag_no_clash_with_variable_runme.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_construct_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_default_arg_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_extend1_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_extend2_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_inherit_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_matrix.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_matrix_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_ns4_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_ns_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_opaque_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_ref_type_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_rename_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_static_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_tbase_template_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_type_namespace_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_typedef_cplx2_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_typedef_cplx3_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_typedef_cplx4_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_typedef_cplx_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_typedef_import_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/template_typedef_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/typedef_class_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/typedef_inherit_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/typedef_scope_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/typemap_namespace_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/typemap_ns_using_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/typename_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/types_directive_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/unions_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/using1_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/using2_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/using_composition_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/using_extend_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/using_inherit_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/using_private_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/using_protected_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/varargs_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/vector.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/virtual_derivation_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/virtual_poly_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/voidtest_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/wrapmacro_runme.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/copy_struct.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/copy_struct_runme.R -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/double_delete.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/double_delete_runme.R -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/funcptr_runme.R -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/ignore_parameter_runme.R -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/legacy.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/legacy_runme.R -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/simple_array.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/simple_array_runme.R -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/unions_runme.R -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r/unittest.R -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/redefined.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/refcount.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/refcount.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/reference_global_vars.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/register_par.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/rename.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/rename1.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/rename2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/rename3.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/rename4.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/rename_camel.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/rename_scope.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/restrict_cplusplus.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ret_by_value.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/return_const_value.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/return_value_scope.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/rname.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/abstract_access_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/abstract_inherit_ok_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/abstract_inherit_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/abstract_signature_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/abstract_typedef2_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/abstract_typedef_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/abstract_virtual_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/access_change_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/add_link_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/aggregate_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/anonymous_bitfield_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/apply_signed_char_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/apply_strings_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/argout_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/array_member_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/arrays_global_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/arrays_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/bools_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/cast_operator_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/casts_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/char_constant_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/check_missing_tests.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/class_ignore_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/const_const_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/constover_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/cpp_namespace_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/default_constructor_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_abstract_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_basic_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_constructor_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_default_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_detect_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_exception_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_frob_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_nested_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_protected_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_string_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_unroll_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/director_wombat_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/disown_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/dynamic_cast_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/enum_thorough_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/enums_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/extend_template_ns_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/extend_template_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/friends_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/function_typedef_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/grouping_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/ignore_parameter_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/imports_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/inherit_missing_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/integers_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/keywords.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/keywords_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_carrays_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_cstring_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_factory_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_math_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_deque_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_functors.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_functors_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_map_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_pair_lang_object.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_pair_lang_object_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_pair_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_queue.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_queue_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_set_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_speed.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_speed2_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_speed_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_stack.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_stack_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_stream_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_string_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/li_std_vector_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/member_pointer_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/minherit_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/namespace_typemap_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/naming.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/naming_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/newobject1_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/newobject2_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/overload_copy_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/overload_extend_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/overload_extendc_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/overload_simple_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/overload_subtype_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/overload_template_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/primitive_ref_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/primitive_types_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/profiletest_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/refcount_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/reference_global_vars_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/rename_scope_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/smart_pointer_const_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/smart_pointer_multi_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/smart_pointer_multi_typedef_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/smart_pointer_not_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/smart_pointer_overload_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/smart_pointer_rename_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/smart_pointer_simple_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/smart_pointer_typedef_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/sneaky1_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/static_const_member_2_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/std_containers_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/stl_new.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/stl_new_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/struct_value_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/swig_assert.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/swig_gc.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_construct_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_extend1_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_extend2_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_inherit_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_ns4_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_ns_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_rename_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_tbase_template_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_type_namespace_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_typedef_cplx2_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_typedef_cplx3_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_typedef_cplx4_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/template_typedef_cplx_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/throw_exception_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/track_objects.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/track_objects_directors.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/track_objects_directors_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/track_objects_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/typedef_inherit_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/typedef_scope_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/typemap_namespace_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/typemap_ns_using_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/typename_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/unions_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/using1_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/using2_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/using_composition_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/using_extend_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/using_inherit_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/using_private_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/using_protected_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/varargs_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/virtual_derivation_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/virtual_poly_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby/voidtest_runme.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/samename.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/samename_runme.m -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/casts.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/char_constant.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/class_ignore.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/constover.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/contract.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/cpp_enum.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/cpp_namespace.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/dynamic_cast.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/global_vars.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/global_vars_proxy.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/import_nomodule.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/imports.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/inherit_missing.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/integers.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/li_std_string.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/li_typemaps.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/li_typemaps_proxy.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/list_vector.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/multiple_inheritance_proxy.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/multivalue.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/name.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/overload_complicated.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/overload_copy.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/overload_extend.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/overload_simple.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/overload_subtype.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/pointer_in_out.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/reference_global_vars.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/typedef_inherit.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/typename.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/unions.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme/unions_proxy.scm -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/shared_ptr_wrapper.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/sizeof_pointer.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/sizet.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_const.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_const2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_extend.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_inherit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_member.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_multi.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_multi_typedef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_namespace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_namespace2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_not.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_overload.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_protected.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_rename.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_simple.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_static.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_templatemethods.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_templatevariables.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/smart_pointer_typedef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/sneaky1.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/special_variables.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/static_array_member.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/static_const_member.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/static_const_member_2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/std_containers.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/struct_rename.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/struct_value.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/swig_examples_lock.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/sym.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tag_no_clash_with_variable.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/bools_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/clientdata_prop_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/disown_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/enum_thorough_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/import_nomodule_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/imports_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/li_std_string_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/member_pointer_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/newobject1_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/newobject2_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/overload_copy_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/overload_simple_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/primitive_ref_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/primitive_types_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/profiletest_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/reference_global_vars_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/union.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/union_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl/unions_runme.tcl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_arg_replace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_arg_scope.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_arg_typename.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_array_numeric.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_base_template.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_classes.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_const_ref.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_construct.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_default.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_default2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_default_arg.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_default_class_parms.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_default_inherit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_default_pointer.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_default_qualify.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_default_vw.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_enum.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_enum_ns_inherit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_enum_typedef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_explicit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_expr.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_extend1.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_extend2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_extend_overload.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_extend_overload_2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_forward.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_inherit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_inherit_abstract.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_int_const.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_methods.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_ns.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_ns2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_ns3.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_ns4.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_ns_enum.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_ns_enum2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_ns_inherit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_ns_scope.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_opaque.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_partial_arg.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_qualifier.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_ref_type.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_rename.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_retvalue.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_specialization.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_specialization_defarg.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_specialization_enum.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_static.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_tbase_template.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_template_parameters.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_type_namespace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_cplx.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_cplx2.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_cplx2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_cplx3.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_cplx4.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_cplx5.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_fnc.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_funcptr.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_import.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_import.list -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_ns.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_ptr.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typedef_rec.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typemaps.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_using.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_virtual.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_whitespace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir/subdir1/hello.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir/subdir1/imports.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir/subdir1/subinc1.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir/subdir2/hello.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir/subdir2/imports.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir/subdir2/subinc2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir/test.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/threads.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/throw_exception.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/traits.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typedef_array_member.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typedef_class.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typedef_funcptr.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typedef_inherit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typedef_mptr.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typedef_reference.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typedef_scope.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typedef_sizet.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typedef_struct.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typemap_namespace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typemap_ns_using.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typemap_numinputs.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typemap_self.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typemap_subst.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typemap_variables.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typemap_various.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/typename.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/types_directive.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/uffi/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/uffi/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/union_scope.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/unions.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using1.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using2.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_composition.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_extend.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_inherit.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_namespace.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_pointers.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_private.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_protected.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/valuewrapper.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/valuewrapper_base.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/valuewrapper_const.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/valuewrapper_opaque.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/varargs.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/virtual_derivation.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/virtual_destructor.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/virtual_poly.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/voidtest.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/wrapmacro.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/error.expected-xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/error.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example.expected-xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_apply.expected-xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_apply.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_const.expected-xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_const.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_gif.expected-xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_gif.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_inl.expected-xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_inl.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_inl.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_p5.expected-xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_p5.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_ro.expected-xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_ro.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_title_add.expected-xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_title_add.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_xml.expected-xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_xml.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/example_xml.i -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/gnarly.expected-xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/xml/gnarly.i -%%DATADIR%%/%%PORTVERSION%%/allegrocl/allegrocl.swg -%%DATADIR%%/%%PORTVERSION%%/allegrocl/inout_typemaps.i -%%DATADIR%%/%%PORTVERSION%%/allegrocl/longlongs.i -%%DATADIR%%/%%PORTVERSION%%/allegrocl/std_list.i -%%DATADIR%%/%%PORTVERSION%%/allegrocl/std_string.i -%%DATADIR%%/%%PORTVERSION%%/allegrocl/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/allkw.swg -%%DATADIR%%/%%PORTVERSION%%/attribute.i -%%DATADIR%%/%%PORTVERSION%%/carrays.i -%%DATADIR%%/%%PORTVERSION%%/cdata.i -%%DATADIR%%/%%PORTVERSION%%/cffi/cffi.swg -%%DATADIR%%/%%PORTVERSION%%/chicken/chicken.swg -%%DATADIR%%/%%PORTVERSION%%/chicken/chickenkw.swg -%%DATADIR%%/%%PORTVERSION%%/chicken/chickenrun.swg -%%DATADIR%%/%%PORTVERSION%%/chicken/multi-generic.scm -%%DATADIR%%/%%PORTVERSION%%/chicken/std_string.i -%%DATADIR%%/%%PORTVERSION%%/chicken/swigclosprefix.scm -%%DATADIR%%/%%PORTVERSION%%/chicken/tinyclos-multi-generic.patch -%%DATADIR%%/%%PORTVERSION%%/chicken/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/clisp/clisp.swg -%%DATADIR%%/%%PORTVERSION%%/cmalloc.i -%%DATADIR%%/%%PORTVERSION%%/constraints.i -%%DATADIR%%/%%PORTVERSION%%/cpointer.i -%%DATADIR%%/%%PORTVERSION%%/csharp/boost_shared_ptr.i -%%DATADIR%%/%%PORTVERSION%%/csharp/csharp.swg -%%DATADIR%%/%%PORTVERSION%%/csharp/csharphead.swg -%%DATADIR%%/%%PORTVERSION%%/csharp/csharpkw.swg -%%DATADIR%%/%%PORTVERSION%%/csharp/director.swg -%%DATADIR%%/%%PORTVERSION%%/csharp/enums.swg -%%DATADIR%%/%%PORTVERSION%%/csharp/enumsimple.swg -%%DATADIR%%/%%PORTVERSION%%/csharp/enumtypesafe.swg -%%DATADIR%%/%%PORTVERSION%%/csharp/std_common.i -%%DATADIR%%/%%PORTVERSION%%/csharp/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/csharp/std_except.i -%%DATADIR%%/%%PORTVERSION%%/csharp/std_map.i -%%DATADIR%%/%%PORTVERSION%%/csharp/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/csharp/std_string.i -%%DATADIR%%/%%PORTVERSION%%/csharp/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/csharp/std_wstring.i -%%DATADIR%%/%%PORTVERSION%%/csharp/stl.i -%%DATADIR%%/%%PORTVERSION%%/csharp/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/csharp/wchar.i -%%DATADIR%%/%%PORTVERSION%%/cstring.i -%%DATADIR%%/%%PORTVERSION%%/cwstring.i -%%DATADIR%%/%%PORTVERSION%%/exception.i -%%DATADIR%%/%%PORTVERSION%%/gcj/cni.i -%%DATADIR%%/%%PORTVERSION%%/gcj/cni.swg -%%DATADIR%%/%%PORTVERSION%%/gcj/javaprims.i -%%DATADIR%%/%%PORTVERSION%%/guile/common.scm -%%DATADIR%%/%%PORTVERSION%%/guile/cplusplus.i -%%DATADIR%%/%%PORTVERSION%%/guile/ghinterface.i -%%DATADIR%%/%%PORTVERSION%%/guile/guile.i -%%DATADIR%%/%%PORTVERSION%%/guile/guile_gh.swg -%%DATADIR%%/%%PORTVERSION%%/guile/guile_gh_run.swg -%%DATADIR%%/%%PORTVERSION%%/guile/guile_scm.swg -%%DATADIR%%/%%PORTVERSION%%/guile/guile_scm_run.swg -%%DATADIR%%/%%PORTVERSION%%/guile/guilemain.i -%%DATADIR%%/%%PORTVERSION%%/guile/interpreter.i -%%DATADIR%%/%%PORTVERSION%%/guile/list-vector.i -%%DATADIR%%/%%PORTVERSION%%/guile/pointer-in-out.i -%%DATADIR%%/%%PORTVERSION%%/guile/ports.i -%%DATADIR%%/%%PORTVERSION%%/guile/std_common.i -%%DATADIR%%/%%PORTVERSION%%/guile/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/guile/std_except.i -%%DATADIR%%/%%PORTVERSION%%/guile/std_map.i -%%DATADIR%%/%%PORTVERSION%%/guile/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/guile/std_string.i -%%DATADIR%%/%%PORTVERSION%%/guile/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/guile/stl.i -%%DATADIR%%/%%PORTVERSION%%/guile/swigrun.i -%%DATADIR%%/%%PORTVERSION%%/guile/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/inttypes.i -%%DATADIR%%/%%PORTVERSION%%/java/arrays_java.i -%%DATADIR%%/%%PORTVERSION%%/java/boost_shared_ptr.i -%%DATADIR%%/%%PORTVERSION%%/java/director.swg -%%DATADIR%%/%%PORTVERSION%%/java/enums.swg -%%DATADIR%%/%%PORTVERSION%%/java/enumsimple.swg -%%DATADIR%%/%%PORTVERSION%%/java/enumtypesafe.swg -%%DATADIR%%/%%PORTVERSION%%/java/enumtypeunsafe.swg -%%DATADIR%%/%%PORTVERSION%%/java/java.swg -%%DATADIR%%/%%PORTVERSION%%/java/javahead.swg -%%DATADIR%%/%%PORTVERSION%%/java/javakw.swg -%%DATADIR%%/%%PORTVERSION%%/java/std_common.i -%%DATADIR%%/%%PORTVERSION%%/java/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/java/std_except.i -%%DATADIR%%/%%PORTVERSION%%/java/std_map.i -%%DATADIR%%/%%PORTVERSION%%/java/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/java/std_string.i -%%DATADIR%%/%%PORTVERSION%%/java/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/java/std_wstring.i -%%DATADIR%%/%%PORTVERSION%%/java/stl.i -%%DATADIR%%/%%PORTVERSION%%/java/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/java/various.i -%%DATADIR%%/%%PORTVERSION%%/lua/_std_common.i -%%DATADIR%%/%%PORTVERSION%%/lua/carrays.i -%%DATADIR%%/%%PORTVERSION%%/lua/lua.swg -%%DATADIR%%/%%PORTVERSION%%/lua/lua_fnptr.i -%%DATADIR%%/%%PORTVERSION%%/lua/luarun.swg -%%DATADIR%%/%%PORTVERSION%%/lua/luaruntime.swg -%%DATADIR%%/%%PORTVERSION%%/lua/luatypemaps.swg -%%DATADIR%%/%%PORTVERSION%%/lua/std_common.i -%%DATADIR%%/%%PORTVERSION%%/lua/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/lua/std_except.i -%%DATADIR%%/%%PORTVERSION%%/lua/std_map.i -%%DATADIR%%/%%PORTVERSION%%/lua/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/lua/std_string.i -%%DATADIR%%/%%PORTVERSION%%/lua/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/lua/stl.i -%%DATADIR%%/%%PORTVERSION%%/lua/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/lua/wchar.i -%%DATADIR%%/%%PORTVERSION%%/math.i -%%DATADIR%%/%%PORTVERSION%%/modula3/modula3.swg -%%DATADIR%%/%%PORTVERSION%%/modula3/modula3head.swg -%%DATADIR%%/%%PORTVERSION%%/modula3/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/mzscheme/mzrun.swg -%%DATADIR%%/%%PORTVERSION%%/mzscheme/mzscheme.swg -%%DATADIR%%/%%PORTVERSION%%/mzscheme/std_common.i -%%DATADIR%%/%%PORTVERSION%%/mzscheme/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/mzscheme/std_map.i -%%DATADIR%%/%%PORTVERSION%%/mzscheme/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/mzscheme/std_string.i -%%DATADIR%%/%%PORTVERSION%%/mzscheme/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/mzscheme/stl.i -%%DATADIR%%/%%PORTVERSION%%/mzscheme/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/carray.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/class.swg -%%DATADIR%%/%%PORTVERSION%%/ocaml/cstring.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/director.swg -%%DATADIR%%/%%PORTVERSION%%/ocaml/ocaml.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/ocaml.swg -%%DATADIR%%/%%PORTVERSION%%/ocaml/ocamldec.swg -%%DATADIR%%/%%PORTVERSION%%/ocaml/ocamlkw.swg -%%DATADIR%%/%%PORTVERSION%%/ocaml/preamble.swg -%%DATADIR%%/%%PORTVERSION%%/ocaml/std_common.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/std_complex.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/std_list.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/std_map.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/std_string.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/stl.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/swig.ml -%%DATADIR%%/%%PORTVERSION%%/ocaml/swig.mli -%%DATADIR%%/%%PORTVERSION%%/ocaml/swigp4.ml -%%DATADIR%%/%%PORTVERSION%%/ocaml/typecheck.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/ocaml/typeregister.swg -%%DATADIR%%/%%PORTVERSION%%/octave/attribute.i -%%DATADIR%%/%%PORTVERSION%%/octave/boost_shared_ptr.i -%%DATADIR%%/%%PORTVERSION%%/octave/carrays.i -%%DATADIR%%/%%PORTVERSION%%/octave/cdata.i -%%DATADIR%%/%%PORTVERSION%%/octave/cmalloc.i -%%DATADIR%%/%%PORTVERSION%%/octave/director.swg -%%DATADIR%%/%%PORTVERSION%%/octave/exception.i -%%DATADIR%%/%%PORTVERSION%%/octave/factory.i -%%DATADIR%%/%%PORTVERSION%%/octave/implicit.i -%%DATADIR%%/%%PORTVERSION%%/octave/octave.swg -%%DATADIR%%/%%PORTVERSION%%/octave/octcomplex.swg -%%DATADIR%%/%%PORTVERSION%%/octave/octcontainer.swg -%%DATADIR%%/%%PORTVERSION%%/octave/octfragments.swg -%%DATADIR%%/%%PORTVERSION%%/octave/octiterators.swg -%%DATADIR%%/%%PORTVERSION%%/octave/octopers.swg -%%DATADIR%%/%%PORTVERSION%%/octave/octprimtypes.swg -%%DATADIR%%/%%PORTVERSION%%/octave/octrun.swg -%%DATADIR%%/%%PORTVERSION%%/octave/octruntime.swg -%%DATADIR%%/%%PORTVERSION%%/octave/octstdcommon.swg -%%DATADIR%%/%%PORTVERSION%%/octave/octtypemaps.swg -%%DATADIR%%/%%PORTVERSION%%/octave/octuserdir.swg -%%DATADIR%%/%%PORTVERSION%%/octave/std_alloc.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_basic_string.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_carray.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_char_traits.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_common.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_complex.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_container.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_except.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_map.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_string.i -%%DATADIR%%/%%PORTVERSION%%/octave/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/octave/stl.i -%%DATADIR%%/%%PORTVERSION%%/octave/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/perl5/Makefile.pl -%%DATADIR%%/%%PORTVERSION%%/perl5/attribute.i -%%DATADIR%%/%%PORTVERSION%%/perl5/carrays.i -%%DATADIR%%/%%PORTVERSION%%/perl5/cdata.i -%%DATADIR%%/%%PORTVERSION%%/perl5/cmalloc.i -%%DATADIR%%/%%PORTVERSION%%/perl5/cni.i -%%DATADIR%%/%%PORTVERSION%%/perl5/cpointer.i -%%DATADIR%%/%%PORTVERSION%%/perl5/cstring.i -%%DATADIR%%/%%PORTVERSION%%/perl5/exception.i -%%DATADIR%%/%%PORTVERSION%%/perl5/factory.i -%%DATADIR%%/%%PORTVERSION%%/perl5/jstring.i -%%DATADIR%%/%%PORTVERSION%%/perl5/noembed.h -%%DATADIR%%/%%PORTVERSION%%/perl5/perl5.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perlerrors.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perlfragments.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perlhead.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perlinit.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perlkw.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perlmacros.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perlmain.i -%%DATADIR%%/%%PORTVERSION%%/perl5/perlopers.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perlprimtypes.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perlrun.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perlruntime.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perlstrings.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perltypemaps.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/perluserdir.swg -%%DATADIR%%/%%PORTVERSION%%/perl5/reference.i -%%DATADIR%%/%%PORTVERSION%%/perl5/std_common.i -%%DATADIR%%/%%PORTVERSION%%/perl5/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/perl5/std_except.i -%%DATADIR%%/%%PORTVERSION%%/perl5/std_list.i -%%DATADIR%%/%%PORTVERSION%%/perl5/std_map.i -%%DATADIR%%/%%PORTVERSION%%/perl5/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/perl5/std_string.i -%%DATADIR%%/%%PORTVERSION%%/perl5/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/perl5/stl.i -%%DATADIR%%/%%PORTVERSION%%/perl5/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/php4/const.i -%%DATADIR%%/%%PORTVERSION%%/php4/globalvar.i -%%DATADIR%%/%%PORTVERSION%%/php4/php4.swg -%%DATADIR%%/%%PORTVERSION%%/php4/php4init.swg -%%DATADIR%%/%%PORTVERSION%%/php4/php4kw.swg -%%DATADIR%%/%%PORTVERSION%%/php4/php4run.swg -%%DATADIR%%/%%PORTVERSION%%/php4/phppointers.i -%%DATADIR%%/%%PORTVERSION%%/php4/std_common.i -%%DATADIR%%/%%PORTVERSION%%/php4/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/php4/std_map.i -%%DATADIR%%/%%PORTVERSION%%/php4/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/php4/std_string.i -%%DATADIR%%/%%PORTVERSION%%/php4/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/php4/stl.i -%%DATADIR%%/%%PORTVERSION%%/php4/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/php4/utils.i -%%DATADIR%%/%%PORTVERSION%%/pike/pike.swg -%%DATADIR%%/%%PORTVERSION%%/pike/pikekw.swg -%%DATADIR%%/%%PORTVERSION%%/pike/pikerun.swg -%%DATADIR%%/%%PORTVERSION%%/pike/std_string.i -%%DATADIR%%/%%PORTVERSION%%/pointer.i -%%DATADIR%%/%%PORTVERSION%%/python/argcargv.i -%%DATADIR%%/%%PORTVERSION%%/python/attribute.i -%%DATADIR%%/%%PORTVERSION%%/python/boost_shared_ptr.i -%%DATADIR%%/%%PORTVERSION%%/python/carrays.i -%%DATADIR%%/%%PORTVERSION%%/python/ccomplex.i -%%DATADIR%%/%%PORTVERSION%%/python/cdata.i -%%DATADIR%%/%%PORTVERSION%%/python/cmalloc.i -%%DATADIR%%/%%PORTVERSION%%/python/cni.i -%%DATADIR%%/%%PORTVERSION%%/python/complex.i -%%DATADIR%%/%%PORTVERSION%%/python/cpointer.i -%%DATADIR%%/%%PORTVERSION%%/python/cstring.i -%%DATADIR%%/%%PORTVERSION%%/python/cwstring.i -%%DATADIR%%/%%PORTVERSION%%/python/defarg.swg -%%DATADIR%%/%%PORTVERSION%%/python/director.swg -%%DATADIR%%/%%PORTVERSION%%/python/embed.i -%%DATADIR%%/%%PORTVERSION%%/python/embed15.i -%%DATADIR%%/%%PORTVERSION%%/python/exception.i -%%DATADIR%%/%%PORTVERSION%%/python/factory.i -%%DATADIR%%/%%PORTVERSION%%/python/file.i -%%DATADIR%%/%%PORTVERSION%%/python/implicit.i -%%DATADIR%%/%%PORTVERSION%%/python/jstring.i -%%DATADIR%%/%%PORTVERSION%%/python/pyapi.swg -%%DATADIR%%/%%PORTVERSION%%/python/pybackward.swg -%%DATADIR%%/%%PORTVERSION%%/python/pyclasses.swg -%%DATADIR%%/%%PORTVERSION%%/python/pycomplex.swg -%%DATADIR%%/%%PORTVERSION%%/python/pycontainer.swg -%%DATADIR%%/%%PORTVERSION%%/python/pydocs.swg -%%DATADIR%%/%%PORTVERSION%%/python/pyerrors.swg -%%DATADIR%%/%%PORTVERSION%%/python/pyfragments.swg -%%DATADIR%%/%%PORTVERSION%%/python/pyhead.swg -%%DATADIR%%/%%PORTVERSION%%/python/pyinit.swg -%%DATADIR%%/%%PORTVERSION%%/python/pyiterators.swg -%%DATADIR%%/%%PORTVERSION%%/python/pymacros.swg -%%DATADIR%%/%%PORTVERSION%%/python/pyopers.swg -%%DATADIR%%/%%PORTVERSION%%/python/pyprimtypes.swg -%%DATADIR%%/%%PORTVERSION%%/python/pyrun.swg -%%DATADIR%%/%%PORTVERSION%%/python/pyruntime.swg -%%DATADIR%%/%%PORTVERSION%%/python/pystdcommon.swg -%%DATADIR%%/%%PORTVERSION%%/python/pystrings.swg -%%DATADIR%%/%%PORTVERSION%%/python/python.swg -%%DATADIR%%/%%PORTVERSION%%/python/pythonkw.swg -%%DATADIR%%/%%PORTVERSION%%/python/pythreads.swg -%%DATADIR%%/%%PORTVERSION%%/python/pytuplehlp.swg -%%DATADIR%%/%%PORTVERSION%%/python/pytypemaps.swg -%%DATADIR%%/%%PORTVERSION%%/python/pyuserdir.swg -%%DATADIR%%/%%PORTVERSION%%/python/pywstrings.swg -%%DATADIR%%/%%PORTVERSION%%/python/std_alloc.i -%%DATADIR%%/%%PORTVERSION%%/python/std_basic_string.i -%%DATADIR%%/%%PORTVERSION%%/python/std_carray.i -%%DATADIR%%/%%PORTVERSION%%/python/std_char_traits.i -%%DATADIR%%/%%PORTVERSION%%/python/std_common.i -%%DATADIR%%/%%PORTVERSION%%/python/std_complex.i -%%DATADIR%%/%%PORTVERSION%%/python/std_container.i -%%DATADIR%%/%%PORTVERSION%%/python/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/python/std_except.i -%%DATADIR%%/%%PORTVERSION%%/python/std_ios.i -%%DATADIR%%/%%PORTVERSION%%/python/std_iostream.i -%%DATADIR%%/%%PORTVERSION%%/python/std_list.i -%%DATADIR%%/%%PORTVERSION%%/python/std_map.i -%%DATADIR%%/%%PORTVERSION%%/python/std_multimap.i -%%DATADIR%%/%%PORTVERSION%%/python/std_multiset.i -%%DATADIR%%/%%PORTVERSION%%/python/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/python/std_set.i -%%DATADIR%%/%%PORTVERSION%%/python/std_sstream.i -%%DATADIR%%/%%PORTVERSION%%/python/std_streambuf.i -%%DATADIR%%/%%PORTVERSION%%/python/std_string.i -%%DATADIR%%/%%PORTVERSION%%/python/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/python/std_vectora.i -%%DATADIR%%/%%PORTVERSION%%/python/std_wios.i -%%DATADIR%%/%%PORTVERSION%%/python/std_wiostream.i -%%DATADIR%%/%%PORTVERSION%%/python/std_wsstream.i -%%DATADIR%%/%%PORTVERSION%%/python/std_wstreambuf.i -%%DATADIR%%/%%PORTVERSION%%/python/std_wstring.i -%%DATADIR%%/%%PORTVERSION%%/python/stl.i -%%DATADIR%%/%%PORTVERSION%%/python/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/python/wchar.i -%%DATADIR%%/%%PORTVERSION%%/r/cdata.i -%%DATADIR%%/%%PORTVERSION%%/r/exception.i -%%DATADIR%%/%%PORTVERSION%%/r/r.swg -%%DATADIR%%/%%PORTVERSION%%/r/rcontainer.swg -%%DATADIR%%/%%PORTVERSION%%/r/rfragments.swg -%%DATADIR%%/%%PORTVERSION%%/r/rkw.swg -%%DATADIR%%/%%PORTVERSION%%/r/ropers.swg -%%DATADIR%%/%%PORTVERSION%%/r/rrun.swg -%%DATADIR%%/%%PORTVERSION%%/r/rstdcommon.swg -%%DATADIR%%/%%PORTVERSION%%/r/rtype.swg -%%DATADIR%%/%%PORTVERSION%%/r/srun.swg -%%DATADIR%%/%%PORTVERSION%%/r/std_alloc.i -%%DATADIR%%/%%PORTVERSION%%/r/std_common.i -%%DATADIR%%/%%PORTVERSION%%/r/std_container.i -%%DATADIR%%/%%PORTVERSION%%/r/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/r/std_except.i -%%DATADIR%%/%%PORTVERSION%%/r/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/r/std_string.i -%%DATADIR%%/%%PORTVERSION%%/r/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/r/stl.i -%%DATADIR%%/%%PORTVERSION%%/r/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/ruby/Makefile.swig -%%DATADIR%%/%%PORTVERSION%%/ruby/argcargv.i -%%DATADIR%%/%%PORTVERSION%%/ruby/attribute.i -%%DATADIR%%/%%PORTVERSION%%/ruby/carrays.i -%%DATADIR%%/%%PORTVERSION%%/ruby/cdata.i -%%DATADIR%%/%%PORTVERSION%%/ruby/cmalloc.i -%%DATADIR%%/%%PORTVERSION%%/ruby/cni.i -%%DATADIR%%/%%PORTVERSION%%/ruby/cpointer.i -%%DATADIR%%/%%PORTVERSION%%/ruby/cstring.i -%%DATADIR%%/%%PORTVERSION%%/ruby/director.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/embed.i -%%DATADIR%%/%%PORTVERSION%%/ruby/exception.i -%%DATADIR%%/%%PORTVERSION%%/ruby/extconf.rb -%%DATADIR%%/%%PORTVERSION%%/ruby/factory.i -%%DATADIR%%/%%PORTVERSION%%/ruby/file.i -%%DATADIR%%/%%PORTVERSION%%/ruby/jstring.i -%%DATADIR%%/%%PORTVERSION%%/ruby/progargcargv.i -%%DATADIR%%/%%PORTVERSION%%/ruby/ruby.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyapi.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyautodoc.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyclasses.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubycomplex.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubycontainer.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubycontainer_extended.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubydef.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyerrors.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyfragments.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyhead.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyinit.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyiterators.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubykw.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubymacros.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyopers.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyprimtypes.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyrun.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyruntime.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubystdautodoc.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubystdcommon.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubystdfunctors.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubystrings.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubytracking.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubytypemaps.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubyuserdir.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/rubywstrings.swg -%%DATADIR%%/%%PORTVERSION%%/ruby/std_alloc.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_basic_string.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_char_traits.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_common.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_complex.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_container.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_except.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_functors.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_ios.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_iostream.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_list.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_map.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_multimap.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_multiset.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_queue.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_set.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_sstream.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_stack.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_streambuf.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_string.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_vectora.i -%%DATADIR%%/%%PORTVERSION%%/ruby/std_wstring.i -%%DATADIR%%/%%PORTVERSION%%/ruby/stl.i -%%DATADIR%%/%%PORTVERSION%%/ruby/timeval.i -%%DATADIR%%/%%PORTVERSION%%/ruby/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/runtime.swg -%%DATADIR%%/%%PORTVERSION%%/shared_ptr.i -%%DATADIR%%/%%PORTVERSION%%/std/_std_deque.i -%%DATADIR%%/%%PORTVERSION%%/std/std_alloc.i -%%DATADIR%%/%%PORTVERSION%%/std/std_basic_string.i -%%DATADIR%%/%%PORTVERSION%%/std/std_carray.swg -%%DATADIR%%/%%PORTVERSION%%/std/std_char_traits.i -%%DATADIR%%/%%PORTVERSION%%/std/std_common.i -%%DATADIR%%/%%PORTVERSION%%/std/std_container.i -%%DATADIR%%/%%PORTVERSION%%/std/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/std/std_except.i -%%DATADIR%%/%%PORTVERSION%%/std/std_ios.i -%%DATADIR%%/%%PORTVERSION%%/std/std_iostream.i -%%DATADIR%%/%%PORTVERSION%%/std/std_list.i -%%DATADIR%%/%%PORTVERSION%%/std/std_map.i -%%DATADIR%%/%%PORTVERSION%%/std/std_multimap.i -%%DATADIR%%/%%PORTVERSION%%/std/std_multiset.i -%%DATADIR%%/%%PORTVERSION%%/std/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/std/std_queue.i -%%DATADIR%%/%%PORTVERSION%%/std/std_set.i -%%DATADIR%%/%%PORTVERSION%%/std/std_sstream.i -%%DATADIR%%/%%PORTVERSION%%/std/std_stack.i -%%DATADIR%%/%%PORTVERSION%%/std/std_streambuf.i -%%DATADIR%%/%%PORTVERSION%%/std/std_string.i -%%DATADIR%%/%%PORTVERSION%%/std/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/std/std_vectora.i -%%DATADIR%%/%%PORTVERSION%%/std/std_wios.i -%%DATADIR%%/%%PORTVERSION%%/std/std_wiostream.i -%%DATADIR%%/%%PORTVERSION%%/std/std_wsstream.i -%%DATADIR%%/%%PORTVERSION%%/std/std_wstreambuf.i -%%DATADIR%%/%%PORTVERSION%%/std/std_wstring.i -%%DATADIR%%/%%PORTVERSION%%/std_except.i -%%DATADIR%%/%%PORTVERSION%%/stdint.i -%%DATADIR%%/%%PORTVERSION%%/stl.i -%%DATADIR%%/%%PORTVERSION%%/swig.swg -%%DATADIR%%/%%PORTVERSION%%/swigarch.i -%%DATADIR%%/%%PORTVERSION%%/swigerrors.swg -%%DATADIR%%/%%PORTVERSION%%/swiginit.swg -%%DATADIR%%/%%PORTVERSION%%/swiglabels.swg -%%DATADIR%%/%%PORTVERSION%%/swigrun.i -%%DATADIR%%/%%PORTVERSION%%/swigrun.swg -%%DATADIR%%/%%PORTVERSION%%/swigwarn.swg -%%DATADIR%%/%%PORTVERSION%%/swigwarnings.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/attribute.i -%%DATADIR%%/%%PORTVERSION%%/tcl/carrays.i -%%DATADIR%%/%%PORTVERSION%%/tcl/cdata.i -%%DATADIR%%/%%PORTVERSION%%/tcl/cmalloc.i -%%DATADIR%%/%%PORTVERSION%%/tcl/cni.i -%%DATADIR%%/%%PORTVERSION%%/tcl/cpointer.i -%%DATADIR%%/%%PORTVERSION%%/tcl/cstring.i -%%DATADIR%%/%%PORTVERSION%%/tcl/cwstring.i -%%DATADIR%%/%%PORTVERSION%%/tcl/exception.i -%%DATADIR%%/%%PORTVERSION%%/tcl/factory.i -%%DATADIR%%/%%PORTVERSION%%/tcl/jstring.i -%%DATADIR%%/%%PORTVERSION%%/tcl/std_common.i -%%DATADIR%%/%%PORTVERSION%%/tcl/std_deque.i -%%DATADIR%%/%%PORTVERSION%%/tcl/std_except.i -%%DATADIR%%/%%PORTVERSION%%/tcl/std_map.i -%%DATADIR%%/%%PORTVERSION%%/tcl/std_pair.i -%%DATADIR%%/%%PORTVERSION%%/tcl/std_string.i -%%DATADIR%%/%%PORTVERSION%%/tcl/std_vector.i -%%DATADIR%%/%%PORTVERSION%%/tcl/std_wstring.i -%%DATADIR%%/%%PORTVERSION%%/tcl/stl.i -%%DATADIR%%/%%PORTVERSION%%/tcl/tcl8.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclapi.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclerrors.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclfragments.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclinit.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclinterp.i -%%DATADIR%%/%%PORTVERSION%%/tcl/tclkw.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclmacros.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclopers.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclprimtypes.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclresult.i -%%DATADIR%%/%%PORTVERSION%%/tcl/tclrun.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclruntime.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclsh.i -%%DATADIR%%/%%PORTVERSION%%/tcl/tclstrings.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tcltypemaps.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tcluserdir.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/tclwstrings.swg -%%DATADIR%%/%%PORTVERSION%%/tcl/typemaps.i -%%DATADIR%%/%%PORTVERSION%%/tcl/wish.i -%%DATADIR%%/%%PORTVERSION%%/typemaps/attribute.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/carrays.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/cdata.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/cmalloc.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/cpointer.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/cstring.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/cstrings.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/cwstring.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/enumint.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/exception.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/factory.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/fragments.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/implicit.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/inoutlist.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/misctypes.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/primtypes.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/ptrtypes.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/std_except.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/std_string.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/std_strings.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/std_wstring.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/string.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/strings.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/swigmacros.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/swigobject.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/swigtype.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/swigtypemaps.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/traits.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/typemaps.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/valtypes.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/void.swg -%%DATADIR%%/%%PORTVERSION%%/typemaps/wstring.swg -%%DATADIR%%/%%PORTVERSION%%/uffi/uffi.swg -%%DATADIR%%/%%PORTVERSION%%/wchar.i -%%DATADIR%%/%%PORTVERSION%%/windows.i -@dirrm %%DATADIR%%/%%PORTVERSION%%/uffi -@dirrm %%DATADIR%%/%%PORTVERSION%%/typemaps -@dirrm %%DATADIR%%/%%PORTVERSION%%/tcl -@dirrm %%DATADIR%%/%%PORTVERSION%%/std -@dirrm %%DATADIR%%/%%PORTVERSION%%/ruby -@dirrm %%DATADIR%%/%%PORTVERSION%%/r -@dirrm %%DATADIR%%/%%PORTVERSION%%/python -@dirrm %%DATADIR%%/%%PORTVERSION%%/pike -@dirrm %%DATADIR%%/%%PORTVERSION%%/php4 -@dirrm %%DATADIR%%/%%PORTVERSION%%/perl5 -@dirrm %%DATADIR%%/%%PORTVERSION%%/octave -@dirrm %%DATADIR%%/%%PORTVERSION%%/ocaml -@dirrm %%DATADIR%%/%%PORTVERSION%%/mzscheme -@dirrm %%DATADIR%%/%%PORTVERSION%%/modula3 -@dirrm %%DATADIR%%/%%PORTVERSION%%/lua -@dirrm %%DATADIR%%/%%PORTVERSION%%/java -@dirrm %%DATADIR%%/%%PORTVERSION%%/guile -@dirrm %%DATADIR%%/%%PORTVERSION%%/gcj -@dirrm %%DATADIR%%/%%PORTVERSION%%/csharp -@dirrm %%DATADIR%%/%%PORTVERSION%%/clisp -@dirrm %%DATADIR%%/%%PORTVERSION%%/chicken -@dirrm %%DATADIR%%/%%PORTVERSION%%/cffi -@dirrm %%DATADIR%%/%%PORTVERSION%%/allegrocl -@dirrm %%DATADIR%%/%%PORTVERSION%% -@dirrm %%DATADIR%% -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/xml -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/uffi -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir/subdir2 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir/subdir1 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/tcl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/schemerunme -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ruby -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/r -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/pike -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/php4 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5/Test -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/perl5 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/octave -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/ocaml -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/mzscheme -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/lua -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guilescm -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/guile -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/errors -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/csharp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/clisp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/chicken -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/cffi -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/allegrocl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/variables -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/value -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/std_vector -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/reference -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/pointer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/operator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/multimap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/java -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/import -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/funcptr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/enum -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/contract -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/constants -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/tcl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/s-exp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/variables -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/value -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/template -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/std_vector -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/reference -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/pointer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/overloading -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/operator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/multimap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/mark_function -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/java -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import_template -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/import -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/hashargs -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/functor -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr2 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/funcptr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/free_function -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/exception_class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/enum -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/constants -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ruby -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/r/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/r/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/r -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/weave -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/variables -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/varargs -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/template -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/swigrun -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/std_vector -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/std_map -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/smartptr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/reference -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/pointer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/operator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/multimap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/libffi -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/java -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/import_template -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/import -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/functor -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr2 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/funcptr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/extend -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/exceptproxy -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/exception -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/enum -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/docstrings -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/contract -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/constants -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python/callback -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/python -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/pike/template -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/pike/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/pike/overload -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/pike/enum -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/pike/constants -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/pike/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/pike -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/variables -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/value -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/sync -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/reference -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/proxy -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/pragmas -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/pointer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/overloading -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/funcptr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/enum -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/disown -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/cpointer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/constants -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/php4 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/xmlstring -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/variables -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/value -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/reference -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/pointer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multiple_inheritance -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/multimap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/java -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/inline -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/import -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/funcptr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants2 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/constants -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/perl5 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/variables -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/template -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/reference -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/pointer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/operator -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/functor -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr2 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/funcptr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/extend -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/enum -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/contract -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/constants -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave/callback -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/octave -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/strings_test -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/string_from_ptr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/stl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_vector -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/std_string -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/shapes -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/scoped_enum -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/contract -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml/argout_ref -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/ocaml -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/std_vector -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme/multimap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/mzscheme -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/typemap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/reference -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/exception -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/enum -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/modula3/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/modula3 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/variables -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/pointer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/owner -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/import -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functor -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/functest -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/funcptr3 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/exception -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed3 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed2 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/embed -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/dual -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/constants -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua/arrays -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/lua -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/variables -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/typemap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/template -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/reference -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/pointer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/native -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/multimap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/funcptr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/extend -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/enum -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/constants -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java/callback -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/java -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/guile/std_vector -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/guile/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/guile/port -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multivalue -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/guile/multimap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/guile/matrix -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/guile/constants -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/guile -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/variables -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/template -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/reference -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/funcptr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/extend -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/enum -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/csharp/callback -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/csharp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_cxx -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/contract/simple_c -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/contract -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/zlib -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/overload -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/multimap -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/egg -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/constants -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/chicken/class -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/chicken -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/mandel -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl/full -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Tcl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/shadow -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby/full -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ruby -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/shadow -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python/full -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Python -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Pike/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Pike -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/shadow -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4/full -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Php4 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/shadow -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5/full -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Perl5 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml/full -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Ocaml -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Lib -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/shadow -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java/full -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Java -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Interface -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Include -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile/full -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Guile -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Common-Lisp/full -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Common-Lisp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken/full -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot/Chicken -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/GIFPlot -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%% -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/%%PORTVERSION%%/Manual -%%PORTDOCS%%@dirrm %%DOCSDIR%%/%%PORTVERSION%%/Devel -%%PORTDOCS%%@dirrm %%DOCSDIR%%/%%PORTVERSION%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% |