This is a first attempt to port dynare to FreeBSD. Dynare is a software platform for handling a wide class of economic models, in particular dynamic stochastic general equilibrium (DSGE) and overlapping generations (OLG) models. Please, note that portlint(1) complains about a critical error in the URL where to fetch the file. However this is due to the way in which the authors host the files. Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # dynare # dynare/files # dynare/files/patch-parser-exception.h # dynare/files/patch-journal.cweb # dynare/pkg-plist # dynare/pkg-descr # dynare/distinfo # dynare/Makefile # echo c - dynare mkdir -p dynare > /dev/null 2>&1 echo c - dynare/files mkdir -p dynare/files > /dev/null 2>&1 echo x - dynare/files/patch-parser-exception.h sed 's/^X//' >dynare/files/patch-parser-exception.h << '12d137912663861280922773d971ad6c' X--- dynare++/parser/cc/parser_exception.h.orig 2011-08-21 19:10:51.000000000 +0200 X+++ dynare++/parser/cc/parser_exception.h 2011-08-21 19:31:06.000000000 +0200 X@@ -6,6 +6,7 @@ X #define OG_FORMULA_PARSER_H X X #include <string> X+#include <stdio.h> X X namespace ogp { X using std::string; 12d137912663861280922773d971ad6c echo x - dynare/files/patch-journal.cweb sed 's/^X//' >dynare/files/patch-journal.cweb << '754f1ab4ca76eb543dda3fdd77883a6a' X--- dynare++/kord/journal.cweb.orig 2011-08-21 20:56:09.000000000 +0200 X+++ dynare++/kord/journal.cweb 2011-08-21 23:02:31.000000000 +0200 X@@ -5,6 +5,8 @@ X @c X #include "journal.h" X #include "kord_exception.h" X+#include <sys/types.h> X+#include <sys/sysctl.h> X X #if !defined(__MINGW32__) X # include <sys/resource.h> X@@ -72,7 +74,16 @@ X @<|SystemResources::availableMemory| code@>= X long int SystemResources::availableMemory() X { X- return pageSize()*sysconf(_SC_AVPHYS_PAGES); X+ long value; X+ size_t len; X+ char *path = "vm.stats.vm.v_free_count"; X+ X+ if (sysctlbyname(path, &value, &len, NULL, 0) == -1) { X+ return (-1); X+ } X+ X+ X+ return pageSize() * value; X } X X @ Here we read the current values of resource usage. For MinGW, we X@@ -84,6 +95,10 @@ X long int& idrss, long int& majflt) X { X struct timeval now; X+ long value; X+ size_t len; X+ char *path = "vm.stats.vm.v_free_count"; X+ X gettimeofday(&now, NULL); X elapsed = now.tv_sec-start.tv_sec + (now.tv_usec-start.tv_usec)*1.0e-6; X X@@ -107,7 +122,11 @@ X load_avg = -1.0; X #endif X X- pg_avail = sysconf(_SC_AVPHYS_PAGES); X+ if (sysctlbyname(path, &value, &len, NULL, 0) == -1) { X+ pg_avail = -1; X+ } X+ X+ pg_avail = value; X } X X @ 754f1ab4ca76eb543dda3fdd77883a6a echo x - dynare/pkg-plist sed 's/^X//' >dynare/pkg-plist << 'b2aabc1cdf1eec78b38e669989c0363f' X@dirrm etc/devd X@dirrm etc/man.d X@dirrm include/X11 X@dirrm lib/X11 X@dirrm lib/X11/app-defaults X@dirrm lib/X11/fonts X@dirrm lib/X11/fonts/local X@dirrm lib/matlab X@dirrm share/locale/be X@dirrm share/locale/be/LC_MESSAGES X@dirrm share/locale/ca X@dirrm share/locale/ca/LC_MESSAGES X@dirrm share/locale/cs X@dirrm share/locale/cs/LC_MESSAGES X@dirrm share/locale/de_AT X@dirrm share/locale/de_AT/LC_MESSAGES X@dirrm share/locale/el X@dirrm share/locale/el/LC_MESSAGES X@dirrm share/locale/en_AU X@dirrm share/locale/en_AU/LC_MESSAGES X@dirrm share/locale/fa_IR X@dirrm share/locale/fa_IR/LC_MESSAGES X@dirrm share/locale/fi X@dirrm share/locale/fi/LC_MESSAGES X@dirrm share/locale/fr_FR X@dirrm share/locale/fr_FR/LC_MESSAGES X@dirrm share/locale/gl X@dirrm share/locale/gl/LC_MESSAGES X@dirrm share/locale/ko X@dirrm share/locale/ko/LC_MESSAGES X@dirrm share/locale/li X@dirrm share/locale/li/LC_MESSAGES X@dirrm share/locale/ne X@dirrm share/locale/ne/LC_MESSAGES X@dirrm share/locale/nn X@dirrm share/locale/nn/LC_MESSAGES X@dirrm share/locale/no X@dirrm share/locale/no/LC_MESSAGES X@dirrm share/locale/pl X@dirrm share/locale/pl/LC_MESSAGES X@dirrm share/locale/pt X@dirrm share/locale/pt/LC_MESSAGES X@dirrm share/locale/ro X@dirrm share/locale/ro/LC_MESSAGES X@dirrm share/locale/sk X@dirrm share/locale/sk/LC_MESSAGES X@dirrm share/locale/sl X@dirrm share/locale/sl/LC_MESSAGES X@dirrm share/locale/sr X@dirrm share/locale/sr/LC_MESSAGES X@dirrm share/locale/tg X@dirrm share/locale/tg/LC_MESSAGES X@dirrm share/locale/tk X@dirrm share/locale/tk/LC_MESSAGES X@dirrm share/locale/uk X@dirrm share/locale/uk/LC_MESSAGES X@dirrm share/locale/uz X@dirrm share/locale/uz/LC_MESSAGES X@dirrm share/locale/zh_CN X@dirrm share/locale/zh_CN/LC_MESSAGES X@dirrm share/locale/zh_TW X@dirrm share/locale/zh_TW/LC_MESSAGES X@dirrm share/pixmaps Xbin/dynare++ Xinfo/dir Xinfo/dynare.info Xlib/matlab/dynare_m b2aabc1cdf1eec78b38e669989c0363f echo x - dynare/pkg-descr sed 's/^X//' >dynare/pkg-descr << 'd2809c7549fc75da1099bed1064679ec' XDynare is a software platform for handling a wide class of economic models, in Xparticular dynamic stochastic general equilibrium (DSGE) and overlapping Xgenerations (OLG) models. d2809c7549fc75da1099bed1064679ec echo x - dynare/distinfo sed 's/^X//' >dynare/distinfo << '22c4b6701c3137d508d022004a33438b' XSHA256 (dynare-4.2.1.tar.gz) = 65b30a6524843a5751387cf962a10ba104042bef7932c472254f3bbf03aa044d XSIZE (dynare-4.2.1.tar.gz) = 13634307 22c4b6701c3137d508d022004a33438b echo x - dynare/Makefile sed 's/^X//' >dynare/Makefile << '48ab9be55a7498f4ff23bb79cb374b86' X# New ports collection makefile for: dynare X# Date created: Aug 17 2011 X# Whom: Fernando Apesteguia <fernando.apesteguia@gmail.com> X# X# $FreeBSD$ X XPORTNAME= dynare XPORTVERSION= 4.2.1 XCATEGORIES= math XMASTER_SITES= http://www.dynare.org/download/dynare-4.2/source/dynare-2.4.1/at_download/file X XMAINTAINER= fernando.apesteguia@gmail.com XCOMMENT= Software platform for handling a wide class of economic models X XBUILD_DEPENDS= ${LOCALBASE}/include/boost/unordered_set.hpp:${PORTSDIR}/devel/boost-libs X XWRKSRC= ${WRKDIR}/${DISTNAME} XGNU_CONFIGURE= yes XUSE_GMAKE= yes XUSE_FORTRAN= yes X XOPTIONS+= OCTAVE "Enable compilation of MEX files for Octave" on XOPTIONS+= MATLAB "Enable compilation of MEX files for MATLAB" off X X.if defined(WITHOUT_MATLAB) XCONFIGURE_ARGS+= --disable-matlab X.endif X X.if defined(WITHOUT_OCTAVE) XCONFIGURE_ARGS+= --disable-octave X.else XBUILD_DEPENDS+= octave:${PORTSDIR}/math/octave X.endif X Xdo-fetch: X fetch -o ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} http://www.dynare.org/download/dynare-4.2/source/${DISTNAME}${EXTRACT_SUFX}/at_download/file X Xpost-configure: X @${ECHO_MSG} "" X @${ECHO_MSG} "" X @${ECHO_MSG} "*******************************************************************************" X @${ECHO_MSG} "Follow instructions at http://www.freebsd.org/doc/handbook/linuxemu-matlab.html" X @${ECHO_MSG} "on how to install MATLAB on FreeBSD" X @${ECHO_MSG} "*******************************************************************************" X @${ECHO_MSG} "" X @${ECHO_MSG} "" X X.include <bsd.port.mk> 48ab9be55a7498f4ff23bb79cb374b86 exit Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->wen I'll take it.
Hi, There is a plist error of the ports, here is the build log. Would you fix it ? wen building dynare-4.2.1 in directory /usr/local/tinderbox/9.0-FreeBSD build started at Fri Aug 26 05:22:12 UTC 2011 port directory: /usr/ports/math/dynare building for: 9.0-CURRENT i386 maintained by: fernando.apesteguia@gmail.com ident warning: no id keywords in /usr/ports/math/dynare/Makefile Makefile ident: prefixes: LOCALBASE=usr/local PREFIX=/usr/local Begin Configuration: ---Begin Environment--- ARCH=i386 PACKAGE_BUILDING=1 USER=root CCACHE_DIR= BRANCH=CURRENT CCACHE_NOLINK=1 HOST_WORKDIR= BATCH=1 OLDPWD=/ HOME=/root PKGZIPCMD=bzip2 HAVE_MOTIF=1 FTP_TIMEOUT=900 HTTP_TIMEOUT=900 defaultUpdateHost=cvsup.FreeBSDChina.org pb=/usr/local/tinderbox DISTFILE_CACHE=/usr/ports/distfiles OSREL=9.0 defaultUpdateType=CSUP PYTHON_DEFAULT_VERSION=python2.7 TINDERD_LOGFILE=/dev/null PORTOBJFORMAT=elf WRKDIRPREFIX=/work DISTDIR=/tmp/distfiles DISTCACHE=/distcache CCACHE_LOGFILE= PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin PACKAGES=/tmp/packages TIMEOUT=7200 PKGSUFFIX=.tbz OSVERSION=900021 OPTIONS_ENABLED=0 __DSVERSION__=3.2 TINDERD_SLEEPTIME=120 UNAME_n=tinderbox.host __MKLVL__=1 CCACHE_JAIL=0 LOCALBASE=/usr/local CCACHE_MAX_SIZE=1G DISTFILE_URI= X_WINDOW_SYSTEM=xorg MASTER_SITE_OVERRIDE=file:///distcache/${DIST_SUBDIR}/ OPTIONS_DIR= UNAME_r=9.0-CURRENT USA_RESIDENT=YES UNAME_s=FreeBSD PARALLEL_PACKAGE_BUILD=1 PWD=/usr/ports/math/dynare UNAME_v=FreeBSD 9.0-CURRENT #0: Fri Aug 26 08:14:11 CST 2011 root@tinderbox.host:/usr/src/sys/magic/kernel/path FTP_PASSIVE_MODE=yes CCACHE_ENABLED=0 INDEXFILE=INDEX-9 ---End Environment--- ---Begin OPTIONS List--- ===> The following configuration options are available for dynare-4.2.1: OCTAVE=on (default) "Enable compilation of MEX files for Octave" MATLAB=off (default) "Enable compilation of MEX files for MATLAB" ===> Use 'make config' to modify these settings ---End OPTIONS List--- End Configuration. FETCH_DEPENDS= PATCH_DEPENDS= EXTRACT_DEPENDS= BUILD_DEPENDS=icu-4.8.1.tbz boost-libs-1.45.0_1.tbz GraphicsMagick-1.1.15_3,1.tbz arpack-96_8.tbz curl-7.21.3_2.tbz fftw3-3.2.2_1.tbz fftw3-float-3.2.2_2.tbz fltk-1.1.10_1.tbz ftgl-2.1.3.r5,1.tbz hdf5-1.8.7.tbz pcre-8.12.tbz qhull-1.0_2.tbz qrupdate-1.1.1.tbz suitesparse-3.6.1_2.tbz glpk-4.45.tbz blas-1.0_6.tbz lapack-3.3.0_1.tbz gnuplot-4.4.3.tbz gsed-4.2.1_2.tbz texinfo-4.13.20110529_1.tbz gcc-4.5.3.20110414.tbz freetype2-2.4.6.tbz libfpx-1.2.0.12_1.tbz jbigkit-1.6.tbz libwmf-0.2.8.4_6.tbz libxml2-2.7.8_1.tbz jasper-1.900.1_9.tbz jpeg-8_3.tbz lcms-1.19_1,1.tbz png-1.4.8.tbz tiff-4.0.0_2.tbz libiconv-1.13.1_1.tbz ghostscript9-9.02_4.tbz ca_root_nss-3.12.9.tbz pkg-config-0.25_1.tbz libGL-7.4.4.tbz libGLU-7.4.4.tbz libXft-2.1.14.tbz libX11-1.3.6,1.tbz libXext-1.1.2,1.tbz libXmu-1.1.0,1.tbz gmp-5.0.2.tbz gd-2.0.35_7,1.tbz pdflib-7.0.4.tbz plotutils-2.6_2,1.tbz cairo-1.10.2_2,1.tbz wxgtk2-2.8.12.tbz glib-2.28.8.tbz pango-1.28.4.tbz teTeX-base-3.0_22.tbz libXaw-1.0.8,1.tbz libXt-1.0.9.tbz gio-fam-backend-2.28.8.tbz gettext-0.18.1.1.tbz mpfr-3.0.1.tbz mpc-0.9.tbz binutils-2.21.1.tbz expat-2.0.1_1.tbz jbig2dec-0.11.tbz cups-image-1.4.6.tbz fontconfig-2.8.0_1,1.tbz gsfonts-8.11_5.tbz libdrm-2.4.12_1.tbz dri2proto-2.3.tbz libXxf86vm-1.1.0.tbz libXdamage-1.1.3.tbz libXfixes-4.0.4.tbz xproto-7.0.16.tbz libXrender-0.9.5.tbz libxcb-1.7.tbz kbproto-1.0.5.tbz libXau-1.0.6.tbz libXdmcp-1.0.3.tbz xextproto-7.1.1.tbz open-motif-2.3.3.tbz libXpm-3.5.7.tbz pixman-0.22.0.tbz xcb-util-0.3.6_1.tbz libmspack-0.2_1.tbz atk-2.0.1.tbz gconf2-2.32.0_2.tbz gtk-2.24.5_1.tbz libIDL-0.8.14_1.tbz ORBit2-2.14.19.tbz wxgtk2-common-2.8.12.tbz libSM-1.1.1_3,1.tbz libXinerama-1.1,1.tbz gstreamer-plugins-0.10.35,3.tbz python27-2.7.2_1.tbz perl-5.12.4_1.tbz xorg-fonts-truetype-7.5.1.tbz encodings-1.0.4,1.tbz gobject-introspection-0.10.8.tbz libwww-5.4.0_4.tbz t1lib-5.1.2_1,1.tbz teTeX-texmf-3.0_8.tbz tex-texmflocal-1.9.tbz texi2html-1.82,1.tbz printproto-1.0.4.tbz libXp-1.0.0,1.tbz gamin-0.1.10_4.tbz cups-client-1.4.6.tbz gnutls-2.12.7_2.tbz libpthread-stubs-0.3_3.tbz xf86vidmodeproto-2.3.tbz damageproto-1.2.1.tbz fixesproto-4.1.2.tbz renderproto-0.11.tbz xbitmaps-1.1.0.tbz dbus-glib-0.88.tbz polkit-0.99.tbz dconf-0.5.1_3.tbz gnomehier-2.3_12.tbz gdk-pixbuf-2.23.5.tbz shared-mime-info-0.90.tbz hicolor-icon-theme-0.12.tbz libXi-1.3.2,1.tbz libXrandr-1.3.0.tbz libXcursor-1.1.11.tbz libXcomposite-0.4.3,1.tbz gtk-update-icon-cache-2.24.5.tbz libICE-1.0.7,1.tbz xineramaproto-1.2.tbz gstreamer-0.10.35.tbz orc-0.4.14_1.tbz libXv-1.0.5,1.tbz font-bh-ttf-1.0.3.tbz font-misc-meltho-1.0.3.tbz font-misc-ethiopic-1.0.3.tbz bitstream-vera-1.10_5.tbz font-util-1.2.0.tbz libffi-3.0.9.tbz font-amsfonts-3.02_1.tbz nettle-2.2.tbz libgpg-error-1.10.tbz dbus-1.4.6.tbz eggdbus-0.6_1.tbz libgee-0.6.1.tbz inputproto-2.0.1.tbz randrproto-1.3.2.tbz compositeproto-0.4.2.tbz videoproto-2.3.0.tbz mkfontdir-1.0.6.tbz mkfontscale-1.0.8.tbz gnome_subr-1.0.tbz libfontenc-1.1.0.tbz octave-3.4.2_2.tbz gmake-3.82.tbz RUN_DEPENDS=gmp-5.0.2.tbz mpfr-3.0.1.tbz mpc-0.9.tbz libiconv-1.13.1_1.tbz binutils-2.21.1.tbz gcc-4.5.3.20110414.tbz add_pkg ================================================================ ====================<phase 1: make checksum>==================== ===> License check disabled, port has not defined LICENSE fetch -o /tmp/distfiles/dynare-4.2.1.tar.gz http://www.dynare.org/download/dynare-4.2/source/dynare-4.2.1.tar.gz/at_download/file /tmp/distfiles/dynare-4.2.1.tar.gz 13 MB 131 kBps => SHA256 Checksum OK for dynare-4.2.1.tar.gz. ================================================================ ====================<phase 2: make extract>==================== add_pkg ===> License check disabled, port has not defined LICENSE fetch -o /tmp/distfiles/dynare-4.2.1.tar.gz http://www.dynare.org/download/dynare-4.2/source/dynare-4.2.1.tar.gz/at_download/file /tmp/distfiles/dynare-4.2.1.tar.gz 13 MB 163 kBps ===> Extracting for dynare-4.2.1 => SHA256 Checksum OK for dynare-4.2.1.tar.gz. ================================================================ ====================<phase 3: make patch>==================== add_pkg ===> Patching for dynare-4.2.1 ===> Applying FreeBSD patches for dynare-4.2.1 ================================================================ ====================<phase 4: make build>==================== add_pkg icu-4.8.1.tbz boost-libs-1.45.0_1.tbz GraphicsMagick-1.1.15_3,1.tbz arpack-96_8.tbz curl-7.21.3_2.tbz fftw3-3.2.2_1.tbz fftw3-float-3.2.2_2.tbz fltk-1.1.10_1.tbz ftgl-2.1.3.r5,1.tbz hdf5-1.8.7.tbz pcre-8.12.tbz qhull-1.0_2.tbz qrupdate-1.1.1.tbz suitesparse-3.6.1_2.tbz glpk-4.45.tbz blas-1.0_6.tbz lapack-3.3.0_1.tbz gnuplot-4.4.3.tbz gsed-4.2.1_2.tbz texinfo-4.13.20110529_1.tbz gcc-4.5.3.20110414.tbz freetype2-2.4.6.tbz libfpx-1.2.0.12_1.tbz jbigkit-1.6.tbz libwmf-0.2.8.4_6.tbz libxml2-2.7.8_1.tbz jasper-1.900.1_9.tbz jpeg-8_3.tbz lcms-1.19_1,1.tbz png-1.4.8.tbz tiff-4.0.0_2.tbz libiconv-1.13.1_1.tbz ghostscript9-9.02_4.tbz ca_root_nss-3.12.9.tbz pkg-config-0.25_1.tbz libGL-7.4.4.tbz libGLU-7.4.4.tbz libXft-2.1.14.tbz libX11-1.3.6,1.tbz libXext-1.1.2,1.tbz libXmu-1.1.0,1.tbz gmp-5.0.2.tbz gd-2.0.35_7,1.tbz pdflib-7.0.4.tbz plotutils-2.6_2,1.tbz cairo-1.10.2_2,1.tbz wxgtk2-2.8.12.tbz glib-2.28.8.tbz pango-1.28.4.tbz teTeX-base-3.0_22.tbz libXaw-1.0.8,1.tbz libXt-1.0.9.tbz gio-fam-backend-2.28.8.tbz gettext-0.18.1.1.tbz mpfr-3.0.1.tbz mpc-0.9.tbz binutils-2.21.1.tbz expat-2.0.1_1.tbz jbig2dec-0.11.tbz cups-image-1.4.6.tbz fontconfig-2.8.0_1,1.tbz gsfonts-8.11_5.tbz libdrm-2.4.12_1.tbz dri2proto-2.3.tbz libXxf86vm-1.1.0.tbz libXdamage-1.1.3.tbz libXfixes-4.0.4.tbz xproto-7.0.16.tbz libXrender-0.9.5.tbz libxcb-1.7.tbz kbproto-1.0.5.tbz libXau-1.0.6.tbz libXdmcp-1.0.3.tbz xextproto-7.1.1.tbz open-motif-2.3.3.tbz libXpm-3.5.7.tbz pixman-0.22.0.tbz xcb-util-0.3.6_1.tbz libmspack-0.2_1.tbz atk-2.0.1.tbz gconf2-2.32.0_2.tbz gtk-2.24.5_1.tbz libIDL-0.8.14_1.tbz ORBit2-2.14.19.tbz wxgtk2-common-2.8.12.tbz libSM-1.1.1_3,1.tbz libXinerama-1.1,1.tbz gstreamer-plugins-0.10.35,3.tbz python27-2.7.2_1.tbz perl-5.12.4_1.tbz xorg-fonts-truetype-7.5.1.tbz encodings-1.0.4,1.tbz gobject-introspection-0.10.8.tbz libwww-5.4.0_4.tbz t1lib-5.1.2_1,1.tbz teTeX-texmf-3.0_8.tbz tex-texmflocal-1.9.tbz texi2html-1.82,1.tbz printproto-1.0.4.tbz libXp-1.0.0,1.tbz gamin-0.1.10_4.tbz cups-client-1.4.6.tbz gnutls-2.12.7_2.tbz libpthread-stubs-0.3_3.tbz xf86vidmodeproto-2.3.tbz damageproto-1.2.1.tbz fixesproto-4.1.2.tbz renderproto-0.11.tbz xbitmaps-1.1.0.tbz dbus-glib-0.88.tbz polkit-0.99.tbz dconf-0.5.1_3.tbz gnomehier-2.3_12.tbz gdk-pixbuf-2.23.5.tbz shared-mime-info-0.90.tbz hicolor-icon-theme-0.12.tbz libXi-1.3.2,1.tbz libXrandr-1.3.0.tbz libXcursor-1.1.11.tbz libXcomposite-0.4.3,1.tbz gtk-update-icon-cache-2.24.5.tbz libICE-1.0.7,1.tbz xineramaproto-1.2.tbz gstreamer-0.10.35.tbz orc-0.4.14_1.tbz libXv-1.0.5,1.tbz font-bh-ttf-1.0.3.tbz font-misc-meltho-1.0.3.tbz font-misc-ethiopic-1.0.3.tbz bitstream-vera-1.10_5.tbz font-util-1.2.0.tbz libffi-3.0.9.tbz font-amsfonts-3.02_1.tbz nettle-2.2.tbz libgpg-error-1.10.tbz dbus-1.4.6.tbz eggdbus-0.6_1.tbz libgee-0.6.1.tbz inputproto-2.0.1.tbz randrproto-1.3.2.tbz compositeproto-0.4.2.tbz videoproto-2.3.0.tbz mkfontdir-1.0.6.tbz mkfontscale-1.0.8.tbz gnome_subr-1.0.tbz libfontenc-1.1.0.tbz octave-3.4.2_2.tbz gmake-3.82.tbz adding dependencies pkg_add icu-4.8.1.tbz pkg_add boost-libs-1.45.0_1.tbz You have built the Boost library with thread support. Don't forget to add -pthread to your linker options when linking your code. pkg_add GraphicsMagick-1.1.15_3,1.tbz Running fc-cache to build fontconfig cache... /usr/local/share/fonts: skipping, no such directory /usr/local/lib/X11/fonts: caching, new cache contents: 0 fonts, 1 dirs /usr/local/lib/X11/fonts/local: caching, new cache contents: 0 fonts, 0 dirs /root/.fonts: skipping, no such directory /var/db/fontconfig: cleaning cache directory /root/.fontconfig: not cleaning non-existent cache directory fc-cache: succeeded ***************************************************************** Although libxcb can yield dramatic improvements in speed, memory footprint, and responsiveness, and will probably become the default Xlib for X.org/freedesktop.org, it is still experimental software. Some broken callers will abort() on locking assertion failures. As a temporary workaround, set LIBXCB_ALLOW_SLOPPY_LOCK in your environment to skip the abort(). This may result in noisy stacktrace printing. ***************************************************************** Note: in order to use the script "dvipdf", dvips must be installed. This program may be provided by either print/dvips or print/dvipsk-tetex (print/dvipsk-tetex may be preferable since it doesn't conflict with tetex things). FAPIfontmap and FAPIcidfmap in /usr/local/share/ghostscript/9.02/Resource/Init have to be configured if you want to use FAPI feature. pkg_add arpack-96_8.tbz pkg_add curl-7.21.3_2.tbz pkg_add fftw3-3.2.2_1.tbz pkg_add fftw3-float-3.2.2_2.tbz pkg_add fltk-1.1.10_1.tbz pkg_add ftgl-2.1.3.r5,1.tbz pkg_add hdf5-1.8.7.tbz pkg_add pcre-8.12.tbz pkg_add qhull-1.0_2.tbz pkg_add qrupdate-1.1.1.tbz pkg_add suitesparse-3.6.1_2.tbz pkg_add glpk-4.45.tbz pkg_add blas-1.0_6.tbz skipping blas-1.0_6, already added pkg_add lapack-3.3.0_1.tbz skipping lapack-3.3.0_1, already added pkg_add gnuplot-4.4.3.tbz ./etc/CORBA missing (created) ./etc/CORBA/servers missing (created) ./etc/X11 missing (created) ./etc/X11/serverconfig missing (created) ./etc/X11/starthere missing (created) ./etc/X11/sysconfig missing (created) ./etc/gconf missing (created) ./etc/gconf/gconf.xml.defaults missing (created) ./etc/gconf/gconf.xml.mandatory missing (created) ./etc/gconf/gconf.xml.system missing (created) ./etc/gconf/schemas missing (created) ./etc/gnome missing (created) ./etc/gnome/config missing (created) ./etc/gnome-vfs-2.0 missing (created) ./etc/gnome-vfs-2.0/modules missing (created) ./etc/sound missing (created) ./etc/sound/events missing (created) ./etc/vfs missing (created) ./etc/vfs/modules missing (created) ./etc/xdg missing (created) ./etc/xdg/autostart missing (created) ./include/gconf missing (created) ./include/gdkcardimage missing (created) ./include/gnome-1.0 missing (created) ./lib/GConf missing (created) ./lib/bonobo missing (created) ./lib/bonobo/monikers missing (created) ./lib/bonobo/plugin missing (created) ./lib/gnome-vfs-2.0 missing (created) ./lib/gnome-vfs-2.0/modules missing (created) ./lib/vfs missing (created) ./lib/vfs/modules missing (created) ./libdata/bonobo missing (created) ./libdata/bonobo/servers missing (created) ./share/applets missing (created) ./share/applets/Amusements missing (created) ./share/applets/Clocks missing (created) ./share/applets/Monitors missing (created) ./share/applets/Multimedia missing (created) ./share/applets/Network missing (created) ./share/applets/Utility missing (created) ./share/application-registry missing (created) ./share/capplets missing (created) ./share/control-center missing (created) ./share/control-center/Desktop missing (created) ./share/control-center/Documents missing (created) ./share/control-center/Peripherals missing (created) ./share/control-center/Session missing (created) ./share/control-center/capplets missing (created) ./share/control-center/keybindings missing (created) ./share/control-center-2.0 missing (created) ./share/control-center-2.0/capplets missing (created) ./share/doc/libgda missing (created) ./share/games missing (created) ./share/gnome missing (created) ./share/gnome/apps missing (created) ./share/gnome/apps/Applications missing (created) ./share/gnome/apps/Audio missing (created) ./share/gnome/apps/Development missing (created) ./share/gnome/apps/Games missing (created) ./share/gnome/apps/Graphics missing (created) ./share/gnome/apps/Internet missing (created) ./share/gnome/apps/Multimedia missing (created) ./share/gnome/apps/Settings missing (created) ./share/gnome/apps/Settings/Desktop missing (created) ./share/gnome/apps/Settings/Documents missing (created) ./share/gnome/apps/Settings/Peripherals missing (created) ./share/gnome/apps/Settings/Session missing (created) ./share/gnome/apps/System missing (created) ./share/gnome/apps/Utilities missing (created) ./share/gnome/autostart missing (created) ./share/gnome/help missing (created) ./share/gnome/help/fdl missing (created) ./share/gnome/help/fdl/C missing (created) ./share/gnome/help/gpl missing (created) ./share/gnome/help/gpl/C missing (created) ./share/gnome/help/lgpl missing (created) ./share/gnome/help/lgpl/C missing (created) ./share/gnome/panel missing (created) ./share/gnome/ui missing (created) ./share/gnome/wm-properties missing (created) ./share/gnome-2.0 missing (created) ./share/gnome-2.0/ui missing (created) ./share/gnome-about missing (created) ./share/gnome-control-center missing (created) ./share/gnome-control-center/keybindings missing (created) ./share/images missing (created) ./share/mc missing (created) ./share/mc/templates missing (created) ./share/mime-info missing (created) ./share/oaf missing (created) ./share/omf missing (created) ./share/pixmaps/document-icons missing (created) ./share/pixmaps/splash missing (created) ./share/sgml/docbook missing (created) ./share/sgml/docbook/gnome-customization-0.1 missing (created) ./share/sounds missing (created) ./share/vala missing (created) ./share/vala/vapi missing (created) ./share/vfolders missing (created) ./share/xmodmap missing (created) ==== Note that some of the standard modules are provided as separate ports since they require extra dependencies: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter Install them as needed. ==== Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /usr/bin/perl5 Done. Creating various symlinks in /usr/bin... Symlinking /usr/local/bin/perl5.12.4 to /usr/bin/perl Symlinking /usr/local/bin/perl5.12.4 to /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Spamming /etc/make.conf... Done. Cleaning up /etc/manpath.config... Done. Spamming /etc/manpath.config... Done. /usr/local/lib/X11/fonts/bitstream-vera: caching, new cache contents: 10 fonts, 0 dirs /var/db/fontconfig: cleaning cache directory /var/db/fontconfig: invalid cache file: deea84fa067eec67b69dab1b2344175b-le32d4.cache-3 /root/.fontconfig: not cleaning non-existent cache directory /usr/local/bin/fc-cache: succeeded IMPORTANT - READ CAREFULLY: Please read the COPYRIGHT included with these fonts before using. The copyright can be found at /usr/local/lib/X11/fonts/bitstream-vera/COPYRIGHT.TXT. To use these fonts, follow the instructions below. Make sure that the freetype module is loaded. If it is not, add the following line to the "Modules" section of your X Windows configuration file: Load "freetype" Add the following line to the "Files" section of X Windows configuration file: FontPath "/usr/local/lib/X11/fonts/bitstream-vera/" Note: your X Windows configuration file is typically /etc/X11/xorg.conf ===> Creating users and/or groups. Using existing group 'messagebus'. Using existing user 'messagebus'. No schema files found: doing nothing. =============================================================================== Gamin will only provide realtime notification of changes for at most n files, where n is the minimum value between (kern.maxfiles * 0.7) and (kern.maxfilesperproc - 200). Beyond that limit, files will be polled. If you often open several large folders with Nautilus, you might want to increase the kern.maxfiles tunable (you do not need to set kern.maxfilesperproc, since it is computed at boot time from kern.maxfiles). For a typical desktop, add the following line to /boot/loader.conf, then reboot the system: kern.maxfiles="25000" The behavior of gamin can be controlled via the various gaminrc files. See http://www.gnome.org/~veillard/gamin/config.html on how to create these files. In particular, if you find gam_server is taking up too much CPU time polling for changes, something like the following may help in one of the gaminrc files: # reduce polling frequency to once per 10 seconds # for UFS file systems in order to lower CPU load fsset ufs poll 10 =============================================================================== updmap: This is updmap, version 1107552857 updmap: using transcript file `/usr/local/share/texmf-var/web2c/updmap.log' updmap is creating new map files using the following configuration: config file: `/usr/local/share/texmf-config/web2c/updmap.cfg' dvips output directory: `/usr/local/share/texmf-var/fonts/map/dvips/updmap' pdftex output directory: `/usr/local/share/texmf-var/fonts/map/pdftex/updmap' dvipdfm output directory: `/usr/local/share/texmf-var/fonts/map/dvipdfm/updmap' prefer outlines: `true' texhash enabled: `true' download standard fonts (dvips): `false' download standard fonts (pdftex): `true' download standard fonts (dvipdfm): `true' updmap: Scanning for LW35 support files updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/dvips35.map' (for map) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/pdftex35.map' (for map) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/dvipdfm35.map' (for map) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/ps2pk35.map' (for map) updmap: Scanning for MixedMap entries: updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/bsr-interpolated.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/bsr.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/cc-pl/ccpl.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/misc/cs.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/misc/eurosym.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/hoekwater.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/pl/pl.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/ttcmex.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/vntex/vnr.map' (for dvips) updmap: Scanning for Map entries: updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antp/antp.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/psnfss/charter.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/misc/cmcyr.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/contnav.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/cork-antt.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/lm/cork-lm.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/cs-antt.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/misc/dstroke.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/exp-antt.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/psnfss/fpls.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/greek-antt.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/misc/marvosym.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/mathpple.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/mt-belleek.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/omega/omega.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/psnfss/pazo.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/pxfonts.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qbk.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qcr.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qhv.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qpl.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qtm.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/qx-antt.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/lm/qx-lm.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qzc.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/t2a-antt.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/t2b-antt.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/t2c-antt.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/t5-antt.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/texnansi-antt.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/lm/texnansi-lm.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/lm/ts1-lm.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/txfonts.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/urwvn/urwvn.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/wncy-antt.map' (for dvips) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/xypic/xypic.map' (for dvips) updmap: Generating output for ps2pk... updmap: Generating output for dvips... updmap: Generating output for pdftex... updmap: Scanning for dvipdfm MixedMap entries: updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/bsr-interpolated.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/bsr.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/cc-pl/ccpl.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/misc/cs.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/misc/eurosym.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/hoekwater.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/pl/pl.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/ttcmex.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/vntex/vnr.map' (for dvipdfm) updmap: Scanning for dvipdfm Map entries: updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antp/antp.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/psnfss/charter.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/misc/cmcyr.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/contnav.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/cork-antt.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/lm/cork-lm.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/cs-antt.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/misc/dstroke.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/exp-antt.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/psnfss/fpls.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/greek-antt.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/misc/marvosym.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/mathpple.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/mt-belleek.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/omega/omega.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/psnfss/pazo.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/pxfonts.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qbk.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qcr.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qhv.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qpl.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qtm.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/qx-antt.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/lm/qx-lm.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/qfonts/qzc.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/t2a-antt.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/t2b-antt.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/t2c-antt.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/t5-antt.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/texnansi-antt.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/lm/texnansi-lm.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/lm/ts1-lm.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/tetex/txfonts.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/urwvn/urwvn.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/antt/wncy-antt.map' (for dvipdfm) updmap: using map file `/usr/local/share/texmf-dist/fonts/map/dvips/xypic/xypic.map' (for dvipdfm) updmap: Generating output for dvipdfm... updmap: All output generated! updmap: Files generated: -rw-r--r-- 1 root wheel 25913 Aug 26 05:33 /usr/local/share/texmf-var/fonts/map/dvipdfm/updmap/dvipdfm_dl14.map -rw-r--r-- 1 root wheel 26494 Aug 26 05:33 /usr/local/share/texmf-var/fonts/map/dvipdfm/updmap/dvipdfm_ndl14.map -rw-r--r-- 1 root wheel 8237 Aug 26 05:33 /usr/local/share/texmf-var/fonts/map/dvips/updmap/builtin35.map -rw-r--r-- 1 root wheel 12134 Aug 26 05:33 /usr/local/share/texmf-var/fonts/map/dvips/updmap/download35.map -rw-r--r-- 1 root wheel 82338 Aug 26 05:33 /usr/local/share/texmf-var/fonts/map/dvips/updmap/ps2pk.map -rw-r--r-- 1 root wheel 64166 Aug 26 05:33 /usr/local/share/texmf-var/fonts/map/dvips/updmap/psfonts_pk.map -rw-r--r-- 1 root wheel 78447 Aug 26 05:33 /usr/local/share/texmf-var/fonts/map/dvips/updmap/psfonts_t1.map -rw-r--r-- 1 root wheel 82345 Aug 26 05:33 /usr/local/share/texmf-var/fonts/map/pdftex/updmap/pdftex_dl14.map -rw-r--r-- 1 root wheel 80876 Aug 26 05:33 /usr/local/share/texmf-var/fonts/map/pdftex/updmap/pdftex_ndl14.map updmap: Map file links: psfonts.map -> psfonts_t1.map pdftex.map -> pdftex_dl14.map dvipdfm.map -> dvipdfm_dl14.map fmtutil: running `mf -ini -jobname=mf -progname=mf -translate-file=cp227.tcx mf.ini' ... This is METAFONT, Version 2.71828 (Web2C 7.5.4) (INIMF) (/usr/local/share/texmf-dist/web2c/cp227.tcx) (/usr/local/share/texmf-dist/metafont/config/mf.ini (/usr/local/share/texmf-dist/metafont/base/plain.mf Preloading the plain base, version 2.71: preliminaries, basic constants and mathematical macros, macros for converting from device-independent units to pixels, macros and tables for various modes of operation, macros for drawing and filling, macros for proof labels and rules, macros for character and font administration, and a few last-minute items.) (/usr/local/share/texmf-dist/metafont/misc/modes.mf) ) Beginning to dump on file mf.base (base=mf 2011.8.26) 2224 strings of total length 29956 11865 memory locations dumped; current usage is 3658&7845 1003 symbolic tokens Transcript written on mf.log. fmtutil: running `mpost -ini -jobname=mpost -progname=mpost -translate-file=cp227.tcx mpost.mp' ... This is MetaPost, Version 0.641 (Web2C 7.5.4) (INIMP) (/usr/local/share/texmf-dist/web2c/cp227.tcx) (/usr/local/share/texmf-dist/metapost/config/mpost.mp (/usr/local/share/texmf-dist/metapost/config/mpost.ini (/usr/local/share/texmf-dist/metapost/base/plain.mp Preloading the plain mem file, version 0.64) ) ) Beginning to dump on file mpost.mem (mem=mpost 2011.8.26) at most 1430 strings of total length 23625 3296 memory locations dumped; current usage is 977&2225 477 symbolic tokens Transcript written on mpost.log. fmtutil: running `mpost -ini -jobname=metafun -progname=mpost -translate-file=cp227.tcx metafun.mp' ... This is MetaPost, Version 0.641 (Web2C 7.5.4) (INIMP) (/usr/local/share/texmf-dist/web2c/cp227.tcx) (/usr/local/share/texmf-dist/metapost/context/base/metafun.mp (/usr/local/share/texmf-dist/metapost/base/plain.mp Preloading the plain mem file, version 0.64) (/usr/local/share/texmf-dist/metapost/context/base/mp-tool.mp) (/usr/local/share/texmf-dist/metapost/context/base/mp-spec.mp) (/usr/local/share/texmf-dist/metapost/context/base/mp-core.mp) (/usr/local/share/texmf-dist/metapost/context/base/mp-page.mp) (/usr/local/share/texmf-dist/metapost/context/base/mp-text.mp) (/usr/local/share/texmf-dist/metapost/context/base/mp-shap.mp) (/usr/local/share/texmf-dist/metapost/context/base/mp-butt.mp) (/usr/local/share/texmf-dist/metapost/context/base/mp-char.mp) (/usr/local/share/texmf-dist/metapost/context/base/mp-step.mp) (/usr/local/share/texmf-dist/metapost/context/base/mp-grph.mp) (/usr/local/share/texmf-dist/metapost/context/base/mp-figs.mp) (/usr/local/share/texmf-dist/metapost/context/base/mp-grid.mp (/usr/local/share/texmf-dist/metapost/context/base/mp-form.mp (/usr/local/share/texmf-dist/metapost/base/string.mp) (/usr/local/share/texmf-dist/metapost/base/marith.mp (/usr/local/share/texmf-dist/metapost/base/string.mp)))) (/usr/local/share/texmf-dist/metapost/context/base/mp-func.mp) ) Beginning to dump on file metafun.mem (mem=metafun 2011.8.26) at most 2884 strings of total length 37210 47012 memory locations dumped; current usage is 12067&34816 1717 symbolic tokens Transcript written on metafun.log. fmtutil: running `tex -ini -jobname=tex -progname=tex -translate-file=cp227.tcx tex.ini' ... This is TeX, Version 3.141592 (Web2C 7.5.4) (INITEX) (/usr/local/share/texmf-dist/web2c/cp227.tcx) (/usr/local/share/texmf-dist/tex/plain/config/tex.ini (/usr/local/share/texmf-dist/tex/plain/base/plain.tex Preloading the plain format: codes, registers, parameters, fonts, more fonts, macros, math definitions, output routines, hyphenation (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex)) ) Beginning to dump on file tex.fmt (format=tex 2011.8.26) 2020 strings of total length 29058 4990 memory locations dumped; current usage is 110&4877 926 multiletter control sequences \font\nullfont=nullfont \font\tenrm=cmr10 \font\preloaded=cmr9 \font\preloaded=cmr8 \font\sevenrm=cmr7 \font\preloaded=cmr6 \font\fiverm=cmr5 \font\teni=cmmi10 \font\preloaded=cmmi9 \font\preloaded=cmmi8 \font\seveni=cmmi7 \font\preloaded=cmmi6 \font\fivei=cmmi5 \font\tensy=cmsy10 \font\preloaded=cmsy9 \font\preloaded=cmsy8 \font\sevensy=cmsy7 \font\preloaded=cmsy6 \font\fivesy=cmsy5 \font\tenex=cmex10 \font\preloaded=cmss10 \font\preloaded=cmssq8 \font\preloaded=cmssi10 \font\preloaded=cmssqi8 \font\tenbf=cmbx10 \font\preloaded=cmbx9 \font\preloaded=cmbx8 \font\sevenbf=cmbx7 \font\preloaded=cmbx6 \font\fivebf=cmbx5 \font\tentt=cmtt10 \font\preloaded=cmtt9 \font\preloaded=cmtt8 \font\preloaded=cmsltt10 \font\tensl=cmsl10 \font\preloaded=cmsl9 \font\preloaded=cmsl8 \font\tenit=cmti10 \font\preloaded=cmti9 \font\preloaded=cmti8 \font\preloaded=cmti7 \font\preloaded=cmu10 \font\preloaded=cmmib10 \font\preloaded=cmbsy10 \font\preloaded=cmcsc10 \font\preloaded=cmssbx10 \font\preloaded=cmdunh10 \font\preloaded=cmr7 at 14.51799pt \font\preloaded=cmtt10 at 14.4pt \font\preloaded=cmssbx10 at 14.4pt \font\preloaded=manfnt 14787 words of font info for 50 preloaded fonts 14 hyphenation exceptions Hyphenation trie of length 6075 has 181 ops out of 35111 181 for language 0 No pages of output. Transcript written on tex.log. fmtutil: running `pdfetex -ini -jobname=latex -progname=latex -translate-file=cp227.tcx *latex.ini' ... This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) (INITEX) (/usr/local/share/texmf-dist/web2c/cp227.tcx) entering extended mode (/usr/local/share/texmf-dist/tex/latex/config/latex.ini (/usr/local/share/texmf-dist/tex/generic/config/pdftexconfig.tex) (/usr/local/share/texmf-dist/tex/latex/base/latex.ltx (/usr/local/share/texmf-dist/tex/latex/base/texsys.cfg) ./texsys.aux found \@currdir set to: ./. Assuming \openin and \input have the same search path. Defining UNIX/DOS style filename parser. catcodes, registers, compatibility for TeX 2, parameters, LaTeX2e <2003/12/01> hacks, control, par, spacing, files, font encodings, lengths, ==================================== Local config file fonttext.cfg used ==================================== (/usr/local/share/texmf-dist/tex/generic/config/fonttext.cfg (/usr/local/share/texmf-dist/tex/latex/base/fonttext.ltx === Don't modify this file, use a .cfg file instead === (/usr/local/share/texmf-dist/tex/latex/base/omlenc.def) (/usr/local/share/texmf-dist/tex/latex/base/t1enc.def) (/usr/local/share/texmf-dist/tex/latex/base/ot1enc.def) (/usr/local/share/texmf-dist/tex/latex/base/omsenc.def) (/usr/local/share/texmf-dist/tex/latex/base/t1cmr.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmr.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmss.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmtt.fd))) ==================================== Local config file fontmath.cfg used ==================================== (/usr/local/share/texmf-dist/tex/generic/config/fontmath.cfg (/usr/local/share/texmf-dist/tex/latex/base/fontmath.ltx === Don't modify this file, use a .cfg file instead === (/usr/local/share/texmf-dist/tex/latex/base/omlcmm.fd) (/usr/local/share/texmf-dist/tex/latex/base/omscmsy.fd) (/usr/local/share/texmf-dist/tex/latex/base/omxcmex.fd) (/usr/local/share/texmf-dist/tex/latex/base/ucmr.fd))) ==================================== Local config file preload.cfg used ===================================== (/usr/local/share/texmf-dist/tex/generic/config/preload.cfg (/usr/local/share/texmf-dist/tex/latex/base/preload.ltx)) page nos., x-ref, environments, center, verbatim, math definitions, boxes, title, sectioning, contents, floats, footnotes, index, bibliography, output, =========================================== Local configuration file hyphen.cfg used =========================================== (/usr/local/share/texmf-dist/tex/generic/babel/hyphen.cfg (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/frhyph.tex frhyph.tex - French hyphenation patterns (V2.12) <2002/12/11>) (/usr/local/share/texmf-dist/tex/generic/hyphen/dehypht.tex German Traditional Hyphenation Patterns `dehypht' Version 3.2a <1999/03/03> (Formerly known under the name `ghyph31' and `ghyphen'.)) (/usr/local/share/texmf-dist/tex/generic/hyphen/dehyphn.tex New German Hyphenation Patterns `dehyphn' Rev.31 <2001-05-07> (WaS)) (/usr/local/share/texmf-dist/tex/generic/hyphen/inhyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/bahyph.tex) (/usr/local/share/texmf-dist/tex/generic/bghyph/bghyphen.tex Bulgarian hyphenation patterns (/usr/local/share/texmf-dist/tex/generic/bghyph/catmik.tex) (/usr/local/share/texmf-dist/tex/generic/bghyph/mik2t2.tex) (/usr/local/share/texmf-dist/tex/generic/bghyph/bghyphsi.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/cahyph.tex Catalan Hyphenation Patterns `cahyphen' Version 1.11 <2003/07/15>) (/usr/local/share/texmf-dist/tex/generic/hyphen/hrhyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/czhyph.tex (/usr/local/share/texmf-dist/tex/csplain/t1code.tex Font encoding set to Cork.) The \^, \`, \', \v, \" and \r expands to characters by Cork. (/usr/local/share/texmf-dist/tex/csplain/czhyphen.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/dkhyphen.tex (/usr/local/share/texmf-dist/tex/generic/hyphen/dkcommon.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/dkspecial.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/dkspecial.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/nehyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/eohyph.tex Esperanto Hyphenation Patterns `eohyph', 1999-08-10) (/usr/local/share/texmf-dist/tex/generic/hyphen/eehyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/fi8hyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/grhyph.tex Greek language hyphenation patterns) (/usr/local/share/texmf-dist/tex/generic/hyphen/icehyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/gahyph.tex Hyphenation patterns `gahyph.tex' Version 1.0 <2004/01/22>) (/usr/local/share/texmf-dist/tex/generic/hyphen/ithyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/lahyph.tex Latin Hyphenation Patterns `lahyph' Version 3.0b <2001/11/21>) (/usr/local/share/texmf-dist/tex/generic/hyphen/huhyphn.tex Huhyphn - hungarian hyphenation patterns v20031107) (/usr/local/share/texmf-dist/tex/generic/hyphen/nohyphbx.tex Hyphenation patterns for Norwegian) (/usr/local/share/texmf-dist/tex/generic/hyphen/plhyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/pt8hyph.tex portuguese hiphenation 8 bits and -) (/usr/local/share/texmf-dist/tex/generic/hyphen/rohyphen.tex Romanian Hyphenation Patterns: `rohyphen' 1.1 <29.10.1996>) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/ruhyphen.tex (/usr/local/share/texmf-dist/tex/generic/ruhyphen/catkoi.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/koi2t2a.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/ruhyphal.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/cyryoal.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/hypht2.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/srhyphc.tex Serbian Cyrillic Hyphenation Patterns `srhyphc.tex' v1.0a <2003-06-09>) (/usr/local/share/texmf-dist/tex/generic/hyphen/skhyph.tex (/usr/local/share/texmf-dist/tex/csplain/t1code.tex Font encoding set to Cork.) The \^, \`, \', \v, \" and \r expands to characters by Cork. (/usr/local/share/texmf-dist/tex/csplain/skhyphen.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/sihyph23.tex Slovene Hyphenation Patterns `sihyph23' Version 2.3 <97/15/04>) (/usr/local/share/texmf-dist/tex/generic/hyphen/eshyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/sehyph.tex Swedish hyphenation patterns, Jan Michael Rynning, 1994-03-03.) (/usr/local/share/texmf-dist/tex/generic/hyphen/trhyph.tex Turkish Hyphenation Patterns `trhyph' Version 1.0a <97/05/04>) (/usr/local/share/texmf-dist/tex/generic/ukrhyph/ukrhyph.tex Ukrainian hyphenation patterns in t2a encoding (/usr/local/share/texmf-dist/tex/generic/ukrhyph/catlcy.tex) (/usr/local/share/texmf-dist/tex/generic/ukrhyph/lcy2t2a.tex) (/usr/local/share/texmf-dist/tex/generic/ukrhyph/ukrhypmp.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/hypht2.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/zerohyph.tex)) ================================= Applying patch file ltpatch.ltx ================================= (/usr/local/share/texmf-dist/tex/latex/base/ltpatch.ltx) ) ) Beginning to dump on file latex.fmt (format=latex 2011.8.26) 5499 strings of total length 75004 47474 memory locations dumped; current usage is 144&43215 3273 multiletter control sequences \font\nullfont=nullfont \font\OMX/cmex/m/n/10=cmex10 \font\tenln=line10 \font\tenlnw=linew10 \font\tencirc=lcircle10 \font\tencircw=lcirclew10 \font\OT1/cmr/m/n/5=cmr5 \font\OT1/cmr/m/n/7=cmr7 \font\OT1/cmr/m/n/10=cmr10 \font\OML/cmm/m/it/5=cmmi5 \font\OML/cmm/m/it/7=cmmi7 \font\OML/cmm/m/it/10=cmmi10 \font\OMS/cmsy/m/n/5=cmsy5 \font\OMS/cmsy/m/n/7=cmsy7 \font\OMS/cmsy/m/n/10=cmsy10 3633 words of font info for 14 preloaded fonts 580 hyphenation exceptions Hyphenation trie of length 150552 has 3904 ops out of 35111 138 for language 32 12 for language 31 127 for language 30 76 for language 29 71 for language 28 248 for language 27 62 for language 26 119 for language 25 68 for language 24 7 for language 23 194 for language 22 756 for language 21 117 for language 20 26 for language 19 35 for language 18 229 for language 17 147 for language 16 6 for language 15 31 for language 14 113 for language 13 145 for language 12 265 for language 11 60 for language 10 63 for language 9 19 for language 8 21 for language 7 12 for language 6 5 for language 5 21 for language 4 235 for language 3 207 for language 2 88 for language 1 181 for language 0 No pages of output. Transcript written on latex.log. fmtutil: running `pdfetex -ini -jobname=etex -progname=etex -translate-file=cp227.tcx *etex.ini' ... This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) (INITEX) (/usr/local/share/texmf-dist/web2c/cp227.tcx) entering extended mode (/usr/local/share/texmf-dist/tex/plain/config/etex.ini (/usr/local/share/texmf-dist/tex/generic/config/pdftexconfig.tex) (/usr/local/share/texmf-dist/tex/plain/etex/etex.src (/usr/local/share/texmf-dist/tex/plain/base/plain.tex Preloading the plain format: codes, registers, parameters, fonts, more fonts, macros, math definitions, output routines, hyphenation (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex [skipping from \patterns to end-of-file...])) (/usr/local/share/texmf-dist/tex/plain/etex/etexdefs.lib Skipping module "grouptypes"; Loading module "interactionmodes"; Skipping module "nodetypes"; Skipping module "iftypes";) (/usr/local/share/texmf-dist/tex/plain/config/language.def (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex)) Augmenting the Plain TeX definitions: \tracingall; Adding new e-TeX definitions: \eTeX, \loggingall, \tracingnone, register allocation; extended register allocation; Recycling: \addlanguage, \@nswer (not defined), \@sk, \b@dresponsetrue, \b@dresponsefalse, \ch@ckforyn, \mayber@cycle, \et@xabort, \et@xbuf, \et@xfmtsrc, \et@xfilehdr, \et@xinf, \et@xpatterns, \l@ngdefnfile, \n@xt, \p@rse (not defined), \pr@mpt (not defined), \pr@mptloop (not defined), \forcer@cycle, \usef@llback, \usef@llbacktrue, \usef@llbackfalse, Retaining: \et@xerr, \et@xinput, \et@xlibhdr, \et@xmsg, \et@xtoks, \et@xwarn, \et@xl@@d, \et@xl@ad, \et@xload, \et@xlang, \et@xhash, \eTeX, \etexhdrchk, \etexstatus, \module, \uselanguage, \r@tain, \r@cycle,) ) Beginning to dump on file etex.fmt (format=etex 2011.8.26) 2658 strings of total length 38317 7953 memory locations dumped; current usage is 197&7289 1176 multiletter control sequences \font\nullfont=nullfont \font\tenrm=cmr10 \font\preloaded=cmr9 \font\preloaded=cmr8 \font\sevenrm=cmr7 \font\preloaded=cmr6 \font\fiverm=cmr5 \font\teni=cmmi10 \font\preloaded=cmmi9 \font\preloaded=cmmi8 \font\seveni=cmmi7 \font\preloaded=cmmi6 \font\fivei=cmmi5 \font\tensy=cmsy10 \font\preloaded=cmsy9 \font\preloaded=cmsy8 \font\sevensy=cmsy7 \font\preloaded=cmsy6 \font\fivesy=cmsy5 \font\tenex=cmex10 \font\preloaded=cmss10 \font\preloaded=cmssq8 \font\preloaded=cmssi10 \font\preloaded=cmssqi8 \font\tenbf=cmbx10 \font\preloaded=cmbx9 \font\preloaded=cmbx8 \font\sevenbf=cmbx7 \font\preloaded=cmbx6 \font\fivebf=cmbx5 \font\tentt=cmtt10 \font\preloaded=cmtt9 \font\preloaded=cmtt8 \font\preloaded=cmsltt10 \font\tensl=cmsl10 \font\preloaded=cmsl9 \font\preloaded=cmsl8 \font\tenit=cmti10 \font\preloaded=cmti9 \font\preloaded=cmti8 \font\preloaded=cmti7 \font\preloaded=cmu10 \font\preloaded=cmmib10 \font\preloaded=cmbsy10 \font\preloaded=cmcsc10 \font\preloaded=cmssbx10 \font\preloaded=cmdunh10 \font\preloaded=cmr7 at 14.51799pt \font\preloaded=cmtt10 at 14.4pt \font\preloaded=cmssbx10 at 14.4pt \font\preloaded=manfnt 14787 words of font info for 50 preloaded fonts 14 hyphenation exceptions Hyphenation trie of length 6075 has 181 ops out of 35111 181 for language 0 No pages of output. Transcript written on etex.log. fmtutil: running `pdfetex -ini -jobname=pdftex -progname=pdftex -translate-file=cp227.tcx *pdftex.ini' ... This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) (INITEX) (/usr/local/share/texmf-dist/web2c/cp227.tcx) entering extended mode (/usr/local/share/texmf-dist/tex/plain/config/pdftex.ini (/usr/local/share/texmf-dist/tex/generic/config/pdftexconfig.tex) (/usr/local/share/texmf-dist/tex/plain/base/plain.tex Preloading the plain format: codes, registers, parameters, fonts, more fonts, macros, math definitions, output routines, hyphenation (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex)) ) Beginning to dump on file pdftex.fmt (format=pdftex 2011.8.26) 2525 strings of total length 36596 4991 memory locations dumped; current usage is 110&4878 1056 multiletter control sequences \font\nullfont=nullfont \font\tenrm=cmr10 \font\preloaded=cmr9 \font\preloaded=cmr8 \font\sevenrm=cmr7 \font\preloaded=cmr6 \font\fiverm=cmr5 \font\teni=cmmi10 \font\preloaded=cmmi9 \font\preloaded=cmmi8 \font\seveni=cmmi7 \font\preloaded=cmmi6 \font\fivei=cmmi5 \font\tensy=cmsy10 \font\preloaded=cmsy9 \font\preloaded=cmsy8 \font\sevensy=cmsy7 \font\preloaded=cmsy6 \font\fivesy=cmsy5 \font\tenex=cmex10 \font\preloaded=cmss10 \font\preloaded=cmssq8 \font\preloaded=cmssi10 \font\preloaded=cmssqi8 \font\tenbf=cmbx10 \font\preloaded=cmbx9 \font\preloaded=cmbx8 \font\sevenbf=cmbx7 \font\preloaded=cmbx6 \font\fivebf=cmbx5 \font\tentt=cmtt10 \font\preloaded=cmtt9 \font\preloaded=cmtt8 \font\preloaded=cmsltt10 \font\tensl=cmsl10 \font\preloaded=cmsl9 \font\preloaded=cmsl8 \font\tenit=cmti10 \font\preloaded=cmti9 \font\preloaded=cmti8 \font\preloaded=cmti7 \font\preloaded=cmu10 \font\preloaded=cmmib10 \font\preloaded=cmbsy10 \font\preloaded=cmcsc10 \font\preloaded=cmssbx10 \font\preloaded=cmdunh10 \font\preloaded=cmr7 at 14.51799pt \font\preloaded=cmtt10 at 14.4pt \font\preloaded=cmssbx10 at 14.4pt \font\preloaded=manfnt 14787 words of font info for 50 preloaded fonts 14 hyphenation exceptions Hyphenation trie of length 6075 has 181 ops out of 35111 181 for language 0 No pages of output. Transcript written on pdftex.log. fmtutil: running `pdfetex -ini -jobname=pdflatex -progname=pdflatex -translate-file=cp227.tcx *pdflatex.ini' ... This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) (INITEX) (/usr/local/share/texmf-dist/web2c/cp227.tcx) entering extended mode (/usr/local/share/texmf-dist/tex/latex/config/pdflatex.ini (/usr/local/share/texmf-dist/tex/generic/config/pdftexconfig.tex) (/usr/local/share/texmf-dist/tex/latex/base/latex.ltx (/usr/local/share/texmf-dist/tex/latex/base/texsys.cfg) ./texsys.aux found \@currdir set to: ./. Assuming \openin and \input have the same search path. Defining UNIX/DOS style filename parser. catcodes, registers, compatibility for TeX 2, parameters, LaTeX2e <2003/12/01> hacks, control, par, spacing, files, font encodings, lengths, ==================================== Local config file fonttext.cfg used ==================================== (/usr/local/share/texmf-dist/tex/generic/config/fonttext.cfg (/usr/local/share/texmf-dist/tex/latex/base/fonttext.ltx === Don't modify this file, use a .cfg file instead === (/usr/local/share/texmf-dist/tex/latex/base/omlenc.def) (/usr/local/share/texmf-dist/tex/latex/base/t1enc.def) (/usr/local/share/texmf-dist/tex/latex/base/ot1enc.def) (/usr/local/share/texmf-dist/tex/latex/base/omsenc.def) (/usr/local/share/texmf-dist/tex/latex/base/t1cmr.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmr.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmss.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmtt.fd))) ==================================== Local config file fontmath.cfg used ==================================== (/usr/local/share/texmf-dist/tex/generic/config/fontmath.cfg (/usr/local/share/texmf-dist/tex/latex/base/fontmath.ltx === Don't modify this file, use a .cfg file instead === (/usr/local/share/texmf-dist/tex/latex/base/omlcmm.fd) (/usr/local/share/texmf-dist/tex/latex/base/omscmsy.fd) (/usr/local/share/texmf-dist/tex/latex/base/omxcmex.fd) (/usr/local/share/texmf-dist/tex/latex/base/ucmr.fd))) ==================================== Local config file preload.cfg used ===================================== (/usr/local/share/texmf-dist/tex/generic/config/preload.cfg (/usr/local/share/texmf-dist/tex/latex/base/preload.ltx)) page nos., x-ref, environments, center, verbatim, math definitions, boxes, title, sectioning, contents, floats, footnotes, index, bibliography, output, =========================================== Local configuration file hyphen.cfg used =========================================== (/usr/local/share/texmf-dist/tex/generic/babel/hyphen.cfg (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/frhyph.tex frhyph.tex - French hyphenation patterns (V2.12) <2002/12/11>) (/usr/local/share/texmf-dist/tex/generic/hyphen/dehypht.tex German Traditional Hyphenation Patterns `dehypht' Version 3.2a <1999/03/03> (Formerly known under the name `ghyph31' and `ghyphen'.)) (/usr/local/share/texmf-dist/tex/generic/hyphen/dehyphn.tex New German Hyphenation Patterns `dehyphn' Rev.31 <2001-05-07> (WaS)) (/usr/local/share/texmf-dist/tex/generic/hyphen/inhyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/bahyph.tex) (/usr/local/share/texmf-dist/tex/generic/bghyph/bghyphen.tex Bulgarian hyphenation patterns (/usr/local/share/texmf-dist/tex/generic/bghyph/catmik.tex) (/usr/local/share/texmf-dist/tex/generic/bghyph/mik2t2.tex) (/usr/local/share/texmf-dist/tex/generic/bghyph/bghyphsi.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/cahyph.tex Catalan Hyphenation Patterns `cahyphen' Version 1.11 <2003/07/15>) (/usr/local/share/texmf-dist/tex/generic/hyphen/hrhyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/czhyph.tex (/usr/local/share/texmf-dist/tex/csplain/t1code.tex Font encoding set to Cork.) The \^, \`, \', \v, \" and \r expands to characters by Cork. (/usr/local/share/texmf-dist/tex/csplain/czhyphen.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/dkhyphen.tex (/usr/local/share/texmf-dist/tex/generic/hyphen/dkcommon.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/dkspecial.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/dkspecial.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/nehyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/eohyph.tex Esperanto Hyphenation Patterns `eohyph', 1999-08-10) (/usr/local/share/texmf-dist/tex/generic/hyphen/eehyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/fi8hyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/grhyph.tex Greek language hyphenation patterns) (/usr/local/share/texmf-dist/tex/generic/hyphen/icehyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/gahyph.tex Hyphenation patterns `gahyph.tex' Version 1.0 <2004/01/22>) (/usr/local/share/texmf-dist/tex/generic/hyphen/ithyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/lahyph.tex Latin Hyphenation Patterns `lahyph' Version 3.0b <2001/11/21>) (/usr/local/share/texmf-dist/tex/generic/hyphen/huhyphn.tex Huhyphn - hungarian hyphenation patterns v20031107) (/usr/local/share/texmf-dist/tex/generic/hyphen/nohyphbx.tex Hyphenation patterns for Norwegian) (/usr/local/share/texmf-dist/tex/generic/hyphen/plhyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/pt8hyph.tex portuguese hiphenation 8 bits and -) (/usr/local/share/texmf-dist/tex/generic/hyphen/rohyphen.tex Romanian Hyphenation Patterns: `rohyphen' 1.1 <29.10.1996>) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/ruhyphen.tex (/usr/local/share/texmf-dist/tex/generic/ruhyphen/catkoi.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/koi2t2a.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/ruhyphal.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/cyryoal.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/hypht2.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/srhyphc.tex Serbian Cyrillic Hyphenation Patterns `srhyphc.tex' v1.0a <2003-06-09>) (/usr/local/share/texmf-dist/tex/generic/hyphen/skhyph.tex (/usr/local/share/texmf-dist/tex/csplain/t1code.tex Font encoding set to Cork.) The \^, \`, \', \v, \" and \r expands to characters by Cork. (/usr/local/share/texmf-dist/tex/csplain/skhyphen.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/sihyph23.tex Slovene Hyphenation Patterns `sihyph23' Version 2.3 <97/15/04>) (/usr/local/share/texmf-dist/tex/generic/hyphen/eshyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/sehyph.tex Swedish hyphenation patterns, Jan Michael Rynning, 1994-03-03.) (/usr/local/share/texmf-dist/tex/generic/hyphen/trhyph.tex Turkish Hyphenation Patterns `trhyph' Version 1.0a <97/05/04>) (/usr/local/share/texmf-dist/tex/generic/ukrhyph/ukrhyph.tex Ukrainian hyphenation patterns in t2a encoding (/usr/local/share/texmf-dist/tex/generic/ukrhyph/catlcy.tex) (/usr/local/share/texmf-dist/tex/generic/ukrhyph/lcy2t2a.tex) (/usr/local/share/texmf-dist/tex/generic/ukrhyph/ukrhypmp.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/hypht2.tex)) (/usr/local/share/texmf-dist/tex/generic/hyphen/zerohyph.tex)) ================================= Applying patch file ltpatch.ltx ================================= (/usr/local/share/texmf-dist/tex/latex/base/ltpatch.ltx) ) ) Beginning to dump on file pdflatex.fmt (format=pdflatex 2011.8.26) 5500 strings of total length 75027 47474 memory locations dumped; current usage is 144&43215 3273 multiletter control sequences \font\nullfont=nullfont \font\OMX/cmex/m/n/10=cmex10 \font\tenln=line10 \font\tenlnw=linew10 \font\tencirc=lcircle10 \font\tencircw=lcirclew10 \font\OT1/cmr/m/n/5=cmr5 \font\OT1/cmr/m/n/7=cmr7 \font\OT1/cmr/m/n/10=cmr10 \font\OML/cmm/m/it/5=cmmi5 \font\OML/cmm/m/it/7=cmmi7 \font\OML/cmm/m/it/10=cmmi10 \font\OMS/cmsy/m/n/5=cmsy5 \font\OMS/cmsy/m/n/7=cmsy7 \font\OMS/cmsy/m/n/10=cmsy10 3633 words of font info for 14 preloaded fonts 580 hyphenation exceptions Hyphenation trie of length 150552 has 3904 ops out of 35111 138 for language 32 12 for language 31 127 for language 30 76 for language 29 71 for language 28 248 for language 27 62 for language 26 119 for language 25 68 for language 24 7 for language 23 194 for language 22 756 for language 21 117 for language 20 26 for language 19 35 for language 18 229 for language 17 147 for language 16 6 for language 15 31 for language 14 113 for language 13 145 for language 12 265 for language 11 60 for language 10 63 for language 9 19 for language 8 21 for language 7 12 for language 6 5 for language 5 21 for language 4 235 for language 3 207 for language 2 88 for language 1 181 for language 0 No pages of output. Transcript written on pdflatex.log. fmtutil: running `pdfetex -ini -jobname=pdfetex -progname=pdfetex -translate-file=cp227.tcx *pdfetex.ini' ... This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) (INITEX) (/usr/local/share/texmf-dist/web2c/cp227.tcx) entering extended mode (/usr/local/share/texmf-dist/tex/plain/config/pdfetex.ini (/usr/local/share/texmf-dist/tex/generic/config/pdftexconfig.tex) (/usr/local/share/texmf-dist/tex/plain/etex/etex.src (/usr/local/share/texmf-dist/tex/plain/base/plain.tex Preloading the plain format: codes, registers, parameters, fonts, more fonts, macros, math definitions, output routines, hyphenation (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex [skipping from \patterns to end-of-file...])) (/usr/local/share/texmf-dist/tex/plain/etex/etexdefs.lib Skipping module "grouptypes"; Loading module "interactionmodes"; Skipping module "nodetypes"; Skipping module "iftypes";) (/usr/local/share/texmf-dist/tex/plain/config/language.def (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex)) Augmenting the Plain TeX definitions: \tracingall; Adding new e-TeX definitions: \eTeX, \loggingall, \tracingnone, register allocation; extended register allocation; Recycling: \addlanguage, \@nswer (not defined), \@sk, \b@dresponsetrue, \b@dresponsefalse, \ch@ckforyn, \mayber@cycle, \et@xabort, \et@xbuf, \et@xfmtsrc, \et@xfilehdr, \et@xinf, \et@xpatterns, \l@ngdefnfile, \n@xt, \p@rse (not defined), \pr@mpt (not defined), \pr@mptloop (not defined), \forcer@cycle, \usef@llback, \usef@llbacktrue, \usef@llbackfalse, Retaining: \et@xerr, \et@xinput, \et@xlibhdr, \et@xmsg, \et@xtoks, \et@xwarn, \et@xl@@d, \et@xl@ad, \et@xload, \et@xlang, \et@xhash, \eTeX, \etexhdrchk, \etexstatus, \module, \uselanguage, \r@tain, \r@cycle,) ) Beginning to dump on file pdfetex.fmt (format=pdfetex 2011.8.26) 2659 strings of total length 38339 7953 memory locations dumped; current usage is 197&7289 1176 multiletter control sequences \font\nullfont=nullfont \font\tenrm=cmr10 \font\preloaded=cmr9 \font\preloaded=cmr8 \font\sevenrm=cmr7 \font\preloaded=cmr6 \font\fiverm=cmr5 \font\teni=cmmi10 \font\preloaded=cmmi9 \font\preloaded=cmmi8 \font\seveni=cmmi7 \font\preloaded=cmmi6 \font\fivei=cmmi5 \font\tensy=cmsy10 \font\preloaded=cmsy9 \font\preloaded=cmsy8 \font\sevensy=cmsy7 \font\preloaded=cmsy6 \font\fivesy=cmsy5 \font\tenex=cmex10 \font\preloaded=cmss10 \font\preloaded=cmssq8 \font\preloaded=cmssi10 \font\preloaded=cmssqi8 \font\tenbf=cmbx10 \font\preloaded=cmbx9 \font\preloaded=cmbx8 \font\sevenbf=cmbx7 \font\preloaded=cmbx6 \font\fivebf=cmbx5 \font\tentt=cmtt10 \font\preloaded=cmtt9 \font\preloaded=cmtt8 \font\preloaded=cmsltt10 \font\tensl=cmsl10 \font\preloaded=cmsl9 \font\preloaded=cmsl8 \font\tenit=cmti10 \font\preloaded=cmti9 \font\preloaded=cmti8 \font\preloaded=cmti7 \font\preloaded=cmu10 \font\preloaded=cmmib10 \font\preloaded=cmbsy10 \font\preloaded=cmcsc10 \font\preloaded=cmssbx10 \font\preloaded=cmdunh10 \font\preloaded=cmr7 at 14.51799pt \font\preloaded=cmtt10 at 14.4pt \font\preloaded=cmssbx10 at 14.4pt \font\preloaded=manfnt 14787 words of font info for 50 preloaded fonts 14 hyphenation exceptions Hyphenation trie of length 6075 has 181 ops out of 35111 181 for language 0 No pages of output. Transcript written on pdfetex.log. fmtutil: running `omega -ini -jobname=omega -progname=omega omega.ini' ... This is Omega, Version 3.141592-1.23.2.3 (Web2C 7.5.4) (INIOMEGA) Copyright (c) 1994--2000 John Plaice and Yannis Haralambous (/usr/local/share/texmf-dist/tex/plain/config/omega.ini (/usr/local/share/texmf-dist/tex/plain/base/plain.tex Preloading the plain format: codes, registers, parameters, fonts, (/usr/local/share/texmf-dist/tex/generic/encodings/cmr.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmmi.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmsy.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmex.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmbx.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmtt.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmsl.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmti.onm) more fonts, (/usr/local/share/texmf-dist/tex/generic/encodings/cmmib.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmbsy.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmcsc.onm) macros, math definitions, output routines, hyphenation (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex)) Beginning to dump on file omega.fmt (format=omega 2011.8.26) 72545 strings of total length 52410 95300 memory locations dumped; current usage is 85352&9823 \font\nullfont=nullfont \font\tenrm=cmr10 \font\preloaded=cmr9 \font\preloaded=cmr8 \font\sevenrm=cmr7 \font\preloaded=cmr6 \font\fiverm=cmr5 \font\teni=cmmi10 \font\preloaded=cmmi9 \font\preloaded=cmmi8 \font\seveni=cmmi7 \font\preloaded=cmmi6 \font\fivei=cmmi5 \font\tensy=cmsy10 \font\preloaded=cmsy9 \font\preloaded=cmsy8 \font\sevensy=cmsy7 \font\preloaded=cmsy6 \font\fivesy=cmsy5 \font\tenex=cmex10 \font\preloaded=cmss10 \font\preloaded=cmssq8 \font\preloaded=cmssi10 \font\preloaded=cmssqi8 \font\tenbf=cmbx10 \font\preloaded=cmbx9 \font\preloaded=cmbx8 \font\sevenbf=cmbx7 \font\preloaded=cmbx6 \font\fivebf=cmbx5 \font\tentt=cmtt10 \font\preloaded=cmtt9 \font\preloaded=cmtt8 \font\preloaded=cmsltt10 \font\tensl=cmsl10 \font\preloaded=cmsl9 \font\preloaded=cmsl8 \font\tenit=cmti10 \font\preloaded=cmti9 \font\preloaded=cmti8 \font\preloaded=cmti7 \font\preloaded=cmu10 \font\preloaded=cmmib10 \font\preloaded=cmbsy10 \font\preloaded=cmcsc10 \font\preloaded=cmssbx10 \font\preloaded=cmdunh10 \font\preloaded=cmr7 at 14.51799pt \font\preloaded=cmtt10 at 14.4pt \font\preloaded=cmssbx10 at 14.4pt \font\preloaded=manfnt 50 preloaded fonts 0 words of active ocps \ocp\nullocp=nullocp 0 preloaded ocps \ocplist\nullocplist=[] 14 hyphenation exceptions Hyphenation trie of length 6076 has 181 ops out of 15011 181 for language 0 No pages of output. Transcript written on omega.log. fmtutil: running `omega -ini -jobname=lambda -progname=lambda lambda.ini' ... This is Omega, Version 3.141592-1.23.2.3 (Web2C 7.5.4) (INIOMEGA) Copyright (c) 1994--2000 John Plaice and Yannis Haralambous (/usr/local/share/texmf-dist/tex/latex/config/lambda.ini (/usr/local/share/texmf-dist/tex/lambda/base/lambda.tex (/usr/local/share/texmf-dist/tex/latex/base/latex.ltx (/usr/local/share/texmf-dist/tex/latex/base/texsys.cfg) ./texsys.aux found \@currdir set to: ./. Assuming \openin and \input have the same search path. Defining UNIX/DOS style filename parser. catcodes, registers, compatibility for TeX 2, parameters, LaTeX2e <2003/12/01> hacks, control, par, spacing, files, font encodings, lengths, ==================================== Local config file fonttext.cfg used ==================================== (/usr/local/share/texmf-dist/tex/generic/config/fonttext.cfg (/usr/local/share/texmf-dist/tex/latex/base/fonttext.ltx === Don't modify this file, use a .cfg file instead === (/usr/local/share/texmf-dist/tex/latex/base/omlenc.def) (/usr/local/share/texmf-dist/tex/latex/base/t1enc.def) (/usr/local/share/texmf-dist/tex/latex/base/ot1enc.def) (/usr/local/share/texmf-dist/tex/latex/base/omsenc.def) (/usr/local/share/texmf-dist/tex/latex/base/t1cmr.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmr.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmss.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmtt.fd))) ==================================== Local config file fontmath.cfg used ==================================== (/usr/local/share/texmf-dist/tex/generic/config/fontmath.cfg (/usr/local/share/texmf-dist/tex/latex/base/fontmath.ltx === Don't modify this file, use a .cfg file instead === (/usr/local/share/texmf-dist/tex/latex/base/omlcmm.fd) (/usr/local/share/texmf-dist/tex/latex/base/omscmsy.fd) (/usr/local/share/texmf-dist/tex/latex/base/omxcmex.fd) (/usr/local/share/texmf-dist/tex/latex/base/ucmr.fd))) ==================================== Local config file preload.cfg used ===================================== (/usr/local/share/texmf-dist/tex/generic/config/preload.cfg (/usr/local/share/texmf-dist/tex/latex/base/preload.ltx (/usr/local/share/texmf-dist/tex/generic/encodings/cmex.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmr.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmmi.onm) (/usr/local/share/texmf-dist/tex/generic/encodings/cmsy.onm))) page nos., x-ref, environments, center, verbatim, math definitions, boxes, title, sectioning, contents, floats, footnotes, index, bibliography, output, =========================================== Local configuration file hyphen.cfg used =========================================== (/usr/local/share/texmf-dist/tex/generic/babel/hyphen.cfg (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/eshyph.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/ruhyphen.tex (/usr/local/share/texmf-dist/tex/generic/ruhyphen/catkoi.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/koi2t2a.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/ruhyphal.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/cyryoal.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/hypht2.tex)) (/usr/local/share/texmf-dist/tex/lambda/base/grmhyph.tex (/usr/local/share/texmf-dist/tex/lambda/base/grcodes.tex catcodes, ucccodes and lccodes for Greek) Hyphenation patterns for polytonic Modern Greek) (/usr/local/share/texmf-dist/tex/lambda/base/inuit.hpn Hyphenation patterns for Inuktitut) (/usr/local/share/texmf-dist/tex/generic/hyphen/dumyhyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/zerohyph.tex)) ================================= Applying patch file ltpatch.ltx ================================= (/usr/local/share/texmf-dist/tex/latex/base/ltpatch.ltx) Beginning to dump on file lambda.fmt (format=lambda 2011.8.26) 71511 strings of total length 67514 432527 memory locations dumped; current usage is 339067&89102 \font\nullfont=nullfont \font\OMX/cmex/m/n/10=cmex10 \font\tenln=line10 \font\tenlnw=linew10 \font\tencirc=lcircle10 \font\tencircw=lcirclew10 \font\OT1/cmr/m/n/5=cmr5 \font\OT1/cmr/m/n/7=cmr7 \font\OT1/cmr/m/n/10=cmr10 \font\OML/cmm/m/it/5=cmmi5 \font\OML/cmm/m/it/7=cmmi7 \font\OML/cmm/m/it/10=cmmi10 \font\OMS/cmsy/m/n/5=cmsy5 \font\OMS/cmsy/m/n/7=cmsy7 \font\OMS/cmsy/m/n/10=cmsy10 14 preloaded fonts 0 words of active ocps \ocp\nullocp=nullocp \ocp\OCPebcdic=ebcdic 1 preloaded ocp \ocplist\nullocplist=[] 262 hyphenation exceptions Hyphenation trie of length 25644 has 426 ops out of 15011 2 for language 5 2 for language 4 46 for language 3 119 for language 2 76 for language 1 181 for language 0 No pages of output. Transcript written on lambda.log. fmtutil: running `aleph -ini -jobname=aleph -progname=aleph *aleph.ini' ... This is Aleph, Version 3.141592-1.15-2.1-0.0-rc4 (Web2C 7.5.4) (INIALEPH) Copyright (c) 2002--2004 the Aleph task force entering extended mode (/usr/local/share/texmf-dist/tex/plain/config/aleph.ini (/usr/local/share/texmf-dist/tex/plain/base/plain.tex Preloading the plain format: codes, registers, parameters, fonts, more fonts, macros, math definitions, output routines, hyphenation (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex)) ) Beginning to dump on file aleph.fmt (format=aleph 2011.8.26) 67516 strings of total length 31736 5005 memory locations dumped; current usage is 121&4877 \font\nullfont=nullfont \font\tenrm=cmr10 \font\preloaded=cmr9 \font\preloaded=cmr8 \font\sevenrm=cmr7 \font\preloaded=cmr6 \font\fiverm=cmr5 \font\teni=cmmi10 \font\preloaded=cmmi9 \font\preloaded=cmmi8 \font\seveni=cmmi7 \font\preloaded=cmmi6 \font\fivei=cmmi5 \font\tensy=cmsy10 \font\preloaded=cmsy9 \font\preloaded=cmsy8 \font\sevensy=cmsy7 \font\preloaded=cmsy6 \font\fivesy=cmsy5 \font\tenex=cmex10 \font\preloaded=cmss10 \font\preloaded=cmssq8 \font\preloaded=cmssi10 \font\preloaded=cmssqi8 \font\tenbf=cmbx10 \font\preloaded=cmbx9 \font\preloaded=cmbx8 \font\sevenbf=cmbx7 \font\preloaded=cmbx6 \font\fivebf=cmbx5 \font\tentt=cmtt10 \font\preloaded=cmtt9 \font\preloaded=cmtt8 \font\preloaded=cmsltt10 \font\tensl=cmsl10 \font\preloaded=cmsl9 \font\preloaded=cmsl8 \font\tenit=cmti10 \font\preloaded=cmti9 \font\preloaded=cmti8 \font\preloaded=cmti7 \font\preloaded=cmu10 \font\preloaded=cmmib10 \font\preloaded=cmbsy10 \font\preloaded=cmcsc10 \font\preloaded=cmssbx10 \font\preloaded=cmdunh10 \font\preloaded=cmr7 at 14.51799pt \font\preloaded=cmtt10 at 14.4pt \font\preloaded=cmssbx10 at 14.4pt \font\preloaded=manfnt 50 preloaded fonts 0 words of active ocps \ocp\nullocp=nullocp 0 preloaded ocps \ocplist\nullocplist=[] 14 hyphenation exceptions Hyphenation trie of length 6076 has 181 ops out of 15011 181 for language 0 No pages of output. Transcript written on aleph.log. fmtutil: running `aleph -ini -jobname=lamed -progname=lamed *lambda.ini' ... This is Aleph, Version 3.141592-1.15-2.1-0.0-rc4 (Web2C 7.5.4) (INIALEPH) Copyright (c) 2002--2004 the Aleph task force entering extended mode (/usr/local/share/texmf-dist/tex/latex/config/lambda.ini (/usr/local/share/texmf-dist/tex/lambda/base/lambda.tex (/usr/local/share/texmf-dist/tex/latex/base/latex.ltx (/usr/local/share/texmf-dist/tex/latex/base/texsys.cfg) ./texsys.aux found \@currdir set to: ./. Assuming \openin and \input have the same search path. Defining UNIX/DOS style filename parser. catcodes, registers, compatibility for TeX 2, parameters, LaTeX2e <2003/12/01> hacks, control, par, spacing, files, font encodings, lengths, ==================================== Local config file fonttext.cfg used ==================================== (/usr/local/share/texmf-dist/tex/generic/config/fonttext.cfg (/usr/local/share/texmf-dist/tex/latex/base/fonttext.ltx === Don't modify this file, use a .cfg file instead === (/usr/local/share/texmf-dist/tex/latex/base/omlenc.def) (/usr/local/share/texmf-dist/tex/latex/base/t1enc.def) (/usr/local/share/texmf-dist/tex/latex/base/ot1enc.def) (/usr/local/share/texmf-dist/tex/latex/base/omsenc.def) (/usr/local/share/texmf-dist/tex/latex/base/t1cmr.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmr.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmss.fd) (/usr/local/share/texmf-dist/tex/latex/base/ot1cmtt.fd))) ==================================== Local config file fontmath.cfg used ==================================== (/usr/local/share/texmf-dist/tex/generic/config/fontmath.cfg (/usr/local/share/texmf-dist/tex/latex/base/fontmath.ltx === Don't modify this file, use a .cfg file instead === (/usr/local/share/texmf-dist/tex/latex/base/omlcmm.fd) (/usr/local/share/texmf-dist/tex/latex/base/omscmsy.fd) (/usr/local/share/texmf-dist/tex/latex/base/omxcmex.fd) (/usr/local/share/texmf-dist/tex/latex/base/ucmr.fd))) ==================================== Local config file preload.cfg used ===================================== (/usr/local/share/texmf-dist/tex/generic/config/preload.cfg (/usr/local/share/texmf-dist/tex/latex/base/preload.ltx)) page nos., x-ref, environments, center, verbatim, math definitions, boxes, title, sectioning, contents, floats, footnotes, index, bibliography, output, =========================================== Local configuration file hyphen.cfg used =========================================== (/usr/local/share/texmf-dist/tex/generic/babel/hyphen.cfg (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/eshyph.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/ruhyphen.tex (/usr/local/share/texmf-dist/tex/generic/ruhyphen/catkoi.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/koi2t2a.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/ruhyphal.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/cyryoal.tex) (/usr/local/share/texmf-dist/tex/generic/ruhyphen/hypht2.tex)) (/usr/local/share/texmf-dist/tex/lambda/base/grmhyph.tex (/usr/local/share/texmf-dist/tex/lambda/base/grcodes.tex catcodes, ucccodes and lccodes for Greek) Hyphenation patterns for polytonic Modern Greek) (/usr/local/share/texmf-dist/tex/lambda/base/inuit.hpn Hyphenation patterns for Inuktitut) (/usr/local/share/texmf-dist/tex/generic/hyphen/dumyhyph.tex) (/usr/local/share/texmf-dist/tex/generic/hyphen/zerohyph.tex)) ================================= Applying patch file ltpatch.ltx ================================= (/usr/local/share/texmf-dist/tex/latex/base/ltpatch.ltx) ) ) ) Beginning to dump on file lamed.fmt (format=lamed 2011.8.26) 69981 strings of total length 61973 46651 memory locations dumped; current usage is 152&42537 \font\nullfont=nullfont \font\OMX/cmex/m/n/10=cmex10 \font\tenln=line10 \font\tenlnw=linew10 \font\tencirc=lcircle10 \font\tencircw=lcirclew10 \font\OT1/cmr/m/n/5=cmr5 \font\OT1/cmr/m/n/7=cmr7 \font\OT1/cmr/m/n/10=cmr10 \font\OML/cmm/m/it/5=cmmi5 \font\OML/cmm/m/it/7=cmmi7 \font\OML/cmm/m/it/10=cmmi10 \font\OMS/cmsy/m/n/5=cmsy5 \font\OMS/cmsy/m/n/7=cmsy7 \font\OMS/cmsy/m/n/10=cmsy10 14 preloaded fonts 0 words of active ocps \ocp\nullocp=nullocp \ocp\OCPebcdic=ebcdic 1 preloaded ocp \ocplist\nullocplist=[] 262 hyphenation exceptions Hyphenation trie of length 25644 has 426 ops out of 15011 2 for language 5 2 for language 4 46 for language 3 119 for language 2 76 for language 1 181 for language 0 No pages of output. Transcript written on lamed.log. fmtutil: running `pdfetex -ini -jobname=cont-en -progname=context -translate-file=cp227.tcx *cont-en.ini' ... This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) (INITEX) (/usr/local/share/texmf-dist/web2c/cp227.tcx) entering extended mode (/usr/local/share/texmf-dist/tex/context/config/cont-en.ini (/usr/local/share/texmf-dist/tex/context/base/cont-en.tex (/usr/local/share/texmf-dist/tex/context/base/context.tex (/usr/local/share/texmf-dist/tex/context/base/syst-pln.tex) (/usr/local/share/texmf-dist/tex/context/base/syst-prm.tex) (/usr/local/share/texmf-dist/tex/context/base/syst-etx.tex system (E-TEX) : [line 122] \tracing ... system (E-TEX) : [line 181] \new ... system (E-TEX) : [line 259] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/syst-omg.tex) (/usr/local/share/texmf-dist/tex/context/base/syst-xtx.tex) (/usr/local/share/texmf-dist/tex/context/base/syst-gen.tex system (E-TEX) : [line 664] \detokenize system (E-TEX) : [line 727] \protected system (E-TEX) : [line 898] \ifcsname system (E-TEX) : [line 958] \undefined system (E-TEX) : [line 1033] \ifcsname system (E-TEX) : [line 1162] \protected system (E-TEX) : [line 1439] \protected system (E-TEX) : [line 1626] \protected system (E-TEX) : [line 2019] \protected system (E-TEX) : [line 2148] system (E-TEX) : [line 2404] system (E-TEX) : [line 2446] \unless system (E-TEX) : [line 4367] \numexpr loading : Context System Macros / General ) (/usr/local/share/texmf-dist/tex/context/base/syst-ext.tex loading : Context System Macro's / Extras system (E-TEX) : [line 287] \numexpr system (E-TEX) : [line 616] \numexpr system (E-TEX) : [line 644] \numexpr system (E-TEX) : [line 729] \numexpr system (E-TEX) : [line 882] \numexpr system (E-TEX) : [line 1151] \detokenize system (E-TEX) : [line 1366] \detokenize system (E-TEX) : [line 2243] system (E-TEX) : [line 2374] \numexpr system (E-TEX) : [line 2986] system (E-TEX) : [line 3474] system (E-TEX) : [line 3862] \dimexpr \numexpr system (E-TEX) : [line 4247] \dimexpr system (E-TEX) : [line 4717] ) (/usr/local/share/texmf-dist/tex/context/base/syst-new.tex system (E-TEX) : [line 117] \lccode system (E-TEX) : [line 514] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/syst-con.tex loading : Context System Macro's / Conversions ) (/usr/local/share/texmf-dist/tex/context/base/math-pln.tex) (/usr/local/share/texmf-dist/tex/context/base/supp-ini.tex loading : Context Support Macros / Initializations ) (/usr/local/share/texmf-dist/tex/context/base/supp-fil.tex loading : Context Support Macros / Files ) (/usr/local/share/texmf-dist/tex/context/base/supp-dir.tex system (E-TEX) : [line 28] \beginL ) (/usr/local/share/texmf-dist/tex/context/base/mult-ini.tex loading : Context Multilingual Macros / Initialization system (E-TEX) : [line 701] \protected system (E-TEX) : [line 1508] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/mult-sys.tex loading : Context Multilingual Macros / System interface : defining english interface interface : using english messages ) (/usr/local/share/texmf-dist/tex/context/base/mult-con.tex loading : Context Multilingual Macros / Constants ) (/usr/local/share/texmf-dist/tex/context/base/mult-com.tex loading : Context Multilingual Macros / Commands ) (/usr/local/share/texmf-dist/tex/context/base/thrd-ran.tex) (/usr/local/share/texmf-dist/tex/context/base/thrd-trg.tex) (/usr/local/share/texmf-dist/tex/context/base/supp-box.tex loading : Context Support Macros / Boxes system (E-TEX) : [line 2603] \newbox system (E-TEX) : [line 2847] ) (/usr/local/share/texmf-dist/tex/context/base/supp-mrk.tex loading : Context Support Macros / Marks system (E-TEX) : [line 43] \marks cum suis system (E-TEX) : [line 382] \marks cum suis system (E-TEX) : [line 600] ) (/usr/local/share/texmf-dist/tex/context/base/supp-vis.tex loading : Context Support Macros / Visualization ) (/usr/local/share/texmf-dist/tex/context/base/supp-fun.tex loading : Context Support Macros / Fun Stuff ) (/usr/local/share/texmf-dist/tex/context/base/supp-eps.tex loading : Context Support Macros / EPS ) (/usr/local/share/texmf-dist/tex/context/base/supp-pdf.tex loading : Context Support Macros / PDF (2004.03.26) ) (/usr/local/share/texmf-dist/tex/context/base/supp-spe.tex loading : Context Support Macros / Specials ) (/usr/local/share/texmf-dist/tex/context/base/supp-mps.tex (/usr/local/share/texmf-dist/tex/context/base/supp-ini.tex loading : Context Support Macros / Initializations ) loading : Context Support Macros / MetaPost Inclusion ) (/usr/local/share/texmf-dist/tex/context/base/supp-mpe.tex loading : MetaPost Special Extensions ) (/usr/local/share/texmf-dist/tex/context/base/supp-tpi.tex loading : Context Support Macros / TPIC Conversion ) (/usr/local/share/texmf-dist/tex/context/base/supp-mat.tex loading : Context Support Macros / Math ) (/usr/local/share/texmf-dist/tex/context/base/supp-ran.tex loading : Third Party Macros / Random Number Generation ) (/usr/local/share/texmf-dist/tex/context/base/supp-ali.tex) (/usr/local/share/texmf-dist/tex/context/base/typo-ini.tex loading : Context Typographic Macros (ini) ) (/usr/local/share/texmf-dist/tex/context/base/verb-ini.tex loading : Context Verbatim Macros / Initialization system (E-TEX) : [line 1327] \scantokens ) (/usr/local/share/texmf-dist/tex/context/base/core-var.tex loading : Context Core Macros / Variables system (E-TEX) : [line 227] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/core-ins.tex loading : Context Insertion Macros / General ) (/usr/local/share/texmf-dist/tex/context/base/core-fil.tex loading : Context Core Macros / File Support ) (/usr/local/share/texmf-dist/tex/context/base/core-con.tex loading : Context Core Macros / Conversion Macros system (E-TEX) : [line 165] \numexpr system (E-TEX) : [line 800] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/cont-fil.tex loading : Context File Synonyms ) (/usr/local/share/texmf-dist/tex/context/base/thrd-tab.tex) (/usr/local/share/texmf-dist/tex/context/base/supp-lan.tex loading : Context Support Macros / Language Options system (E-TEX) : [line 318] \detokenize system (E-TEX) : [line 1122] \ifcsname system (E-TEX) : [line 1167] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/supp-num.tex loading : Context Support Macros / Number (Digit) Handling ) (/usr/local/share/texmf-dist/tex/context/base/enco-ini.tex loading : Context Encoding Macros (ini) system (E-TEX) : [line 251] system (E-TEX) : [line 316] \ifcsname system (E-TEX) : [line 432] system (E-TEX) : [line 497] system (E-TEX) : [line 898] \ifcsname system (E-TEX) : [line 957] \ifcsname system (E-TEX) : [line 1155] \ifcsname encoding : coding def is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-def.tex encoding : coding default encoding : coding default encoding : coding default encoding : coding default encoding : coding default encoding : coding default ) encoding : coding acc is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-acc.tex encoding : coding default encoding : coding default encoding : coding default ) encoding : coding raw is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-raw.tex encoding : coding raw ) encoding : coding com is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-com.tex) encoding : coding cas is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-cas.tex) encoding : coding mis is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-mis.tex) encoding : coding ans is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-ans.tex encoding : coding texnansi encoding : coding texnansi ) encoding : coding il2 is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-il2.tex encoding : coding il2 ) encoding : coding ec is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-ec.tex encoding : coding ec ) encoding : coding tbo is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-tbo.tex encoding : coding 8r ) encoding : coding pdf is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-pdf.tex encoding : coding pdfdoc ) encoding : coding uc is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-uc.tex encoding : coding uc encoding : coding uc encoding : coding uc encoding : coding uc encoding : coding uc encoding : coding uc encoding : coding uc ) encoding : coding pol is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-pol.tex encoding : coding pl0 encoding : coding pl0 encoding : coding pl0 encoding : coding pl1 encoding : coding pl1 encoding : coding pl2 encoding : coding pl2 ) encoding : coding qx is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-qx.tex encoding : coding qx ) encoding : coding t5 is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-t5.tex encoding : coding t5 ) encoding : coding cyr is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-cyr.tex encoding : coding t2a encoding : coding t2b encoding : coding t2c encoding : coding x2 encoding : coding lcy )) (/usr/local/share/texmf-dist/tex/context/base/filt-ini.tex loading : Context Filter Macros (ini) ) (/usr/local/share/texmf-dist/tex/context/base/hand-ini.tex loading : Context Handling Macros (ini) system (E-TEX) : [line 136] system (E-TEX) : [line 220] \dimexpr system (E-TEX) : [line 235] \fontcharwd system (E-TEX) : [line 365] system (E-TEX) : [line 430] \ifcsname system (E-TEX) : [line 492] \ifcsname handling : font handling def is loaded (/usr/local/share/texmf-dist/tex/context/base/hand-def.tex)) (/usr/local/share/texmf-dist/tex/context/base/regi-ini.tex encoding : coding def is loaded (/usr/local/share/texmf-dist/tex/context/base/regi-def.tex) encoding : coding uni is loaded (/usr/local/share/texmf-dist/tex/context/base/regi-uni.tex) encoding : coding ibm is loaded (/usr/local/share/texmf-dist/tex/context/base/regi-ibm.tex) encoding : coding win is loaded (/usr/local/share/texmf-dist/tex/context/base/regi-win.tex) encoding : coding il1 is loaded (/usr/local/share/texmf-dist/tex/context/base/regi-il1.tex) encoding : coding mac is loaded (/usr/local/share/texmf-dist/tex/context/base/regi-mac.tex)) (/usr/local/share/texmf-dist/tex/context/base/lang-ini.tex loading : Context Language Macros / Initialization system (E-TEX) : [line 143] system (E-TEX) : [line 527] system (E-TEX) : [line 612] system (E-TEX) : [line 652] ) (/usr/local/share/texmf-dist/tex/context/base/unic-ini.tex loading : Context UNICODE Macros (ini) unicode : loading vector 0 (/usr/local/share/texmf-dist/tex/context/base/unic-000.tex) unicode : loading vector 1 (/usr/local/share/texmf-dist/tex/context/base/unic-001.tex) unicode : loading vector 2 (/usr/local/share/texmf-dist/tex/context/base/unic-002.tex) unicode : loading vector 3 (/usr/local/share/texmf-dist/tex/context/base/unic-003.tex) unicode : loading vector 4 (/usr/local/share/texmf-dist/tex/context/base/unic-004.tex) unicode : loading vector 5 (/usr/local/share/texmf-dist/tex/context/base/unic-005.tex) unicode : loading vector 30 (/usr/local/share/texmf-dist/tex/context/base/unic-030.tex) unicode : loading vector 32 (/usr/local/share/texmf-dist/tex/context/base/unic-032.tex) unicode : loading vector 33 (/usr/local/share/texmf-dist/tex/context/base/unic-033.tex) encoding : coding utf is loaded (/usr/local/share/texmf-dist/tex/context/base/regi-utf.tex)) (/usr/local/share/texmf-dist/tex/context/base/colo-ini.tex loading : Context Color Macros / initialization system (E-TEX) : [line 661] \ifcsname system (E-TEX) : [line 1657] \ifcsname system (E-TEX) : [line 2496] \ifcsname color : rgb color space is supported color : cmyk color space is supported color : mpcmyk color space is supported color : mpspot color space is supported color : system rgb is loaded (/usr/local/share/texmf-dist/tex/context/base/colo-rgb.tex color : specification [s=0] at color black becomes black color : palette alfa is available color : palette beta is available color : palette gamma is available color : palette delta is available color : palette epsilon is available color : palette zeta is available )) (/usr/local/share/texmf-dist/tex/context/base/colo-ext.tex loading : Context Color Macros / extras ) (/usr/local/share/texmf-dist/tex/context/base/spec-mis.tex loading : Context Special Macros / Miscellaneous Macros ) (/usr/local/share/texmf-dist/tex/context/base/spec-ini.tex loading : Context Special Macros / Initialization ) (/usr/local/share/texmf-dist/tex/context/base/spec-def.tex loading : Context Special Macros / Definitions specials : loading definition file dvi (/usr/local/share/texmf-dist/tex/context/base/spec-dvi.tex) specials : tex loaded specials : loading definition file ps (/usr/local/share/texmf-dist/tex/context/base/spec-ps.tex) specials : tex,postscript loaded specials : loading definition file tr (/usr/local/share/texmf-dist/tex/context/base/spec-tr.tex) specials : tex,postscript,rokicki loaded ) (/usr/local/share/texmf-dist/tex/context/base/spec-var.tex loading : Context Special Macros / Variables ) (/usr/local/share/texmf-dist/tex/context/base/lang-spe.tex loading : Context Language Macros / Specifics ) (/usr/local/share/texmf-dist/tex/context/base/lang-lab.tex loading : Language Head and Label Texts system (E-TEX) : [line 159] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/lang-ger.tex loading : Germanic Languages language : patterns for nl not loaded language : patterns for en not loaded language : patterns for de not loaded language : patterns for da not loaded language : patterns for sv not loaded language : patterns for af not loaded language : patterns for no not loaded language : patterns for deo not loaded language : patterns for uk not loaded language : patterns for us not loaded ) (/usr/local/share/texmf-dist/tex/context/base/lang-ita.tex loading : Italic Languages language : patterns for fr not loaded language : patterns for es not loaded language : patterns for ca not loaded language : patterns for it not loaded language : patterns for la not loaded language : patterns for pt not loaded language : patterns for ro not loaded ) (/usr/local/share/texmf-dist/tex/context/base/lang-sla.tex loading : Slavic Languages language : patterns for pl not loaded language : patterns for cz not loaded language : patterns for sk not loaded language : patterns for hr not loaded language : patterns for sl not loaded ) (/usr/local/share/texmf-dist/tex/context/base/lang-alt.tex loading : Altaic Languages language : patterns for tr not loaded ) (/usr/local/share/texmf-dist/tex/context/base/lang-ana.tex loading : Anatolian Languages ) (/usr/local/share/texmf-dist/tex/context/base/lang-art.tex loading : Artificial Languages ) (/usr/local/share/texmf-dist/tex/context/base/lang-bal.tex loading : Baltic Languages ) (/usr/local/share/texmf-dist/tex/context/base/lang-cel.tex loading : Celtic Languages ) (/usr/local/share/texmf-dist/tex/context/base/lang-grk.tex loading : Greek Language language : patterns for gr not loaded ) (/usr/local/share/texmf-dist/tex/context/base/lang-ind.tex loading : Indo-Iranian Languages ) (/usr/local/share/texmf-dist/tex/context/base/lang-ura.tex loading : Uralic Languages language : patterns for fi not loaded language : patterns for hu not loaded ) (/usr/local/share/texmf-dist/tex/context/base/lang-vn.tex loading : Vietnamese Language language : patterns for vn not loaded ) (/usr/local/share/texmf-dist/tex/context/base/symb-ini.tex loading : Context Symbol Libraries / Initialization ) (/usr/local/share/texmf-dist/tex/context/base/core-gen.tex loading : Context Core Macros / General ) (/usr/local/share/texmf-dist/tex/context/base/core-new.tex loading : Context Core Macros / New Ones ) (/usr/local/share/texmf-dist/tex/context/base/core-uti.tex loading : Context Core Macros / Utility File Handling ) (/usr/local/share/texmf-dist/tex/context/base/core-mar.tex loading : Context Core Macros / Markings system (E-TEX) : [line 50] \ifcsname system (E-TEX) : [line 154] \ifcsname system (E-TEX) : [line 215] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/core-mak.tex loading : Context Core Macros / General Makeup Commands ) (/usr/local/share/texmf-dist/tex/context/base/core-dat.tex loading : Context Database Support ) (/usr/local/share/texmf-dist/tex/context/base/core-grd.tex loading : Context Core Macros / Grid Snapping color : palette grid is available ) (/usr/local/share/texmf-dist/tex/context/base/core-ver.tex loading : Context Core Macros / Verbatim color : palette colorpretty is available color : palette graypretty is available color : palette TEXcolorpretty is available color : palette TEXgraypretty is available color : palette PLcolorpretty is available color : palette PLgraypretty is available color : palette PMcolorpretty is available color : palette PMgraypretty is available color : palette MPcolorpretty is available color : palette MPgraypretty is available color : palette JVcolorpretty is available color : palette JVgraypretty is available color : palette JScolorpretty is available color : palette JSgraypretty is available color : palette SQLcolorpretty is available color : palette SQLgraypretty is available color : palette PAScolorpretty is available color : palette PASgraypretty is available color : palette EIFcolorpretty is available color : palette EIFgraypretty is available color : palette XMLcolorpretty is available color : palette XMLgraypretty is available ) (/usr/local/share/texmf-dist/tex/context/base/core-vis.tex loading : Context Support Macros / Visualization ) (/usr/local/share/texmf-dist/tex/context/base/core-rul.tex loading : Context Core Macros / Ruled Content Handling ) (/usr/local/share/texmf-dist/tex/context/base/core-tab.tex loading : Context Core Macros / TaBlE Embedding ) (/usr/local/share/texmf-dist/tex/context/base/core-nav.tex loading : Context Core Macros / Navigation ) (/usr/local/share/texmf-dist/tex/context/base/core-ref.tex loading : Context Core Macros / Cross Referencing system (E-TEX) : [line 1059] \ifcsname system (E-TEX) : [line 1486] system (E-TEX) : [line 1614] \ifcsname system (E-TEX) : [line 2114] ) (/usr/local/share/texmf-dist/tex/context/base/core-obj.tex loading : Context Core Macros / Object Handling system (E-TEX) : [line 359] ) (/usr/local/share/texmf-dist/tex/context/base/core-buf.tex loading : Context Core Macros / Buffers and Blockmoves system (E-TEX) : [line 491] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/core-lst.tex loading : Context Core Macros / Lists ) (/usr/local/share/texmf-dist/tex/context/base/core-num.tex loading : Context Core Macros / Numbering ) (/usr/local/share/texmf-dist/tex/context/base/core-itm.tex loading : Context Core Macros / itemgroup ) (/usr/local/share/texmf-dist/tex/context/base/core-des.tex loading : Context Core Macros / Descriptions ) (/usr/local/share/texmf-dist/tex/context/base/core-mat.tex loading : Context Core Macros / Math Fundamentals ) (/usr/local/share/texmf-dist/tex/context/base/core-syn.tex loading : Context Core Macros / Synonyms and Sorts ) (/usr/local/share/texmf-dist/tex/context/base/core-spa.tex loading : Context Spacing Macros system (E-TEX) : [line 482] \ifcsname system (E-TEX) : [line 2167] \numexpr system (E-TEX) : [line 2711] \ifcsname system (E-TEX) : [line 2741] system (E-TEX) : [line 2799] \ifcsname system (E-TEX) : [line 2812] \ifcsname system (E-TEX) : [line 2870] ) (/usr/local/share/texmf-dist/tex/context/base/core-sys.tex loading : Context Core Macros (System) ) (/usr/local/share/texmf-dist/tex/context/base/page-ini.tex loading : Context Page Macros / Initializations system (E-TEX) : [line 590] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/page-not.tex loading : Context Page Macros / Footnotes ) (/usr/local/share/texmf-dist/tex/context/base/page-one.tex loading : Context OTR Macros / Default Routine ) (/usr/local/share/texmf-dist/tex/context/base/page-lay.tex loading : Context Page Macros / Layout Specification system (E-TEX) : [line 125] \ifcsname system (E-TEX) : [line 1096] \dimexpr system (E-TEX) : [line 1354] \dimexpr ) (/usr/local/share/texmf-dist/tex/context/base/page-log.tex loading : Context Page Macros / Logos ) (/usr/local/share/texmf-dist/tex/context/base/page-txt.tex loading : Context Page Macros / Texts color : palette layout is available ) (/usr/local/share/texmf-dist/tex/context/base/page-sid.tex loading : Context OTR Macros / Side Floats ) (/usr/local/share/texmf-dist/tex/context/base/page-flt.tex loading : Context OTR Macros / Floating Bodies layout : marginblocks active ) (/usr/local/share/texmf-dist/tex/context/base/page-mul.tex loading : Context OTR Macros / Simple Multi Column ) (/usr/local/share/texmf-dist/tex/context/base/page-set.tex loading : Context OTR Macros / Column Sets system (E-TEX) : [line 118] \ifcsname system (E-TEX) : [line 282] \numexpr color : palette columnset is available ) (/usr/local/share/texmf-dist/tex/context/base/page-lyr.tex loading : Context Page Macros / Layers ) (/usr/local/share/texmf-dist/tex/context/base/page-mak.tex loading : Context Page Macros / MakeUp ) (/usr/local/share/texmf-dist/tex/context/base/page-num.tex loading : Context Core Macros / Numbering ) (/usr/local/share/texmf-dist/tex/context/base/page-lin.tex loading : Context Core Macros / Line Numbering ) (/usr/local/share/texmf-dist/tex/context/base/page-mar.tex loading : Context Core Macros / Maginal Things system (E-TEX) : [line 691] ) (/usr/local/share/texmf-dist/tex/context/base/page-bck.tex loading : Context Page Macros / Backgrounds ) (/usr/local/share/texmf-dist/tex/context/base/page-app.tex loading : Context Page Macros / Applications ) (/usr/local/share/texmf-dist/tex/context/base/page-flw.tex loading : Context OTR Macros / Text Flows ) (/usr/local/share/texmf-dist/tex/context/base/page-spr.tex loading : Context Page Macros / Spreading ) (/usr/local/share/texmf-dist/tex/context/base/core-job.tex loading : Context Core Macros / Job Handling ) (/usr/local/share/texmf-dist/tex/context/base/core-sec.tex loading : Context Core Macros / Sectioning system : mark part defined [part] system : mark partnumber defined [partnumber] system : mark chapter defined [chapter] system : mark chapternumber defined [chapternumber] system : mark section defined [section] system : mark sectionnumber defined [sectionnumber] system : mark subsection defined [subsection] system : mark subsectionnumber defined [subsectionnumber] system : mark subsubsection defined [subsubsection] system : mark subsubsectionnumber defined [subsubsectionnumber] system : mark subsubsubsection defined [subsubsubsection] system : mark subsubsubsectionnumber defined [subsubsubsectionnumber] system : mark subsubsubsubsection defined [subsubsubsubsection] system : mark subsubsubsubsectionnumber defined [subsubsubsubsectionnu mber] system : mark title defined [title] system : mark titlenumber defined [titlenumber] system : mark subject defined [subject] system : mark subjectnumber defined [subjectnumber] system : mark subsubject defined [subsubject] system : mark subsubjectnumber defined [subsubjectnumber] system : mark subsubsubject defined [subsubsubject] system : mark subsubsubjectnumber defined [subsubsubjectnumber] system : mark subsubsubsubject defined [subsubsubsubject] system : mark subsubsubsubjectnumber defined [subsubsubsubjectnumber] system : mark subsubsubsubsubject defined [subsubsubsubsubject] system : mark subsubsubsubsubjectnumber defined [subsubsubsubsubjectnu mber] ) (/usr/local/share/texmf-dist/tex/context/base/page-imp.tex loading : Context Core Macros / Pagebody Building system (E-TEX) : [line 759] \dimexpr ) (/usr/local/share/texmf-dist/tex/context/base/core-tbl.tex loading : Context Core Macros / Tabulation ) (/usr/local/share/texmf-dist/tex/context/base/core-int.tex loading : Context Core Macros / Interaction ) (/usr/local/share/texmf-dist/tex/context/base/core-ntb.tex loading : Context Core Macros / Natural Tables ) (/usr/local/share/texmf-dist/tex/context/base/core-ltb.tex loading : Context Core Macros / Line Tables ) (/usr/local/share/texmf-dist/tex/context/base/meta-ini.tex loading : MetaPost Graphics / Initializations system (E-TEX) : [line 159] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/meta-pag.tex loading : MetaPost Graphics / Page Data Management ) (/usr/local/share/texmf-dist/tex/context/base/meta-fig.tex loading : MetaPost Graphics / Stand Alone Graphics ) (/usr/local/share/texmf-dist/tex/context/base/core-pos.tex loading : Context Positioning Support system (E-TEX) : [line 245] \dimexpr system (E-TEX) : [line 342] ) (/usr/local/share/texmf-dist/tex/context/base/core-snc.tex loading : Context Synchronization ) (/usr/local/share/texmf-dist/tex/context/base/lang-chi.tex loading : Context Language Macros / Chinese language : patterns for cn not loaded language : language specific options [default-cn] seamless appended encoding : coding gbk encoding : coding big5 ) (/usr/local/share/texmf-dist/tex/context/base/java-ini.tex loading : Context JavaScript Macros / Initialization ) (/usr/local/share/texmf-dist/tex/context/base/core-fld.tex loading : Context Field Macros ) (/usr/local/share/texmf-dist/tex/context/base/core-hlp.tex) (/usr/local/share/texmf-dist/tex/context/base/core-reg.tex loading : Context Core Macros / Register Management ) (/usr/local/share/texmf-dist/tex/context/base/font-ini.tex loading : Context Font Macros (ini) system (E-TEX) : [line 936] \ifcsname system (E-TEX) : [line 1048] \ifcsname system (E-TEX) : [line 1143] \ifcsname system (E-TEX) : [line 1241] \ifcsname system (E-TEX) : [line 1435] \ifcsname system (E-TEX) : [line 1562] \ifcsname system (E-TEX) : [line 1630] system (E-TEX) : [line 1783] \ifcsname system (E-TEX) : [line 1854] \ifcsname system (E-TEX) : [line 1931] \ifcsname system (E-TEX) : [line 2149] \ifcsname system (E-TEX) : [line 2930] \ifcsname system (E-TEX) : [line 2997] \ifcsname system (E-TEX) : [line 3239] \ifcsname system (E-TEX) : [line 3274] \ifcsname system (E-TEX) : [line 3963] \ifcsname loading : Postponed Plain TeX Font Definitions bodyfont : style rm (rm definedromanserifregular) bodyfont : style ss (ss definedsansserifsanssupport) bodyfont : style tt (tt definedteletypetypemono) bodyfont : style hw (hw definedhandwritten) bodyfont : style cg (cg definedcalligraphic) bodyfont : variant unk is loaded (/usr/local/share/texmf-dist/tex/context/base/font-unk.tex)) (/usr/local/share/texmf-dist/tex/context/base/font-uni.tex loading : Context Font Macros / UNICODE Support system (E-TEX) : [line 457] ) (/usr/local/share/texmf-dist/tex/context/base/font-bfm.tex loading : Context Font Macros / Mixed Bold Math Support ) (/usr/local/share/texmf-dist/tex/context/base/type-ini.tex loading : Context Typescript Macros (ini) system (E-TEX) : [line 121] \ifcsname ) (/usr/local/share/texmf-dist/tex/context/base/prop-ini.tex loading : Context Property Macros / initialization ) (/usr/local/share/texmf-dist/tex/context/base/prop-lay.tex loading : Context Property Macros / layers ) (/usr/local/share/texmf-dist/tex/context/base/prop-mis.tex loading : Context Property Macros / initialization ) (/usr/local/share/texmf-dist/tex/context/base/math-ini.tex system (E-TEX) : [line 164] system (E-TEX) : [line 255] \ifcsname (/usr/local/share/texmf-dist/tex/context/base/math-tex.tex) (/usr/local/share/texmf-dist/tex/context/base/math-ams.tex)) (/usr/local/share/texmf-dist/tex/context/base/core-fnt.tex loading : Context Core Macros / Font Support ) (/usr/local/share/texmf-dist/tex/context/base/core-not.tex loading : Context Core Macros / Note Handling ) (/usr/local/share/texmf-dist/tex/context/base/core-lnt.tex loading : Context Core Macros / Line Notes ) (/usr/local/share/texmf-dist/tex/context/base/core-mis.tex loading : Context Core Macros / Misc Commands ) (/usr/local/share/texmf-dist/tex/context/base/core-fig.tex loading : Context Core Macros / Figure Inclusion system (E-TEX) : [line 805] \dimexpr ) (/usr/local/share/texmf-dist/tex/context/base/core-par.tex loading : ConTeXt Pararaph Tricks ) (/usr/local/share/texmf-dist/tex/context/base/core-box.tex) (/usr/local/share/texmf-dist/tex/context/base/lang-spa.tex loading : Context Language Macros / Spacing ) (/usr/local/share/texmf-dist/tex/context/base/xtag-ini.tex loading : Context XML Macros (initialization) system (E-TEX) : [line 39] XML ) (/usr/local/share/texmf-dist/tex/context/base/xtag-ext.tex loading : Context XML Macros (extras) ) (/usr/local/share/texmf-dist/tex/context/base/xtag-prs.tex) (/usr/local/share/texmf-dist/tex/context/base/xtag-map.tex loading : Context XML Macros (remapping) ) (/usr/local/share/texmf-dist/tex/context/base/xtag-exp.tex loading : Context XML Macros (expansion) ) (/usr/local/share/texmf-dist/tex/context/base/xtag-pre.tex loading : Context XML Macros (predefined) color : palette xtag is available ) (/usr/local/share/texmf-dist/tex/context/base/xtag-xsd.tex) (/usr/local/share/texmf-dist/tex/context/base/xtag-rng.tex) (/usr/local/share/texmf-dist/tex/context/base/meta-xml.tex loading : MetaPost Graphics / XML Hacks ) (/usr/local/share/texmf-dist/tex/context/base/cont-log.tex loading : Context TeX Logos ) (/usr/local/share/texmf-dist/tex/context/base/core-ini.tex loading : Context Initialization ) (/usr/local/share/texmf-dist/tex/context/base/core-def.tex loading : Context Core Macros / Defaults symbols : loading symbolset mis (/usr/local/share/texmf-dist/tex/context/base/symb-mis.tex) symbols : loading symbolset mvs (/usr/local/share/texmf-dist/tex/context/base/symb-mvs.tex encoding : coding default ) symbols : loading symbolset glm (/usr/local/share/texmf-dist/tex/context/base/symb-glm.tex encoding : coding default ) symbols : loading symbolset nav (/usr/local/share/texmf-dist/tex/context/base/symb-nav.tex)) This package is based on Plain TeX. It uses an adapted version of the extended mark mechanism of J. Fox (1987) and a few parts of the sidefloat mechanism of D. Comenetz (1993). Most of D.E. Knuth's Plain TeX (3.1415926) is available and can be used without problems. This package uses TaBlE, a package designed and copyrighted by M.J. Wichura (1988). Only a few auxiliary files are generated, of which some must be processed by TeXUtil (2003.07.19). The current blockversion is 1996.03.10. Copyright 1990-2011 / PRAGMA ADE / J. Hagen - A.F. Otten ) system : cont-usr loaded (/usr/local/share/texmf-dist/tex/context/config/cont-usr.tex language : patterns for nl not loaded language : patterns for fr not loaded language : patterns for de not loaded language : patterns for it not loaded language : patterns for hr not loaded language : patterns for pl not loaded language : patterns for cz not loaded language : patterns for sk not loaded language : patterns for sl not loaded encoding : coding fde is loaded (/usr/local/share/texmf-dist/tex/context/base/enco-fde.tex <unprotect 3> language : language specific options [default-de] seamless appended language : language specific options [default-de] seamless appended language : language specific options [default-de] seamless appended encoding : coding pdfdoc language : language specific options [pdfdoc-de] seamless appended encoding : coding ec language : language specific options [ec-de] seamless appended encoding : coding texnansi language : language specific options [texnansi-de] seamless appended <protect 3>)) language : patterns en for en loaded (n=1) (/usr/local/share/texmf-dist/tex/generic/hyphen/hyphen.tex) language : no hyphenations en for en (n=1) language : no patterns uk for uk (n=2) (lang-uk.pat,ukhyph.tex language : no hyphenations uk for uk (n=2) encoding : coding texnansi language : patterns de for de loaded (n=3) (/usr/local/share/texmf-dist/tex/generic/hyphen/dehyphn.tex New German Hyphenation Patterns `dehyphn' Rev.31 <2001-05-07> (WaS)) language : no hyphenations de for de (n=3) encoding : coding ec language : patterns de for de loaded (n=4) (/usr/local/share/texmf-dist/tex/generic/hyphen/dehyphn.tex New German Hyphenation Patterns `dehyphn' Rev.31 <2001-05-07> (WaS)) language : no hyphenations de for de (n=4) encoding : coding texnansi language : patterns fr for fr loaded (n=5) (/usr/local/share/texmf-dist/tex/generic/hyphen/frhyph.tex frhyph.tex - French hyphenation patterns (V2.12) <2002/12/11>) language : no hyphenations fr for fr (n=5) encoding : coding ec language : patterns fr for fr loaded (n=6) (/usr/local/share/texmf-dist/tex/generic/hyphen/frhyph.tex frhyph.tex - French hyphenation patterns (V2.12) <2002/12/11>) language : no hyphenations fr for fr (n=6) language : patterns es for es loaded (n=7) (/usr/local/share/texmf-dist/tex/generic/hyphen/eshyph.tex) language : no hyphenations es for es (n=7) encoding : coding texnansi language : patterns it for it loaded (n=8) (/usr/local/share/texmf-dist/tex/generic/hyphen/ithyph.tex) language : no hyphenations it for it (n=8) encoding : coding ec language : patterns it for it loaded (n=9) (/usr/local/share/texmf-dist/tex/generic/hyphen/ithyph.tex) language : no hyphenations it for it (n=9) encoding : coding texnansi language : patterns nl for nl loaded (n=10) (/usr/local/share/texmf-dist/tex/generic/hyphen/nehyph.tex) language : no hyphenations nl for nl (n=10) encoding : coding ec language : patterns nl for nl loaded (n=11) (/usr/local/share/texmf-dist/tex/generic/hyphen/nehyph.tex) language : no hyphenations nl for nl (n=11) (/usr/local/share/texmf-dist/tex/context/base/type-pre.tex (/usr/local/share/texmf-dist/tex/context/base/type-syn.tex) (/usr/local/share/texmf-dist/tex/context/base/type-enc.tex) (/usr/local/share/texmf-dist/tex/context/base/type-dis.tex) (/usr/local/share/texmf-dist/tex/context/base/type-siz.tex bodyfont : style mm (mm) defined ) (/usr/local/share/texmf-dist/tex/context/base/type-map.tex) (/usr/local/share/texmf-dist/tex/context/base/type-spe.tex) (/usr/local/share/texmf-dist/tex/context/base/type-exa.tex) (/usr/local/share/texmf-dist/tex/context/base/type-akb.tex)) (/usr/local/share/texmf-dist/tex/context/base/type-pre.tex (/usr/local/share/texmf-dist/tex/context/base/type-syn.tex) (/usr/local/share/texmf-dist/tex/context/base/type-enc.tex) (/usr/local/share/texmf-dist/tex/context/base/type-dis.tex) (/usr/local/share/texmf-dist/tex/context/base/type-siz.tex) (/usr/local/share/texmf-dist/tex/context/base/type-map.tex) (/usr/local/share/texmf-dist/tex/context/base/type-spe.tex) (/usr/local/share/texmf-dist/tex/context/base/type-exa.tex) (/usr/local/share/texmf-dist/tex/context/base/type-akb.tex)) ConTeXt ver: 2005.01.31 fmt: 2011.8.26 int: english mes: english ) ) Beginning to dump on file cont-en.fmt (format=cont-en 2011.8.26) 37034 strings of total length 587705 457196 memory locations dumped; current usage is 202&453692 34840 multiletter control sequences \font\nullfont=nullfont 0 words of font info for 0 preloaded fonts 94 hyphenation exceptions Hyphenation trie of length 32525 has 1503 ops out of 35111 265 for language 11 265 for language 10 35 for language 9 35 for language 8 76 for language 7 88 for language 6 88 for language 5 235 for language 4 235 for language 3 181 for language 1 No pages of output. Transcript written on cont-en.log. fmtutil: running `pdfetex -ini -jobname=mptopdf -progname=context -translate-file=cp227.tcx mptopdf.tex' ... This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) (INITEX) (/usr/local/share/texmf-dist/web2c/cp227.tcx) (/usr/local/share/texmf-dist/tex/generic/context/mptopdf.tex (/usr/local/share/texmf-dist/tex/context/base/syst-tex.tex (/usr/local/share/texmf-dist/tex/plain/base/plain.tex Preloading the plain format: codes, registers, parameters, fonts, skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain more fonts, skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping \font in plain skipping scaled \font in plain skipping scaled \font in plain skipping scaled \font in plain skipping \font in plain skipping \skewchar in plain skipping \skewchar in plain skipping \skewchar in plain skipping \skewchar in plain skipping \skewchar in plain skipping \skewchar in plain skipping \textfont in plain skipping \scriptfont in plain skipping \scriptscriptfont in plain skipping \textfont in plain skipping \scriptfont in plain skipping \scriptscriptfont in plain skipping \textfont in plain skipping \scriptfont in plain skipping \scriptscriptfont in plain skipping \textfont in plain skipping \scriptfont in plain skipping \scriptscriptfont in plain skipping \textfont in plain skipping \textfont in plain skipping \textfont in plain skipping \scriptfont in plain skipping \scriptscriptfont in plain skipping \textfont in plain macros, math definitions, skipping used \tenex in plain output routines, hyphenation skipping \input in plain skipping \tenrm in plain )) (/usr/local/share/texmf-dist/tex/context/base/supp-pdf.tex (/usr/local/share/texmf-dist/tex/context/base/supp-mis.tex loading : Context Support Macros / Miscellaneous (2004.10.26) ) loading : Context Support Macros / PDF (2004.03.26) ) (/usr/local/share/texmf-dist/tex/context/base/supp-mpe.tex loading : MetaPost Special Extensions ) ) Beginning to dump on file mptopdf.fmt (format=mptopdf 2011.8.26) 2936 strings of total length 42585 13044 memory locations dumped; current usage is 110&12929 1458 multiletter control sequences \font\nullfont=nullfont 0 words of font info for 0 preloaded fonts 0 hyphenation exceptions Hyphenation trie of length 256 has 0 ops out of 35111 No pages of output. Transcript written on mptopdf.log. fmtutil: /usr/local/share/texmf-var/web2c/aleph.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/cont-en.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/etex.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/lambda.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/lamed.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/latex.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/mptopdf.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/omega.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/pdfetex.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/pdflatex.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/pdftex.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/tex.fmt installed. fmtutil: /usr/local/share/texmf-var/web2c/metafun.mem installed. fmtutil: /usr/local/share/texmf-var/web2c/mpost.mem installed. fmtutil: /usr/local/share/texmf-var/web2c/mf.base installed. === IMPORTANT NOTICE === - You may want to run texconfig(1) to configure teTeX for your local environment. You will find teTeX's local documentation in /usr/local/share/texmf-dist/doc/. - Note that if you have environment variables for teTeX in a wrong way (such as TEXINPUTS, TEXMF, TEXMFCNF, and so on), they may prevent teTeX from working. pkg_add gsed-4.2.1_2.tbz pkg_add texinfo-4.13.20110529_1.tbz pkg_add gcc-4.5.3.20110414.tbz skipping gcc-4.5.3.20110414, already added pkg_add freetype2-2.4.6.tbz skipping freetype2-2.4.6, already added pkg_add libfpx-1.2.0.12_1.tbz skipping libfpx-1.2.0.12_1, already added pkg_add jbigkit-1.6.tbz skipping jbigkit-1.6, already added pkg_add libwmf-0.2.8.4_6.tbz skipping libwmf-0.2.8.4_6, already added pkg_add libxml2-2.7.8_1.tbz skipping libxml2-2.7.8_1, already added pkg_add jasper-1.900.1_9.tbz skipping jasper-1.900.1_9, already added pkg_add jpeg-8_3.tbz skipping jpeg-8_3, already added pkg_add lcms-1.19_1,1.tbz skipping lcms-1.19_1,1, already added pkg_add png-1.4.8.tbz skipping png-1.4.8, already added pkg_add tiff-4.0.0_2.tbz skipping tiff-4.0.0_2, already added pkg_add libiconv-1.13.1_1.tbz skipping libiconv-1.13.1_1, already added pkg_add ghostscript9-9.02_4.tbz skipping ghostscript9-9.02_4, already added pkg_add ca_root_nss-3.12.9.tbz skipping ca_root_nss-3.12.9, already added pkg_add pkg-config-0.25_1.tbz skipping pkg-config-0.25_1, already added pkg_add libGL-7.4.4.tbz skipping libGL-7.4.4, already added pkg_add libGLU-7.4.4.tbz skipping libGLU-7.4.4, already added pkg_add libXft-2.1.14.tbz skipping libXft-2.1.14, already added pkg_add libX11-1.3.6,1.tbz skipping libX11-1.3.6,1, already added pkg_add libXext-1.1.2,1.tbz skipping libXext-1.1.2,1, already added pkg_add libXmu-1.1.0,1.tbz skipping libXmu-1.1.0,1, already added pkg_add gmp-5.0.2.tbz skipping gmp-5.0.2, already added pkg_add gd-2.0.35_7,1.tbz skipping gd-2.0.35_7,1, already added pkg_add pdflib-7.0.4.tbz skipping pdflib-7.0.4, already added pkg_add plotutils-2.6_2,1.tbz skipping plotutils-2.6_2,1, already added pkg_add cairo-1.10.2_2,1.tbz skipping cairo-1.10.2_2,1, already added pkg_add wxgtk2-2.8.12.tbz skipping wxgtk2-2.8.12, already added pkg_add glib-2.28.8.tbz skipping glib-2.28.8, already added pkg_add pango-1.28.4.tbz skipping pango-1.28.4, already added pkg_add teTeX-base-3.0_22.tbz skipping teTeX-base-3.0_22, already added pkg_add libXaw-1.0.8,1.tbz skipping libXaw-1.0.8,1, already added pkg_add libXt-1.0.9.tbz skipping libXt-1.0.9, already added pkg_add gio-fam-backend-2.28.8.tbz skipping gio-fam-backend-2.28.8, already added pkg_add gettext-0.18.1.1.tbz skipping gettext-0.18.1.1, already added pkg_add mpfr-3.0.1.tbz skipping mpfr-3.0.1, already added pkg_add mpc-0.9.tbz skipping mpc-0.9, already added pkg_add binutils-2.21.1.tbz skipping binutils-2.21.1, already added pkg_add expat-2.0.1_1.tbz skipping expat-2.0.1_1, already added pkg_add jbig2dec-0.11.tbz skipping jbig2dec-0.11, already added pkg_add cups-image-1.4.6.tbz skipping cups-image-1.4.6, already added pkg_add fontconfig-2.8.0_1,1.tbz skipping fontconfig-2.8.0_1,1, already added pkg_add gsfonts-8.11_5.tbz skipping gsfonts-8.11_5, already added pkg_add libdrm-2.4.12_1.tbz skipping libdrm-2.4.12_1, already added pkg_add dri2proto-2.3.tbz skipping dri2proto-2.3, already added pkg_add libXxf86vm-1.1.0.tbz skipping libXxf86vm-1.1.0, already added pkg_add libXdamage-1.1.3.tbz skipping libXdamage-1.1.3, already added pkg_add libXfixes-4.0.4.tbz skipping libXfixes-4.0.4, already added pkg_add xproto-7.0.16.tbz skipping xproto-7.0.16, already added pkg_add libXrender-0.9.5.tbz skipping libXrender-0.9.5, already added pkg_add libxcb-1.7.tbz skipping libxcb-1.7, already added pkg_add kbproto-1.0.5.tbz skipping kbproto-1.0.5, already added pkg_add libXau-1.0.6.tbz skipping libXau-1.0.6, already added pkg_add libXdmcp-1.0.3.tbz skipping libXdmcp-1.0.3, already added pkg_add xextproto-7.1.1.tbz skipping xextproto-7.1.1, already added pkg_add open-motif-2.3.3.tbz skipping open-motif-2.3.3, already added pkg_add libXpm-3.5.7.tbz skipping libXpm-3.5.7, already added pkg_add pixman-0.22.0.tbz skipping pixman-0.22.0, already added pkg_add xcb-util-0.3.6_1.tbz skipping xcb-util-0.3.6_1, already added pkg_add libmspack-0.2_1.tbz skipping libmspack-0.2_1, already added pkg_add atk-2.0.1.tbz skipping atk-2.0.1, already added pkg_add gconf2-2.32.0_2.tbz skipping gconf2-2.32.0_2, already added pkg_add gtk-2.24.5_1.tbz skipping gtk-2.24.5_1, already added pkg_add libIDL-0.8.14_1.tbz skipping libIDL-0.8.14_1, already added pkg_add ORBit2-2.14.19.tbz skipping ORBit2-2.14.19, already added pkg_add wxgtk2-common-2.8.12.tbz skipping wxgtk2-common-2.8.12, already added pkg_add libSM-1.1.1_3,1.tbz skipping libSM-1.1.1_3,1, already added pkg_add libXinerama-1.1,1.tbz skipping libXinerama-1.1,1, already added pkg_add gstreamer-plugins-0.10.35,3.tbz skipping gstreamer-plugins-0.10.35,3, already added pkg_add python27-2.7.2_1.tbz skipping python27-2.7.2_1, already added pkg_add perl-5.12.4_1.tbz skipping perl-5.12.4_1, already added pkg_add xorg-fonts-truetype-7.5.1.tbz skipping xorg-fonts-truetype-7.5.1, already added pkg_add encodings-1.0.4,1.tbz skipping encodings-1.0.4,1, already added pkg_add gobject-introspection-0.10.8.tbz skipping gobject-introspection-0.10.8, already added pkg_add libwww-5.4.0_4.tbz skipping libwww-5.4.0_4, already added pkg_add t1lib-5.1.2_1,1.tbz skipping t1lib-5.1.2_1,1, already added pkg_add teTeX-texmf-3.0_8.tbz skipping teTeX-texmf-3.0_8, already added pkg_add tex-texmflocal-1.9.tbz skipping tex-texmflocal-1.9, already added pkg_add texi2html-1.82,1.tbz skipping texi2html-1.82,1, already added pkg_add printproto-1.0.4.tbz skipping printproto-1.0.4, already added pkg_add libXp-1.0.0,1.tbz skipping libXp-1.0.0,1, already added pkg_add gamin-0.1.10_4.tbz skipping gamin-0.1.10_4, already added pkg_add cups-client-1.4.6.tbz skipping cups-client-1.4.6, already added pkg_add gnutls-2.12.7_2.tbz skipping gnutls-2.12.7_2, already added pkg_add libpthread-stubs-0.3_3.tbz skipping libpthread-stubs-0.3_3, already added pkg_add xf86vidmodeproto-2.3.tbz skipping xf86vidmodeproto-2.3, already added pkg_add damageproto-1.2.1.tbz skipping damageproto-1.2.1, already added pkg_add fixesproto-4.1.2.tbz skipping fixesproto-4.1.2, already added pkg_add renderproto-0.11.tbz skipping renderproto-0.11, already added pkg_add xbitmaps-1.1.0.tbz skipping xbitmaps-1.1.0, already added pkg_add dbus-glib-0.88.tbz skipping dbus-glib-0.88, already added pkg_add polkit-0.99.tbz skipping polkit-0.99, already added pkg_add dconf-0.5.1_3.tbz skipping dconf-0.5.1_3, already added pkg_add gnomehier-2.3_12.tbz skipping gnomehier-2.3_12, already added pkg_add gdk-pixbuf-2.23.5.tbz skipping gdk-pixbuf-2.23.5, already added pkg_add shared-mime-info-0.90.tbz skipping shared-mime-info-0.90, already added pkg_add hicolor-icon-theme-0.12.tbz skipping hicolor-icon-theme-0.12, already added pkg_add libXi-1.3.2,1.tbz skipping libXi-1.3.2,1, already added pkg_add libXrandr-1.3.0.tbz skipping libXrandr-1.3.0, already added pkg_add libXcursor-1.1.11.tbz skipping libXcursor-1.1.11, already added pkg_add libXcomposite-0.4.3,1.tbz skipping libXcomposite-0.4.3,1, already added pkg_add gtk-update-icon-cache-2.24.5.tbz skipping gtk-update-icon-cache-2.24.5, already added pkg_add libICE-1.0.7,1.tbz skipping libICE-1.0.7,1, already added pkg_add xineramaproto-1.2.tbz skipping xineramaproto-1.2, already added pkg_add gstreamer-0.10.35.tbz skipping gstreamer-0.10.35, already added pkg_add orc-0.4.14_1.tbz skipping orc-0.4.14_1, already added pkg_add libXv-1.0.5,1.tbz skipping libXv-1.0.5,1, already added pkg_add font-bh-ttf-1.0.3.tbz skipping font-bh-ttf-1.0.3, already added pkg_add font-misc-meltho-1.0.3.tbz skipping font-misc-meltho-1.0.3, already added pkg_add font-misc-ethiopic-1.0.3.tbz skipping font-misc-ethiopic-1.0.3, already added pkg_add bitstream-vera-1.10_5.tbz skipping bitstream-vera-1.10_5, already added pkg_add font-util-1.2.0.tbz skipping font-util-1.2.0, already added pkg_add libffi-3.0.9.tbz skipping libffi-3.0.9, already added pkg_add font-amsfonts-3.02_1.tbz skipping font-amsfonts-3.02_1, already added pkg_add nettle-2.2.tbz skipping nettle-2.2, already added pkg_add libgpg-error-1.10.tbz skipping libgpg-error-1.10, already added pkg_add dbus-1.4.6.tbz skipping dbus-1.4.6, already added pkg_add eggdbus-0.6_1.tbz skipping eggdbus-0.6_1, already added pkg_add libgee-0.6.1.tbz skipping libgee-0.6.1, already added pkg_add inputproto-2.0.1.tbz skipping inputproto-2.0.1, already added pkg_add randrproto-1.3.2.tbz skipping randrproto-1.3.2, already added pkg_add compositeproto-0.4.2.tbz skipping compositeproto-0.4.2, already added pkg_add videoproto-2.3.0.tbz skipping videoproto-2.3.0, already added pkg_add mkfontdir-1.0.6.tbz skipping mkfontdir-1.0.6, already added pkg_add mkfontscale-1.0.8.tbz skipping mkfontscale-1.0.8, already added pkg_add gnome_subr-1.0.tbz skipping gnome_subr-1.0, already added pkg_add libfontenc-1.1.0.tbz skipping libfontenc-1.1.0, already added pkg_add octave-3.4.2_2.tbz pkg_add gmake-3.82.tbz ===> dynare-4.2.1 depends on file: /usr/local/include/boost/unordered_set.hpp - found ===> dynare-4.2.1 depends on executable: octave - found ===> dynare-4.2.1 depends on executable: gmake - found ===> dynare-4.2.1 depends on executable: gcc45 - found ===> dynare-4.2.1 depends on file: /usr/local/bin/as - found ===> Configuring for dynare-4.2.1 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether gmake sets $(MAKE)... yes checking for gcc... gcc45 checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc45 accepts -g... yes checking for gcc45 option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of gcc45... gcc3 checking whether we are using the GNU C++ compiler... yes checking whether g++45 accepts -g... yes checking dependency style of g++45... gcc3 checking build system type... i386-portbld-freebsd9.0 checking host system type... i386-portbld-freebsd9.0 checking for ar... /usr/local/bin/ar checking for ranlib... /usr/local/bin/ranlib checking whether ln -s works... yes checking for flex... flex checking lex output file root... lex.yy checking lex library... none needed checking whether yytext is a pointer... no checking for bison... no checking for boostlib >= 1.36... yes checking how to run the C++ preprocessor... g++45 -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking boost/graph/adjacency_list.hpp usability... yes checking boost/graph/adjacency_list.hpp presence... yes checking for boost/graph/adjacency_list.hpp... yes checking boost/algorithm/string/trim.hpp usability... yes checking boost/algorithm/string/trim.hpp presence... yes checking for boost/algorithm/string/trim.hpp... yes checking boost/algorithm/string/split.hpp usability... yes checking boost/algorithm/string/split.hpp presence... yes checking for boost/algorithm/string/split.hpp... yes checking boost/lexical_cast.hpp usability... yes checking boost/lexical_cast.hpp presence... yes checking for boost/lexical_cast.hpp... yes checking for dlopen in -ldl... no checking for makeinfo... ${SHELL} /work/a/ports/math/dynare/work/dynare-4.2.1/missing --run makeinfo checking for pdftex... pdftex checking for pdfetex... pdfetex checking for eplain... yes checking for pdflatex... pdflatex checking for bibtex... bibtex checking for texi2html... texi2html checking for latex2html... no checking for econometrica BST... no checking for usability of class beamer... yes checking for doxygen... no checking for octave... octave checking for ctangle... ctangle checking for cweave... cweave checking whether we are using the GNU Fortran 77 compiler... yes checking whether gfortran45 accepts -g... yes checking how to get verbose linking output from gfortran45... -v checking for Fortran 77 libraries of gfortran45... -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm checking for dummy main to link with Fortran 77 libraries... none checking for Fortran 77 name-mangling scheme... lower case, underscore, no extra underscore checking for sgemm_... no checking for ATL_xerbla in -latlas... no checking for sgemm_ in -lblas... yes checking for dgemm_ in -ldgemm... no checking for sgemm_ in -lmkl... no checking for sgemm_... (cached) no checking for sgemm_ in -lcxml... no checking for sgemm_ in -ldxml... no checking for sgemm_ in -lscs... no checking for sgemm_ in -lcomplib.sgimath... no checking for sgemm_ in -lblas... (cached) yes checking for sgemm_ in -lessl... no checking for sgemm_ in -lblas... (cached) yes checking for cheev_... no checking for cheev_ in -llapack... yes checking for the pthreads library -lpthreads... no checking whether pthreads work without any flags... no checking whether pthreads work with -Kthread... no checking whether pthreads work with -kthread... no checking for the pthreads library -llthread... no checking whether pthreads work with -pthread... yes checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE checking if more special flags are required for pthreads... -D_THREAD_SAFE configure: Dynare is now configured for building the following components... Binaries (with "make"): Dynare preprocessor: yes Dynare++: yes PDF documentation (with "make pdf"): Dynare reference manual: yes Dynare user guide: no (missing one of: pdflatex, bibtex, econometrica BST) Dynare++ developer documentation: yes Beamer presentations: yes Various other documents: yes HTML documentation (with "make html"): Dynare reference manual: yes (but with ugly math formulas, missing texi2html or latex2html) Dynare preprocessor developer doc: no (missing doxygen) Dynare internal doc: no (Org export not enabled) Info documentation (with "make info"): yes Testsuites (run with "make check"): Dynare for Octave: yes Dynare++: yes configure: creating ./config.status config.status: creating Makefile config.status: creating preprocessor/macro/Makefile config.status: creating preprocessor/Makefile config.status: creating doc/Makefile config.status: creating doc/preprocessor/Makefile config.status: creating doc/macroprocessor/Makefile config.status: creating doc/userguide/Makefile config.status: creating doc/parallel/Makefile config.status: creating doc/internals/Makefile config.status: creating tests/Makefile config.status: creating matlab/dynare_version.m config.status: creating windows/dynare-version.nsi config.status: creating dynare++/Makefile config.status: creating dynare++/parser/cc/Makefile config.status: creating dynare++/sylv/Makefile config.status: creating dynare++/sylv/cc/Makefile config.status: creating dynare++/sylv/testing/Makefile config.status: creating dynare++/tl/Makefile config.status: creating dynare++/tl/cc/Makefile config.status: creating dynare++/tl/testing/Makefile config.status: creating dynare++/doc/Makefile config.status: creating dynare++/utils/cc/Makefile config.status: creating dynare++/integ/Makefile config.status: creating dynare++/integ/cc/Makefile config.status: creating dynare++/integ/src/Makefile config.status: creating dynare++/integ/testing/Makefile config.status: creating dynare++/kord/Makefile config.status: creating dynare++/src/Makefile config.status: creating mex/sources/Makefile config.status: executing depfiles commands === configuring in mex/build/matlab (/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/matlab) configure: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local' '--mandir=/usr/local/man' '--infodir=/usr/local/info/' '--build=i386-portbld-freebsd9.0' 'build_alias=i386-portbld-freebsd9.0' 'CC=gcc45' 'CFLAGS=-O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing' 'CPPFLAGS=' 'CXX=g++45' 'CXXFLAGS=-O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing' 'F77=gfortran45' 'FFLAGS=-O' --cache-file=/dev/null --srcdir=. checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether gmake sets $(MAKE)... yes checking build system type... i386-portbld-freebsd9.0 checking host system type... i386-portbld-freebsd9.0 checking for MATLAB prefix... not found checking whether to enable MATLAB support... no checking whether the Fortran 77 compiler works... yes checking for Fortran 77 compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU Fortran 77 compiler... yes checking whether gfortran45 accepts -g... yes checking for gcc... gcc45 checking whether we are using the GNU C compiler... yes checking whether gcc45 accepts -g... yes checking for gcc45 option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of gcc45... gcc3 checking whether we are using the GNU C++ compiler... yes checking whether g++45 accepts -g... yes checking dependency style of g++45... gcc3 checking for ranlib... /usr/local/bin/ranlib checking whether ln -s works... yes checking for the pthreads library -lpthreads... no checking whether pthreads work without any flags... no checking whether pthreads work with -Kthread... no checking whether pthreads work with -kthread... no checking for the pthreads library -llthread... no checking whether pthreads work with -pthread... yes checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE checking if more special flags are required for pthreads... -D_THREAD_SAFE checking for boostlib >= 1.36... yes checking for dlopen in -ldl... no configure: Dynare is now configured for building the following components... Binaries (with "make"): MEX files for MATLAB: no (missing MATLAB, or unknown version, or unknown architecture) M2HTML documentation: no configure: creating ./config.status config.status: creating Makefile config.status: creating mjdgges/Makefile config.status: creating kronecker/Makefile config.status: creating bytecode/Makefile config.status: creating libdynare++/Makefile config.status: creating gensylv/Makefile config.status: creating k_order_perturbation/Makefile config.status: creating dynare_simul_/Makefile config.status: executing depfiles commands === configuring in mex/build/octave (/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave) configure: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local' '--mandir=/usr/local/man' '--infodir=/usr/local/info/' '--build=i386-portbld-freebsd9.0' 'build_alias=i386-portbld-freebsd9.0' 'CC=gcc45' 'CFLAGS=-O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing' 'CPPFLAGS=' 'CXX=g++45' 'CXXFLAGS=-O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing' 'F77=gfortran45' 'FFLAGS=-O' --cache-file=/dev/null --srcdir=. checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether gmake sets $(MAKE)... yes checking for mkoctfile... mkoctfile checking whether the Fortran 77 compiler works... yes checking for Fortran 77 compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU Fortran 77 compiler... yes checking whether gfortran45 accepts -g... yes checking for gcc... gcc45 checking whether we are using the GNU C compiler... yes checking whether gcc45 accepts -g... yes checking for gcc45 option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of gcc45... gcc3 checking whether we are using the GNU C++ compiler... yes checking whether g++45 accepts -g... yes checking dependency style of g++45... gcc3 checking for ranlib... /usr/local/bin/ranlib checking build system type... i386-portbld-freebsd9.0 checking host system type... i386-portbld-freebsd9.0 checking whether ln -s works... yes checking for the pthreads library -lpthreads... no checking whether pthreads work without any flags... no checking whether pthreads work with -Kthread... no checking whether pthreads work with -kthread... no checking for the pthreads library -llthread... no checking whether pthreads work with -pthread... yes checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE checking if more special flags are required for pthreads... -D_THREAD_SAFE checking for boostlib >= 1.36... yes checking for dlopen in -ldl... no configure: Dynare is now configured for building the following components... Binaries (with "make"): MEX files for Octave: yes configure: creating ./config.status config.status: creating Makefile config.status: creating mjdgges/Makefile config.status: creating kronecker/Makefile config.status: creating bytecode/Makefile config.status: creating libdynare++/Makefile config.status: creating gensylv/Makefile config.status: creating k_order_perturbation/Makefile config.status: creating dynare_simul_/Makefile config.status: creating qzcomplex/Makefile config.status: creating ordschur/Makefile config.status: executing depfiles commands ******************************************************************************* Follow instructions at http://www.freebsd.org/doc/handbook/linuxemu-matlab.html on how to install MATLAB on FreeBSD ******************************************************************************* ===> Building for dynare-4.2.1 Making all in preprocessor gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' gmake all-recursive gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' Making all in macro gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/macro' gmake all-am gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/macro' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I.. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libmacro_a-MacroFlex.o -MD -MP -MF .deps/libmacro_a-MacroFlex.Tpo -c -o libmacro_a-MacroFlex.o `test -f 'MacroFlex.cc' || echo './'`MacroFlex.cc mv -f .deps/libmacro_a-MacroFlex.Tpo .deps/libmacro_a-MacroFlex.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I.. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libmacro_a-MacroBison.o -MD -MP -MF .deps/libmacro_a-MacroBison.Tpo -c -o libmacro_a-MacroBison.o `test -f 'MacroBison.cc' || echo './'`MacroBison.cc mv -f .deps/libmacro_a-MacroBison.Tpo .deps/libmacro_a-MacroBison.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I.. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libmacro_a-MacroDriver.o -MD -MP -MF .deps/libmacro_a-MacroDriver.Tpo -c -o libmacro_a-MacroDriver.o `test -f 'MacroDriver.cc' || echo './'`MacroDriver.cc mv -f .deps/libmacro_a-MacroDriver.Tpo .deps/libmacro_a-MacroDriver.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I.. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libmacro_a-MacroValue.o -MD -MP -MF .deps/libmacro_a-MacroValue.Tpo -c -o libmacro_a-MacroValue.o `test -f 'MacroValue.cc' || echo './'`MacroValue.cc mv -f .deps/libmacro_a-MacroValue.Tpo .deps/libmacro_a-MacroValue.Po rm -f libmacro.a /usr/local/bin/ar cru libmacro.a libmacro_a-MacroFlex.o libmacro_a-MacroBison.o libmacro_a-MacroDriver.o libmacro_a-MacroValue.o /usr/local/bin/ranlib libmacro.a gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/macro' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/macro' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-DynareFlex.o -MD -MP -MF .deps/dynare_m-DynareFlex.Tpo -c -o dynare_m-DynareFlex.o `test -f 'DynareFlex.cc' || echo './'`DynareFlex.cc mv -f .deps/dynare_m-DynareFlex.Tpo .deps/dynare_m-DynareFlex.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-DynareBison.o -MD -MP -MF .deps/dynare_m-DynareBison.Tpo -c -o dynare_m-DynareBison.o `test -f 'DynareBison.cc' || echo './'`DynareBison.cc mv -f .deps/dynare_m-DynareBison.Tpo .deps/dynare_m-DynareBison.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-ComputingTasks.o -MD -MP -MF .deps/dynare_m-ComputingTasks.Tpo -c -o dynare_m-ComputingTasks.o `test -f 'ComputingTasks.cc' || echo './'`ComputingTasks.cc mv -f .deps/dynare_m-ComputingTasks.Tpo .deps/dynare_m-ComputingTasks.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-ModelTree.o -MD -MP -MF .deps/dynare_m-ModelTree.Tpo -c -o dynare_m-ModelTree.o `test -f 'ModelTree.cc' || echo './'`ModelTree.cc mv -f .deps/dynare_m-ModelTree.Tpo .deps/dynare_m-ModelTree.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-StaticModel.o -MD -MP -MF .deps/dynare_m-StaticModel.Tpo -c -o dynare_m-StaticModel.o `test -f 'StaticModel.cc' || echo './'`StaticModel.cc mv -f .deps/dynare_m-StaticModel.Tpo .deps/dynare_m-StaticModel.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-DynamicModel.o -MD -MP -MF .deps/dynare_m-DynamicModel.Tpo -c -o dynare_m-DynamicModel.o `test -f 'DynamicModel.cc' || echo './'`DynamicModel.cc mv -f .deps/dynare_m-DynamicModel.Tpo .deps/dynare_m-DynamicModel.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-NumericalConstants.o -MD -MP -MF .deps/dynare_m-NumericalConstants.Tpo -c -o dynare_m-NumericalConstants.o `test -f 'NumericalConstants.cc' || echo './'`NumericalConstants.cc mv -f .deps/dynare_m-NumericalConstants.Tpo .deps/dynare_m-NumericalConstants.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-NumericalInitialization.o -MD -MP -MF .deps/dynare_m-NumericalInitialization.Tpo -c -o dynare_m-NumericalInitialization.o `test -f 'NumericalInitialization.cc' || echo './'`NumericalInitialization.cc mv -f .deps/dynare_m-NumericalInitialization.Tpo .deps/dynare_m-NumericalInitialization.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-Shocks.o -MD -MP -MF .deps/dynare_m-Shocks.Tpo -c -o dynare_m-Shocks.o `test -f 'Shocks.cc' || echo './'`Shocks.cc mv -f .deps/dynare_m-Shocks.Tpo .deps/dynare_m-Shocks.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-SigmaeInitialization.o -MD -MP -MF .deps/dynare_m-SigmaeInitialization.Tpo -c -o dynare_m-SigmaeInitialization.o `test -f 'SigmaeInitialization.cc' || echo './'`SigmaeInitialization.cc mv -f .deps/dynare_m-SigmaeInitialization.Tpo .deps/dynare_m-SigmaeInitialization.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-SymbolTable.o -MD -MP -MF .deps/dynare_m-SymbolTable.Tpo -c -o dynare_m-SymbolTable.o `test -f 'SymbolTable.cc' || echo './'`SymbolTable.cc mv -f .deps/dynare_m-SymbolTable.Tpo .deps/dynare_m-SymbolTable.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-SymbolList.o -MD -MP -MF .deps/dynare_m-SymbolList.Tpo -c -o dynare_m-SymbolList.o `test -f 'SymbolList.cc' || echo './'`SymbolList.cc mv -f .deps/dynare_m-SymbolList.Tpo .deps/dynare_m-SymbolList.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-ParsingDriver.o -MD -MP -MF .deps/dynare_m-ParsingDriver.Tpo -c -o dynare_m-ParsingDriver.o `test -f 'ParsingDriver.cc' || echo './'`ParsingDriver.cc mv -f .deps/dynare_m-ParsingDriver.Tpo .deps/dynare_m-ParsingDriver.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-DataTree.o -MD -MP -MF .deps/dynare_m-DataTree.Tpo -c -o dynare_m-DataTree.o `test -f 'DataTree.cc' || echo './'`DataTree.cc mv -f .deps/dynare_m-DataTree.Tpo .deps/dynare_m-DataTree.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-ModFile.o -MD -MP -MF .deps/dynare_m-ModFile.Tpo -c -o dynare_m-ModFile.o `test -f 'ModFile.cc' || echo './'`ModFile.cc mv -f .deps/dynare_m-ModFile.Tpo .deps/dynare_m-ModFile.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-ConfigFile.o -MD -MP -MF .deps/dynare_m-ConfigFile.Tpo -c -o dynare_m-ConfigFile.o `test -f 'ConfigFile.cc' || echo './'`ConfigFile.cc mv -f .deps/dynare_m-ConfigFile.Tpo .deps/dynare_m-ConfigFile.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-Statement.o -MD -MP -MF .deps/dynare_m-Statement.Tpo -c -o dynare_m-Statement.o `test -f 'Statement.cc' || echo './'`Statement.cc mv -f .deps/dynare_m-Statement.Tpo .deps/dynare_m-Statement.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-ExprNode.o -MD -MP -MF .deps/dynare_m-ExprNode.Tpo -c -o dynare_m-ExprNode.o `test -f 'ExprNode.cc' || echo './'`ExprNode.cc mv -f .deps/dynare_m-ExprNode.Tpo .deps/dynare_m-ExprNode.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-MinimumFeedbackSet.o -MD -MP -MF .deps/dynare_m-MinimumFeedbackSet.Tpo -c -o dynare_m-MinimumFeedbackSet.o `test -f 'MinimumFeedbackSet.cc' || echo './'`MinimumFeedbackSet.cc mv -f .deps/dynare_m-MinimumFeedbackSet.Tpo .deps/dynare_m-MinimumFeedbackSet.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-DynareMain.o -MD -MP -MF .deps/dynare_m-DynareMain.Tpo -c -o dynare_m-DynareMain.o `test -f 'DynareMain.cc' || echo './'`DynareMain.cc mv -f .deps/dynare_m-DynareMain.Tpo .deps/dynare_m-DynareMain.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-DynareMain2.o -MD -MP -MF .deps/dynare_m-DynareMain2.Tpo -c -o dynare_m-DynareMain2.o `test -f 'DynareMain2.cc' || echo './'`DynareMain2.cc mv -f .deps/dynare_m-DynareMain2.Tpo .deps/dynare_m-DynareMain2.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-ExternalFunctionsTable.o -MD -MP -MF .deps/dynare_m-ExternalFunctionsTable.Tpo -c -o dynare_m-ExternalFunctionsTable.o `test -f 'ExternalFunctionsTable.cc' || echo './'`ExternalFunctionsTable.cc mv -f .deps/dynare_m-ExternalFunctionsTable.Tpo .deps/dynare_m-ExternalFunctionsTable.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I/usr/local/include -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare_m-SteadyStateModel.o -MD -MP -MF .deps/dynare_m-SteadyStateModel.Tpo -c -o dynare_m-SteadyStateModel.o `test -f 'SteadyStateModel.cc' || echo './'`SteadyStateModel.cc mv -f .deps/dynare_m-SteadyStateModel.Tpo .deps/dynare_m-SteadyStateModel.Po g++45 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -L/usr/local/lib -o dynare_m dynare_m-DynareFlex.o dynare_m-DynareBison.o dynare_m-ComputingTasks.o dynare_m-ModelTree.o dynare_m-StaticModel.o dynare_m-DynamicModel.o dynare_m-NumericalConstants.o dynare_m-NumericalInitialization.o dynare_m-Shocks.o dynare_m-SigmaeInitialization.o dynare_m-SymbolTable.o dynare_m-SymbolList.o dynare_m-ParsingDriver.o dynare_m-DataTree.o dynare_m-ModFile.o dynare_m-ConfigFile.o dynare_m-Statement.o dynare_m-ExprNode.o dynare_m-MinimumFeedbackSet.o dynare_m-DynareMain.o dynare_m-DynareMain2.o dynare_m-ExternalFunctionsTable.o dynare_m-SteadyStateModel.o macro/libmacro.a cd ../matlab && ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/dynare_m dynare_m gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' Making all in doc gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc' Making all in preprocessor gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/preprocessor' gmake[2]: Nothing to be done for `all'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/preprocessor' Making all in macroprocessor gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/macroprocessor' gmake[2]: Nothing to be done for `all'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/macroprocessor' Making all in userguide gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/userguide' gmake[2]: Nothing to be done for `all'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/userguide' Making all in parallel gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/parallel' gmake[2]: Nothing to be done for `all'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/parallel' Making all in internals gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/internals' gmake[2]: Nothing to be done for `all'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/internals' gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc' gmake[2]: Nothing to be done for `all-am'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc' Making all in tests gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/tests' gmake[1]: Nothing to be done for `all'. gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/tests' Making all in mex/sources gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/sources' gmake[1]: Nothing to be done for `all'. gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/sources' Making all in dynare++ gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++' Making all in sylv gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv' Making all in cc gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/cc' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-IterativeSylvester.o -MD -MP -MF .deps/libsylv_a-IterativeSylvester.Tpo -c -o libsylv_a-IterativeSylvester.o `test -f 'IterativeSylvester.cpp' || echo './'`IterativeSylvester.cpp mv -f .deps/libsylv_a-IterativeSylvester.Tpo .deps/libsylv_a-IterativeSylvester.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-QuasiTriangular.o -MD -MP -MF .deps/libsylv_a-QuasiTriangular.Tpo -c -o libsylv_a-QuasiTriangular.o `test -f 'QuasiTriangular.cpp' || echo './'`QuasiTriangular.cpp mv -f .deps/libsylv_a-QuasiTriangular.Tpo .deps/libsylv_a-QuasiTriangular.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-QuasiTriangularZero.o -MD -MP -MF .deps/libsylv_a-QuasiTriangularZero.Tpo -c -o libsylv_a-QuasiTriangularZero.o `test -f 'QuasiTriangularZero.cpp' || echo './'`QuasiTriangularZero.cpp mv -f .deps/libsylv_a-QuasiTriangularZero.Tpo .deps/libsylv_a-QuasiTriangularZero.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-GeneralMatrix.o -MD -MP -MF .deps/libsylv_a-GeneralMatrix.Tpo -c -o libsylv_a-GeneralMatrix.o `test -f 'GeneralMatrix.cpp' || echo './'`GeneralMatrix.cpp mv -f .deps/libsylv_a-GeneralMatrix.Tpo .deps/libsylv_a-GeneralMatrix.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-GeneralSylvester.o -MD -MP -MF .deps/libsylv_a-GeneralSylvester.Tpo -c -o libsylv_a-GeneralSylvester.o `test -f 'GeneralSylvester.cpp' || echo './'`GeneralSylvester.cpp mv -f .deps/libsylv_a-GeneralSylvester.Tpo .deps/libsylv_a-GeneralSylvester.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-SimilarityDecomp.o -MD -MP -MF .deps/libsylv_a-SimilarityDecomp.Tpo -c -o libsylv_a-SimilarityDecomp.o `test -f 'SimilarityDecomp.cpp' || echo './'`SimilarityDecomp.cpp mv -f .deps/libsylv_a-SimilarityDecomp.Tpo .deps/libsylv_a-SimilarityDecomp.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-SylvException.o -MD -MP -MF .deps/libsylv_a-SylvException.Tpo -c -o libsylv_a-SylvException.o `test -f 'SylvException.cpp' || echo './'`SylvException.cpp mv -f .deps/libsylv_a-SylvException.Tpo .deps/libsylv_a-SylvException.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-SchurDecompEig.o -MD -MP -MF .deps/libsylv_a-SchurDecompEig.Tpo -c -o libsylv_a-SchurDecompEig.o `test -f 'SchurDecompEig.cpp' || echo './'`SchurDecompEig.cpp mv -f .deps/libsylv_a-SchurDecompEig.Tpo .deps/libsylv_a-SchurDecompEig.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-Vector.o -MD -MP -MF .deps/libsylv_a-Vector.Tpo -c -o libsylv_a-Vector.o `test -f 'Vector.cpp' || echo './'`Vector.cpp mv -f .deps/libsylv_a-Vector.Tpo .deps/libsylv_a-Vector.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-TriangularSylvester.o -MD -MP -MF .deps/libsylv_a-TriangularSylvester.Tpo -c -o libsylv_a-TriangularSylvester.o `test -f 'TriangularSylvester.cpp' || echo './'`TriangularSylvester.cpp mv -f .deps/libsylv_a-TriangularSylvester.Tpo .deps/libsylv_a-TriangularSylvester.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-SylvParams.o -MD -MP -MF .deps/libsylv_a-SylvParams.Tpo -c -o libsylv_a-SylvParams.o `test -f 'SylvParams.cpp' || echo './'`SylvParams.cpp mv -f .deps/libsylv_a-SylvParams.Tpo .deps/libsylv_a-SylvParams.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-BlockDiagonal.o -MD -MP -MF .deps/libsylv_a-BlockDiagonal.Tpo -c -o libsylv_a-BlockDiagonal.o `test -f 'BlockDiagonal.cpp' || echo './'`BlockDiagonal.cpp mv -f .deps/libsylv_a-BlockDiagonal.Tpo .deps/libsylv_a-BlockDiagonal.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-KronVector.o -MD -MP -MF .deps/libsylv_a-KronVector.Tpo -c -o libsylv_a-KronVector.o `test -f 'KronVector.cpp' || echo './'`KronVector.cpp mv -f .deps/libsylv_a-KronVector.Tpo .deps/libsylv_a-KronVector.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-SylvMemory.o -MD -MP -MF .deps/libsylv_a-SylvMemory.Tpo -c -o libsylv_a-SylvMemory.o `test -f 'SylvMemory.cpp' || echo './'`SylvMemory.cpp mv -f .deps/libsylv_a-SylvMemory.Tpo .deps/libsylv_a-SylvMemory.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-SymSchurDecomp.o -MD -MP -MF .deps/libsylv_a-SymSchurDecomp.Tpo -c -o libsylv_a-SymSchurDecomp.o `test -f 'SymSchurDecomp.cpp' || echo './'`SymSchurDecomp.cpp mv -f .deps/libsylv_a-SymSchurDecomp.Tpo .deps/libsylv_a-SymSchurDecomp.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-SylvMatrix.o -MD -MP -MF .deps/libsylv_a-SylvMatrix.Tpo -c -o libsylv_a-SylvMatrix.o `test -f 'SylvMatrix.cpp' || echo './'`SylvMatrix.cpp mv -f .deps/libsylv_a-SylvMatrix.Tpo .deps/libsylv_a-SylvMatrix.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-SchurDecomp.o -MD -MP -MF .deps/libsylv_a-SchurDecomp.Tpo -c -o libsylv_a-SchurDecomp.o `test -f 'SchurDecomp.cpp' || echo './'`SchurDecomp.cpp mv -f .deps/libsylv_a-SchurDecomp.Tpo .deps/libsylv_a-SchurDecomp.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../../mex/sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libsylv_a-KronUtils.o -MD -MP -MF .deps/libsylv_a-KronUtils.Tpo -c -o libsylv_a-KronUtils.o `test -f 'KronUtils.cpp' || echo './'`KronUtils.cpp mv -f .deps/libsylv_a-KronUtils.Tpo .deps/libsylv_a-KronUtils.Po rm -f libsylv.a /usr/local/bin/ar cru libsylv.a libsylv_a-IterativeSylvester.o libsylv_a-QuasiTriangular.o libsylv_a-QuasiTriangularZero.o libsylv_a-GeneralMatrix.o libsylv_a-GeneralSylvester.o libsylv_a-SimilarityDecomp.o libsylv_a-SylvException.o libsylv_a-SchurDecompEig.o libsylv_a-Vector.o libsylv_a-TriangularSylvester.o libsylv_a-SylvParams.o libsylv_a-BlockDiagonal.o libsylv_a-KronVector.o libsylv_a-SylvMemory.o libsylv_a-SymSchurDecomp.o libsylv_a-SylvMatrix.o libsylv_a-SchurDecomp.o libsylv_a-KronUtils.o /usr/local/bin/ranlib libsylv.a gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/cc' Making all in testing gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/testing' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/testing' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv' gmake[3]: Nothing to be done for `all-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv' Making all in parser/cc gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/parser/cc' gmake all-am gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/parser/cc' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-atom_assignings.o -MD -MP -MF .deps/libparser_a-atom_assignings.Tpo -c -o libparser_a-atom_assignings.o `test -f 'atom_assignings.cpp' || echo './'`atom_assignings.cpp mv -f .deps/libparser_a-atom_assignings.Tpo .deps/libparser_a-atom_assignings.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-atom_substitutions.o -MD -MP -MF .deps/libparser_a-atom_substitutions.Tpo -c -o libparser_a-atom_substitutions.o `test -f 'atom_substitutions.cpp' || echo './'`atom_substitutions.cpp mv -f .deps/libparser_a-atom_substitutions.Tpo .deps/libparser_a-atom_substitutions.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-csv_parser.o -MD -MP -MF .deps/libparser_a-csv_parser.Tpo -c -o libparser_a-csv_parser.o `test -f 'csv_parser.cpp' || echo './'`csv_parser.cpp mv -f .deps/libparser_a-csv_parser.Tpo .deps/libparser_a-csv_parser.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-dynamic_atoms.o -MD -MP -MF .deps/libparser_a-dynamic_atoms.Tpo -c -o libparser_a-dynamic_atoms.o `test -f 'dynamic_atoms.cpp' || echo './'`dynamic_atoms.cpp mv -f .deps/libparser_a-dynamic_atoms.Tpo .deps/libparser_a-dynamic_atoms.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-fine_atoms.o -MD -MP -MF .deps/libparser_a-fine_atoms.Tpo -c -o libparser_a-fine_atoms.o `test -f 'fine_atoms.cpp' || echo './'`fine_atoms.cpp mv -f .deps/libparser_a-fine_atoms.Tpo .deps/libparser_a-fine_atoms.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-formula_parser.o -MD -MP -MF .deps/libparser_a-formula_parser.Tpo -c -o libparser_a-formula_parser.o `test -f 'formula_parser.cpp' || echo './'`formula_parser.cpp mv -f .deps/libparser_a-formula_parser.Tpo .deps/libparser_a-formula_parser.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-matrix_parser.o -MD -MP -MF .deps/libparser_a-matrix_parser.Tpo -c -o libparser_a-matrix_parser.o `test -f 'matrix_parser.cpp' || echo './'`matrix_parser.cpp mv -f .deps/libparser_a-matrix_parser.Tpo .deps/libparser_a-matrix_parser.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-parser_exception.o -MD -MP -MF .deps/libparser_a-parser_exception.Tpo -c -o libparser_a-parser_exception.o `test -f 'parser_exception.cpp' || echo './'`parser_exception.cpp mv -f .deps/libparser_a-parser_exception.Tpo .deps/libparser_a-parser_exception.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-static_atoms.o -MD -MP -MF .deps/libparser_a-static_atoms.Tpo -c -o libparser_a-static_atoms.o `test -f 'static_atoms.cpp' || echo './'`static_atoms.cpp mv -f .deps/libparser_a-static_atoms.Tpo .deps/libparser_a-static_atoms.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-static_fine_atoms.o -MD -MP -MF .deps/libparser_a-static_fine_atoms.Tpo -c -o libparser_a-static_fine_atoms.o `test -f 'static_fine_atoms.cpp' || echo './'`static_fine_atoms.cpp mv -f .deps/libparser_a-static_fine_atoms.Tpo .deps/libparser_a-static_fine_atoms.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-tree.o -MD -MP -MF .deps/libparser_a-tree.Tpo -c -o libparser_a-tree.o `test -f 'tree.cpp' || echo './'`tree.cpp mv -f .deps/libparser_a-tree.Tpo .deps/libparser_a-tree.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-assign_tab.o -MD -MP -MF .deps/libparser_a-assign_tab.Tpo -c -o libparser_a-assign_tab.o `test -f 'assign_tab.cc' || echo './'`assign_tab.cc mv -f .deps/libparser_a-assign_tab.Tpo .deps/libparser_a-assign_tab.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-csv_tab.o -MD -MP -MF .deps/libparser_a-csv_tab.Tpo -c -o libparser_a-csv_tab.o `test -f 'csv_tab.cc' || echo './'`csv_tab.cc mv -f .deps/libparser_a-csv_tab.Tpo .deps/libparser_a-csv_tab.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-formula_tab.o -MD -MP -MF .deps/libparser_a-formula_tab.Tpo -c -o libparser_a-formula_tab.o `test -f 'formula_tab.cc' || echo './'`formula_tab.cc mv -f .deps/libparser_a-formula_tab.Tpo .deps/libparser_a-formula_tab.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-matrix_tab.o -MD -MP -MF .deps/libparser_a-matrix_tab.Tpo -c -o libparser_a-matrix_tab.o `test -f 'matrix_tab.cc' || echo './'`matrix_tab.cc mv -f .deps/libparser_a-matrix_tab.Tpo .deps/libparser_a-matrix_tab.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-namelist_tab.o -MD -MP -MF .deps/libparser_a-namelist_tab.Tpo -c -o libparser_a-namelist_tab.o `test -f 'namelist_tab.cc' || echo './'`namelist_tab.cc mv -f .deps/libparser_a-namelist_tab.Tpo .deps/libparser_a-namelist_tab.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-assign_ll.o -MD -MP -MF .deps/libparser_a-assign_ll.Tpo -c -o libparser_a-assign_ll.o `test -f 'assign_ll.cc' || echo './'`assign_ll.cc mv -f .deps/libparser_a-assign_ll.Tpo .deps/libparser_a-assign_ll.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-csv_ll.o -MD -MP -MF .deps/libparser_a-csv_ll.Tpo -c -o libparser_a-csv_ll.o `test -f 'csv_ll.cc' || echo './'`csv_ll.cc mv -f .deps/libparser_a-csv_ll.Tpo .deps/libparser_a-csv_ll.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-formula_ll.o -MD -MP -MF .deps/libparser_a-formula_ll.Tpo -c -o libparser_a-formula_ll.o `test -f 'formula_ll.cc' || echo './'`formula_ll.cc mv -f .deps/libparser_a-formula_ll.Tpo .deps/libparser_a-formula_ll.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-matrix_ll.o -MD -MP -MF .deps/libparser_a-matrix_ll.Tpo -c -o libparser_a-matrix_ll.o `test -f 'matrix_ll.cc' || echo './'`matrix_ll.cc mv -f .deps/libparser_a-matrix_ll.Tpo .deps/libparser_a-matrix_ll.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libparser_a-namelist_ll.o -MD -MP -MF .deps/libparser_a-namelist_ll.Tpo -c -o libparser_a-namelist_ll.o `test -f 'namelist_ll.cc' || echo './'`namelist_ll.cc mv -f .deps/libparser_a-namelist_ll.Tpo .deps/libparser_a-namelist_ll.Po rm -f libparser.a /usr/local/bin/ar cru libparser.a libparser_a-atom_assignings.o libparser_a-atom_substitutions.o libparser_a-csv_parser.o libparser_a-dynamic_atoms.o libparser_a-fine_atoms.o libparser_a-formula_parser.o libparser_a-matrix_parser.o libparser_a-parser_exception.o libparser_a-static_atoms.o libparser_a-static_fine_atoms.o libparser_a-tree.o libparser_a-assign_tab.o libparser_a-csv_tab.o libparser_a-formula_tab.o libparser_a-matrix_tab.o libparser_a-namelist_tab.o libparser_a-assign_ll.o libparser_a-csv_ll.o libparser_a-formula_ll.o libparser_a-matrix_ll.o libparser_a-namelist_ll.o /usr/local/bin/ranlib libparser.a gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/parser/cc' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/parser/cc' Making all in tl gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl' Making all in cc gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/cc' gmake all-am gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/cc' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-normal_moments.o -MD -MP -MF .deps/libtl_a-normal_moments.Tpo -c -o libtl_a-normal_moments.o `test -f 'normal_moments.cpp' || echo './'`normal_moments.cpp mv -f .deps/libtl_a-normal_moments.Tpo .deps/libtl_a-normal_moments.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-int_sequence.o -MD -MP -MF .deps/libtl_a-int_sequence.Tpo -c -o libtl_a-int_sequence.o `test -f 'int_sequence.cpp' || echo './'`int_sequence.cpp mv -f .deps/libtl_a-int_sequence.Tpo .deps/libtl_a-int_sequence.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-tensor.o -MD -MP -MF .deps/libtl_a-tensor.Tpo -c -o libtl_a-tensor.o `test -f 'tensor.cpp' || echo './'`tensor.cpp mv -f .deps/libtl_a-tensor.Tpo .deps/libtl_a-tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-ps_tensor.o -MD -MP -MF .deps/libtl_a-ps_tensor.Tpo -c -o libtl_a-ps_tensor.o `test -f 'ps_tensor.cpp' || echo './'`ps_tensor.cpp mv -f .deps/libtl_a-ps_tensor.Tpo .deps/libtl_a-ps_tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-pyramid_prod2.o -MD -MP -MF .deps/libtl_a-pyramid_prod2.Tpo -c -o libtl_a-pyramid_prod2.o `test -f 'pyramid_prod2.cpp' || echo './'`pyramid_prod2.cpp mv -f .deps/libtl_a-pyramid_prod2.Tpo .deps/libtl_a-pyramid_prod2.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-equivalence.o -MD -MP -MF .deps/libtl_a-equivalence.Tpo -c -o libtl_a-equivalence.o `test -f 'equivalence.cpp' || echo './'`equivalence.cpp mv -f .deps/libtl_a-equivalence.Tpo .deps/libtl_a-equivalence.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-fine_container.o -MD -MP -MF .deps/libtl_a-fine_container.Tpo -c -o libtl_a-fine_container.o `test -f 'fine_container.cpp' || echo './'`fine_container.cpp mv -f .deps/libtl_a-fine_container.Tpo .deps/libtl_a-fine_container.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-kron_prod.o -MD -MP -MF .deps/libtl_a-kron_prod.Tpo -c -o libtl_a-kron_prod.o `test -f 'kron_prod.cpp' || echo './'`kron_prod.cpp mv -f .deps/libtl_a-kron_prod.Tpo .deps/libtl_a-kron_prod.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-t_polynomial.o -MD -MP -MF .deps/libtl_a-t_polynomial.Tpo -c -o libtl_a-t_polynomial.o `test -f 't_polynomial.cpp' || echo './'`t_polynomial.cpp mv -f .deps/libtl_a-t_polynomial.Tpo .deps/libtl_a-t_polynomial.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-symmetry.o -MD -MP -MF .deps/libtl_a-symmetry.Tpo -c -o libtl_a-symmetry.o `test -f 'symmetry.cpp' || echo './'`symmetry.cpp mv -f .deps/libtl_a-symmetry.Tpo .deps/libtl_a-symmetry.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-stack_container.o -MD -MP -MF .deps/libtl_a-stack_container.Tpo -c -o libtl_a-stack_container.o `test -f 'stack_container.cpp' || echo './'`stack_container.cpp mv -f .deps/libtl_a-stack_container.Tpo .deps/libtl_a-stack_container.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-twod_matrix.o -MD -MP -MF .deps/libtl_a-twod_matrix.Tpo -c -o libtl_a-twod_matrix.o `test -f 'twod_matrix.cpp' || echo './'`twod_matrix.cpp mv -f .deps/libtl_a-twod_matrix.Tpo .deps/libtl_a-twod_matrix.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-sparse_tensor.o -MD -MP -MF .deps/libtl_a-sparse_tensor.Tpo -c -o libtl_a-sparse_tensor.o `test -f 'sparse_tensor.cpp' || echo './'`sparse_tensor.cpp mv -f .deps/libtl_a-sparse_tensor.Tpo .deps/libtl_a-sparse_tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-sthread.o -MD -MP -MF .deps/libtl_a-sthread.Tpo -c -o libtl_a-sthread.o `test -f 'sthread.cpp' || echo './'`sthread.cpp mv -f .deps/libtl_a-sthread.Tpo .deps/libtl_a-sthread.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-gs_tensor.o -MD -MP -MF .deps/libtl_a-gs_tensor.Tpo -c -o libtl_a-gs_tensor.o `test -f 'gs_tensor.cpp' || echo './'`gs_tensor.cpp mv -f .deps/libtl_a-gs_tensor.Tpo .deps/libtl_a-gs_tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-pyramid_prod.o -MD -MP -MF .deps/libtl_a-pyramid_prod.Tpo -c -o libtl_a-pyramid_prod.o `test -f 'pyramid_prod.cpp' || echo './'`pyramid_prod.cpp mv -f .deps/libtl_a-pyramid_prod.Tpo .deps/libtl_a-pyramid_prod.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-fs_tensor.o -MD -MP -MF .deps/libtl_a-fs_tensor.Tpo -c -o libtl_a-fs_tensor.o `test -f 'fs_tensor.cpp' || echo './'`fs_tensor.cpp mv -f .deps/libtl_a-fs_tensor.Tpo .deps/libtl_a-fs_tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-permutation.o -MD -MP -MF .deps/libtl_a-permutation.Tpo -c -o libtl_a-permutation.o `test -f 'permutation.cpp' || echo './'`permutation.cpp mv -f .deps/libtl_a-permutation.Tpo .deps/libtl_a-permutation.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-rfs_tensor.o -MD -MP -MF .deps/libtl_a-rfs_tensor.Tpo -c -o libtl_a-rfs_tensor.o `test -f 'rfs_tensor.cpp' || echo './'`rfs_tensor.cpp mv -f .deps/libtl_a-rfs_tensor.Tpo .deps/libtl_a-rfs_tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-t_container.o -MD -MP -MF .deps/libtl_a-t_container.Tpo -c -o libtl_a-t_container.o `test -f 't_container.cpp' || echo './'`t_container.cpp mv -f .deps/libtl_a-t_container.Tpo .deps/libtl_a-t_container.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libtl_a-tl_static.o -MD -MP -MF .deps/libtl_a-tl_static.Tpo -c -o libtl_a-tl_static.o `test -f 'tl_static.cpp' || echo './'`tl_static.cpp mv -f .deps/libtl_a-tl_static.Tpo .deps/libtl_a-tl_static.Po rm -f libtl.a /usr/local/bin/ar cru libtl.a libtl_a-normal_moments.o libtl_a-int_sequence.o libtl_a-tensor.o libtl_a-ps_tensor.o libtl_a-pyramid_prod2.o libtl_a-equivalence.o libtl_a-fine_container.o libtl_a-kron_prod.o libtl_a-t_polynomial.o libtl_a-symmetry.o libtl_a-stack_container.o libtl_a-twod_matrix.o libtl_a-sparse_tensor.o libtl_a-sthread.o libtl_a-gs_tensor.o libtl_a-pyramid_prod.o libtl_a-fs_tensor.o libtl_a-permutation.o libtl_a-rfs_tensor.o libtl_a-t_container.o libtl_a-tl_static.o /usr/local/bin/ranlib libtl.a gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/cc' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/cc' Making all in testing gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/testing' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/testing' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl' gmake[3]: Nothing to be done for `all-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl' Making all in doc gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/doc' gmake[2]: Nothing to be done for `all'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/doc' Making all in utils/cc gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/utils/cc' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT memory_file.o -MD -MP -MF .deps/memory_file.Tpo -c -o memory_file.o memory_file.cpp mv -f .deps/memory_file.Tpo .deps/memory_file.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT pascal_triangle.o -MD -MP -MF .deps/pascal_triangle.Tpo -c -o pascal_triangle.o pascal_triangle.cpp mv -f .deps/pascal_triangle.Tpo .deps/pascal_triangle.Po rm -f libutils.a /usr/local/bin/ar cru libutils.a memory_file.o pascal_triangle.o /usr/local/bin/ranlib libutils.a gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/utils/cc' Making all in integ gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ' Making all in cc gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/cc' gmake all-am gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/cc' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -I../../tl/cc -I../../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libinteg_a-product.o -MD -MP -MF .deps/libinteg_a-product.Tpo -c -o libinteg_a-product.o `test -f 'product.cpp' || echo './'`product.cpp mv -f .deps/libinteg_a-product.Tpo .deps/libinteg_a-product.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -I../../tl/cc -I../../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libinteg_a-quadrature.o -MD -MP -MF .deps/libinteg_a-quadrature.Tpo -c -o libinteg_a-quadrature.o `test -f 'quadrature.cpp' || echo './'`quadrature.cpp mv -f .deps/libinteg_a-quadrature.Tpo .deps/libinteg_a-quadrature.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -I../../tl/cc -I../../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libinteg_a-quasi_mcarlo.o -MD -MP -MF .deps/libinteg_a-quasi_mcarlo.Tpo -c -o libinteg_a-quasi_mcarlo.o `test -f 'quasi_mcarlo.cpp' || echo './'`quasi_mcarlo.cpp mv -f .deps/libinteg_a-quasi_mcarlo.Tpo .deps/libinteg_a-quasi_mcarlo.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -I../../tl/cc -I../../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libinteg_a-smolyak.o -MD -MP -MF .deps/libinteg_a-smolyak.Tpo -c -o libinteg_a-smolyak.o `test -f 'smolyak.cpp' || echo './'`smolyak.cpp mv -f .deps/libinteg_a-smolyak.Tpo .deps/libinteg_a-smolyak.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../../sylv/cc -I../../tl/cc -I../../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libinteg_a-vector_function.o -MD -MP -MF .deps/libinteg_a-vector_function.Tpo -c -o libinteg_a-vector_function.o `test -f 'vector_function.cpp' || echo './'`vector_function.cpp mv -f .deps/libinteg_a-vector_function.Tpo .deps/libinteg_a-vector_function.Po rm -f libinteg.a /usr/local/bin/ar cru libinteg.a libinteg_a-product.o libinteg_a-quadrature.o libinteg_a-quasi_mcarlo.o libinteg_a-smolyak.o libinteg_a-vector_function.o /usr/local/bin/ranlib libinteg.a gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/cc' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/cc' Making all in src gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/src' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../.. -I../../sylv/cc -I../../integ/cc -I../../tl/cc -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT quadrature_points-quadrature-points.o -MD -MP -MF .deps/quadrature_points-quadrature-points.Tpo -c -o quadrature_points-quadrature-points.o `test -f 'quadrature-points.cpp' || echo './'`quadrature-points.cpp mv -f .deps/quadrature_points-quadrature-points.Tpo .deps/quadrature_points-quadrature-points.Po g++45 -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -o quadrature-points quadrature_points-quadrature-points.o ../cc/libinteg.a ../../tl/cc/libtl.a ../../parser/cc/libparser.a ../../sylv/cc/libsylv.a ../../utils/cc/libutils.a -llapack -lblas -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/src' Making all in testing gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/testing' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/testing' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ' gmake[3]: Nothing to be done for `all-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ' Making all in kord gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/kord' ctangle -bhp journal.cweb dummy.ch journal.cpp gmake all-am gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/kord' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../integ/cc -I../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libkord_a-faa_di_bruno.o -MD -MP -MF .deps/libkord_a-faa_di_bruno.Tpo -c -o libkord_a-faa_di_bruno.o `test -f 'faa_di_bruno.cpp' || echo './'`faa_di_bruno.cpp mv -f .deps/libkord_a-faa_di_bruno.Tpo .deps/libkord_a-faa_di_bruno.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../integ/cc -I../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libkord_a-korder_stoch.o -MD -MP -MF .deps/libkord_a-korder_stoch.Tpo -c -o libkord_a-korder_stoch.o `test -f 'korder_stoch.cpp' || echo './'`korder_stoch.cpp mv -f .deps/libkord_a-korder_stoch.Tpo .deps/libkord_a-korder_stoch.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../integ/cc -I../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libkord_a-journal.o -MD -MP -MF .deps/libkord_a-journal.Tpo -c -o libkord_a-journal.o `test -f 'journal.cpp' || echo './'`journal.cpp ./journal.cweb: In static member function 'static long int SystemResources::availableMemory()': ./journal.cweb:79:12: warning: deprecated conversion from string constant to 'char*' ./journal.cweb: In member function 'void SystemResources::getRUS(double&, long int&, double&, double&, double&, long int&, long int&)': ./journal.cweb:100:12: warning: deprecated conversion from string constant to 'char*' mv -f .deps/libkord_a-journal.Tpo .deps/libkord_a-journal.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../integ/cc -I../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libkord_a-decision_rule.o -MD -MP -MF .deps/libkord_a-decision_rule.Tpo -c -o libkord_a-decision_rule.o `test -f 'decision_rule.cpp' || echo './'`decision_rule.cpp mv -f .deps/libkord_a-decision_rule.Tpo .deps/libkord_a-decision_rule.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../integ/cc -I../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libkord_a-dynamic_model.o -MD -MP -MF .deps/libkord_a-dynamic_model.Tpo -c -o libkord_a-dynamic_model.o `test -f 'dynamic_model.cpp' || echo './'`dynamic_model.cpp mv -f .deps/libkord_a-dynamic_model.Tpo .deps/libkord_a-dynamic_model.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../integ/cc -I../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libkord_a-random.o -MD -MP -MF .deps/libkord_a-random.Tpo -c -o libkord_a-random.o `test -f 'random.cpp' || echo './'`random.cpp mv -f .deps/libkord_a-random.Tpo .deps/libkord_a-random.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../integ/cc -I../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libkord_a-first_order.o -MD -MP -MF .deps/libkord_a-first_order.Tpo -c -o libkord_a-first_order.o `test -f 'first_order.cpp' || echo './'`first_order.cpp mv -f .deps/libkord_a-first_order.Tpo .deps/libkord_a-first_order.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../integ/cc -I../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libkord_a-normal_conjugate.o -MD -MP -MF .deps/libkord_a-normal_conjugate.Tpo -c -o libkord_a-normal_conjugate.o `test -f 'normal_conjugate.cpp' || echo './'`normal_conjugate.cpp mv -f .deps/libkord_a-normal_conjugate.Tpo .deps/libkord_a-normal_conjugate.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../integ/cc -I../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libkord_a-approximation.o -MD -MP -MF .deps/libkord_a-approximation.Tpo -c -o libkord_a-approximation.o `test -f 'approximation.cpp' || echo './'`approximation.cpp mv -f .deps/libkord_a-approximation.Tpo .deps/libkord_a-approximation.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../integ/cc -I../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libkord_a-global_check.o -MD -MP -MF .deps/libkord_a-global_check.Tpo -c -o libkord_a-global_check.o `test -f 'global_check.cpp' || echo './'`global_check.cpp mv -f .deps/libkord_a-global_check.Tpo .deps/libkord_a-global_check.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../integ/cc -I../../mex/sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT libkord_a-korder.o -MD -MP -MF .deps/libkord_a-korder.Tpo -c -o libkord_a-korder.o `test -f 'korder.cpp' || echo './'`korder.cpp mv -f .deps/libkord_a-korder.Tpo .deps/libkord_a-korder.Po rm -f libkord.a /usr/local/bin/ar cru libkord.a libkord_a-faa_di_bruno.o libkord_a-korder_stoch.o libkord_a-journal.o libkord_a-decision_rule.o libkord_a-dynamic_model.o libkord_a-random.o libkord_a-first_order.o libkord_a-normal_conjugate.o libkord_a-approximation.o libkord_a-global_check.o libkord_a-korder.o /usr/local/bin/ranlib libkord.a gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/kord' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/kord' Making all in src gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/src' gmake all-am gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/src' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../kord -I../integ/cc -I.. -I../../mex/sources -DDYNVERSION=\"4.2.1\" -I/usr/local/include -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare__-main.o -MD -MP -MF .deps/dynare__-main.Tpo -c -o dynare__-main.o `test -f 'main.cpp' || echo './'`main.cpp mv -f .deps/dynare__-main.Tpo .deps/dynare__-main.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../kord -I../integ/cc -I.. -I../../mex/sources -DDYNVERSION=\"4.2.1\" -I/usr/local/include -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare__-dynare3.o -MD -MP -MF .deps/dynare__-dynare3.Tpo -c -o dynare__-dynare3.o `test -f 'dynare3.cpp' || echo './'`dynare3.cpp mv -f .deps/dynare__-dynare3.Tpo .deps/dynare__-dynare3.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../kord -I../integ/cc -I.. -I../../mex/sources -DDYNVERSION=\"4.2.1\" -I/usr/local/include -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare__-planner_builder.o -MD -MP -MF .deps/dynare__-planner_builder.Tpo -c -o dynare__-planner_builder.o `test -f 'planner_builder.cpp' || echo './'`planner_builder.cpp mv -f .deps/dynare__-planner_builder.Tpo .deps/dynare__-planner_builder.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../kord -I../integ/cc -I.. -I../../mex/sources -DDYNVERSION=\"4.2.1\" -I/usr/local/include -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare__-dynare_params.o -MD -MP -MF .deps/dynare__-dynare_params.Tpo -c -o dynare__-dynare_params.o `test -f 'dynare_params.cpp' || echo './'`dynare_params.cpp mv -f .deps/dynare__-dynare_params.Tpo .deps/dynare__-dynare_params.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../kord -I../integ/cc -I.. -I../../mex/sources -DDYNVERSION=\"4.2.1\" -I/usr/local/include -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare__-dynare_atoms.o -MD -MP -MF .deps/dynare__-dynare_atoms.Tpo -c -o dynare__-dynare_atoms.o `test -f 'dynare_atoms.cpp' || echo './'`dynare_atoms.cpp mv -f .deps/dynare__-dynare_atoms.Tpo .deps/dynare__-dynare_atoms.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../kord -I../integ/cc -I.. -I../../mex/sources -DDYNVERSION=\"4.2.1\" -I/usr/local/include -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare__-dynare_model.o -MD -MP -MF .deps/dynare__-dynare_model.Tpo -c -o dynare__-dynare_model.o `test -f 'dynare_model.cpp' || echo './'`dynare_model.cpp mv -f .deps/dynare__-dynare_model.Tpo .deps/dynare__-dynare_model.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../kord -I../integ/cc -I.. -I../../mex/sources -DDYNVERSION=\"4.2.1\" -I/usr/local/include -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare__-forw_subst_builder.o -MD -MP -MF .deps/dynare__-forw_subst_builder.Tpo -c -o dynare__-forw_subst_builder.o `test -f 'forw_subst_builder.cpp' || echo './'`forw_subst_builder.cpp mv -f .deps/dynare__-forw_subst_builder.Tpo .deps/dynare__-forw_subst_builder.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../kord -I../integ/cc -I.. -I../../mex/sources -DDYNVERSION=\"4.2.1\" -I/usr/local/include -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare__-nlsolve.o -MD -MP -MF .deps/dynare__-nlsolve.Tpo -c -o dynare__-nlsolve.o `test -f 'nlsolve.cpp' || echo './'`nlsolve.cpp mv -f .deps/dynare__-nlsolve.Tpo .deps/dynare__-nlsolve.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../kord -I../integ/cc -I.. -I../../mex/sources -DDYNVERSION=\"4.2.1\" -I/usr/local/include -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare__-dynglob_ll.o -MD -MP -MF .deps/dynare__-dynglob_ll.Tpo -c -o dynare__-dynglob_ll.o `test -f 'dynglob_ll.cc' || echo './'`dynglob_ll.cc mv -f .deps/dynare__-dynglob_ll.Tpo .deps/dynare__-dynglob_ll.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_BOOST=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_BOOST_GRAPH_ADJACENCY_LIST_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_TRIM_HPP=1 -DHAVE_BOOST_ALGORITHM_STRING_SPLIT_HPP=1 -DHAVE_BOOST_LEXICAL_CAST_HPP=1 -DBOOST_NO_HASH=/\*\*/ -DHAVE_BLAS=1 -DHAVE_LAPACK=1 -DHAVE_PTHREAD=1 -I. -I../sylv/cc -I../tl/cc -I../kord -I../integ/cc -I.. -I../../mex/sources -DDYNVERSION=\"4.2.1\" -I/usr/local/include -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -MT dynare__-dynglob_tab.o -MD -MP -MF .deps/dynare__-dynglob_tab.Tpo -c -o dynare__-dynglob_tab.o `test -f 'dynglob_tab.cc' || echo './'`dynglob_tab.cc mv -f .deps/dynare__-dynglob_tab.Tpo .deps/dynare__-dynglob_tab.Po g++45 -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -L/usr/local/lib -o dynare++ dynare__-main.o dynare__-dynare3.o dynare__-planner_builder.o dynare__-dynare_params.o dynare__-dynare_atoms.o dynare__-dynare_model.o dynare__-forw_subst_builder.o dynare__-nlsolve.o dynare__-dynglob_ll.o dynare__-dynglob_tab.o ../kord/libkord.a ../integ/cc/libinteg.a ../tl/cc/libtl.a ../parser/cc/libparser.a ../utils/cc/libutils.a ../sylv/cc/libsylv.a -llapack -lblas -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/src' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/src' gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++' gmake[2]: Nothing to be done for `all-am'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++' Making all in mex/build/matlab gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/matlab' gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/matlab' gmake[2]: Nothing to be done for `all-am'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/matlab' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/matlab' Making all in mex/build/octave gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave' Making all in mjdgges gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/mjdgges' gcc45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT mjdgges.o -MD -MP -MF .deps/mjdgges.Tpo -c -o mjdgges.o `test -f '../../../sources/mjdgges/mjdgges.c' || echo './'`../../../sources/mjdgges/mjdgges.c mv -f .deps/mjdgges.Tpo .deps/mjdgges.Po gcc45 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -shared -Wl,-x -L/usr/local/lib/octave/3.4.2 -Wl,-rpath=/usr/local/lib/gcc45 -L/usr/local/lib -pthread -o mjdgges.mex mjdgges.o -loctinterp -loctave -lcruft -L/usr/local/lib -lblas -lfftw3 -lfftw3f -lm -L/usr/local/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm -lpthread .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in mjdgges.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/mjdgges/$p $p; \ done gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/mjdgges' Making all in kronecker gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/kronecker' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT sparse_hessian_times_B_kronecker_C.o -MD -MP -MF .deps/sparse_hessian_times_B_kronecker_C.Tpo -c -o sparse_hessian_times_B_kronecker_C.o `test -f '../../../sources/kronecker/sparse_hessian_times_B_kronecker_C.cc' || echo './'`../../../sources/kronecker/sparse_hessian_times_B_kronecker_C.cc mv -f .deps/sparse_hessian_times_B_kronecker_C.Tpo .deps/sparse_hessian_times_B_kronecker_C.Po g++45 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -shared -Wl,-x -L/usr/local/lib/octave/3.4.2 -Wl,-rpath=/usr/local/lib/gcc45 -L/usr/local/lib -pthread -o sparse_hessian_times_B_kronecker_C.mex sparse_hessian_times_B_kronecker_C.o -loctinterp -loctave -lcruft -L/usr/local/lib -lblas -lfftw3 -lfftw3f -lm -L/usr/local/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm -lpthread g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT A_times_B_kronecker_C.o -MD -MP -MF .deps/A_times_B_kronecker_C.Tpo -c -o A_times_B_kronecker_C.o `test -f '../../../sources/kronecker/A_times_B_kronecker_C.cc' || echo './'`../../../sources/kronecker/A_times_B_kronecker_C.cc mv -f .deps/A_times_B_kronecker_C.Tpo .deps/A_times_B_kronecker_C.Po g++45 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -shared -Wl,-x -L/usr/local/lib/octave/3.4.2 -Wl,-rpath=/usr/local/lib/gcc45 -L/usr/local/lib -pthread -o A_times_B_kronecker_C.mex A_times_B_kronecker_C.o -loctinterp -loctave -lcruft -L/usr/local/lib -lblas -lfftw3 -lfftw3f -lm -L/usr/local/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm -lpthread .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in sparse_hessian_times_B_kronecker_C.mex A_times_B_kronecker_C.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/kronecker/$p $p; \ done gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/kronecker' Making all in bytecode gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/bytecode' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../sources/bytecode -I../../../../preprocessor -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT bytecode-bytecode.o -MD -MP -MF .deps/bytecode-bytecode.Tpo -c -o bytecode-bytecode.o `test -f '../../../sources/bytecode/bytecode.cc' || echo './'`../../../sources/bytecode/bytecode.cc mv -f .deps/bytecode-bytecode.Tpo .deps/bytecode-bytecode.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../sources/bytecode -I../../../../preprocessor -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT bytecode-Interpreter.o -MD -MP -MF .deps/bytecode-Interpreter.Tpo -c -o bytecode-Interpreter.o `test -f '../../../sources/bytecode/Interpreter.cc' || echo './'`../../../sources/bytecode/Interpreter.cc mv -f .deps/bytecode-Interpreter.Tpo .deps/bytecode-Interpreter.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../sources/bytecode -I../../../../preprocessor -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT bytecode-Mem_Mngr.o -MD -MP -MF .deps/bytecode-Mem_Mngr.Tpo -c -o bytecode-Mem_Mngr.o `test -f '../../../sources/bytecode/Mem_Mngr.cc' || echo './'`../../../sources/bytecode/Mem_Mngr.cc mv -f .deps/bytecode-Mem_Mngr.Tpo .deps/bytecode-Mem_Mngr.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../sources/bytecode -I../../../../preprocessor -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT bytecode-SparseMatrix.o -MD -MP -MF .deps/bytecode-SparseMatrix.Tpo -c -o bytecode-SparseMatrix.o `test -f '../../../sources/bytecode/SparseMatrix.cc' || echo './'`../../../sources/bytecode/SparseMatrix.cc mv -f .deps/bytecode-SparseMatrix.Tpo .deps/bytecode-SparseMatrix.Po g++45 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -shared -Wl,-x -L/usr/local/lib/octave/3.4.2 -Wl,-rpath=/usr/local/lib/gcc45 -L/usr/local/lib -pthread -o bytecode.mex bytecode-bytecode.o bytecode-Interpreter.o bytecode-Mem_Mngr.o bytecode-SparseMatrix.o -loctinterp -loctave -lcruft -L/usr/local/lib -lblas -lfftw3 -lfftw3f -lm -L/usr/local/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm -lpthread .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in bytecode.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/bytecode/$p $p; \ done gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/bytecode' Making all in libdynare++ gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/libdynare++' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-faa_di_bruno.o -MD -MP -MF .deps/libdynare___a-faa_di_bruno.Tpo -c -o libdynare___a-faa_di_bruno.o `test -f '../../../../dynare++/kord/faa_di_bruno.cpp' || echo './'`../../../../dynare++/kord/faa_di_bruno.cpp mv -f .deps/libdynare___a-faa_di_bruno.Tpo .deps/libdynare___a-faa_di_bruno.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-korder_stoch.o -MD -MP -MF .deps/libdynare___a-korder_stoch.Tpo -c -o libdynare___a-korder_stoch.o `test -f '../../../../dynare++/kord/korder_stoch.cpp' || echo './'`../../../../dynare++/kord/korder_stoch.cpp mv -f .deps/libdynare___a-korder_stoch.Tpo .deps/libdynare___a-korder_stoch.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-journal.o -MD -MP -MF .deps/libdynare___a-journal.Tpo -c -o libdynare___a-journal.o `test -f '../../../../dynare++/kord/journal.cpp' || echo './'`../../../../dynare++/kord/journal.cpp ./journal.cweb: In static member function 'static long int SystemResources::availableMemory()': ./journal.cweb:79:12: warning: deprecated conversion from string constant to 'char*' ./journal.cweb: In member function 'void SystemResources::getRUS(double&, long int&, double&, double&, double&, long int&, long int&)': ./journal.cweb:100:12: warning: deprecated conversion from string constant to 'char*' mv -f .deps/libdynare___a-journal.Tpo .deps/libdynare___a-journal.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-decision_rule.o -MD -MP -MF .deps/libdynare___a-decision_rule.Tpo -c -o libdynare___a-decision_rule.o `test -f '../../../../dynare++/kord/decision_rule.cpp' || echo './'`../../../../dynare++/kord/decision_rule.cpp mv -f .deps/libdynare___a-decision_rule.Tpo .deps/libdynare___a-decision_rule.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-dynamic_model.o -MD -MP -MF .deps/libdynare___a-dynamic_model.Tpo -c -o libdynare___a-dynamic_model.o `test -f '../../../../dynare++/kord/dynamic_model.cpp' || echo './'`../../../../dynare++/kord/dynamic_model.cpp mv -f .deps/libdynare___a-dynamic_model.Tpo .deps/libdynare___a-dynamic_model.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-random.o -MD -MP -MF .deps/libdynare___a-random.Tpo -c -o libdynare___a-random.o `test -f '../../../../dynare++/kord/random.cpp' || echo './'`../../../../dynare++/kord/random.cpp mv -f .deps/libdynare___a-random.Tpo .deps/libdynare___a-random.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-first_order.o -MD -MP -MF .deps/libdynare___a-first_order.Tpo -c -o libdynare___a-first_order.o `test -f '../../../../dynare++/kord/first_order.cpp' || echo './'`../../../../dynare++/kord/first_order.cpp mv -f .deps/libdynare___a-first_order.Tpo .deps/libdynare___a-first_order.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-normal_conjugate.o -MD -MP -MF .deps/libdynare___a-normal_conjugate.Tpo -c -o libdynare___a-normal_conjugate.o `test -f '../../../../dynare++/kord/normal_conjugate.cpp' || echo './'`../../../../dynare++/kord/normal_conjugate.cpp mv -f .deps/libdynare___a-normal_conjugate.Tpo .deps/libdynare___a-normal_conjugate.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-approximation.o -MD -MP -MF .deps/libdynare___a-approximation.Tpo -c -o libdynare___a-approximation.o `test -f '../../../../dynare++/kord/approximation.cpp' || echo './'`../../../../dynare++/kord/approximation.cpp mv -f .deps/libdynare___a-approximation.Tpo .deps/libdynare___a-approximation.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-global_check.o -MD -MP -MF .deps/libdynare___a-global_check.Tpo -c -o libdynare___a-global_check.o `test -f '../../../../dynare++/kord/global_check.cpp' || echo './'`../../../../dynare++/kord/global_check.cpp mv -f .deps/libdynare___a-global_check.Tpo .deps/libdynare___a-global_check.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-korder.o -MD -MP -MF .deps/libdynare___a-korder.Tpo -c -o libdynare___a-korder.o `test -f '../../../../dynare++/kord/korder.cpp' || echo './'`../../../../dynare++/kord/korder.cpp mv -f .deps/libdynare___a-korder.Tpo .deps/libdynare___a-korder.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-normal_moments.o -MD -MP -MF .deps/libdynare___a-normal_moments.Tpo -c -o libdynare___a-normal_moments.o `test -f '../../../../dynare++/tl/cc/normal_moments.cpp' || echo './'`../../../../dynare++/tl/cc/normal_moments.cpp mv -f .deps/libdynare___a-normal_moments.Tpo .deps/libdynare___a-normal_moments.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-int_sequence.o -MD -MP -MF .deps/libdynare___a-int_sequence.Tpo -c -o libdynare___a-int_sequence.o `test -f '../../../../dynare++/tl/cc/int_sequence.cpp' || echo './'`../../../../dynare++/tl/cc/int_sequence.cpp mv -f .deps/libdynare___a-int_sequence.Tpo .deps/libdynare___a-int_sequence.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-tensor.o -MD -MP -MF .deps/libdynare___a-tensor.Tpo -c -o libdynare___a-tensor.o `test -f '../../../../dynare++/tl/cc/tensor.cpp' || echo './'`../../../../dynare++/tl/cc/tensor.cpp mv -f .deps/libdynare___a-tensor.Tpo .deps/libdynare___a-tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-ps_tensor.o -MD -MP -MF .deps/libdynare___a-ps_tensor.Tpo -c -o libdynare___a-ps_tensor.o `test -f '../../../../dynare++/tl/cc/ps_tensor.cpp' || echo './'`../../../../dynare++/tl/cc/ps_tensor.cpp mv -f .deps/libdynare___a-ps_tensor.Tpo .deps/libdynare___a-ps_tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-pyramid_prod2.o -MD -MP -MF .deps/libdynare___a-pyramid_prod2.Tpo -c -o libdynare___a-pyramid_prod2.o `test -f '../../../../dynare++/tl/cc/pyramid_prod2.cpp' || echo './'`../../../../dynare++/tl/cc/pyramid_prod2.cpp mv -f .deps/libdynare___a-pyramid_prod2.Tpo .deps/libdynare___a-pyramid_prod2.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-equivalence.o -MD -MP -MF .deps/libdynare___a-equivalence.Tpo -c -o libdynare___a-equivalence.o `test -f '../../../../dynare++/tl/cc/equivalence.cpp' || echo './'`../../../../dynare++/tl/cc/equivalence.cpp mv -f .deps/libdynare___a-equivalence.Tpo .deps/libdynare___a-equivalence.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-fine_container.o -MD -MP -MF .deps/libdynare___a-fine_container.Tpo -c -o libdynare___a-fine_container.o `test -f '../../../../dynare++/tl/cc/fine_container.cpp' || echo './'`../../../../dynare++/tl/cc/fine_container.cpp mv -f .deps/libdynare___a-fine_container.Tpo .deps/libdynare___a-fine_container.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-kron_prod.o -MD -MP -MF .deps/libdynare___a-kron_prod.Tpo -c -o libdynare___a-kron_prod.o `test -f '../../../../dynare++/tl/cc/kron_prod.cpp' || echo './'`../../../../dynare++/tl/cc/kron_prod.cpp mv -f .deps/libdynare___a-kron_prod.Tpo .deps/libdynare___a-kron_prod.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-t_polynomial.o -MD -MP -MF .deps/libdynare___a-t_polynomial.Tpo -c -o libdynare___a-t_polynomial.o `test -f '../../../../dynare++/tl/cc/t_polynomial.cpp' || echo './'`../../../../dynare++/tl/cc/t_polynomial.cpp mv -f .deps/libdynare___a-t_polynomial.Tpo .deps/libdynare___a-t_polynomial.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-symmetry.o -MD -MP -MF .deps/libdynare___a-symmetry.Tpo -c -o libdynare___a-symmetry.o `test -f '../../../../dynare++/tl/cc/symmetry.cpp' || echo './'`../../../../dynare++/tl/cc/symmetry.cpp mv -f .deps/libdynare___a-symmetry.Tpo .deps/libdynare___a-symmetry.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-stack_container.o -MD -MP -MF .deps/libdynare___a-stack_container.Tpo -c -o libdynare___a-stack_container.o `test -f '../../../../dynare++/tl/cc/stack_container.cpp' || echo './'`../../../../dynare++/tl/cc/stack_container.cpp mv -f .deps/libdynare___a-stack_container.Tpo .deps/libdynare___a-stack_container.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-twod_matrix.o -MD -MP -MF .deps/libdynare___a-twod_matrix.Tpo -c -o libdynare___a-twod_matrix.o `test -f '../../../../dynare++/tl/cc/twod_matrix.cpp' || echo './'`../../../../dynare++/tl/cc/twod_matrix.cpp mv -f .deps/libdynare___a-twod_matrix.Tpo .deps/libdynare___a-twod_matrix.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-sparse_tensor.o -MD -MP -MF .deps/libdynare___a-sparse_tensor.Tpo -c -o libdynare___a-sparse_tensor.o `test -f '../../../../dynare++/tl/cc/sparse_tensor.cpp' || echo './'`../../../../dynare++/tl/cc/sparse_tensor.cpp mv -f .deps/libdynare___a-sparse_tensor.Tpo .deps/libdynare___a-sparse_tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-sthread.o -MD -MP -MF .deps/libdynare___a-sthread.Tpo -c -o libdynare___a-sthread.o `test -f '../../../../dynare++/tl/cc/sthread.cpp' || echo './'`../../../../dynare++/tl/cc/sthread.cpp mv -f .deps/libdynare___a-sthread.Tpo .deps/libdynare___a-sthread.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-gs_tensor.o -MD -MP -MF .deps/libdynare___a-gs_tensor.Tpo -c -o libdynare___a-gs_tensor.o `test -f '../../../../dynare++/tl/cc/gs_tensor.cpp' || echo './'`../../../../dynare++/tl/cc/gs_tensor.cpp mv -f .deps/libdynare___a-gs_tensor.Tpo .deps/libdynare___a-gs_tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-pyramid_prod.o -MD -MP -MF .deps/libdynare___a-pyramid_prod.Tpo -c -o libdynare___a-pyramid_prod.o `test -f '../../../../dynare++/tl/cc/pyramid_prod.cpp' || echo './'`../../../../dynare++/tl/cc/pyramid_prod.cpp mv -f .deps/libdynare___a-pyramid_prod.Tpo .deps/libdynare___a-pyramid_prod.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-fs_tensor.o -MD -MP -MF .deps/libdynare___a-fs_tensor.Tpo -c -o libdynare___a-fs_tensor.o `test -f '../../../../dynare++/tl/cc/fs_tensor.cpp' || echo './'`../../../../dynare++/tl/cc/fs_tensor.cpp mv -f .deps/libdynare___a-fs_tensor.Tpo .deps/libdynare___a-fs_tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-permutation.o -MD -MP -MF .deps/libdynare___a-permutation.Tpo -c -o libdynare___a-permutation.o `test -f '../../../../dynare++/tl/cc/permutation.cpp' || echo './'`../../../../dynare++/tl/cc/permutation.cpp mv -f .deps/libdynare___a-permutation.Tpo .deps/libdynare___a-permutation.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-rfs_tensor.o -MD -MP -MF .deps/libdynare___a-rfs_tensor.Tpo -c -o libdynare___a-rfs_tensor.o `test -f '../../../../dynare++/tl/cc/rfs_tensor.cpp' || echo './'`../../../../dynare++/tl/cc/rfs_tensor.cpp mv -f .deps/libdynare___a-rfs_tensor.Tpo .deps/libdynare___a-rfs_tensor.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-t_container.o -MD -MP -MF .deps/libdynare___a-t_container.Tpo -c -o libdynare___a-t_container.o `test -f '../../../../dynare++/tl/cc/t_container.cpp' || echo './'`../../../../dynare++/tl/cc/t_container.cpp mv -f .deps/libdynare___a-t_container.Tpo .deps/libdynare___a-t_container.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-tl_static.o -MD -MP -MF .deps/libdynare___a-tl_static.Tpo -c -o libdynare___a-tl_static.o `test -f '../../../../dynare++/tl/cc/tl_static.cpp' || echo './'`../../../../dynare++/tl/cc/tl_static.cpp mv -f .deps/libdynare___a-tl_static.Tpo .deps/libdynare___a-tl_static.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-IterativeSylvester.o -MD -MP -MF .deps/libdynare___a-IterativeSylvester.Tpo -c -o libdynare___a-IterativeSylvester.o `test -f '../../../../dynare++/sylv/cc/IterativeSylvester.cpp' || echo './'`../../../../dynare++/sylv/cc/IterativeSylvester.cpp mv -f .deps/libdynare___a-IterativeSylvester.Tpo .deps/libdynare___a-IterativeSylvester.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-QuasiTriangular.o -MD -MP -MF .deps/libdynare___a-QuasiTriangular.Tpo -c -o libdynare___a-QuasiTriangular.o `test -f '../../../../dynare++/sylv/cc/QuasiTriangular.cpp' || echo './'`../../../../dynare++/sylv/cc/QuasiTriangular.cpp mv -f .deps/libdynare___a-QuasiTriangular.Tpo .deps/libdynare___a-QuasiTriangular.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-QuasiTriangularZero.o -MD -MP -MF .deps/libdynare___a-QuasiTriangularZero.Tpo -c -o libdynare___a-QuasiTriangularZero.o `test -f '../../../../dynare++/sylv/cc/QuasiTriangularZero.cpp' || echo './'`../../../../dynare++/sylv/cc/QuasiTriangularZero.cpp mv -f .deps/libdynare___a-QuasiTriangularZero.Tpo .deps/libdynare___a-QuasiTriangularZero.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-GeneralMatrix.o -MD -MP -MF .deps/libdynare___a-GeneralMatrix.Tpo -c -o libdynare___a-GeneralMatrix.o `test -f '../../../../dynare++/sylv/cc/GeneralMatrix.cpp' || echo './'`../../../../dynare++/sylv/cc/GeneralMatrix.cpp mv -f .deps/libdynare___a-GeneralMatrix.Tpo .deps/libdynare___a-GeneralMatrix.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-GeneralSylvester.o -MD -MP -MF .deps/libdynare___a-GeneralSylvester.Tpo -c -o libdynare___a-GeneralSylvester.o `test -f '../../../../dynare++/sylv/cc/GeneralSylvester.cpp' || echo './'`../../../../dynare++/sylv/cc/GeneralSylvester.cpp mv -f .deps/libdynare___a-GeneralSylvester.Tpo .deps/libdynare___a-GeneralSylvester.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-SimilarityDecomp.o -MD -MP -MF .deps/libdynare___a-SimilarityDecomp.Tpo -c -o libdynare___a-SimilarityDecomp.o `test -f '../../../../dynare++/sylv/cc/SimilarityDecomp.cpp' || echo './'`../../../../dynare++/sylv/cc/SimilarityDecomp.cpp mv -f .deps/libdynare___a-SimilarityDecomp.Tpo .deps/libdynare___a-SimilarityDecomp.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-SylvException.o -MD -MP -MF .deps/libdynare___a-SylvException.Tpo -c -o libdynare___a-SylvException.o `test -f '../../../../dynare++/sylv/cc/SylvException.cpp' || echo './'`../../../../dynare++/sylv/cc/SylvException.cpp mv -f .deps/libdynare___a-SylvException.Tpo .deps/libdynare___a-SylvException.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-SchurDecompEig.o -MD -MP -MF .deps/libdynare___a-SchurDecompEig.Tpo -c -o libdynare___a-SchurDecompEig.o `test -f '../../../../dynare++/sylv/cc/SchurDecompEig.cpp' || echo './'`../../../../dynare++/sylv/cc/SchurDecompEig.cpp mv -f .deps/libdynare___a-SchurDecompEig.Tpo .deps/libdynare___a-SchurDecompEig.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-Vector.o -MD -MP -MF .deps/libdynare___a-Vector.Tpo -c -o libdynare___a-Vector.o `test -f '../../../../dynare++/sylv/cc/Vector.cpp' || echo './'`../../../../dynare++/sylv/cc/Vector.cpp mv -f .deps/libdynare___a-Vector.Tpo .deps/libdynare___a-Vector.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-TriangularSylvester.o -MD -MP -MF .deps/libdynare___a-TriangularSylvester.Tpo -c -o libdynare___a-TriangularSylvester.o `test -f '../../../../dynare++/sylv/cc/TriangularSylvester.cpp' || echo './'`../../../../dynare++/sylv/cc/TriangularSylvester.cpp mv -f .deps/libdynare___a-TriangularSylvester.Tpo .deps/libdynare___a-TriangularSylvester.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-SylvParams.o -MD -MP -MF .deps/libdynare___a-SylvParams.Tpo -c -o libdynare___a-SylvParams.o `test -f '../../../../dynare++/sylv/cc/SylvParams.cpp' || echo './'`../../../../dynare++/sylv/cc/SylvParams.cpp mv -f .deps/libdynare___a-SylvParams.Tpo .deps/libdynare___a-SylvParams.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-BlockDiagonal.o -MD -MP -MF .deps/libdynare___a-BlockDiagonal.Tpo -c -o libdynare___a-BlockDiagonal.o `test -f '../../../../dynare++/sylv/cc/BlockDiagonal.cpp' || echo './'`../../../../dynare++/sylv/cc/BlockDiagonal.cpp mv -f .deps/libdynare___a-BlockDiagonal.Tpo .deps/libdynare___a-BlockDiagonal.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-KronVector.o -MD -MP -MF .deps/libdynare___a-KronVector.Tpo -c -o libdynare___a-KronVector.o `test -f '../../../../dynare++/sylv/cc/KronVector.cpp' || echo './'`../../../../dynare++/sylv/cc/KronVector.cpp mv -f .deps/libdynare___a-KronVector.Tpo .deps/libdynare___a-KronVector.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-SylvMemory.o -MD -MP -MF .deps/libdynare___a-SylvMemory.Tpo -c -o libdynare___a-SylvMemory.o `test -f '../../../../dynare++/sylv/cc/SylvMemory.cpp' || echo './'`../../../../dynare++/sylv/cc/SylvMemory.cpp mv -f .deps/libdynare___a-SylvMemory.Tpo .deps/libdynare___a-SylvMemory.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-SymSchurDecomp.o -MD -MP -MF .deps/libdynare___a-SymSchurDecomp.Tpo -c -o libdynare___a-SymSchurDecomp.o `test -f '../../../../dynare++/sylv/cc/SymSchurDecomp.cpp' || echo './'`../../../../dynare++/sylv/cc/SymSchurDecomp.cpp mv -f .deps/libdynare___a-SymSchurDecomp.Tpo .deps/libdynare___a-SymSchurDecomp.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-SylvMatrix.o -MD -MP -MF .deps/libdynare___a-SylvMatrix.Tpo -c -o libdynare___a-SylvMatrix.o `test -f '../../../../dynare++/sylv/cc/SylvMatrix.cpp' || echo './'`../../../../dynare++/sylv/cc/SylvMatrix.cpp mv -f .deps/libdynare___a-SylvMatrix.Tpo .deps/libdynare___a-SylvMatrix.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-SchurDecomp.o -MD -MP -MF .deps/libdynare___a-SchurDecomp.Tpo -c -o libdynare___a-SchurDecomp.o `test -f '../../../../dynare++/sylv/cc/SchurDecomp.cpp' || echo './'`../../../../dynare++/sylv/cc/SchurDecomp.cpp mv -f .deps/libdynare___a-SchurDecomp.Tpo .deps/libdynare___a-SchurDecomp.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-KronUtils.o -MD -MP -MF .deps/libdynare___a-KronUtils.Tpo -c -o libdynare___a-KronUtils.o `test -f '../../../../dynare++/sylv/cc/KronUtils.cpp' || echo './'`../../../../dynare++/sylv/cc/KronUtils.cpp mv -f .deps/libdynare___a-KronUtils.Tpo .deps/libdynare___a-KronUtils.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-product.o -MD -MP -MF .deps/libdynare___a-product.Tpo -c -o libdynare___a-product.o `test -f '../../../../dynare++/integ/cc/product.cpp' || echo './'`../../../../dynare++/integ/cc/product.cpp mv -f .deps/libdynare___a-product.Tpo .deps/libdynare___a-product.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-quadrature.o -MD -MP -MF .deps/libdynare___a-quadrature.Tpo -c -o libdynare___a-quadrature.o `test -f '../../../../dynare++/integ/cc/quadrature.cpp' || echo './'`../../../../dynare++/integ/cc/quadrature.cpp mv -f .deps/libdynare___a-quadrature.Tpo .deps/libdynare___a-quadrature.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-quasi_mcarlo.o -MD -MP -MF .deps/libdynare___a-quasi_mcarlo.Tpo -c -o libdynare___a-quasi_mcarlo.o `test -f '../../../../dynare++/integ/cc/quasi_mcarlo.cpp' || echo './'`../../../../dynare++/integ/cc/quasi_mcarlo.cpp mv -f .deps/libdynare___a-quasi_mcarlo.Tpo .deps/libdynare___a-quasi_mcarlo.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-smolyak.o -MD -MP -MF .deps/libdynare___a-smolyak.Tpo -c -o libdynare___a-smolyak.o `test -f '../../../../dynare++/integ/cc/smolyak.cpp' || echo './'`../../../../dynare++/integ/cc/smolyak.cpp mv -f .deps/libdynare___a-smolyak.Tpo .deps/libdynare___a-smolyak.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-vector_function.o -MD -MP -MF .deps/libdynare___a-vector_function.Tpo -c -o libdynare___a-vector_function.o `test -f '../../../../dynare++/integ/cc/vector_function.cpp' || echo './'`../../../../dynare++/integ/cc/vector_function.cpp mv -f .deps/libdynare___a-vector_function.Tpo .deps/libdynare___a-vector_function.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT libdynare___a-nlsolve.o -MD -MP -MF .deps/libdynare___a-nlsolve.Tpo -c -o libdynare___a-nlsolve.o `test -f '../../../../dynare++/src/nlsolve.cpp' || echo './'`../../../../dynare++/src/nlsolve.cpp mv -f .deps/libdynare___a-nlsolve.Tpo .deps/libdynare___a-nlsolve.Po rm -f libdynare++.a ar cru libdynare++.a libdynare___a-faa_di_bruno.o libdynare___a-korder_stoch.o libdynare___a-journal.o libdynare___a-decision_rule.o libdynare___a-dynamic_model.o libdynare___a-random.o libdynare___a-first_order.o libdynare___a-normal_conjugate.o libdynare___a-approximation.o libdynare___a-global_check.o libdynare___a-korder.o libdynare___a-normal_moments.o libdynare___a-int_sequence.o libdynare___a-tensor.o libdynare___a-ps_tensor.o libdynare___a-pyramid_prod2.o libdynare___a-equivalence.o libdynare___a-fine_container.o libdynare___a-kron_prod.o libdynare___a-t_polynomial.o libdynare___a-symmetry.o libdynare___a-stack_container.o libdynare___a-twod_matrix.o libdynare___a-sparse_tensor.o libdynare___a-sthread.o libdynare___a-gs_tensor.o libdynare___a-pyramid_prod.o libdynare___a-fs_tensor.o libdynare___a-permutation.o libdynare___a-rfs_tensor.o libdynare___a-t_container.o libdynare___a-tl_static.o libdynare___a-IterativeSylvester.o libdynare___a-QuasiTriangular.o libdynare___a-QuasiTriangularZero.o libdynare___a-GeneralMatrix.o libdynare___a-GeneralSylvester.o libdynare___a-SimilarityDecomp.o libdynare___a-SylvException.o libdynare___a-SchurDecompEig.o libdynare___a-Vector.o libdynare___a-TriangularSylvester.o libdynare___a-SylvParams.o libdynare___a-BlockDiagonal.o libdynare___a-KronVector.o libdynare___a-SylvMemory.o libdynare___a-SymSchurDecomp.o libdynare___a-SylvMatrix.o libdynare___a-SchurDecomp.o libdynare___a-KronUtils.o libdynare___a-product.o libdynare___a-quadrature.o libdynare___a-quasi_mcarlo.o libdynare___a-smolyak.o libdynare___a-vector_function.o libdynare___a-nlsolve.o /usr/local/bin/ranlib libdynare++.a .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in ; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/libdynare++/$p $p; \ done gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/libdynare++' Making all in gensylv gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/gensylv' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/sylv/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT gensylv-gensylv.o -MD -MP -MF .deps/gensylv-gensylv.Tpo -c -o gensylv-gensylv.o `test -f '../../../../dynare++/sylv/matlab/gensylv.cpp' || echo './'`../../../../dynare++/sylv/matlab/gensylv.cpp mv -f .deps/gensylv-gensylv.Tpo .deps/gensylv-gensylv.Po g++45 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -shared -Wl,-x -L/usr/local/lib/octave/3.4.2 -Wl,-rpath=/usr/local/lib/gcc45 -L/usr/local/lib -pthread -o gensylv.mex gensylv-gensylv.o ../libdynare++/libdynare++.a -loctinterp -loctave -lcruft -L/usr/local/lib -lblas -lfftw3 -lfftw3f -lm -L/usr/local/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm -lpthread .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in gensylv.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/gensylv/$p $p; \ done gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/gensylv' Making all in k_order_perturbation gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/k_order_perturbation' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT k_order_perturbation-k_order_perturbation.o -MD -MP -MF .deps/k_order_perturbation-k_order_perturbation.Tpo -c -o k_order_perturbation-k_order_perturbation.o `test -f '../../../sources/k_order_perturbation/k_order_perturbation.cc' || echo './'`../../../sources/k_order_perturbation/k_order_perturbation.cc mv -f .deps/k_order_perturbation-k_order_perturbation.Tpo .deps/k_order_perturbation-k_order_perturbation.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT k_order_perturbation-k_ord_dynare.o -MD -MP -MF .deps/k_order_perturbation-k_ord_dynare.Tpo -c -o k_order_perturbation-k_ord_dynare.o `test -f '../../../sources/k_order_perturbation/k_ord_dynare.cc' || echo './'`../../../sources/k_order_perturbation/k_ord_dynare.cc mv -f .deps/k_order_perturbation-k_ord_dynare.Tpo .deps/k_order_perturbation-k_ord_dynare.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT k_order_perturbation-dynamic_dll.o -MD -MP -MF .deps/k_order_perturbation-dynamic_dll.Tpo -c -o k_order_perturbation-dynamic_dll.o `test -f '../../../sources/k_order_perturbation/dynamic_dll.cc' || echo './'`../../../sources/k_order_perturbation/dynamic_dll.cc mv -f .deps/k_order_perturbation-dynamic_dll.Tpo .deps/k_order_perturbation-dynamic_dll.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT k_order_perturbation-dynamic_abstract_class.o -MD -MP -MF .deps/k_order_perturbation-dynamic_abstract_class.Tpo -c -o k_order_perturbation-dynamic_abstract_class.o `test -f '../../../sources/k_order_perturbation/dynamic_abstract_class.cc' || echo './'`../../../sources/k_order_perturbation/dynamic_abstract_class.cc mv -f .deps/k_order_perturbation-dynamic_abstract_class.Tpo .deps/k_order_perturbation-dynamic_abstract_class.Po g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/src -I../../../../dynare++/kord -I../../../../dynare++/tl/cc -I../../../../dynare++/utils/cc -I../../../../dynare++/sylv/cc -I../../../../dynare++/integ/cc -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT k_order_perturbation-dynamic_m.o -MD -MP -MF .deps/k_order_perturbation-dynamic_m.Tpo -c -o k_order_perturbation-dynamic_m.o `test -f '../../../sources/k_order_perturbation/dynamic_m.cc' || echo './'`../../../sources/k_order_perturbation/dynamic_m.cc mv -f .deps/k_order_perturbation-dynamic_m.Tpo .deps/k_order_perturbation-dynamic_m.Po g++45 -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -shared -Wl,-x -L/usr/local/lib/octave/3.4.2 -Wl,-rpath=/usr/local/lib/gcc45 -L/usr/local/lib -pthread -o k_order_perturbation.mex k_order_perturbation-k_order_perturbation.o k_order_perturbation-k_ord_dynare.o k_order_perturbation-dynamic_dll.o k_order_perturbation-dynamic_abstract_class.o k_order_perturbation-dynamic_m.o ../libdynare++/libdynare++.a -loctinterp -loctave -lcruft -L/usr/local/lib -lblas -lfftw3 -lfftw3f -lm -L/usr/local/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm -lpthread .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in k_order_perturbation.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/k_order_perturbation/$p $p; \ done gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/k_order_perturbation' Making all in dynare_simul_ gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/dynare_simul_' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I../../../../dynare++/sylv/cc -I../../../../dynare++/tl/cc -I../../../../dynare++/kord -I../../../sources -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT dynare_simul_-dynare_simul.o -MD -MP -MF .deps/dynare_simul_-dynare_simul.Tpo -c -o dynare_simul_-dynare_simul.o `test -f '../../../../dynare++/extern/matlab/dynare_simul.cpp' || echo './'`../../../../dynare++/extern/matlab/dynare_simul.cpp mv -f .deps/dynare_simul_-dynare_simul.Tpo .deps/dynare_simul_-dynare_simul.Po g++45 -D_THREAD_SAFE -pthread -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -shared -Wl,-x -L/usr/local/lib/octave/3.4.2 -Wl,-rpath=/usr/local/lib/gcc45 -L/usr/local/lib -pthread -o dynare_simul_.mex dynare_simul_-dynare_simul.o ../libdynare++/libdynare++.a -loctinterp -loctave -lcruft -L/usr/local/lib -lblas -lfftw3 -lfftw3f -lm -L/usr/local/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm -lpthread .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in dynare_simul_.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/dynare_simul_/$p $p; \ done gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/dynare_simul_' Making all in qzcomplex gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/qzcomplex' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT qzcomplex.o -MD -MP -MF .deps/qzcomplex.Tpo -c -o qzcomplex.o `test -f '../../../sources/qzcomplex/qzcomplex.cc' || echo './'`../../../sources/qzcomplex/qzcomplex.cc In file included from /usr/local/include/octave-3.4.2/octave/../octave/oct.h:31:0, from ../../../sources/qzcomplex/qzcomplex.cc:27: /usr/local/include/octave-3.4.2/octave/../octave/config.h:2179:0: warning: "PACKAGE" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2182:0: warning: "PACKAGE_BUGREPORT" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2185:0: warning: "PACKAGE_NAME" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2188:0: warning: "PACKAGE_STRING" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2191:0: warning: "PACKAGE_TARNAME" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2194:0: warning: "PACKAGE_URL" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2197:0: warning: "PACKAGE_VERSION" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2331:0: warning: "VERSION" redefined <command-line>:0:0: note: this is the location of the previous definition mv -f .deps/qzcomplex.Tpo .deps/qzcomplex.Po g++45 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -shared -Wl,-x -L/usr/local/lib/octave/3.4.2 -Wl,-rpath=/usr/local/lib/gcc45 -L/usr/local/lib -pthread -o qzcomplex.oct qzcomplex.o -loctinterp -loctave -lcruft -L/usr/local/lib -lblas -lfftw3 -lfftw3f -lm -L/usr/local/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm -lpthread .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in qzcomplex.oct; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/qzcomplex/$p $p; \ done gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/qzcomplex' Making all in ordschur gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/ordschur' g++45 -DPACKAGE_NAME=\"dynare\" -DPACKAGE_TARNAME=\"dynare\" -DPACKAGE_VERSION=\"4.2.1\" -DPACKAGE_STRING=\"dynare\ 4.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"dynare\" -DVERSION=\"4.2.1\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DOCTAVE_MEX_FILE -I. -I/usr/local/include/octave-3.4.2/octave/.. -I/usr/local/include/octave-3.4.2/octave -I/usr/local/include -I../../../sources -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -MT ordschur.o -MD -MP -MF .deps/ordschur.Tpo -c -o ordschur.o `test -f '../../../sources/ordschur/ordschur.cc' || echo './'`../../../sources/ordschur/ordschur.cc In file included from /usr/local/include/octave-3.4.2/octave/../octave/oct.h:31:0, from ../../../sources/ordschur/ordschur.cc:29: /usr/local/include/octave-3.4.2/octave/../octave/config.h:2179:0: warning: "PACKAGE" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2182:0: warning: "PACKAGE_BUGREPORT" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2185:0: warning: "PACKAGE_NAME" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2188:0: warning: "PACKAGE_STRING" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2191:0: warning: "PACKAGE_TARNAME" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2194:0: warning: "PACKAGE_URL" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2197:0: warning: "PACKAGE_VERSION" redefined <command-line>:0:0: note: this is the location of the previous definition /usr/local/include/octave-3.4.2/octave/../octave/config.h:2331:0: warning: "VERSION" redefined <command-line>:0:0: note: this is the location of the previous definition mv -f .deps/ordschur.Tpo .deps/ordschur.Po g++45 -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc45 -fno-strict-aliasing -Wall -Wno-parentheses -fPIC -shared -Wl,-x -L/usr/local/lib/octave/3.4.2 -Wl,-rpath=/usr/local/lib/gcc45 -L/usr/local/lib -pthread -o ordschur.oct ordschur.o -loctinterp -loctave -lcruft -L/usr/local/lib -lblas -lfftw3 -lfftw3f -lm -L/usr/local/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3 -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../../../../i386-portbld-freebsd9.0/lib -L/usr/local/lib/gcc45/gcc/i386-portbld-freebsd9.0/4.5.3/../../.. -lgfortran -lm -lpthread .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in ordschur.oct; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/ordschur/$p $p; \ done gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/ordschur' gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave' gmake[2]: Nothing to be done for `all-am'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave' gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1' gmake[1]: Nothing to be done for `all-am'. gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1' ================================================================ ====================<phase 5: make test>==================== make: don't know how to make regression-test(continuing) 1 error ================================================================ ====================<phase 6: make install>==================== add_pkg gmp-5.0.2.tbz mpfr-3.0.1.tbz mpc-0.9.tbz libiconv-1.13.1_1.tbz binutils-2.21.1.tbz gcc-4.5.3.20110414.tbz adding dependencies pkg_add gmp-5.0.2.tbz skipping gmp-5.0.2, already added pkg_add mpfr-3.0.1.tbz skipping mpfr-3.0.1, already added pkg_add mpc-0.9.tbz skipping mpc-0.9, already added pkg_add libiconv-1.13.1_1.tbz skipping libiconv-1.13.1_1, already added pkg_add binutils-2.21.1.tbz skipping binutils-2.21.1, already added pkg_add gcc-4.5.3.20110414.tbz skipping gcc-4.5.3.20110414, already added ===> Installing for dynare-4.2.1 ===> dynare-4.2.1 depends on executable: gcc45 - found ===> Generating temporary packing list ===> Checking if math/dynare already installed Making install in preprocessor gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' gmake install-recursive gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' Making install in macro gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/macro' gmake install-am gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/macro' gmake[5]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/macro' gmake[5]: Nothing to be done for `install-exec-am'. gmake[5]: Nothing to be done for `install-data-am'. gmake[5]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/macro' gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/macro' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/macro' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' cd ../matlab && ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor/dynare_m dynare_m gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' gmake[4]: Nothing to be done for `install-exec-am'. test -z "/usr/local/lib/matlab" || .././install-sh -c -d "/usr/local/lib/matlab" install -s -o root -g wheel -m 555 dynare_m '/usr/local/lib/matlab' gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/preprocessor' Making install in doc gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc' Making install in preprocessor gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/preprocessor' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/preprocessor' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/preprocessor' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/preprocessor' Making install in macroprocessor gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/macroprocessor' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/macroprocessor' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/macroprocessor' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/macroprocessor' Making install in userguide gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/userguide' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/userguide' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/userguide' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/userguide' Making install in parallel gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/parallel' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/parallel' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/parallel' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/parallel' Making install in internals gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/internals' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/internals' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/internals' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc/internals' gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc' gmake[3]: Nothing to be done for `install-exec-am'. test -z "/usr/local/info" || .././install-sh -c -d "/usr/local/info" install -o root -g wheel -m 444 ./dynare.info '/usr/local/info' install-info --info-dir='/usr/local/info' '/usr/local/info/dynare.info' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/doc' Making install in tests gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/tests' gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/tests' gmake[2]: Nothing to be done for `install-exec-am'. gmake[2]: Nothing to be done for `install-data-am'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/tests' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/tests' Making install in mex/sources gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/sources' gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/sources' gmake[2]: Nothing to be done for `install-exec-am'. gmake[2]: Nothing to be done for `install-data-am'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/sources' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/sources' Making install in dynare++ gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++' Making install in sylv gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv' Making install in cc gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/cc' gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/cc' gmake[4]: Nothing to be done for `install-exec-am'. gmake[4]: Nothing to be done for `install-data-am'. gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/cc' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/cc' Making install in testing gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/testing' gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/testing' gmake[4]: Nothing to be done for `install-exec-am'. gmake[4]: Nothing to be done for `install-data-am'. gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/testing' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv/testing' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv' gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv' gmake[4]: Nothing to be done for `install-exec-am'. gmake[4]: Nothing to be done for `install-data-am'. gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/sylv' Making install in parser/cc gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/parser/cc' gmake install-am gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/parser/cc' gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/parser/cc' gmake[4]: Nothing to be done for `install-exec-am'. gmake[4]: Nothing to be done for `install-data-am'. gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/parser/cc' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/parser/cc' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/parser/cc' Making install in tl gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl' Making install in cc gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/cc' gmake install-am gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/cc' gmake[5]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/cc' gmake[5]: Nothing to be done for `install-exec-am'. gmake[5]: Nothing to be done for `install-data-am'. gmake[5]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/cc' gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/cc' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/cc' Making install in testing gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/testing' gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/testing' gmake[4]: Nothing to be done for `install-exec-am'. gmake[4]: Nothing to be done for `install-data-am'. gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/testing' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl/testing' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl' gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl' gmake[4]: Nothing to be done for `install-exec-am'. gmake[4]: Nothing to be done for `install-data-am'. gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/tl' Making install in doc gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/doc' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/doc' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/doc' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/doc' Making install in utils/cc gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/utils/cc' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/utils/cc' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/utils/cc' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/utils/cc' Making install in integ gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ' Making install in cc gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/cc' gmake install-am gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/cc' gmake[5]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/cc' gmake[5]: Nothing to be done for `install-exec-am'. gmake[5]: Nothing to be done for `install-data-am'. gmake[5]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/cc' gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/cc' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/cc' Making install in src gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/src' gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/src' gmake[4]: Nothing to be done for `install-exec-am'. gmake[4]: Nothing to be done for `install-data-am'. gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/src' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/src' Making install in testing gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/testing' gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/testing' gmake[4]: Nothing to be done for `install-exec-am'. gmake[4]: Nothing to be done for `install-data-am'. gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/testing' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ/testing' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ' gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ' gmake[4]: Nothing to be done for `install-exec-am'. gmake[4]: Nothing to be done for `install-data-am'. gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/integ' Making install in kord gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/kord' gmake install-am gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/kord' gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/kord' gmake[4]: Nothing to be done for `install-exec-am'. gmake[4]: Nothing to be done for `install-data-am'. gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/kord' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/kord' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/kord' Making install in src gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/src' gmake install-am gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/src' gmake[4]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/src' test -z "/usr/local/bin" || ../.././install-sh -c -d "/usr/local/bin" install -s -o root -g wheel -m 555 dynare++ '/usr/local/bin' gmake[4]: Nothing to be done for `install-data-am'. gmake[4]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/src' gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/src' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++/src' gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/dynare++' Making install in mex/build/matlab gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/matlab' gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/matlab' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/matlab' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/matlab' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/matlab' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/matlab' Making install in mex/build/octave gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave' Making install in mjdgges gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/mjdgges' .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in mjdgges.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/mjdgges/$p $p; \ done gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/mjdgges' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/mjdgges' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/mjdgges' Making install in kronecker gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/kronecker' .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in sparse_hessian_times_B_kronecker_C.mex A_times_B_kronecker_C.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/kronecker/$p $p; \ done gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/kronecker' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/kronecker' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/kronecker' Making install in bytecode gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/bytecode' .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in bytecode.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/bytecode/$p $p; \ done gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/bytecode' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/bytecode' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/bytecode' Making install in libdynare++ gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/libdynare++' .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in ; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/libdynare++/$p $p; \ done gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/libdynare++' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/libdynare++' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/libdynare++' Making install in gensylv gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/gensylv' .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in gensylv.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/gensylv/$p $p; \ done gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/gensylv' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/gensylv' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/gensylv' Making install in k_order_perturbation gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/k_order_perturbation' .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in k_order_perturbation.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/k_order_perturbation/$p $p; \ done gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/k_order_perturbation' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/k_order_perturbation' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/k_order_perturbation' Making install in dynare_simul_ gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/dynare_simul_' .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in dynare_simul_.mex; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/dynare_simul_/$p $p; \ done gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/dynare_simul_' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/dynare_simul_' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/dynare_simul_' Making install in qzcomplex gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/qzcomplex' .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in qzcomplex.oct; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/qzcomplex/$p $p; \ done gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/qzcomplex' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/qzcomplex' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/qzcomplex' Making install in ordschur gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/ordschur' .././install-sh -c -d ../../../octave cd ../../../octave && \ for p in ordschur.oct; do \ ln -s -f /work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/ordschur/$p $p; \ done gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/ordschur' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/ordschur' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave/ordschur' gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave' gmake[3]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave' gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1/mex/build/octave' gmake[1]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1' gmake[2]: Entering directory `/work/a/ports/math/dynare/work/dynare-4.2.1' gmake[2]: Nothing to be done for `install-exec-am'. gmake[2]: Nothing to be done for `install-data-am'. gmake[2]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1' gmake[1]: Leaving directory `/work/a/ports/math/dynare/work/dynare-4.2.1' ===> Registering installation for dynare-4.2.1 ================================================================ ====================<phase 7: make package>==================== ===> Building package for dynare-4.2.1 Deleting dynare-4.2.1 pkg_delete: unable to completely remove directory '/usr/local/include/X11' pkg_delete: unable to completely remove directory '/usr/local/lib/X11' pkg_delete: unable to completely remove directory '/usr/local/lib/X11/fonts' pkg_delete: unable to completely remove directory '/usr/local/lib/matlab' pkg_delete: unable to completely remove directory '/usr/local/share/locale/be' pkg_delete: unable to completely remove directory '/usr/local/share/locale/be/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/ca' pkg_delete: unable to completely remove directory '/usr/local/share/locale/ca/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/cs' pkg_delete: unable to completely remove directory '/usr/local/share/locale/cs/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/de_AT' pkg_delete: unable to completely remove directory '/usr/local/share/locale/de_AT/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/el' pkg_delete: unable to completely remove directory '/usr/local/share/locale/el/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/en_AU' pkg_delete: unable to completely remove directory '/usr/local/share/locale/fa_IR' pkg_delete: unable to completely remove directory '/usr/local/share/locale/fi' pkg_delete: unable to completely remove directory '/usr/local/share/locale/fi/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/fr_FR' pkg_delete: unable to completely remove directory '/usr/local/share/locale/gl' pkg_delete: unable to completely remove directory '/usr/local/share/locale/gl/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/ko' pkg_delete: unable to completely remove directory '/usr/local/share/locale/ko/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/li' pkg_delete: unable to completely remove directory '/usr/local/share/locale/li/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/ne' pkg_delete: unable to completely remove directory '/usr/local/share/locale/ne/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/nn' pkg_delete: unable to completely remove directory '/usr/local/share/locale/nn/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/no' pkg_delete: unable to completely remove directory '/usr/local/share/locale/pl' pkg_delete: unable to completely remove directory '/usr/local/share/locale/pl/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/pt' pkg_delete: unable to completely remove directory '/usr/local/share/locale/pt/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/ro' pkg_delete: unable to completely remove directory '/usr/local/share/locale/ro/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/sk' pkg_delete: unable to completely remove directory '/usr/local/share/locale/sk/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/sl' pkg_delete: unable to completely remove directory '/usr/local/share/locale/sl/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/sr' pkg_delete: unable to completely remove directory '/usr/local/share/locale/sr/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/tg' pkg_delete: unable to completely remove directory '/usr/local/share/locale/tk' pkg_delete: unable to completely remove directory '/usr/local/share/locale/tk/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/uk' pkg_delete: unable to completely remove directory '/usr/local/share/locale/uk/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/uz' pkg_delete: unable to completely remove directory '/usr/local/share/locale/uz/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/zh_CN' pkg_delete: unable to completely remove directory '/usr/local/share/locale/zh_CN/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/locale/zh_TW' pkg_delete: unable to completely remove directory '/usr/local/share/locale/zh_TW/LC_MESSAGES' pkg_delete: unable to completely remove directory '/usr/local/share/pixmaps' pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) ================================================================ === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 7042192 4 drwxr-xr-x 2 root wheel 512 Aug 26 05:40 usr/local/lib/matlab list of files present before this port was installed but missing after it was deinstalled) ./usr/local/etc/devd missing ./usr/local/etc/man.d missing ./usr/local/info/dir missing ./usr/local/lib/X11/app-defaults missing ./usr/local/lib/X11/fonts/local missing ./usr/local/share/locale/en_AU/LC_MESSAGES missing ./usr/local/share/locale/fa_IR/LC_MESSAGES missing ./usr/local/share/locale/fr_FR/LC_MESSAGES missing ./usr/local/share/locale/no/LC_MESSAGES missing ./usr/local/share/locale/tg/LC_MESSAGES missing Deleting octave-3.4.2_2 Deleting gmake-3.82 Deleting boost-libs-1.45.0_1 Deleting GraphicsMagick-1.1.15_3,1 Deleting arpack-96_8 Deleting curl-7.21.3_2 Deleting fftw3-3.2.2_1 Deleting fftw3-float-3.2.2_2 Deleting fltk-1.1.10_1 Deleting ftgl-2.1.3.r5,1 Deleting glpk-4.45 Deleting gnuplot-4.4.3 Deleting gsed-4.2.1_2 Deleting hdf5-1.8.7 Deleting icu-4.8.1 Deleting qhull-1.0_2 Deleting qrupdate-1.1.1 Deleting suitesparse-3.6.1_2 Deleting texinfo-4.13.20110529_1 Deleting wxgtk2-2.8.12 Deleting teTeX-base-3.0_22 Deleting plotutils-2.6_2,1 Deleting pdflib-7.0.4 Deleting libwmf-0.2.8.4_6 Deleting libfpx-1.2.0.12_1 Deleting lcms-1.19_1,1 Deleting lapack-3.3.0_1 Deleting ca_root_nss-3.12.9 Deleting blas-1.0_6 Deleting gd-2.0.35_7,1 Deleting ghostscript9-9.02_4 Deleting libwww-5.4.0_4 Deleting open-motif-2.3.3 Deleting t1lib-5.1.2_1,1 Deleting teTeX-texmf-3.0_8 pkg_delete: '/usr/local/share/texmf-dist/ls-R' fails original MD5 checksum - deleted anyway. Deleting texi2html-1.82,1 Deleting wxgtk2-common-2.8.12 Deleting xbitmaps-1.1.0 Deleting tex-texmflocal-1.9 Deleting libmspack-0.2_1 Deleting libXaw-1.0.8,1 Deleting libGLU-7.4.4 Deleting jbig2dec-0.11 Deleting gstreamer-plugins-0.10.35,3 Deleting gsfonts-8.11_5 Deleting gconf2-2.32.0_2 Deleting gcc-4.5.3.20110414 Deleting font-amsfonts-3.02_1 Deleting cups-image-1.4.6 Deleting ORBit2-2.14.19 Deleting binutils-2.21.1 Deleting dconf-0.5.1_3 Deleting gnomehier-2.3_12 pkg_delete: unable to completely remove directory '/usr/local/share/vala/vapi' pkg_delete: unable to completely remove directory '/usr/local/share/vala' pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) Deleting gstreamer-0.10.35 Deleting libGL-7.4.4 Deleting libXmu-1.1.0,1 Deleting libXp-1.0.0,1 Deleting libXpm-3.5.7 Deleting libXv-1.0.5,1 Deleting mpc-0.9 Deleting orc-0.4.14_1 Deleting polkit-0.99 Deleting videoproto-2.3.0 Deleting printproto-1.0.4 Deleting mpfr-3.0.1 Deleting libgee-0.6.1 Deleting libdrm-2.4.12_1 Deleting libXxf86vm-1.1.0 Deleting libIDL-0.8.14_1 Deleting gtk-2.24.5_1 pkg_delete: '/usr/local/etc/gtk-2.0/gtk.immodules' fails original MD5 checksum - deleted anyway. Deleting eggdbus-0.6_1 Deleting dri2proto-2.3 Deleting cups-client-1.4.6 Deleting dbus-glib-0.88 Deleting gtk-update-icon-cache-2.24.5 Deleting xf86vidmodeproto-2.3 Deleting shared-mime-info-0.90 Deleting pango-1.28.4 Deleting libXrandr-1.3.0 Deleting libXinerama-1.1,1 Deleting libXdamage-1.1.3 Deleting libXcursor-1.1.11 Deleting libXcomposite-0.4.3,1 Deleting hicolor-icon-theme-0.12 Deleting gnutls-2.12.7_2 Deleting gdk-pixbuf-2.23.5 Deleting dbus-1.4.6 ==> You should manually remove the "messagebus" user. Deleting atk-2.0.1 Deleting compositeproto-0.4.2 Deleting damageproto-1.2.1 Deleting gnome_subr-1.0 Deleting gobject-introspection-0.10.8 Deleting jasper-1.900.1_9 Deleting libXfixes-4.0.4 Deleting libXft-2.1.14 Deleting libXi-1.3.2,1 Deleting libXt-1.0.9 Deleting libgpg-error-1.10 Deleting libxml2-2.7.8_1 Deleting nettle-2.2 Deleting randrproto-1.3.2 Deleting tiff-4.0.0_2 Deleting xineramaproto-1.2 Deleting xorg-fonts-truetype-7.5.1 Deleting libffi-3.0.9 Deleting libXext-1.1.2,1 Deleting libSM-1.1.1_3,1 Deleting jpeg-8_3 Deleting jbigkit-1.6 Deleting inputproto-2.0.1 Deleting gmp-5.0.2 Deleting font-misc-meltho-1.0.3 Deleting font-misc-ethiopic-1.0.3 Deleting font-bh-ttf-1.0.3 Deleting fixesproto-4.1.2 Deleting encodings-1.0.4,1 Deleting cairo-1.10.2_2,1 Deleting bitstream-vera-1.10_5 Deleting font-util-1.2.0 Deleting fontconfig-2.8.0_1,1 Deleting gio-fam-backend-2.28.8 Deleting libICE-1.0.7,1 Deleting libXrender-0.9.5 Deleting mkfontdir-1.0.6 Deleting pixman-0.22.0 Deleting png-1.4.8 Deleting xcb-util-0.3.6_1 Deleting xextproto-7.1.1 Deleting renderproto-0.11 Deleting mkfontscale-1.0.8 Deleting libX11-1.3.6,1 Deleting gamin-0.1.10_4 Deleting expat-2.0.1_1 Deleting freetype2-2.4.6 Deleting glib-2.28.8 Deleting kbproto-1.0.5 Deleting libfontenc-1.1.0 Deleting libxcb-1.7 Deleting python27-2.7.2_1 Deleting perl-5.12.4_1 Removing stale symlinks from /usr/bin... Removing /usr/bin/perl Removing /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Cleaning up /etc/manpath.config... Done. Deleting pcre-8.12 Deleting libpthread-stubs-0.3_3 Deleting libXdmcp-1.0.3 Deleting libXau-1.0.6 Deleting gettext-0.18.1.1 Deleting libiconv-1.13.1_1 Deleting xproto-7.0.16 Deleting pkg-config-0.25_1 === Checking filesystem state after all packages deleted ================================================================ list of extra files and directories in / (not present on clean system but present after everything was deinstalled) 7042192 4 drwxr-xr-x 2 root wheel 512 Aug 26 05:40 usr/local/lib/matlab list of files present on clean system but missing after everything was deinstalled) ./usr/local/etc/devd missing ./usr/local/etc/man.d missing ./usr/local/lib/X11/app-defaults missing ./usr/local/lib/X11/fonts/local missing ./usr/local/share/locale/en_AU/LC_MESSAGES missing ./usr/local/share/locale/fa_IR/LC_MESSAGES missing ./usr/local/share/locale/fr_FR/LC_MESSAGES missing ./usr/local/share/locale/no/LC_MESSAGES missing ./usr/local/share/locale/tg/LC_MESSAGES missing ================================================================ build of /usr/ports/math/dynare ended at Fri Aug 26 05:45:10 UTC 2011
Hi Wen, Sorry for the mistake, this is my first port attempt. I realize I included several 'dirrm' directives that are wrong. I suppose I messed up with the plist tool. I recreated the pkg-plist package using this[1] instructions. I also checked manually with a fresh dynare installation on a linux machine. To be sure which files where installed. Does this new pkg-plist look good? [1] http://www.freebsd.org/doc/en/books/porters-handbook/plist-autoplist.html
wen 2011-09-27 06:35:23 UTC FreeBSD ports repository Modified files: math Makefile Added files: math/dynare Makefile distinfo pkg-descr pkg-plist math/dynare/files patch-journal.cweb patch-parser-exception.h Log: Dynare is a software platform for handling a wide class of economic models, in particular dynamic stochastic general equilibrium (DSGE) and overlapping generations (OLG) models. WWW: http://www.dynare.org PR: ports/160153 Submitted by: Fernando <fernando.apesteguia@gmail.com> Revision Changes Path 1.731 +1 -0 ports/math/Makefile 1.1 +48 -0 ports/math/dynare/Makefile (new) 1.1 +2 -0 ports/math/dynare/distinfo (new) 1.1 +53 -0 ports/math/dynare/files/patch-journal.cweb (new) 1.1 +10 -0 ports/math/dynare/files/patch-parser-exception.h (new) 1.1 +5 -0 ports/math/dynare/pkg-descr (new) 1.1 +4 -0 ports/math/dynare/pkg-plist (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed New port added, with minor changes. Thanks!