Solaris 10 SPARC: Can I build update9-compatible binaries on update 10

Hi,
I have a Sun 10 u10 with gcc v3.4.3. I am looking for a way to build my application so that it can be run on u9. My application is written in C/C++. Is there a way to tell cc and gcc to make the binary u9-compatible? Or is there a way to have a u9 tool chain on this machine to build for u9? Thanks in advance!

Try the Solaris zones forum:
Solaris Zones
More generally, go to forums.oracle.com to see all forums by listed by category.

Similar Messages

  • How can I install Oracle Database 10g for Solaries (SPARC) from the console

    Dear Forum Members,
    In my office, I have to installed Oracle Database 10g for Solaries (SPARC). But I have to do it without DISPLAY Monitor.Is it possible install it by remote login to this server using response file (silent mode) or something like that?
    If yes. Then How?
    If anyone have the exact solution, then I need your feedback. I shall wait for your reply.
    Thanks
    Aungshuman Paul

    There are 2 possible ways to accomplish this.
    First,
    Silent installation
    http://www.informit.com/articles/article.asp?p=174771&rl=1
    Second, (cut/paste from other site)
    How to install Oracle software remotely?
    Remote Software Installation Steps: (For Solaris only)
    If you want to install Oracle Software remotely, you should perform the following steps. These steps are applicable only if your source and target machine are running Unix.
    For example, you can install Oracle Software from your home from Washington, DC to a target source in California.
    1. Pick your source server or machine for remote installation.
    2. Check that your CD is in your source CD-ROM drive.
    3. On the target machine, find your target machine name with the output of the /usr/bin/hostname
    4. On the source machine, login as a user.
    5. On the source machine, enable client access: % /usr/openwin/bin/xhost + target-machine-name
    6. Become root user by typing: su (don’t use -)
    7. Check that Volume Manger is running. # ps –ef |grep vold (if you see an entry that contains /usr/sbin/vold, Volume Manager is running. Then skip to Step 10.
    8. If not then do the following: # mkdir –p /cdrom/your-cd-file-name
    9. # mount –F hsfs –r cdrom-device /cdrom/your-cd-file-name
    10. Add the following line to your /etc/dfs/dfstab file: # share –F nfs –o ro /cdrom/your-cd-file-name
    11. Verify whether your source machine is an NFS server: # ps –ef | grep nfsd
    12. If you see an entry that contains /use/lib/nfs/nfsd –a 16, then nfsd is running and skip to Step 16.
    13. If nfsd is running, then type: # /usr/sbin/shareall
    14. If nfsd is not running, then start nfsd by typing: # /etc/init.d/nfs.server start
    15. Verify whether your source machine is an NFS server again by typing: # ps –ef | grep nfsd
    16. Make sure your source machine is exporting your product directory by typing: # /usr/sbin/dfshares
    17. Now, log in to the target machine by type: # rlogin target-machine-name –l user (not root)
    18. Then log in as the root user by typing: # su
    19. Go to the source machine by typing: # cd /net/source-machine/cdrom/your-cd-file-name ,then Skip to 24.
    20. If you cannot change to that directory in Step 19 and you do not have an auto-mounter on your network, then create amount point by typing the following commands.
    21. # mkdir /remote_products
    22. # /usr/sbin/mount –F nfs –r source-machine:/cdrom/your-cd-file-name /remote_products
    23. # cd /remote_products
    24. Redirect the target machine display to source machine by typing: # DISPLAY=source-machine:0; export DISPLAY (if you use a Bourne or Korn shell).
    25. Start the Web Start Installer by typing: # ./installer (or whatever the installer name program is).

  • How to install Apache Web Server with PHP on Sun Solaris Sparc machine

    Hi,
    We are trying to install the Apache Web Server and the PHP package on a Sun Solaris Sparc machine running on SunOS 5.8. We are having compilation problems with the source code of both these packages.
    Does anybody know if there are ready solaris packages for Apache and PHP available from where we can download and install instead of source code compilation?
    Or any instructions / things to watch for when installing Apache with PHP (if anybody has tried installing Apache with PHP on Sun Solaris earlier) is most welcome.
    Thanks,
    Harish

    Apache should be bundled along with Solaris check in "/var/apache" in Solaris 8 and Solaris 9
    php is available at www.php.net
    I found an old document for installing PHP maybe this will help.
    Cheers
    -Dhruva
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++Installing PHP 3.x for Apache 1.x.x on Solaris
    Introduction
    This document describes how to install PHP for Apache on Solaris.
    You should have Apache installed before trying to install PHP.
    If you want to use PHP with MySQL then you must install MySQL first.
    Before we Begin
    1. These instructions assume that you have Apache installed according to instructions.
    Getting PHP
    1. You must be logged in as root to perform this installation.
    su root
    2. I save all my downloads in:
    /usr/local/dist
    If you don't already have one, you may need to create that directory now:
    mkdir /usr/local/dist
    3. You can get PHP 3.0.14 from here(www.php.net).
    cd /usr/local/dist
    ftp ftp.php.net
    cd pub/distributions
    bin
    get php-3.0.14.tar.gz
    bye
    Installing PHP
    1. We will install PHP in /usr/local/build, but use a tricky tar command
    to do it in on hit from the download directory:
    cd /usr/local/dist
    tar xvfz php-3.0.12.tar.gz -C ../build
    Compiling PHP
    1. First let's get where the action is:
    cd /usr/local/build/php-3.0.14
    2. You now have 3 options:
    * Simple PHP install without MySQL - goto step 3
    * Simple PHP install with MySQL - goto step 4
    * Custom PHP install - goto step 5
    3. Simple PHP install without MySQL. Next, jump to step 6.
    ./configure --with-apache=../apache_1.3.12
    4. Simple PHP install with MySQL. MySQL must be installed before you can configure PHP to use it. I recommend that MySQL should always be reachable with /usr/local/mysql. Even if you install it else where you
    should create a symbolic link from /usr/local/mysql. Otherwise the compiler can have problems finding the mysqlclient library. The command
    should look like this:
    ./configure with-mysql=/usr/local/mysql with-apache=../apache_1.3.12
    Next, jump to step 6.
    5. Custom PHP install. Take a look at the available configuration directives by using this command:
    ./configure --help
    6. Now we can make the PHP executable. This may take a while.
    make
    7. Now we install the PHP module with:
    make install
    Adding the PHP Module to Apache
    1. Now we have to setup Apache to include the PHP module:
    cd ../apache_1.3.12
    2. Re-configure Apache to use the PHP module. You should use your previous Apache configure command along with the PHP activate module directive.
    You can see your previous Apache configure command by doing:
    cat config.status
    You can configure Apache using the previous command with the added PHP module by doing:
    ./config.status --activate-module=src/modules/php3/libphp3.a
    If you used the simple Apache install from instructions the command will look like this:
    ./configure prefix=/usr/local/apache activate-module=src/modules/php3/libphp3.a
    3. Make and install Apache with PHP enabled:
    make
    4. We need to stop the server before installing the files:
    /usr/local/apache/bin/apachectl stop
    5. Now we can install the new binaries:
    make install
    6. Start apache again (now running the new php enabled version):
    /usr/local/apache/bin/apachectl start
    Setting Up PHP
    1. We have to tell Apache to pass certain file extensions to PHP. We do this in Apache's httpd.conf file.
    cd /usr/local/apache/conf
    2. Edit the httpd.conf file. If you do a search for php you will find a couple of commented out lines telling Apache to use the PHP module. You should uncomment them to look like this.
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .phps
    3. I prefer to use the extension .phtml, you can use whatever extension you like (even .html) by adding lines to httpd.conf like this:
    AddType application/x-httpd-php3 .phtml
    Check that it Works
    1. We have to restart Apache to make these changes take effect on the running server.
    cd /usr/local/apache/bin
    ./apachectl restart
    2. Apache should now be running with PHP enabled. The server version should include PHP/3.0b2.
    ./apachectl status
    Apache Server Status for dev.synop.com
    Server Version: Apache/1.3.9 (Unix) PHP/3.0.12
    Server Built: Oct 25 1999 00:37:07
    3. Now it is time to test PHP with a page. The simplest thing to do is create a page called test.php3. My file is here. This file contains the
    following text:
    <?php phpinfo(); ?>
    4. Point your browser at this file on the virtual host which you used:
    http://localhost/test.php3

  • Differences between solaris Intel and solaris Sparc

    Hi,
    I'm new to this solaris world. But I've been using other flavour of unix. I just wondering if somebody could explain to me the differences between Intel version and Sparc version, please? If you have any website that explain it all would be great.
    Thank you in advance.
    regards,
    zonex

    It's more of a question of what architecture you would run it on. But a few things software wise:
    SPARC has 64-bit OS support
    SPARC generally has more 3rd party software available
    SPARC is supported by Sun, Intel is being phased out
    Intel I percieve as faster than lower-end SPARC
    They are not binary compatible, so you can't run SPARC binaries on Intel and vice versa.

  • [SOLVED]Can't build dansguardian. Any alternative content filter?

    I can't build dansguardian in yaourt. Not sure what the problem is but here is the whole output of the build:
    ==> Starting build()...
    patching file src/downloadmanagers/fancy.cpp
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for g++... g++
    checking for C++ compiler default output file name... a.out
    checking whether the C++ compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of g++... gcc3
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking how to run the C preprocessor... gcc -E
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether ln -s works... yes
    checking whether make sets $(MAKE)... (cached) yes
    checking how to run the C++ preprocessor... g++ -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 arpa/inet.h usability... yes
    checking arpa/inet.h presence... yes
    checking for arpa/inet.h... yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking limits.h usability... yes
    checking limits.h presence... yes
    checking for limits.h... yes
    checking netdb.h usability... yes
    checking netdb.h presence... yes
    checking for netdb.h... yes
    checking netinet/in.h usability... yes
    checking netinet/in.h presence... yes
    checking for netinet/in.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking sys/socket.h usability... yes
    checking sys/socket.h presence... yes
    checking for sys/socket.h... yes
    checking sys/time.h usability... yes
    checking sys/time.h presence... yes
    checking for sys/time.h... yes
    checking syslog.h usability... yes
    checking syslog.h presence... yes
    checking for syslog.h... yes
    checking for unistd.h... (cached) yes
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking for sys/types.h... (cached) yes
    checking sys/un.h usability... yes
    checking sys/un.h presence... yes
    checking for sys/un.h... yes
    checking sys/poll.h usability... yes
    checking sys/poll.h presence... yes
    checking for sys/poll.h... yes
    checking sys/resource.h usability... yes
    checking sys/resource.h presence... yes
    checking for sys/resource.h... yes
    checking pwd.h usability... yes
    checking pwd.h presence... yes
    checking for pwd.h... yes
    checking grp.h usability... yes
    checking grp.h presence... yes
    checking for grp.h... yes
    checking byteswap.h usability... yes
    checking byteswap.h presence... yes
    checking for byteswap.h... yes
    checking whether byte ordering is bigendian... no
    checking if zlib should be statically linked... no
    checking for zlib... checking zlib.h usability... yes
    checking zlib.h presence... yes
    checking for zlib.h... yes
    checking for gzdopen in -lz... yes
    yes
    checking for pid_t... yes
    checking for size_t... yes
    checking for off_t... yes
    checking for uid_t in sys/types.h... yes
    checking vfork.h usability... no
    checking vfork.h presence... no
    checking for vfork.h... no
    checking for fork... yes
    checking for vfork... yes
    checking for working fork... yes
    checking for working vfork... (cached) yes
    checking for dup2... yes
    checking for gettimeofday... yes
    checking for memset... yes
    checking for select... yes
    checking for strerror... yes
    checking for strstr... yes
    checking for strtol... yes
    checking for setuid... yes
    checking for setgid... yes
    checking for umask... yes
    checking for seteuid... yes
    checking for setreuid... yes
    checking for setlocale... yes
    checking for library containing floor... none required
    checking for library containing gethostbyname... none required
    checking for library containing socket... none required
    checking for library containing inet_aton... none required
    checking for backside with both hands... no
    checking build os... checking build system type... x86_64-unknown-linux-gnu
    linux-gnu
    checking for debug option... no
    checking for proxy user... yes
    checking for proxy group... yes
    checking for piddir... no
    checking for logdir... no
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for PCRE support... yes
    checking for PCRE... yes
    checking for backtrace on segfault support... no
    checking for large file support... yes
    checking for original destination IP checking support... no
    checking for type collision with off_t... yes
    checking for libclamav support... no
    checking for clamd support... no
    checking for icap support... no
    checking for kavd support... no
    checking for command-line content scanner support... no
    checking for fancy download manager support... yes
    checking for trickle download manager support... no
    checking for NTLM support... no
    checking for email notification support... yes
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating data/Makefile
    config.status: creating data/languages/Makefile
    config.status: creating data/scripts/Makefile
    config.status: creating data/scripts/bsd-init
    config.status: creating data/scripts/dansguardian
    config.status: creating data/scripts/logrotation
    config.status: creating data/scripts/solaris-init
    config.status: creating data/scripts/systemv-init
    config.status: creating doc/Makefile
    config.status: creating configs/dansguardian.conf
    config.status: creating configs/dansguardianf1.conf
    config.status: creating configs/Makefile
    config.status: creating configs/lists/Makefile
    config.status: creating configs/lists/phraselists/Makefile
    config.status: creating configs/lists/blacklists/Makefile
    config.status: creating configs/lists/contentscanners/Makefile
    config.status: creating configs/lists/weightedphraselist
    config.status: creating configs/lists/exceptionphraselist
    config.status: creating configs/lists/bannedphraselist
    config.status: creating configs/lists/bannedurllist
    config.status: creating configs/lists/bannedsitelist
    config.status: creating configs/downloadmanagers/Makefile
    config.status: creating configs/downloadmanagers/default.conf
    config.status: creating configs/downloadmanagers/fancy.conf
    config.status: creating configs/downloadmanagers/trickle.conf
    config.status: creating configs/contentscanners/Makefile
    config.status: creating configs/contentscanners/clamav.conf
    config.status: creating configs/contentscanners/clamdscan.conf
    config.status: creating configs/contentscanners/icapscan.conf
    config.status: creating configs/contentscanners/kavav.conf
    config.status: creating configs/contentscanners/kavdscan.conf
    config.status: creating configs/contentscanners/commandlinescan.conf
    config.status: creating configs/authplugins/Makefile
    config.status: creating configs/authplugins/ip.conf
    config.status: creating configs/lists/authplugins/Makefile
    config.status: creating configs/lists/downloadmanagers/Makefile
    config.status: creating src/Makefile
    config.status: creating dgconfig.h
    config.status: executing depfiles commands
    make all-recursive
    make[1]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    Making all in doc
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    make[2]: Nothing to be done for `all'.
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    Making all in .
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    Making all in data
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making all in languages
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    Making all in .
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making all in scripts
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    Making all in .
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making all in configs
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs'
    Making all in lists
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists'
    Making all in phraselists
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/phraselists'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/phraselists'
    Making all in .
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists'
    Making all in blacklists
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/blacklists'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/blacklists'
    Making all in authplugins
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/authplugins'
    Making all in .
    make[5]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/authplugins'
    make[5]: Nothing to be done for `all-am'.
    make[5]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/authplugins'
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/authplugins'
    Making all in downloadmanagers
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/downloadmanagers'
    Making all in .
    make[5]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/downloadmanagers'
    make[5]: Nothing to be done for `all-am'.
    make[5]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/downloadmanagers'
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/downloadmanagers'
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists'
    Making all in downloadmanagers
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/downloadmanagers'
    Making all in .
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/downloadmanagers'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/downloadmanagers'
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/downloadmanagers'
    Making all in authplugins
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/authplugins'
    Making all in .
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/authplugins'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/authplugins'
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/authplugins'
    Making all in .
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs'
    Making all in src
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/src'
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-String.o -MD -MP -MF .deps/dansguardian-String.Tpo -c -o dansguardian-String.o `test -f 'String.cpp' || echo './'`String.cpp
    mv -f .deps/dansguardian-String.Tpo .deps/dansguardian-String.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-FDTunnel.o -MD -MP -MF .deps/dansguardian-FDTunnel.Tpo -c -o dansguardian-FDTunnel.o `test -f 'FDTunnel.cpp' || echo './'`FDTunnel.cpp
    mv -f .deps/dansguardian-FDTunnel.Tpo .deps/dansguardian-FDTunnel.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ConnectionHandler.o -MD -MP -MF .deps/dansguardian-ConnectionHandler.Tpo -c -o dansguardian-ConnectionHandler.o `test -f 'ConnectionHandler.cpp' || echo './'`ConnectionHandler.cpp
    mv -f .deps/dansguardian-ConnectionHandler.Tpo .deps/dansguardian-ConnectionHandler.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-DataBuffer.o -MD -MP -MF .deps/dansguardian-DataBuffer.Tpo -c -o dansguardian-DataBuffer.o `test -f 'DataBuffer.cpp' || echo './'`DataBuffer.cpp
    mv -f .deps/dansguardian-DataBuffer.Tpo .deps/dansguardian-DataBuffer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-HTTPHeader.o -MD -MP -MF .deps/dansguardian-HTTPHeader.Tpo -c -o dansguardian-HTTPHeader.o `test -f 'HTTPHeader.cpp' || echo './'`HTTPHeader.cpp
    mv -f .deps/dansguardian-HTTPHeader.Tpo .deps/dansguardian-HTTPHeader.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-NaughtyFilter.o -MD -MP -MF .deps/dansguardian-NaughtyFilter.Tpo -c -o dansguardian-NaughtyFilter.o `test -f 'NaughtyFilter.cpp' || echo './'`NaughtyFilter.cpp
    mv -f .deps/dansguardian-NaughtyFilter.Tpo .deps/dansguardian-NaughtyFilter.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-RegExp.o -MD -MP -MF .deps/dansguardian-RegExp.Tpo -c -o dansguardian-RegExp.o `test -f 'RegExp.cpp' || echo './'`RegExp.cpp
    mv -f .deps/dansguardian-RegExp.Tpo .deps/dansguardian-RegExp.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-FDFuncs.o -MD -MP -MF .deps/dansguardian-FDFuncs.Tpo -c -o dansguardian-FDFuncs.o `test -f 'FDFuncs.cpp' || echo './'`FDFuncs.cpp
    mv -f .deps/dansguardian-FDFuncs.Tpo .deps/dansguardian-FDFuncs.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-BaseSocket.o -MD -MP -MF .deps/dansguardian-BaseSocket.Tpo -c -o dansguardian-BaseSocket.o `test -f 'BaseSocket.cpp' || echo './'`BaseSocket.cpp
    mv -f .deps/dansguardian-BaseSocket.Tpo .deps/dansguardian-BaseSocket.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-Socket.o -MD -MP -MF .deps/dansguardian-Socket.Tpo -c -o dansguardian-Socket.o `test -f 'Socket.cpp' || echo './'`Socket.cpp
    mv -f .deps/dansguardian-Socket.Tpo .deps/dansguardian-Socket.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-FatController.o -MD -MP -MF .deps/dansguardian-FatController.Tpo -c -o dansguardian-FatController.o `test -f 'FatController.cpp' || echo './'`FatController.cpp
    FatController.cpp: In function ‘int ip_list_listener(std::string, bool)’:
    FatController.cpp:1588:65: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result]
    FatController.cpp: In function ‘bool daemonise()’:
    FatController.cpp:309:12: warning: ignoring return value of ‘int chdir(const char*)’, declared with attribute warn_unused_result [-Wunused-result]
    mv -f .deps/dansguardian-FatController.Tpo .deps/dansguardian-FatController.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-UDSocket.o -MD -MP -MF .deps/dansguardian-UDSocket.Tpo -c -o dansguardian-UDSocket.o `test -f 'UDSocket.cpp' || echo './'`UDSocket.cpp
    mv -f .deps/dansguardian-UDSocket.Tpo .deps/dansguardian-UDSocket.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-SysV.o -MD -MP -MF .deps/dansguardian-SysV.Tpo -c -o dansguardian-SysV.o `test -f 'SysV.cpp' || echo './'`SysV.cpp
    mv -f .deps/dansguardian-SysV.Tpo .deps/dansguardian-SysV.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ListContainer.o -MD -MP -MF .deps/dansguardian-ListContainer.Tpo -c -o dansguardian-ListContainer.o `test -f 'ListContainer.cpp' || echo './'`ListContainer.cpp
    mv -f .deps/dansguardian-ListContainer.Tpo .deps/dansguardian-ListContainer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-Auth.o -MD -MP -MF .deps/dansguardian-Auth.Tpo -c -o dansguardian-Auth.o `test -f 'Auth.cpp' || echo './'`Auth.cpp
    mv -f .deps/dansguardian-Auth.Tpo .deps/dansguardian-Auth.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-HTMLTemplate.o -MD -MP -MF .deps/dansguardian-HTMLTemplate.Tpo -c -o dansguardian-HTMLTemplate.o `test -f 'HTMLTemplate.cpp' || echo './'`HTMLTemplate.cpp
    mv -f .deps/dansguardian-HTMLTemplate.Tpo .deps/dansguardian-HTMLTemplate.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-LanguageContainer.o -MD -MP -MF .deps/dansguardian-LanguageContainer.Tpo -c -o dansguardian-LanguageContainer.o `test -f 'LanguageContainer.cpp' || echo './'`LanguageContainer.cpp
    mv -f .deps/dansguardian-LanguageContainer.Tpo .deps/dansguardian-LanguageContainer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-DynamicURLList.o -MD -MP -MF .deps/dansguardian-DynamicURLList.Tpo -c -o dansguardian-DynamicURLList.o `test -f 'DynamicURLList.cpp' || echo './'`DynamicURLList.cpp
    mv -f .deps/dansguardian-DynamicURLList.Tpo .deps/dansguardian-DynamicURLList.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-DynamicIPList.o -MD -MP -MF .deps/dansguardian-DynamicIPList.Tpo -c -o dansguardian-DynamicIPList.o `test -f 'DynamicIPList.cpp' || echo './'`DynamicIPList.cpp
    mv -f .deps/dansguardian-DynamicIPList.Tpo .deps/dansguardian-DynamicIPList.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ImageContainer.o -MD -MP -MF .deps/dansguardian-ImageContainer.Tpo -c -o dansguardian-ImageContainer.o `test -f 'ImageContainer.cpp' || echo './'`ImageContainer.cpp
    mv -f .deps/dansguardian-ImageContainer.Tpo .deps/dansguardian-ImageContainer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-IPList.o -MD -MP -MF .deps/dansguardian-IPList.Tpo -c -o dansguardian-IPList.o `test -f 'IPList.cpp' || echo './'`IPList.cpp
    mv -f .deps/dansguardian-IPList.Tpo .deps/dansguardian-IPList.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-OptionContainer.o -MD -MP -MF .deps/dansguardian-OptionContainer.Tpo -c -o dansguardian-OptionContainer.o `test -f 'OptionContainer.cpp' || echo './'`OptionContainer.cpp
    mv -f .deps/dansguardian-OptionContainer.Tpo .deps/dansguardian-OptionContainer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-FOptionContainer.o -MD -MP -MF .deps/dansguardian-FOptionContainer.Tpo -c -o dansguardian-FOptionContainer.o `test -f 'FOptionContainer.cpp' || echo './'`FOptionContainer.cpp
    mv -f .deps/dansguardian-FOptionContainer.Tpo .deps/dansguardian-FOptionContainer.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ListManager.o -MD -MP -MF .deps/dansguardian-ListManager.Tpo -c -o dansguardian-ListManager.o `test -f 'ListManager.cpp' || echo './'`ListManager.cpp
    mv -f .deps/dansguardian-ListManager.Tpo .deps/dansguardian-ListManager.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-md5.o -MD -MP -MF .deps/dansguardian-md5.Tpo -c -o dansguardian-md5.o `test -f 'md5.cpp' || echo './'`md5.cpp
    mv -f .deps/dansguardian-md5.Tpo .deps/dansguardian-md5.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-DownloadManager.o -MD -MP -MF .deps/dansguardian-DownloadManager.Tpo -c -o dansguardian-DownloadManager.o `test -f 'DownloadManager.cpp' || echo './'`DownloadManager.cpp
    mv -f .deps/dansguardian-DownloadManager.Tpo .deps/dansguardian-DownloadManager.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ConfigVar.o -MD -MP -MF .deps/dansguardian-ConfigVar.Tpo -c -o dansguardian-ConfigVar.o `test -f 'ConfigVar.cpp' || echo './'`ConfigVar.cpp
    mv -f .deps/dansguardian-ConfigVar.Tpo .deps/dansguardian-ConfigVar.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ContentScanner.o -MD -MP -MF .deps/dansguardian-ContentScanner.Tpo -c -o dansguardian-ContentScanner.o `test -f 'ContentScanner.cpp' || echo './'`ContentScanner.cpp
    mv -f .deps/dansguardian-ContentScanner.Tpo .deps/dansguardian-ContentScanner.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-SocketArray.o -MD -MP -MF .deps/dansguardian-SocketArray.Tpo -c -o dansguardian-SocketArray.o `test -f 'SocketArray.cpp' || echo './'`SocketArray.cpp
    mv -f .deps/dansguardian-SocketArray.Tpo .deps/dansguardian-SocketArray.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-dansguardian.o -MD -MP -MF .deps/dansguardian-dansguardian.Tpo -c -o dansguardian-dansguardian.o `test -f 'dansguardian.cpp' || echo './'`dansguardian.cpp
    mv -f .deps/dansguardian-dansguardian.Tpo .deps/dansguardian-dansguardian.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-default.o -MD -MP -MF .deps/dansguardian-default.Tpo -c -o dansguardian-default.o `test -f 'downloadmanagers/default.cpp' || echo './'`downloadmanagers/default.cpp
    mv -f .deps/dansguardian-default.Tpo .deps/dansguardian-default.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-fancy.o -MD -MP -MF .deps/dansguardian-fancy.Tpo -c -o dansguardian-fancy.o `test -f 'downloadmanagers/fancy.cpp' || echo './'`downloadmanagers/fancy.cpp
    mv -f .deps/dansguardian-fancy.Tpo .deps/dansguardian-fancy.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-proxy.o -MD -MP -MF .deps/dansguardian-proxy.Tpo -c -o dansguardian-proxy.o `test -f 'authplugins/proxy.cpp' || echo './'`authplugins/proxy.cpp
    mv -f .deps/dansguardian-proxy.Tpo .deps/dansguardian-proxy.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ident.o -MD -MP -MF .deps/dansguardian-ident.Tpo -c -o dansguardian-ident.o `test -f 'authplugins/ident.cpp' || echo './'`authplugins/ident.cpp
    mv -f .deps/dansguardian-ident.Tpo .deps/dansguardian-ident.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-ip.o -MD -MP -MF .deps/dansguardian-ip.Tpo -c -o dansguardian-ip.o `test -f 'authplugins/ip.cpp' || echo './'`authplugins/ip.cpp
    mv -f .deps/dansguardian-ip.Tpo .deps/dansguardian-ip.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -D__CONFFILE='"/etc/dansguardian/dansguardian.conf"' -D__LOGLOCATION='"/var/log/dansguardian/"' -D__PIDDIR='"/var/run"' -D__PROXYUSER='"nobody"' -D__PROXYGROUP='"nobody"' -D__CONFDIR='"/etc/dansguardian"' -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -MT dansguardian-digest.o -MD -MP -MF .deps/dansguardian-digest.Tpo -c -o dansguardian-digest.o `test -f 'authplugins/digest.cpp' || echo './'`authplugins/digest.cpp
    mv -f .deps/dansguardian-digest.Tpo .deps/dansguardian-digest.Po
    g++ -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro -o dansguardian dansguardian-String.o dansguardian-FDTunnel.o dansguardian-ConnectionHandler.o dansguardian-DataBuffer.o dansguardian-HTTPHeader.o dansguardian-NaughtyFilter.o dansguardian-RegExp.o dansguardian-FDFuncs.o dansguardian-BaseSocket.o dansguardian-Socket.o dansguardian-FatController.o dansguardian-UDSocket.o dansguardian-SysV.o dansguardian-ListContainer.o dansguardian-Auth.o dansguardian-HTMLTemplate.o dansguardian-LanguageContainer.o dansguardian-DynamicURLList.o dansguardian-DynamicIPList.o dansguardian-ImageContainer.o dansguardian-IPList.o dansguardian-OptionContainer.o dansguardian-FOptionContainer.o dansguardian-ListManager.o dansguardian-md5.o dansguardian-DownloadManager.o dansguardian-ConfigVar.o dansguardian-ContentScanner.o dansguardian-SocketArray.o dansguardian-dansguardian.o dansguardian-default.o dansguardian-fancy.o dansguardian-proxy.o dansguardian-ident.o dansguardian-ip.o dansguardian-digest.o -lpcreposix -lpcre -lz
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/src'
    make[1]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    ==> Starting package()...
    Making install in doc
    make[1]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    make[2]: Nothing to be done for `install-exec-am'.
    test -z "/usr/share/doc/dansguardian" || /usr/bin/mkdir -p "/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian"
    /usr/bin/install -c -m 644 'AuthPlugins' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/AuthPlugins'
    /usr/bin/install -c -m 644 'ContentScanners' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/ContentScanners'
    /usr/bin/install -c -m 644 'DownloadManagers' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/DownloadManagers'
    /usr/bin/install -c -m 644 'FAQ' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/FAQ'
    /usr/bin/install -c -m 644 'FAQ.html' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/FAQ.html'
    /usr/bin/install -c -m 644 'Plugins' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/doc/dansguardian/Plugins'
    test -z "/usr/share/man/man8" || /usr/bin/mkdir -p "/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/man/man8"
    /usr/bin/install -c -m 644 'dansguardian.8' '/tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/man/man8/dansguardian.8'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    make[1]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/doc'
    Making install in .
    make[1]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    make[2]: Nothing to be done for `install-exec-am'.
    make[2]: Nothing to be done for `install-data-am'.
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    make[1]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1'
    Making install in data
    make[1]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making install in languages
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    make[3]: Nothing to be done for `install-exec-am'.
    /usr/bin/install -c -m 644 ./czech/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/czech
    /usr/bin/install -c -m 644 ./czech/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/czech
    /usr/bin/install -c -m 644 ./czech/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/czech
    /usr/bin/install -c -m 644 ./hebrew/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hebrew
    /usr/bin/install -c -m 644 ./hebrew/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hebrew
    /usr/bin/install -c -m 644 ./hebrew/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hebrew
    /usr/bin/install -c -m 644 ./turkish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/turkish
    /usr/bin/install -c -m 644 ./turkish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/turkish
    /usr/bin/install -c -m 644 ./turkish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/turkish
    /usr/bin/install -c -m 644 ./bulgarian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/bulgarian
    /usr/bin/install -c -m 644 ./bulgarian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/bulgarian
    /usr/bin/install -c -m 644 ./bulgarian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/bulgarian
    /usr/bin/install -c -m 644 ./danish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/danish
    /usr/bin/install -c -m 644 ./danish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/danish
    /usr/bin/install -c -m 644 ./danish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/danish
    /usr/bin/install -c -m 644 ./indonesian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/indonesian
    /usr/bin/install -c -m 644 ./indonesian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/indonesian
    /usr/bin/install -c -m 644 ./indonesian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/indonesian
    /usr/bin/install -c -m 644 ./russian-1251/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-1251
    /usr/bin/install -c -m 644 ./russian-1251/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-1251
    /usr/bin/install -c -m 644 ./russian-1251/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-1251
    /usr/bin/install -c -m 644 ./ukenglish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ukenglish
    /usr/bin/install -c -m 644 ./ukenglish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ukenglish
    /usr/bin/install -c -m 644 ./ukenglish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ukenglish
    /usr/bin/install -c -m 644 ./chinesebig5/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesebig5
    /usr/bin/install -c -m 644 ./chinesebig5/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesebig5
    /usr/bin/install -c -m 644 ./chinesebig5/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesebig5
    /usr/bin/install -c -m 644 ./dutch/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/dutch
    /usr/bin/install -c -m 644 ./dutch/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/dutch
    /usr/bin/install -c -m 644 ./dutch/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/dutch
    /usr/bin/install -c -m 644 ./italian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/italian
    /usr/bin/install -c -m 644 ./italian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/italian
    /usr/bin/install -c -m 644 ./italian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/italian
    /usr/bin/install -c -m 644 ./russian-koi8-r/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-koi8-r
    /usr/bin/install -c -m 644 ./russian-koi8-r/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-koi8-r
    /usr/bin/install -c -m 644 ./russian-koi8-r/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/russian-koi8-r
    /usr/bin/install -c -m 644 ./chinesegb2312/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesegb2312
    /usr/bin/install -c -m 644 ./chinesegb2312/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesegb2312
    /usr/bin/install -c -m 644 ./chinesegb2312/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/chinesegb2312
    /usr/bin/install -c -m 644 ./french/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/french
    /usr/bin/install -c -m 644 ./french/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/french
    /usr/bin/install -c -m 644 ./french/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/french
    /usr/bin/install -c -m 644 ./lithuanian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/lithuanian
    /usr/bin/install -c -m 644 ./lithuanian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/lithuanian
    /usr/bin/install -c -m 644 ./lithuanian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/lithuanian
    /usr/bin/install -c -m 644 ./polish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/polish
    /usr/bin/install -c -m 644 ./polish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/polish
    /usr/bin/install -c -m 644 ./polish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/polish
    /usr/bin/install -c -m 644 ./slovak/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/slovak
    /usr/bin/install -c -m 644 ./slovak/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/slovak
    /usr/bin/install -c -m 644 ./slovak/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/slovak
    /usr/bin/install -c -m 644 ./german/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/german
    /usr/bin/install -c -m 644 ./german/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/german
    /usr/bin/install -c -m 644 ./german/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/german
    /usr/bin/install -c -m 644 ./portuguese/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/portuguese
    /usr/bin/install -c -m 644 ./portuguese/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/portuguese
    /usr/bin/install -c -m 644 ./portuguese/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/portuguese
    /usr/bin/install -c -m 644 ./swedish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/swedish
    /usr/bin/install -c -m 644 ./swedish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/swedish
    /usr/bin/install -c -m 644 ./swedish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/swedish
    /usr/bin/install -c -m 644 ./spanish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/spanish
    /usr/bin/install -c -m 644 ./spanish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/spanish
    /usr/bin/install -c -m 644 ./spanish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/spanish
    /usr/bin/install -c -m 644 ./hungarian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hungarian
    /usr/bin/install -c -m 644 ./hungarian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hungarian
    /usr/bin/install -c -m 644 ./hungarian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/hungarian
    /usr/bin/install -c -m 644 ./ptbrazilian/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ptbrazilian
    /usr/bin/install -c -m 644 ./ptbrazilian/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ptbrazilian
    /usr/bin/install -c -m 644 ./ptbrazilian/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/ptbrazilian
    /usr/bin/install -c -m 644 ./japanese/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/japanese
    /usr/bin/install -c -m 644 ./japanese/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/japanese
    /usr/bin/install -c -m 644 ./japanese/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/japanese
    /usr/bin/install -c -m 644 ./malay/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/malay
    /usr/bin/install -c -m 644 ./malay/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/malay
    /usr/bin/install -c -m 644 ./malay/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/malay
    /usr/bin/install -c -m 644 ./mxspanish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/mxspanish
    /usr/bin/install -c -m 644 ./mxspanish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/mxspanish
    /usr/bin/install -c -m 644 ./mxspanish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/mxspanish
    /usr/bin/install -c -m 644 ./arspanish/messages /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/arspanish
    /usr/bin/install -c -m 644 ./arspanish/template.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/arspanish
    /usr/bin/install -c -m 644 ./arspanish/fancydmtemplate.html /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/languages/arspanish
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/languages'
    Making install in .
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    make[3]: Nothing to be done for `install-exec-am'.
    /bin/sh /tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/install-sh -d /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian && \
    /bin/sh /tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/install-sh -d /tmp/yaourt-tmp-root/aur-dansguardian/pkg/var/log/dansguardian && \
    /bin/sh /tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/install-sh -d /tmp/yaourt-tmp-root/aur-dansguardian/pkg/var/run && \
    for l in transparent1x1.gif dansguardian.pl ; do \
    echo "/usr/bin/install -c -m 644 $l /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/$l"; \
    /usr/bin/install -c -m 644 $l /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/$l; \
    done
    /usr/bin/install -c -m 644 transparent1x1.gif /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/transparent1x1.gif
    /usr/bin/install -c -m 644 dansguardian.pl /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/dansguardian.pl
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making install in scripts
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    Making install in .
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[4]: Nothing to be done for `install-exec-am'.
    /bin/sh /tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/install-sh -d /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts && \
    for l in dansguardian logrotation bsd-init solaris-init systemv-init ; do \
    echo "/usr/bin/install -c -m 644 $l /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/$l"; \
    /usr/bin/install -c -m 644 $l /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/$l; \
    done
    /usr/bin/install -c -m 644 dansguardian /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/dansguardian
    /usr/bin/install -c -m 644 logrotation /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/logrotation
    /usr/bin/install -c -m 644 bsd-init /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/bsd-init
    /usr/bin/install -c -m 644 solaris-init /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/solaris-init
    /usr/bin/install -c -m 644 systemv-init /tmp/yaourt-tmp-root/aur-dansguardian/pkg/usr/share/dansguardian/scripts/systemv-init
    make[4]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[3]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[2]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data/scripts'
    make[1]: Leaving directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/data'
    Making install in configs
    make[1]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs'
    Making install in lists
    make[2]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists'
    Making install in phraselists
    make[3]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/phraselists'
    make[4]: Entering directory `/tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/configs/lists/phraselists'
    make[4]: Nothing to be done for `install-exec-am'.
    for l in badwords chat drugadvocacy gambling games goodphrases googlesearches gore illegaldrugs intolerance legaldrugs malware news nudism peer2peer personals pornography proxies sport violence warezhacking weapons webmail forums rta conspiracy domainsforsale idtheft safelabel travel upstreamfilter secretsocieties translation music; do \
    /bin/sh /tmp/yaourt-tmp-root/aur-dansguardian/src/dansguardian-2.10.1.1/install-sh -d /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/$l && \
    for f in ./$l/weighted* ./$l/exception* ./$l/banned*; do \
    if test -f $f ; then \
    echo "/usr/bin/install -c -m 644 $f /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/$l"; \
    /usr/bin/install -c -m 644 $f /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/$l; \
    fi \
    done \
    done
    /usr/bin/install -c -m 644 ./badwords/weighted_dutch /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/badwords
    /usr/bin/install -c -m 644 ./badwords/weighted_french /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/badwords
    /usr/bin/install -c -m 644 ./badwords/weighted_german /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/badwords
    /usr/bin/install -c -m 644 ./badwords/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/badwords
    /usr/bin/install -c -m 644 ./badwords/weighted_spanish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/badwords
    /usr/bin/install -c -m 644 ./chat/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/chat
    /usr/bin/install -c -m 644 ./chat/weighted_italian /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/chat
    /usr/bin/install -c -m 644 ./drugadvocacy/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/drugadvocacy
    /usr/bin/install -c -m 644 ./gambling/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gambling
    /usr/bin/install -c -m 644 ./gambling/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gambling
    /usr/bin/install -c -m 644 ./gambling/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gambling
    /usr/bin/install -c -m 644 ./gambling/banned_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gambling
    /usr/bin/install -c -m 644 ./games/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/games
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_danish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_dutch /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_malay /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_polish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_general_swedish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/weighted_news /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/exception /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./goodphrases/exception_email /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/goodphrases
    /usr/bin/install -c -m 644 ./googlesearches/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/googlesearches
    /usr/bin/install -c -m 644 ./gore/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gore
    /usr/bin/install -c -m 644 ./gore/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/gore
    /usr/bin/install -c -m 644 ./illegaldrugs/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/illegaldrugs
    /usr/bin/install -c -m 644 ./illegaldrugs/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/illegaldrugs
    /usr/bin/install -c -m 644 ./illegaldrugs/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/illegaldrugs
    /usr/bin/install -c -m 644 ./intolerance/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/intolerance
    /usr/bin/install -c -m 644 ./intolerance/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/intolerance
    /usr/bin/install -c -m 644 ./intolerance/banned_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/intolerance
    /usr/bin/install -c -m 644 ./legaldrugs/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/legaldrugs
    /usr/bin/install -c -m 644 ./malware/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/malware
    /usr/bin/install -c -m 644 ./news/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/news
    /usr/bin/install -c -m 644 ./nudism/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/nudism
    /usr/bin/install -c -m 644 ./peer2peer/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/peer2peer
    /usr/bin/install -c -m 644 ./personals/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/personals
    /usr/bin/install -c -m 644 ./personals/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/personals
    /usr/bin/install -c -m 644 ./pornography/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_chinese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_danish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_dutch /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_french /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_german /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_italian /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_japanese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_malay /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_norwegian /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_polish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_russian /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_spanish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/weighted_swedish /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./pornography/banned_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/pornography
    /usr/bin/install -c -m 644 ./proxies/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/proxies
    /usr/bin/install -c -m 644 ./sport/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/sport
    /usr/bin/install -c -m 644 ./violence/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/violence
    /usr/bin/install -c -m 644 ./violence/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/violence
    /usr/bin/install -c -m 644 ./warezhacking/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/warezhacking
    /usr/bin/install -c -m 644 ./weapons/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/weapons
    /usr/bin/install -c -m 644 ./weapons/weighted_portuguese /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/weapons
    /usr/bin/install -c -m 644 ./webmail/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/webmail
    /usr/bin/install -c -m 644 ./forums/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/forums
    /usr/bin/install -c -m 644 ./rta/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/rta
    /usr/bin/install -c -m 644 ./conspiracy/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/conspiracy
    /usr/bin/install -c -m 644 ./domainsforsale/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/domainsforsale
    /usr/bin/install -c -m 644 ./idtheft/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/idtheft
    /usr/bin/install -c -m 644 ./safelabel/banned /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/safelabel
    /usr/bin/install -c -m 644 ./travel/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/travel
    /usr/bin/install -c -m 644 ./upstreamfilter/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/upstreamfilter
    /usr/bin/install -c -m 644 ./secretsocieties/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/secretsocieties
    /usr/bin/install -c -m 644 ./translation/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/translation
    /usr/bin/install -c -m 644 ./music/weighted /tmp/yaourt-tmp-root/aur-dansguardian/pkg/etc/dansguardian/lists/phraselists/musi

    What about using OpenDNS content filtering instead?
    http://www.opendns.com/home-solutions/
    https://wiki.archlinux.org/index.php/OpenDNS

  • BOE 3.1 SR3 on Solaris SPARC - how to for Int kit for SAP Solutions ?

    Hi,
    this is my first BOE installation and I've just installed the BOE SR3 Enterprise Server on Solaris SPARC with SAP WAS 7.0 and Oracle 11.2.0.2 providing the CMS database location and the Java application server for the BOE applications.
    The installation went ok and all BOE Server services are running. I've now got to install the XI 3.1 SR3 BOBJ Integration for SAP Solutions kit and have read the installation and administration guide for this.
    The pre-requisites state that the SAP RFC & Java Connector needs to be put in place before deploying. Are these not part of the NW 7 WAS 7.0 Java Server anyway ?
    If anyone has any pointers to more detailed instructions for doing Integration for SAP solutions kit other than the guide then please let me know.
    Regards,
    Brian.

    Hello Ingo,
    many thanks for your reply, although I'm still confused. My Business Objects 3.1 Enterprise Server runs on the same host as a NW 7 WAS and has it's applications deployed and running on the NW 7 WAS Java instance .According to OSS 549268 you should not use the standalone SAP JCO connector if your applications are running on a SAP WAS - it has it's own integrated SAP Java Connector
    "SAP JCo is available for two different environments: there is the standalone version and the version integrated in the SAP J2EE Engine. These two JCo variants have a compatible API but are implemented differently, so you may not mix them together within one environment.
    SAP JCo 2.1 is the standalone version and can be used in all Java applications not running in an SAP J2EE Engine environment.
    So it seems I don't need to use the standalone Java connector ?
    Regards,
    Brian.

  • Installing the just released 10.2.0.2 agent on Solaris Sparc

    Anyone tried installing the new 10.2.0.2 agent on Solaris Sparc? (Solaris 9). After the agent installs the config fails and I found a bunch of binaries (like emagent) are zero length.
    Didn't have any issues installing the previous 10.2.0.1. It took so long for the 10.2.0.2 agent to be released for Solaris, I'm wondering if there's an issue with the package.

    Hi all,
    Since you all have already gone through upgrade process from 10.2.0.1 to 10.2.0.2,
    I need help doing the same.
    We have 10.2.0.1 Grid Control installed in test env (solaris 5.9 Sparc), and I am planning to upgrade it to 10.2.0.2.
    My question is, when we shut down OMS to apply 10.2.0.2 patch, what happens to the agents? they will not be able to upload the stats, and may get inactive after reaching the disk usage limit.
    Also, when we complete the upgrade patch, when OMS comes up, can the 10.2.0.1 agent still talk to the 10.2.0.2 OMS? I am asking this from the logistical point of view. We have 15 servers, and it may be couple of days, before all agents can be upgraded. In that scenario, I wish to keep the Grid Control available for testing barring the agents under upgrade.
    We havenot turned on the automatic patch management, and tempted to use the Method 2 of 4.1.2.1 item of the Readme document of the patch.
    What were you experiences? and any advices?

  • Can't Build 64-bit Tomcat Connector Module (mod_jk)

    I've been using the Tomcat Connector Module on my server so all requests can be logged by Apache, I only need to open port 80 on the firewall, and sites that use jsp with other technologies look more cohesive to the user.
    In the past when a new version of the module was released I'd just download the source, unzip it, build it and instal it. Following the included instructions, "for the impatient Apache admins," I used:
    ./configure --with-apxs=/usr/sbin/apxs
    to configure the build, then "make" and "sudo make install" to build and install the module.
    This has always worked well (except it always installed the module in the wrong directory, which I never corrected because I liked to test the new module before I got rid of the old one), and when I moved to an Intel Mac, it continued to work. All the Apple-provided modules were universal binaries, but the i386 modules I built worked fine.
    Now, with Leopard, we have a new, 64-bit Apache 2. I had been looking forward to working with Apache 2, and 64-bit is nice too, right? But now that it's here I'm not so sure.
    My first disillusionment was that, when I downloaded the mod_jk source and built it using the same procedure I had been using, Apache refused to load the module, saying it had the wrong architecture. I checked the provided modules to see what architecture it wanted, and they were all universal binaries with four architectures, which didn't really narrow it down too much, but since I could rule out the ppc and ppc64 architectures, and the "wrong" one I built was i386, that left x86_64 as the only possibility.
    Since I barely know what I'm doing, I'm not about to try anything crazy like building a universal binary (although I did try to follow this tutorial, but it didn't work for this project and his instructions didn't provide enough detail for me to even begin to figure out why), but I can't even figure out how to build a 64-bit binary.
    I do have Xcode 3.0, so I should have the ability to build 64-bit binaries, and I have the new Java 1.6.0, which is also supposed to be 64-bit, so I should be race-ready, but when I run the configure script, specifying which Java version to use and which architecture to build:
    ./configure --with-apxs=/usr/sbin/apxs --with-arch-type=x86_64 --with-java-home=/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Hom e
    I still end up with an i386 binary when the smoke clears, and in the log is a warning:
    configure: WARNING: you should use --build, --host, --target
    I'd be happy to do that if I had a clue what values to specify for them. Does anybody want to guess? Here's what it keeps taking for default values:
    checking build system type... i386-apple-darwin9.2.2
    checking host system type... i386-apple-darwin9.2.2
    checking target system type... i386-apple-darwin9.2.2
    I have a feeling I can't just substitute x86_64 for i386 (i.e. x86_64-apple-darwin9.2.2). The "x86_64-apple-darwin" part might be right, but I don't know about the 9.2.2. I've poked around the filesystem and gotten thoroughly confused. There seem to be all kinds of headers and compilers for i386 and x86_64 and something called i686, which seems to be related to x86_64 somehow, but I have no idea how to point the makefile to the right ones. I don't even know how or why it seems to be perfectly capable of finding everything it needs to build for i386 without my help, and even when I try to mislead it by suggesting I might want it to build for x86_64, it still unerringly finds all the i386 stuff and builds the module with them.
    Since no one seems to provide Mac OS binaries of anything, it would be really nice to understand how to do this. I might even want to go crazy and build a 64-bit PostgreSQL or something like that, but if I can't even build a simple Apache module anymore, my hopes are fading.
    If anybody is somehow clued-in on how all this stuff works, I'd really appreciate a brain-dump.
    Thanks.

    Thank you, that works for me too!
    At first I was worried because, when I ran configure it said:
    checking build system type... i386-apple-darwin9.3.0
    checking host system type... i386-apple-darwin9.3.0
    checking target system type... i386-apple-darwin9.3.0
    But I went ahead and ran make anyway, and here's what I ended up with:
    apache-2.0/mod_jk.so: Mach-O 64-bit bundle x86_64
    which I could install and test. It even works!
    Where did you find this information? I did a lot of digging too, but I must have been digging in the wrong places. I always like to go back to the source and see what else I can learn. Maybe then I can take another run at building a universal binary.

  • ODSM installation failing on Solaris Sparc

    Hi Guys,
    we are trying to install ODSM on a Solaris server (Solaris Sparc 11). However the installer is throwing the following error while creating domain -
    [2013-01-10T15:50:52.888-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] onConfigurationStatus: 92185386-b8be-44a0-9a5f-0d0bc9657eb4
    [2013-01-10T15:50:52.888-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] [OOB IDM CONFIG EVENT] onConfigurationStatus -> Description: Starting Domain.
    [2013-01-10T15:50:52.888-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] [OOB IDM CONFIG EVENT] onConfigurationStatus -> State: START
    [2013-01-10T15:50:52.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] [OOB IDM CONFIG EVENT] onConfigurationStatus -> Component Name : StartDomain
    [2013-01-10T15:50:52.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] [OOB IDM CONFIG EVENT] onConfigurationStatus -> Component Type : WLSDomain
    [2013-01-10T15:50:52.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] ________________________________________________________________________________
    [2013-01-10T15:50:52.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationStatus] [OOB IDM CONFIG EVENT] onConfigurationStatus ->92185386-b8be-44a0-9a5f-0d0bc9657eb4 StatusMsg:Starting Domain.
    [2013-01-10T15:50:52.890-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] reportStartConfigAction: EXIT........
    [2013-01-10T17:04:38.884-06:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0]
    [2013-01-10T17:04:38.886-06:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [[
    oracle.as.provisioning.util.ConfigException:
    Error while starting the domain.
    Cause:
    Starting the Admin_Server timed out.
    Action:
    See logs for more details.
    at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
    at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3150)
    at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3040)
    at oracle.as.provisioning.engine.WorkFlowExecutor._startAdminServer(WorkFlowExecutor.java:1645)
    at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:635)
    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    at oracle.as.idm.install.config.BootstrapConfigManager.doExecute(BootstrapConfigManager.java:690)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:371)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:64)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:160)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
    at java.lang.Thread.run(Thread.java:662)
    [2013-01-10T17:04:38.888-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] onConfigurationError -> configGUID 92185386-b8be-44a0-9a5f-0d0bc9657eb4
    [2013-01-10T17:04:38.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] ErrorID: 35091
    [2013-01-10T17:04:38.889-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] Description: [[
    Error while starting the domain.
    Cause:
    An error occurred while starting the domain.
    Action:
    See logs for more details.
    [2013-01-10T17:04:38.891-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] ________________________________________________________________________________
    [2013-01-10T17:04:38.892-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] onConfigurationError -> eventResponse ==oracle.as.provisioning.engine.ConfigEventResponse@50cb14aa
    [2013-01-10T17:04:38.892-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [OOB IDM CONFIG EVENT] onConfigurationError -> Configuration Status: -1
    [2013-01-10T17:04:38.892-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [OOB IDM CONFIG EVENT] onConfigurationError -> Asking User for RETRY or ABORT
    [2013-01-10T17:04:38.893-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [OOB IDM CONFIG EVENT] onConfigurationError -> ActionStep:Create_Domain
    [2013-01-10T17:04:38.895-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 12] [ecid: 0000JkaSLdW7a695Nf4Eye1GvnD8000003,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] onConfigurationError -> wait for User Input ....
    [2013-01-10T17:21:34.980-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] Writing profile to file:/u01/app/oraInventory/logs/installProfile2013-01-10_03-31-48PM.log
    [2013-01-10T17:21:34.981-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] outputFile:/u01/app/oraInventory/logs/installProfile2013-01-10_03-31-48PM.log
    [2013-01-10T17:21:34.981-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] in writeProfile method..
    [2013-01-10T17:21:34.982-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] Adding Element:INTERVIEW_TIME_ID for writing.
    [2013-01-10T17:21:34.983-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] Adding Element:COPY_TIME_ID for writing.
    [2013-01-10T17:21:34.983-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] Adding Element:LINK_TIME_ID for writing.
    [2013-01-10T17:21:34.983-06:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 11] [ecid: 0000JkaOCte7a695Nf4Eye1GvnD8000002,0] Adding Element:CONFIGURATION_TIME_ID for writing.
    We couldn't find any way forward for this error Can anyone please advise if they have seen this error in their environment and what is the way forward? Thanks

    khaleel2 wrote:
    Hi Gurus,
    Too frequent INS-32025 errors. Tried everything possible, finally found in oraInstall2012-05-06_07-50-25PM.err file......
    ---# Begin Stacktrace #---------------------------
    ID: oracle.install.driver.oui.OUISetupDriver:13
    oracle.cluster.verification.VerificationException: An internal error occurred within cluster verification framework
    <Line 206, Column 12>: XML-20211: (Fatal Error) '--' is not allowed in comments.
    <Line 206, Column 12>: XML-20211: (Fatal Error) '--' is not allowed in comments.
    at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4505)
    at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4443)
    at oracle.cluster.verification.ClusterVerification.isPreReqSupported(ClusterVerification.java:6382)
    at oracle.install.driver.oui.OUISetupDriver.verifyEnvironment(OUISetupDriver.java:299)
    at oracle.install.driver.oui.OUISetupDriver.load(OUISetupDriver.java:422)
    Please help soon. Appreciated if you give main points instead of providing document links.errors indicate that cluster (RAC) is involved.
    At which step in cluster configuration, does this failure occur?

  • Weblogic managed server crash and automatic restart on Solaris SPARC platform

    hi Everyone,
    We are facing a problem a problem with Weblogic managed server where the managed server crashes and automatically restarts (via nodemanager) on Solaris SPARC platform.
    The system info is as below:
    OS:                            Oracle Solaris 11.1 SPARC
      Copyright (c) 1983, 2012, Oracle and/or its affiliates.  All rights reserved.
                               Assembled 19 September 2012
    uname:SunOS 5.11 11.1 sun4v
      (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 65536, AS infinity
    load average:1.04 0.52 0.32
    CPU:total 4 v9, popc, vis1, vis2, vis3, blk_init, cbcond, sun4v, niagara_plus
    Memory: 8k page, physical 16777216k(5930008k free)
    vm_info: Java HotSpot(TM) 64-Bit Server VM (23.25-b01) for solaris-sparc JRE (1.7.0_25-b11), built on May 15 2013 04:30:17 by "" with Sun Studio 12u1
    The pstack output of analyzing the core file is as below (for the particular thread, I can attach the entire output of pstack if required):
    --- called from signal handler with signal 11 (SIGSEGV) ---
    ffffffff7ec1a7c4 memcpy%sun4v-hwcap3 (103d34720, 10a7e7710, 108ae1060, 6300, 0, ffffffff5f66394b) + 990
    ffffffff36102fa4 ZIP_GetEntry (103d34720, ffffffff636f66a4, bd, 103d347f0, a26f1c, 2f) + e4
    ffffffff36103440 Java_java_util_zip_ZipFile_getEntry (2b, ffffffff636f66a4, 103d34720, ffffffff636f6b70, 2b, 1) + a8
    ffffffff7586ac1c * *java/util/zip/ZipFile.getEntry(J[BZ)J [compiled]
    ffffffff75b61b58 * *java/util/zip/ZipFile.getEntry(Ljava/lang/String;)Ljava/util/zip/ZipEntry; [compiled] +39 (line 606)
    ffffffff75b61b58 * *java/util/jar/JarFile.getEntry(Ljava/lang/String;)Ljava/util/zip/ZipEntry;+3 (line 452)
    ffffffff75b61b58 * *weblogic/utils/classloaders/ZipClassFinder.getSource(Ljava/lang/String;)Lweblogic/utils/classloaders/Source;+36 (line 75)
    ffffffff75b6eb84 * *weblogic/utils/classloaders/JarClassFinder.getSource(Ljava/lang/String;)Lweblogic/utils/classloaders/Source; [compiled] +6 (line 100)
    ffffffff75a40938 * *weblogic/utils/classloaders/AbstractClassFinder.getClassSource(Ljava/lang/String;)Lweblogic/utils/classloaders/Source; [compiled] +74 (line 58)
    ffffffff75976c88 * *weblogic/utils/classloaders/MultiClassFinder.getClassSource(Ljava/lang/String;)Lweblogic/utils/classloaders/Source; [compiled] +30 (line 114)
    ffffffff75976c88 * *weblogic/utils/classloaders/MultiClassFinder.getClassSource(Ljava/lang/String;)Lweblogic/utils/classloaders/Source; [compiled] +30 (line 114)
    ffffffff75976c88 * *weblogic/utils/classloaders/MultiClassFinder.getClassSource(Ljava/lang/String;)Lweblogic/utils/classloaders/Source; [compiled] +30 (line 114)
    ffffffff75806d10 * weblogic/application/utils/CompositeWebAppFinder.getClassSource(Ljava/lang/String;)Lweblogic/utils/classloaders/Source;+5 (line 176)
    ffffffff75976c88 * *weblogic/utils/classloaders/MultiClassFinder.getClassSource(Ljava/lang/String;)Lweblogic/utils/classloaders/Source; [compiled] +30 (line 114)
    ffffffff75976c88 * *weblogic/utils/classloaders/MultiClassFinder.getClassSource(Ljava/lang/String;)Lweblogic/utils/classloaders/Source; [compiled] +30 (line 114)
    ffffffff75806d10 * weblogic/utils/classloaders/CodeGenClassFinder.getClassSource(Ljava/lang/String;)Lweblogic/utils/classloaders/Source;+43 (line 48)
    ffffffff75806d10 * weblogic/utils/classloaders/GenericClassLoader.findLocalClass(Ljava/lang/String;)Ljava/lang/Class;+87 (line 571)
    ffffffff75806d10 * weblogic/utils/classloaders/GenericClassLoader.findClass(Ljava/lang/String;)Ljava/lang/Class;+117 (line 515)
    ffffffff75806d10 * weblogic/utils/classloaders/ChangeAwareClassLoader.findClass(Ljava/lang/String;)Ljava/lang/Class;+60 (line 121)
    ffffffff75a465c8 * *java/lang/ClassLoader.loadClass(Ljava/lang/String;Z)Ljava/lang/Class; [compiled] +71 (line 836)
    ffffffff75db42c0 * *java/lang/ClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class; [compiled] +4 (line 714)
    ffffffff75806d10 * weblogic/utils/classloaders/GenericClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class;+2 (line 358)
    ffffffff75806d10 * weblogic/utils/classloaders/ChangeAwareClassLoader.loadClass(Ljava/lang/String;)Ljava/lang/Class;+27 (line 83)
    ffffffff7580024c * StubRoutines (1)
    ffffffff3691f44c __1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallArguments_pnGThread__v_ (ffffffff636f7f98, 10234f000, 2, c, 2, 10) + 2f4
    ffffffff36e546c0 __1cJJavaCallsMcall_virtual6FpnJJavaValue_nGHandle_nLKlassHandle_pnGSymbol_63pnGThread__v_ (ffffffff636f7f98, 1013e7748, 10234f000, 10011bf30, 100119ec0, 772d4ec08) + 1b8
    ffffffff3725bf0c __1cQSystemDictionaryTload_instance_class6FpnGSymbol_nGHandle_pnGThread__nTinstanceKlassHandle__ (105cb6100, 1013e7978, 10234f000, 102b6e500, 0, 1013e7748) + 494
    ffffffff3725a028 __1cQSystemDictionarybEresolve_instance_class_or_null6FpnGSymbol_nGHandle_3pnGThread__pnMklassOopDesc__ (105cb6100, 19dc00, 70, 10234f000, 70, 1013e7700) + ae0
    ffffffff37257800 __1cQSystemDictionaryPresolve_or_fail6FpnGSymbol_nGHandle_3bpnGThread__pnMklassOopDesc__ (105cb6100, 1013e76f0, 1013e76f8, 1, 10234f000, 1) + 290
    ffffffff368ba9dc __1cTconstantPoolOopDescNklass_at_impl6FnSconstantPoolHandle_ipnGThread__pnMklassOopDesc__ (10201b6e0, 1013e7978, 10234f000, 10201b6e0, 783cfb098, ffffffff37588000) + 264
    ffffffff36937380 __1cSInterpreterRuntimeE_new6FpnKJavaThread_pnTconstantPoolOopDesc_i_v_ (10234f000, 77548b730, 49, 10201b6e0, 1013e76e8, 10234f000) + b8
    ffffffff7581ab58 * com/jdedwards/base/logging/log4j/JdeLogger.warn(ILjava/lang/String;Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Throwable;)V+14
    ffffffff75807bcc * com/jdedwards/system/security/proxy/SecurityServerProxyImpl.install(Ljava/util/Hashtable;)Lcom/jdedwards/system/security/proxy/SecurityServerProxyImpl;+30
    ffffffff75806d10 * com/jdedwards/system/security/proxy/SecurityServerProxyFactory.create(Ljava/util/Hashtable;)Lcom/jdedwards/system/security/SecurityServer;+1
    ffffffff75807898 * com/jdedwards/system/security/SecurityServerInstance.getInstance()Lcom/jdedwards/system/security/SecurityServer;+27
    ffffffff75806d10 * com/jdedwards/mgmt/security/UserManager.checkPassword(Ljava/lang/String;Ljava/lang/String;)Z+59
    ffffffff75806b24 * com/jdedwards/mgmt/security/UserManagerImpl.checkPassword(Ljava/lang/String;Ljava/lang/String;)Z+5
    ffffffff75806b24 * com/jdedwards/mgmt/security/SCFLoginModule.login()Z+481
    The output of the hs_err_pid1127.log file is as below:
    # A fatal error has been detected by the Java Runtime Environment:
    #  SIGSEGV (0xb) at pc=0xffffffff7ec1a544, pid=1127, tid=20
    # JRE version: 7.0_25-b11
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (23.25-b01 mixed mode solaris-sparc compressed oops)
    # Problematic frame:
    # C  [libc.so.1+0x11a544]  memcpy%sun4v-hwcap3+0x710
    # Core dump written. Default location: /slot/ems9437/appmgr/Oracle/Middleware/user_projects/domains/smc_domain/core or core.1127
    # If you would like to submit a bug report, please visit:
    #   http://bugreport.sun.com/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    ---------------  T H R E A D  ---------------
    Current thread (0x000000010294d000):  JavaThread "[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon [_thread_in_native, id=20, stack(0xffffffff62f00000,0xffffffff63000000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0xffffffff5f6ce000
    I ran the suspect code which i believed was causing the issue as a standalone Java program using the same Java executable and it worked fine without any crash.
    Appreciate any inputs / discussion / feedback / thoughts on this topic.
    Good day.

    I just wanted to throw in one more thought.  I have also seen that there is a restart=true parameter.  Maybe if we set this to true, and just issue the command to shut down the server in the script, the managed server will restart on its own. 
    Would greatly appreciate any advice!

  • File encoding problem in solaris sparc

    hi there,
    I wrote a simple program to create a text file that with the content of japanese character that same way I wrote in Windows JP Platform.
    However, the encoding is different from what window, oracle(solaris sparc) does.
    this is very interesting that we view from oracle and its workd fine from Oracle which run on the same machine(solaris Sparc) .
    I believe I missed out some setting for the internationalization for JDK in solaris, but I'm not familiar with solaris. Hence, I would like to seek is there one of you came across this before? Please help.
    Here is the String.
    \u6771\u9999\u91CC\u5357\u753A�T�W�|�T�|�P�O�P
    Please note that 58-5-101 is double full width JP character.
    The main problem is the "-" encoding for solaris. It changed to '?'
    My env are,
    -jdk1.3.1_03
    -Solaris Sparc LANG=ja
    pls feel fre to ask for more information if you need further details.
    regards,
    elvis
    scjp

    I don't fully understand what you're asking for, but I wonder if this might help : the default encoding of a Solaris machine is probably EUC (In Windows, this is SJIS). So you'll probably have to read the file using the EUC encoding. Have a look at InputStreamReader(InputStream in, String enc) where you can set the encoding of the input stream.
    (Note that there is also a forum called 'Internationalization' at java.sun.com)

  • Upgrade 10.1.0.5 to 10.2.0.4 on Solaris SPARC 64bit (on VCS) Hangs

    Hi
    Im in progress of upgrading a 10.1.0.5 Database to 10.2.0.4 on Solaris SPARC 64bit with VCS installed.
    I installed the base 10.2.0.1 and then 10.2.0.4 and then CPUJAN2010 without failure. I began the upgrade as per the b14238.pdf (Oracle® Database Upgrade Guide 10g Release 2 (10.2) B14238-02 January 2008)
    Its seems hung since last Friday morning, but the smon process is first on "top" command so it must be doing something.
    Any idea how I can resolve this issue?

    upgrade.log
    462 -- ALTER USER system privilege
    463 -- EXAMPLE
    464 -- dbms_epg.authorize_dad('HR');
    465 --
    466 procedure authorize_dad(dad_name IN varchar2,
    467 user IN varchar2 DEFAULT NULL);
    468
    469 --
    470 -- Deauthorizes a DAD's use of a user's privileges to invoke procedures and
    471 -- access document tables. The invoker can always deauthorize the use of
    472 -- his own privileges. To deauthorize the use of another user's privileges,
    473 -- the invoker must have the the ALTER USER system privilege.
    474 --
    475 -- PARAMETERS
    476 -- dad_name The DAD to deauthorize use
    477 -- user The user whose privileges to deauthorize. If the user is NULL,
    478 -- the invoker is assumed. The username is case-sensitive as in
    479 -- the USERNAME column of the ALL_USERS view.
    480 -- RETURN
    481 -- None
    482 -- EXCEPTIONS
    483 -- - if the user does not exist
    484 -- - if the invoker deauthorizes for another user but he does not have the
    485 -- ALTER USER system privilege
    486 -- EXAMPLE
    487 -- dbms_epg.deauthorize_dad('HR');
    488 --
    489 procedure deauthorize_dad(dad_name IN varchar2,
    490 user IN varchar2 DEFAULT NULL);
    491
    492 END dbms_epg;
    493 /
    Package created.
    SQL> show error
    ====================================================
    I get the feeling that not all the info has been written to this file.
    Previous to this the database took 1.5 - 2 hours to shutdown immediate (straight after startup restrict) with smon process using lots of cpu...may be related to above problem.
    (Waiting for smon to disable tx recovery)

  • Bundle Patch1 is now available for Solaris (SPARC), Solaris (x86-64), AIX

    [OTN |http://www.oracle.com/technetwork/oem/enterprise-manager/downloads/index.html?origref=http://www.oracle.com/technetwork/oem/grid-control/index.html] Hi All,
    EM Binaries updated with bundle patch1 are now available on OTN
    OMS and Management Agents for platform ::: Solaris (SPARC), Solaris (x86-64), and IBM AIX (64-bit)
    Management Agents for platform::: HP-UX, or HP-UX Itanium
    The BP1 workbook is updated with various use-cases specific to these platform. We strongly recommend you to follow the instruction from the workbook to apply BP1 patches. If you have any doubts feel free to drop me an email.
    http://docs.oracle.com/cd/E24628_01/doc.121/e35229/toc.htm
    Regards
    Akanksha

    Oracle Instant Client was a "feature" introduced with Oracle 10g. There is no 9i version.
    Code that links with Oracle 9i libraries should be able to be linked with Instant Client 10gR2.
    The resulting application will be able to connect to databases from Oracle 8.1 onwards.

  • W2100z Supplemental 2.5 XpReburn produces non-bootable ISO in Solaris Sparc

    Just posting in case helps someone else...
    The XpReburn script from the W2100z Supplemental 2.5 CD is commented as being able to run on Solaris Sparc:
    # This script was developed on Solaris X86. It will run on Solaris Sparc
    # and Red Hat Enterprise Linux 3. It is not guaranteed to work unmodified  
    # accross all versions of Linux. This script is experimental. Some end user
    # MODIFICations may be necessary for it to run on other linux distributions 
    # and system configurations.Running XpReburn under Solaris Sparc 10 produced an .ISO image apparently without error, but the resulting image would not boot.
    Found the cause of the non-bootable image was the following section of XpReburn. It was using dd and od to extract 16-bit LBA values. On Solaris Sparc it ended up reading little-endian values as big-endian, hence extracting the boot loader from the wrong part of the XP CD. To get it to work under Solaris Sparc added conv=swab twice as shown below:
    # Read the boot loader from the CD into the image directory as a file. This process takes
    # several steps because the boot record has to be consulted to locate the RBA (the
    # starting LBA of the boot catalog). The boot record always resides at LBA 17
    ${ECHO} "Reading WinXP Boot Loader from CD..."
    ${ECHO} "  Looking up boot catalog lba from boot record..."
    ${DD} if=$CD_DEVICE bs=2048 count=1 skip=17 | ${DD} bs=71 skip=1 count=1 | ${DD} conv=swab bs=4 count=1 of=$SCRIPTDIR/foo
    BOOTCATLBA=`od -d $SCRIPTDIR/foo | ${AWK} '{print $2}'`
    ${ECHO} "  Boot Catalog is at LBA $BOOTCATLBA, looking up boot image LBA..."
    ${DD} if=$CD_DEVICE bs=2048 count=1 skip=$BOOTCATLBA | ${DD} bs=40 skip=1 count=1 | ${DD} conv=swab bs=4 count=1 of=$SCRIPTDIR/foo
    BOOTIMGLBA=`od -d $SCRIPTDIR/foo | ${AWK} '{print $2}'`
    ${ECHO} "  Reading Boot Image from LBA $BOOTIMGLBA..."
    ${DD} if=$CD_DEVICE bs=2048 count=1 skip=$BOOTIMGLBA | ${DD} bs=2048 count=1 of=$IMAGEDIR/$BOOTIMAGE
    ${RM} -f $SCRIPTDIR/fooWith the above mod, XpReburn generated an image which booted the XP Pro installer and allowed XP to be installed.

    MAAL wrote:
    have thought about submitting this hint/article to the BigAdmin community ?
    http://www.sun.com/bigadmin/common/submittals.html
    Michael,
    Reading the submission guidelines it appears BigAdmin is for you own work:
    By submitting content to the BigAdmin portal, you are attesting that your submission is your own non-confidential property and does not infringe the intellectual property rights of any party.
    Whereas my "hint" above is really a bug report / enhancement request for a Sun supplied script.
    I only have a basic support plan so don't think I can raise a bug report.
    Also:
    1) The modification listed was a quick hack to get the script to work under Sparc Solaris, but which would have caused the script to generate a non-bootable ISO if run under X86 Solaris.
    2) If you run the script on a ZFS filesystem you get an error that the filesystem isn't local - the script should be updated to consider a ZFS filesystem as local.
    3) If the script is run on a Solaris system with two optical drives, the script fails with an error because fails to correctly read the volume name of the XP CD. Can't remember the details, but just hacked the script to work.
    So, so for now will just leave the "hint" in this thread.

  • Windows ODBC Client for Timesten in Solaris Sparc

    Hello, i need help to solve this issue :
    I have a Timesten version 5.1.28 ( 32 bits) running in Solaris Sparc and a Windows 2003 server connected to the same network.
    I need to install a Timesten ODBC client in my windows 2003 server in order to get connection to my timesten database in Solaris.
    How can i get a timesten ODBC client for Windows ??
    Thanks for your Help
    Luis.

    Hi Luis,
    TimesTen 5.1 is a desupported release. If you are a licensed TimesTen customer, you need to contact the TimesTen Support team to get your issue resolved as the 5.1 release is not available for download from OTN.
    To contact the Oracle TimesTen Support team, please open a Metalink case for the TimesTen product, the product number is 1870. This will get routed to the Oracle TimesTen Support engineers.
    If you already have the Windows 5.1.28 TimesTen bits, you can do the client only installation.
    -scheung

Maybe you are looking for