Installing libraries

Hi,
I would like to install the java communications library in Jbuilder. It has three files:
win32com.dll
comm.jar
javax.comm.properties
I went to tools->configure->libraries, then clicked on new and added the folder where all these files are. I could only select the .jar file under classes. I don't know if I Jbuilder picks up on the other two automatically. When I ran the SimpleWrite.java program that came with the library, it says that the port could not be opened.
Here is the simple write program:
public class SimpleWrite {
static Enumeration     portList;
static CommPortIdentifier portId;
static String     messageString = "Hello, world!";
static SerialPort     serialPort;
static OutputStream outputStream;
static boolean     outputBufferEmptyFlag = false;
* Method declaration
* @param args
* @see
public static void main(String[] args) {
     boolean portFound = false;
     String defaultPort = "/dev/term/a";
     if (args.length > 0) {
     defaultPort = args[0];
     portList = CommPortIdentifier.getPortIdentifiers();
     while (portList.hasMoreElements()) {
     portId = (CommPortIdentifier) portList.nextElement();
     if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
          if (portId.getName().equals(defaultPort)) {
          System.out.println("Found port " + defaultPort);
          portFound = true;
          try {
               serialPort =
               (SerialPort) portId.open("SimpleWrite", 2000);
          } catch (PortInUseException e) {
               System.out.println("Port in use.");
               continue;
          try {
               outputStream = serialPort.getOutputStream();
          } catch (IOException e) {}
          try {
               serialPort.setSerialPortParams(9600,
                              SerialPort.DATABITS_8,
                              SerialPort.STOPBITS_1,
                              SerialPort.PARITY_NONE);
          } catch (UnsupportedCommOperationException e) {}
          try {
               serialPort.notifyOnOutputEmpty(true);
          } catch (Exception e) {
               System.out.println("Error setting event notification");
               System.out.println(e.toString());
               System.exit(-1);
          System.out.println(
               "Writing \""+messageString+"\" to "
               +serialPort.getName());
          try {
               outputStream.write(messageString.getBytes());
          } catch (IOException e) {}
          try {
          Thread.sleep(2000); // Be sure data is xferred before closing
          } catch (Exception e) {}
          serialPort.close();
          System.exit(1);
     if (!portFound) {
     System.out.println("port " + defaultPort + " not found.");
If anyone is familiar with Jbuilder setting, please help. Thanks in advance.

ok, i solved the problem.
I found this article very useful, for anyone that's having the same problem:
http://bdn.borland.com/article/0,1410,31915,00.html

Similar Messages

  • Logic refuses to install libraries.

    so, I recently downloaded Logic Pro X. at first, i was upset by the lack of instruments, and then i found a few of the jampacks and libraries, including choir, which i'm so happy about. I'm new to Logic, as well as making music in general, but I've already sort of found my way around. unfortunately, there aren't many default instruments in the library, so I need to use the legacy library. but unfortunately, the only thing in that library that succeeded in downloading was the choir, despite the prompt of "something's missing from your library, Logic needs to download it" that I keep getting. I let it do its thing and download, then it tells me that it's installing, then it finishes, then i refresh my library, and restart Logic, and it's still not downloaded.
    do I need to manually install these? if so, the only thing in Application Support for Logic is "LoopsDatabaseV08.db". I also have no idea where to find these files I need, any help would be appreciated.

    Shanabit, thanks for the help. i fixed it. i had to go to window > downloads and force it to install libraries instead of hitting "download now" when the "libraries missing" thing popped up. these links you sent me were the links that i originally tried to get content from. they loaded up the needed directories, but Logic somehow still registered them as incomplete
    I don't know how it fixed it, but loading up that s\entire section of the legacy library fixed it, I think.
    anyway, thanks!

  • RE: (forte-users) Node Installed Libraries

    If you use Forte, the solution is to patch compcomp, or add a 'post-distrib'
    script.
    compcomp:
    replace the -L/path/file by -L/path -l:file
    Add -Wl,+s in link command
    post-distrib:
    # Enable SHLIB_PATH
    for all binaries,
    chatr +s enable $bin
    done
    # Enable dyunamic libs for all static
    Libs=$(cahtr $bin | grep ^static)
    for aLib in $Libs ; do
    chatr $bin +s enable -l $aLib
    done
    cheers
    j-paul
    -----Message d'origine-----
    De: kelsey.petrychynsasktel.sk.ca
    [mailto:kelsey.petrychynsasktel.sk.ca]
    Date: lundi 18 septembre 2000 18:36
    À: David McPaul; Rottier.Pascalpmintl.ch
    Cc: forte-userslists.xpedior.com
    Objet: RE: (forte-users) Node Installed Libraries
    Libraries have been a sore point with us too....
    When we build something that uses a user created or third party
    library the
    explicit directory path is hard-coded into the build.
    So when you deploy the application to a different machine there
    is much grief
    because the build can't find the library.
    We got around this by "fooling" the build. We used directory
    creation and soft
    links in Unix so that the library appears to be in the same
    directory on both machines.
    I think this is called Static vs. Dynamic Libraries. We've talked
    to Forte last
    year about this and they indicated that this will be a
    future enhancement. Don't hold your breath though.....
    David McPaul <dmcpaullumley.com.au> on 09/17/2000 07:14:13 PM
    To: "'Rottier, Pascal'" <Rottier.Pascalpmintl.ch>, "'Forte Users'"
    <forte-userslists.xpedior.com>
    cc: (bcc: Kelsey Petrychyn/SaskTel/CA)
    Subject: RE: (forte-users) Node Installed Libraries
    Hi,
    We build here against a standard environment (1 NT server, 1 NT
    modal node, 1 95 modal node)
    I have noticed that forte is very picky about where it deploys
    compiled partitions (and thus libraries). Basically if you
    didn't make your
    distribution against the environment you are installing on then
    the compiled
    partitions don't install and you will need to reconfigure the
    application by
    moving your partitions and libraries to the nodes that they should be.
    Now I expected that would be the case between different
    architectures (UNIX/NT) but I think forte expects you to compile against
    each machine you want to install on.
    Not much help I know.
    Cheers
    David
    -----Original Message-----
    From: Rottier, Pascal [mailto:Rottier.Pascalpmintl.ch]
    Sent: Saturday, September 16, 2000 12:59 AM
    To: 'Forte Users'
    Subject: (forte-users) Node Installed Libraries
    Hi guys,
    When you deploy a library using Forte, if automatically updates the
    "Installed Libraries" list of the target node. However, not always. My
    question is, why? What property determines if a library should appear in
    this list or not. Of course, you can always add or remove it manually. But
    why doesn't it work the same automatically for all libraries.
    Pascal Rottier
    Origin Nederland (BAS/West End User Computing)
    Tel. +31 (0)10-2661223
    Fax. +31 (0)10-2661199
    E-mail: Pascal.Rottiernl.origin-it.com
    ++++++++++++++++++++++++++++
    Philip Morris (Afd. MIS)
    Tel. +31 (0)164-295149
    Fax. +31 (0)164-294444
    E-mail: Rottier.Pascalpmintl.ch
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com
    ******This
    e-mail is intended for the use of the individual or entity named
    above and may
    contain information that is confidential and privileged. If you
    are not the
    intended recipient, you are hereby notified that any
    dissemination, distribution
    or copying of this e-mail is strictly prohibited. If you have
    received this
    e-mail in error, please notify us immediately at
    helpdesklumley.com.au and
    destroy the original message. While this mail and any
    attachments have been
    scanned for common computer viruses and found to be virus free,
    we recommend you
    also perform your own virus checking processes before opening any
    attachments.
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

    If you use Forte, the solution is to patch compcomp, or add a 'post-distrib'
    script.
    compcomp:
    replace the -L/path/file by -L/path -l:file
    Add -Wl,+s in link command
    post-distrib:
    # Enable SHLIB_PATH
    for all binaries,
    chatr +s enable $bin
    done
    # Enable dyunamic libs for all static
    Libs=$(cahtr $bin | grep ^static)
    for aLib in $Libs ; do
    chatr $bin +s enable -l $aLib
    done
    cheers
    j-paul
    -----Message d'origine-----
    De: kelsey.petrychynsasktel.sk.ca
    [mailto:kelsey.petrychynsasktel.sk.ca]
    Date: lundi 18 septembre 2000 18:36
    &Agrave;: David McPaul; Rottier.Pascalpmintl.ch
    Cc: forte-userslists.xpedior.com
    Objet: RE: (forte-users) Node Installed Libraries
    Libraries have been a sore point with us too....
    When we build something that uses a user created or third party
    library the
    explicit directory path is hard-coded into the build.
    So when you deploy the application to a different machine there
    is much grief
    because the build can't find the library.
    We got around this by "fooling" the build. We used directory
    creation and soft
    links in Unix so that the library appears to be in the same
    directory on both machines.
    I think this is called Static vs. Dynamic Libraries. We've talked
    to Forte last
    year about this and they indicated that this will be a
    future enhancement. Don't hold your breath though.....
    David McPaul <dmcpaullumley.com.au> on 09/17/2000 07:14:13 PM
    To: "'Rottier, Pascal'" <Rottier.Pascalpmintl.ch>, "'Forte Users'"
    <forte-userslists.xpedior.com>
    cc: (bcc: Kelsey Petrychyn/SaskTel/CA)
    Subject: RE: (forte-users) Node Installed Libraries
    Hi,
    We build here against a standard environment (1 NT server, 1 NT
    modal node, 1 95 modal node)
    I have noticed that forte is very picky about where it deploys
    compiled partitions (and thus libraries). Basically if you
    didn't make your
    distribution against the environment you are installing on then
    the compiled
    partitions don't install and you will need to reconfigure the
    application by
    moving your partitions and libraries to the nodes that they should be.
    Now I expected that would be the case between different
    architectures (UNIX/NT) but I think forte expects you to compile against
    each machine you want to install on.
    Not much help I know.
    Cheers
    David
    -----Original Message-----
    From: Rottier, Pascal [mailto:Rottier.Pascalpmintl.ch]
    Sent: Saturday, September 16, 2000 12:59 AM
    To: 'Forte Users'
    Subject: (forte-users) Node Installed Libraries
    Hi guys,
    When you deploy a library using Forte, if automatically updates the
    "Installed Libraries" list of the target node. However, not always. My
    question is, why? What property determines if a library should appear in
    this list or not. Of course, you can always add or remove it manually. But
    why doesn't it work the same automatically for all libraries.
    Pascal Rottier
    Origin Nederland (BAS/West End User Computing)
    Tel. +31 (0)10-2661223
    Fax. +31 (0)10-2661199
    E-mail: Pascal.Rottiernl.origin-it.com
    ++++++++++++++++++++++++++++
    Philip Morris (Afd. MIS)
    Tel. +31 (0)164-295149
    Fax. +31 (0)164-294444
    E-mail: Rottier.Pascalpmintl.ch
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com
    ******This
    e-mail is intended for the use of the individual or entity named
    above and may
    contain information that is confidential and privileged. If you
    are not the
    intended recipient, you are hereby notified that any
    dissemination, distribution
    or copying of this e-mail is strictly prohibited. If you have
    received this
    e-mail in error, please notify us immediately at
    helpdesklumley.com.au and
    destroy the original message. While this mail and any
    attachments have been
    scanned for common computer viruses and found to be virus free,
    we recommend you
    also perform your own virus checking processes before opening any
    attachments.
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

  • Node Installed Libraries

    Hi guys,
    When you deploy a library using Forte, if automatically updates the
    "Installed Libraries" list of the target node. However, not always. My
    question is, why? What property determines if a library should appear in
    this list or not. Of course, you can always add or remove it manually. But
    why doesn't it work the same automatically for all libraries.
    Pascal Rottier
    Origin Nederland (BAS/West End User Computing)
    Tel. +31 (0)10-2661223
    Fax. +31 (0)10-2661199
    E-mail: Pascal.Rottiernl.origin-it.com
    ++++++++++++++++++++++++++++
    Philip Morris (Afd. MIS)
    Tel. +31 (0)164-295149
    Fax. +31 (0)164-294444
    E-mail: Rottier.Pascalpmintl.ch

    Hi guys,
    When you deploy a library using Forte, if automatically updates the
    "Installed Libraries" list of the target node. However, not always. My
    question is, why? What property determines if a library should appear in
    this list or not. Of course, you can always add or remove it manually. But
    why doesn't it work the same automatically for all libraries.
    Pascal Rottier
    Origin Nederland (BAS/West End User Computing)
    Tel. +31 (0)10-2661223
    Fax. +31 (0)10-2661199
    E-mail: Pascal.Rottiernl.origin-it.com
    ++++++++++++++++++++++++++++
    Philip Morris (Afd. MIS)
    Tel. +31 (0)164-295149
    Fax. +31 (0)164-294444
    E-mail: Rottier.Pascalpmintl.ch

  • Installed Libraries and Solo Instruments

    Hi
    My son and I have been teaching ourselves how to use this software and are having some great results with it. However, I am not sure whether all the libraries have installed properly as we do not seem to have a solo trumpet or trombone for example. Just seems weird that you get a bunch of them as a sampled sound but not a solo instrument. I suspect it is just us........ Any thoughts would be much appreciated.

    Funnily, those two (trumpet and trombone) don't appear as solo instruments, only as ensembles (in the Jam Pack Symphony Orchestra). Why? I don't know. They're just not there.

  • Trouble installing libraries

    I am struggling with installing the Gnu Bignum Library from source. I run the following generic install procedure:
    cd /path/to/gmp/
    ./configure
    make
    make check
    sudo make install
    using GMP 4.2.2 as gotten from http://gmplib.org/.
    After installing, I proceed to execute a simple test:
    #include <stdio.h>
    #include <gmp.h>
    int main(void) {
    char string[] = "8246828902480246849824892467824600";
    mpz_t integ;
    mpz_init(integ);
    mpzsetstr(integ, string, 0);
    gmp_printf("%Zd = %s\n", integ, string);
    printf("Size of mpz_t is : %d\n", sizeof(mpz_t));
    return 0;
    This is essentially a trivial test of the library's most basic functionality, etc.
    When I attempt to compile this code, using :
    gcc GMPtest.c -lgmp
    I am presented with the following:
    /usr/libexec/gcc/i686-apple-darwin8/4.0.1/ld: Undefined symbols:
    __gmpprintf
    __gmpzinit
    __gmpz_setstr
    collect2: ld returned 1 exit status
    I am assuming this is some sort of issue with the placement of the libraries, as when I list for them, they are all there:
    blah blah blah$ ls /usr/local/lib
    libgmp.3.4.2.dylib libgmp.3.dylib libgmp.a libgmp.dylib libgmp.la
    blah blah blah$ ls /usr/local/include
    gmp.h
    blah blah blah$
    Do I need to set gcc's path to look for these files somehow? Are there any settings that I must use to make this library accessible?
    Some information:
    iMac 2.16Ghz Core 2 Duo
    1Gb RAM
    Mac OS X 10.4.11
    blah blah blah$ gcc -v
    Using built-in specs.
    Target: i686-apple-darwin8
    Configured with: /var/tmp/gcc/gcc-5370~2/src/configure --disable-checking -enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c+,obj-c+ --program-transform-name=/^[cg][^.-]*$/s/$/-4.0/ --with-gxx-include-dir=/include/c++/4.0.0 --with-slibdir=/usr/lib --build=powerpc-apple-darwin8 --with-arch=nocona --with-tune=generic --program-prefix= --host=i686-apple-darwin8 --target=i686-apple-darwin8
    Thread model: posix
    gcc version 4.0.1 (Apple Computer, Inc. build 5370)

    You'll probably get better response in the UNIX group.
    http://discussions.apple.com/forum.jspa?forumID=735
    Have a nice day.
    Boyd

  • Installing oracle xe on centos ci environment

    Hi,
    I have a CI environment that run automated tests on my application every time a commit is pushed to github, the tests are run on a matrix of environments to check if the application is able to run with different databases.
    I currently have tests running with sqlite, mysql and postgres and would like to add oracle to the matrix.
    The application is in python, (for those curious it is here: https://github.com/treeio/treeio) so on top of the oracle xe database itself I need to install the appropriate driver (cx_oracle)
    The current CI I'm using is travis (https://travis-ci.org/), the tests run in a debian (or maybe ubuntu, I'm not sure) environment, they already have mysql and postgres installed
    Installing oracle xe on debian proved to be a headache, I've found https://oss.oracle.com/debian/ unstable main non-free which contains only and old 32 bits version, while this wouldn't be a problem for me it generate conflicts when I tried to install cx_oracle dependencies
    In any case I've found another CI (snap-ci.com) which uses centos, I've managed to install oracle-xe from the rpm and pip install cx_oracle finally works, but when I try to run anything that uses sqlplus it fails:
    echo "CREATE USER treeio IDENTIFIED BY treeio;" | sqlplus -S -L sys/admin AS SYSDBA
    sqlplus: command not found
    it seems it was not added to the path or maybe I should have installed yet another rpm.
    Ideally I would like to run the tests with oracle DB on both services (so I can test my application runs fine on debian and centos the same) but I can settle on running it on just one of them if you tell me it is not possible
    by the way, does anyone runs oracle or any of its tools on debian? they seems to provide only RPMs. do everyone that works with oracle uses read hat only?
    thanks
    Avraham

    Hi,
    The CI service have a interactive shell, I was able to further debug. I fixed the command not found problem and then it complained about permissions, but running with root gives me yet another exception.
    currently my script is as below:
    #set paths:
    export ORACLE_VERSION="11.2"
    export ORACLE_HOME="/usr/lib/oracle/$ORACLE_VERSION/client64"
    export PATH=$PATH:"$ORACLE_HOME/bin"
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"$ORACLE_HOME/lib"
    . /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh
    # create user
    echo "CREATE USER treeio IDENTIFIED BY treeio;" | sudo sqlplus -S -L sys/admin AS SYSDBA
    It gives me
    Error 6 initializing SQL*Plus
    SP2-0667: Message file sp1<lang>.msb not found
    SP2-0750: You may need to set ORACLE_HOME to your Oracle software directory
    I also noticed that I was insalling oracle xe 11.2 and client libraries 12.1, I'm not sure if that would cause problems but I'm installing libraries and clients with the same version (11.2.x)

  • Error when I am installing dbws-callout-utility-10131

    Hi, I'm installing libraries to use web services in pl/sql. but when I executed loadjava command I had some errors. The command I executed was
    loadjava -u sys/mike2701 -r -v -f -genmissing -s -grant public dbwsclientws.jar dbwsclientdb11.jar
    And errors when finallized to executed was:
    The following operations failed
    class com/sun/jmx/interceptor/DefaultMBeanServerInterceptor$1: creation (cre
    ateFailed)
    class com/sun/jmx/interceptor/DefaultMBeanServerInterceptor$ListenerWrapper:
    creation (createFailed)
    class com/sun/jmx/interceptor/DefaultMBeanServerInterceptor: creation (creat
    eFailed)
    class com/sun/jmx/interceptor/MBeanServerInterceptor: creation (createFailed
    class com/sun/jmx/mbeanserver/BaseMetaDataImpl: creation (createFailed)
    class com/sun/jmx/mbeanserver/ClassLoaderRepositorySupport$LoaderEntry: crea
    tion (createFailed)
    class com/sun/jmx/mbeanserver/ClassLoaderRepositorySupport: creation (create
    Failed)
    class com/sun/jmx/mbeanserver/DynamicMetaDataImpl: creation (createFailed)
    class com/sun/jmx/mbeanserver/GetPropertyAction: creation (createFailed)
    class com/sun/jmx/mbeanserver/Introspector: creation (createFailed)
    class com/sun/jmx/mbeanserver/JmxMBeanServer$1: creation (createFailed)
    class com/sun/jmx/mbeanserver/JmxMBeanServer: creation (createFailed)
    class com/sun/jmx/mbeanserver/MBeanInstantiator: creation (createFailed)
    class com/sun/jmx/mbeanserver/MBeanInstantiatorImpl: creation (createFailed)
    class com/sun/jmx/mbeanserver/MBeanServerDelegateImpl: creation (createFaile
    d)
    class com/sun/jmx/mbeanserver/MetaData: creation (createFailed)
    class com/sun/jmx/mbeanserver/MetaDataImpl$PrivateDynamicMeta: creation (cre
    ateFailed)
    class com/sun/jmx/mbeanserver/MetaDataImpl$PrivateStandardMeta: creation (cr
    eateFailed)
    class com/sun/jmx/mbeanserver/MetaDataImpl: creation (createFailed)
    class com/sun/jmx/mbeanserver/ModifiableClassLoaderRepository: creation (cre
    ateFailed)
    class com/sun/jmx/mbeanserver/NamedObject: creation (createFailed)
    class com/sun/jmx/mbeanserver/ObjectInputStreamWithLoader: creation (createF
    ailed)
    class com/sun/jmx/mbeanserver/Repository: creation (createFailed)
    class com/sun/jmx/mbeanserver/RepositorySupport$ObjectNamePattern: creation
    (createFailed)
    class com/sun/jmx/mbeanserver/RepositorySupport: creation (createFailed)
    class com/sun/jmx/mbeanserver/SecureClassLoaderRepository: creation (createF
    ailed)
    class com/sun/jmx/mbeanserver/StandardMetaDataImpl: creation (createFailed)
    class com/sun/jmx/mbeanserver/SunJmxMBeanServer: creation (createFailed)
    class com/sun/jmx/trace/Trace: creation (createFailed)
    class com/sun/jmx/trace/TraceDestination: creation (createFailed)
    class com/sun/jmx/trace/TraceManager: creation (createFailed)
    class com/sun/jmx/trace/TraceTags: creation (createFailed)
    class javax/management/Attribute: creation (createFailed)
    class javax/management/AttributeList: creation (createFailed)
    class javax/management/AttributeNotFoundException: creation (createFailed)
    class javax/management/BadAttributeValueExpException: creation (createFailed
    class javax/management/BadBinaryOpValueExpException: creation (createFailed)
    class javax/management/BadStringOperationException: creation (createFailed)
    class javax/management/Descriptor: creation (createFailed)
    class javax/management/DescriptorAccess: creation (createFailed)
    class javax/management/DynamicMBean: creation (createFailed)
    class javax/management/InstanceAlreadyExistsException: creation (createFaile
    d)
    class javax/management/InstanceNotFoundException: creation (createFailed)
    class javax/management/IntrospectionException: creation (createFailed)
    class javax/management/InvalidApplicationException: creation (createFailed)
    class javax/management/InvalidAttributeValueException: creation (createFaile
    d)
    class javax/management/JMException: creation (createFailed)
    class javax/management/JMRuntimeException: creation (createFailed)
    class javax/management/ListenerNotFoundException: creation (createFailed)
    class javax/management/MBeanAttributeInfo: creation (createFailed)
    class javax/management/MBeanConstructorInfo: creation (createFailed)
    class javax/management/MBeanException: creation (createFailed)
    class javax/management/MBeanFeatureInfo: creation (createFailed)
    class javax/management/MBeanInfo$ImmutabilityAction: creation (createFailed)
    class javax/management/MBeanInfo: creation (createFailed)
    class javax/management/MBeanNotificationInfo: creation (createFailed)
    class javax/management/MBeanOperationInfo: creation (createFailed)
    class javax/management/MBeanParameterInfo: creation (createFailed)
    class javax/management/MBeanPermission: creation (createFailed)
    class javax/management/MBeanRegistration: creation (createFailed)
    class javax/management/MBeanRegistrationException: creation (createFailed)
    class javax/management/MBeanServer: creation (createFailed)
    class javax/management/MBeanServerBuilder: creation (createFailed)
    class javax/management/MBeanServerConnection: creation (createFailed)
    class javax/management/MBeanServerDelegate: creation (createFailed)
    class javax/management/MBeanServerDelegateMBean: creation (createFailed)
    class javax/management/MBeanServerFactory: creation (createFailed)
    class javax/management/MBeanServerNotification: creation (createFailed)
    class javax/management/MBeanServerPermission: creation (createFailed)
    class javax/management/MBeanServerPermissionCollection: creation (createFail
    ed)
    class javax/management/MBeanTrustPermission: creation (createFailed)
    class javax/management/MalformedObjectNameException: creation (createFailed)
    class javax/management/NotCompliantMBeanException: creation (createFailed)
    class javax/management/Notification: creation (createFailed)
    class javax/management/NotificationBroadcaster: creation (createFailed)
    class javax/management/NotificationBroadcasterSupport$ListenerInfo: creation
    (createFailed)
    class javax/management/NotificationBroadcasterSupport: creation (createFaile
    d)
    class javax/management/NotificationEmitter: creation (createFailed)
    class javax/management/NotificationFilter: creation (createFailed)
    class javax/management/NotificationListener: creation (createFailed)
    class javax/management/ObjectInstance: creation (createFailed)
    class javax/management/ObjectName$Property: creation (createFailed)
    class javax/management/ObjectName: creation (createFailed)
    class javax/management/OperationsException: creation (createFailed)
    class javax/management/QueryEval: creation (createFailed)
    class javax/management/QueryExp: creation (createFailed)
    class javax/management/ReflectionException: creation (createFailed)
    class javax/management/RuntimeErrorException: creation (createFailed)
    class javax/management/RuntimeMBeanException: creation (createFailed)
    class javax/management/RuntimeOperationsException: creation (createFailed)
    class javax/management/ValueExp: creation (createFailed)
    class javax/management/loading/ClassLoaderRepository: creation (createFailed
    class javax/management/loading/PrivateClassLoader: creation (createFailed)
    class javax/management/modelmbean/DescriptorSupport: creation (createFailed)
    class javax/management/modelmbean/ModelMBeanAttributeInfo: creation (createF
    ailed)
    class javax/management/modelmbean/ModelMBeanConstructorInfo: creation (creat
    eFailed)
    class javax/management/modelmbean/ModelMBeanInfo: creation (createFailed)
    class javax/management/modelmbean/ModelMBeanInfoSupport: creation (createFai
    led)
    class javax/management/modelmbean/ModelMBeanNotificationInfo: creation (crea
    teFailed)
    class javax/management/modelmbean/ModelMBeanOperationInfo: creation (createF
    ailed)
    class javax/management/modelmbean/XMLParseException: creation (createFailed)
    class javax/management/remote/JMXConnector: creation (createFailed)
    class javax/management/remote/JMXServiceURL: creation (createFailed)
    class org/w3c/dom/ls/LSException: creation (createFailed)
    class javax/xml/xpath/XPathException: creation (createFailed)
    class javax/xml/xpath/XPathExpressionException: creation (createFailed)
    class javax/xml/xpath/XPathFunction: creation (createFailed)
    class javax/xml/xpath/XPathFunctionException: creation (createFailed)
    class javax/xml/xpath/XPathFunctionResolver: creation (createFailed)
    class javax/xml/xpath/XPathVariableResolver: creation (createFailed)
    exiting : Failures occurred during processing
    Regards

    Hi Ramesh,
    Please raise this issue with the SAP Market place. Already there are few notes available from them for this issue. Might require some upgrade for your system to correct this issue.
    Please look through these OSS Notes as well :
    1139547 - Transport of InfoObjects RC = 8
    1100575 - InfoObjects: Using units in compounding
    Best Regards,
    Arpit

  • Firefox 5 or 6 served over NFS to UNIX clients has problem finding shared object libraries.

    With versions of firefox 3 and below, I was able to serve the application from a NFS share to all client workstations. Now I can not find a version above 3 that will run from just the NFS share. They all need shared libraries local (instead of just using the shared libraries in the NFS share)

    It is just on Solaris we have the issue and even with local installed libraries it still crashes alot. On Redhat it works fine with the libraries in the NFS share.

  • Suggestions for compiling libraries on Leopard

    I'm finding it a real difficulty to get a couple of things I use for development up and running, and either my Google skills are failing me or people aren't asking this question:
    What is the best set of command line options to enter to allow for compilation as an x86_64 binary? I have a mac pro, but by default everything I've built so far compiles as an i386 file and won't run.
    I've tried the following line leading up to a configure shell command (very common in open source projects) with mixed results:
    CFLAGS='-arch x86_64 -DCPU=\"x86_64\" -Wc,-m64' LDFLAGS='-arch x86_64' ./configure
    Does anyone have any other ideas or better yet, something that works 100% of the time.
    TIA.
    Jason

    Not all open-source projects are as well "configure"-ed as others. I haven't yet done anything with x86_64, but I have had good success with the following aliases:
    alias uconfigure='env CFLAGS="-isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" CXXFLAGS="-isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" ./configure --disable-dependency-tracking'
    alias uconfigurelib='env CFLAGS="-isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" CXXFLAGS="-isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" ./configure --prefix=/Programming/Libraries --disable-dependency-tracking'
    alias umake='env CFLAGS="-isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" CXXFLAGS="-isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" make'
    Some caveats. These aliases are probably overkill and are doing the same thing redundantly over, and over again. But some of the projects I have had to compile just weren't done correctly and I really had to work on them to get UB versions. Also, I have done very little with Leopard and nothing with x86_64. Finally, the uconfigurelib alias is so I can install libraries in a non-standard location, out of the path, and test including dynamic libraries inside an application bundle.
    None of these aliases will work for every project. In some cases, they could screw something up badly. In particular, if an application/library uses #defines to do byte-swapping, or even does any byte swapping, you'll have additional work to do. Also, if the software wants to access installed data in the "--prefix" path, then uconfigurelib will not work properly.
    So no, these are not 100% guaranteed, but they are a good start and have worked fine on several projects.

  • RE: FORTE Libraries handling (between interfaces andimplementati ons)

    Charles..
    If you are talking about different repositories in a single environment, I
    am guessing the uuid of the pex file has to be the same. I am not sure if
    the pex file forte creates will have the same uuid as the pex file you
    obtain when you export with uuid from fscript. If uuid is important for
    installed libraries, which I think is true, then there-in lies the impact!!
    Cheers!!
    -Ravi Kalidindi
    Born Info Svcs Group
    -----Original Message-----
    From: Charles Abecassis [SMTP:[email protected]]
    Sent: Wednesday, February 24, 1999 9:18 AM
    Cc: '[email protected]'
    Subject: FORTE Libraries handling (between interfaces and
    implementations) question
    Hi,
    When a plan gets distributed as library, a '.sl' file is generated, as
    well as a
    pex file and some header files.
    When we need that library, we 'should' include that generated pex file in
    the
    workspace used for the distribution.
    What's the impact of keeping the original ('implementation'?) plan for the
    library, and not replacing it with the generated
    pex file ?
    J-Paul Gabrielli & Charles Abecassis
    Sema DTS
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    thanks a lot.
    But when the plan is distributed, there's no way of revealing the code that made it, isn't it ?
    -----Message d'origine-----
    De: Wang, Tien [SMTP:[email protected]]
    Date: mercredi 24 fevrier 1999 18:26
    A: 'Charles Abecassis'; 'Kalidindi, Ravi CWT-MSP'
    Cc: '[email protected]'
    Objet: RE: FORTE Libraries handling (between interfaces and implementati ons) question
    Hi Charles & Ravi,
    Another aspect of this subject is:
    Many times, libraries are designed to give to someone without revealing
    your code. If you decide to have the original project included, this
    means your program will use it as a supplier plan. It also implies your
    program will have knowledge of the original project and its parent
    supplier plans and so on.
    If you don't care about revealing your original code and dragging all
    the related projects into your program, it's fine. It has advantage:
    if you decide to change something in your original project, you can just
    run it without re-making distribution as a library.
    However, if your original project seems pretty stable and can be shared
    by other application, making it as a library is not a bad idea.
    Hope this helps.
    Regards,
    Tien Wang
    Indus Consultancy Services
    (201) 261-3100 ext 236
    [email protected]
    www.indcon.com
    From: Kalidindi, Ravi CWT-MSP[SMTP:[email protected]]
    Reply To: Kalidindi, Ravi CWT-MSP
    Sent: Wednesday, February 24, 1999 11:47 AM
    To: 'Charles Abecassis'
    Cc: '[email protected]'
    Subject: RE: FORTE Libraries handling (between interfaces and
    implementati ons) question
    Charles..
    If you are talking about different repositories in a single
    environment, I
    am guessing the uuid of the pex file has to be the same. I am not sure
    if
    the pex file forte creates will have the same uuid as the pex file you
    obtain when you export with uuid from fscript. If uuid is important
    for
    installed libraries, which I think is true, then there-in lies the
    impact!!
    Cheers!!
    -Ravi Kalidindi
    Born Info Svcs Group
    -----Original Message-----
    From: Charles Abecassis
    [SMTP:[email protected]]
    Sent: Wednesday, February 24, 1999 9:18 AM
    Cc: '[email protected]'
    Subject: FORTE Libraries handling (between interfaces and
    implementations) question
    Hi,
    When a plan gets distributed as library, a '.sl' file is generated,as
    well as a
    pex file and some header files.
    When we need that library, we 'should' include that generated pexfile in
    the
    workspace used for the distribution.
    What's the impact of keeping the original ('implementation'?) planfor the
    library, and not replacing it with the generated
    pex file ?
    J-Paul Gabrielli & Charles Abecassis
    Sema DTS
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive<URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • GD2 install question

    Trying toi install gd2 on my 'new' g5 xserve.
    Following directions found here: "Installing GD on OS X Server 10.5.x" (PDF File) (http://osx.topicdesk.com/content/view/133/41/)
    Installing libjpeg went fine. Output for the make is as below:
    UniMatrix-5:gd kaenath$ sudo make install
    Password:
    /bin/sh /SourceCache/php-5.2.8/ext/gd/libtool --mode=install cp ./gd.la /SourceCache/php-5.2.8/ext/gd/modules
    cp ./.libs/gd.so /SourceCache/php-5.2.8/ext/gd/modules/gd.so
    cp ./.libs/gd.lai /SourceCache/php-5.2.8/ext/gd/modules/gd.la
    Libraries have been installed in:
    /SourceCache/php-5.2.8/ext/gd/modules
    If you ever happen to want to link against installed libraries
    in a given directory, LIBDIR, you must either use libtool, and
    specify the full pathname of the library, or use the `-LLIBDIR'
    flag during linking and do at least one of the following:
    - add LIBDIR to the `DYLDLIBRARYPATH' environment variable
    during execution
    See any operating system documentation about shared libraries for
    more information, such as the ld(1) and ld.so(8) manual pages.
    Installing shared extensions: /usr/lib/php/extensions/no-debug-non-zts-20060613/
    Installing header files: /usr/include/php/
    Then I tried installing the gd lib
    using the following command, i get errors posted after.
    MACOSXDEPLOYMENTTARGET=10.5 CFLAGS="-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os -pipe -no-cppprecomp" CCFLAGS="-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os -pipe" CXXFLAGS="-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os -pipe" LDFLAGS="-arch ppc -arch ppc64 -arch i386 -arch x86_64 -bindatload" ./configure --with-zlib-dir=/usr --with-jpeg-dir=/usr/local/lib --with-png-dir=/usr/X11R6 --with-freetypedir=/usr/X11R6 --with-xpm-dir=/usr/X11R6cd
    UniMatrix-5:gd kaenath$ MACOSXDEPLOYMENTTARGET=10.5 CFLAGS="-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os -pipe -no-cppprecomp" CCFLAGS="-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os -pipe" CXXFLAGS="-arch ppc -arch ppc64 -arch i386 -arch x86_64 -g -Os -pipe" LDFLAGS="-arch ppc -arch ppc64 -arch i386 -arch x86_64 -bindatload" ./configure --with-zlib-dir=/usr --with-jpeg-dir=/usr/local/lib --with-png-dir=/usr/X11R6 --with-freetypedir=/usr/X11R6 --with-xpm-dir=/usr/X11R6cd
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for cc... cc
    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 cc accepts -g... yes
    checking for cc option to accept ISO C89... none needed
    checking how to run the C preprocessor... cc -E
    checking for icc... no
    checking for suncc... no
    checking whether cc understands -c and -o together... yes
    checking for system library directory... lib
    checking if compiler supports -R... no
    checking if compiler supports -Wl,-rpath,... yes
    checking build system type... powerpc-apple-darwin9.8.0
    checking host system type... powerpc-apple-darwin9.8.0
    checking target system type... powerpc-apple-darwin9.8.0
    checking for PHP prefix... /usr
    checking for PHP includes... -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib
    checking for PHP extension directory... /usr/lib/php/extensions/no-debug-non-zts-20060613
    checking for PHP installed headers prefix... /usr/include/php
    checking if debug is enabled... no
    checking if zts is enabled... no
    checking for re2c... no
    configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
    checking for gawk... no
    checking for nawk... no
    checking for awk... awk
    checking if awk is broken... no
    checking for GD support... yes, shared
    checking for the location of libjpeg... /usr/local/lib
    checking for the location of libpng... /usr/X11R6
    checking for the location of libz... /usr
    checking for the location of libXpm... /usr/X11R6cd
    checking for FreeType 1.x support... no
    checking for FreeType 2... no
    checking for T1lib support... no
    checking whether to enable truetype string function in GD... no
    checking whether to enable JIS-mapped Japanese font support in GD... no
    checking for fabsf... yes
    checking for floorf... yes
    checking for jpegreadheader in -ljpeg... no
    configure: error: Problem with libjpeg.(a|so). Please check config.log for more information.
    Any suggestion on how to get this to install correctly?
    Message was edited by: rick knecht

    RAID5 has performance setbacks with random writes and simultaneous small writes.  If you want good speed and reliability but at the cost of having 2TB of total space, use RAID 0+1.  Most mobos support 0, 1, 0+1, and 5.
    Edit: I don't trust really high capacity drives (basically everything over 800GB).  I've read so many reports of failures, I wouldn't want to risk all of my data.  So RAID 0 seems pretty much out of the question.
    Last edited by jwcxz (2009-05-14 08:02:24)

  • How to install GD2 Library ?

    Hello,
    does anyone know a tutorial to install the gd2 library on leopard server?
    the tutorial from http://osx.topicdesk.com/ is not working properly.
    Is it necessary to recompile php 5.2.4 which is shipped with leo server?
    many questions here
    chico

    I am trying to setup GD with the default PHP build that comes preinstalled on Leopard, but I am unable to get it work correctly.
    So far I have followed these instructions to get PHP5 working with with Apache2, this works fine and I am able to setup multiple virtual hosts for each of my websites and I have also downloaded and installed MySQL 5.0.45 which is now working fine with PHP the only problem is trying to get the extensions working.
    I then tried following: Add the GD Extension to PHP5 on OS X Server 10.5.x guide to install GD2, which all seemed to work in the terminal, but after I restarted Apache and reloaded my phpinfo() there is still no mention of GD.
    Any ideas why it isn't working (PS I have installed Xcode and X11SDK, from the Leopard DVD)
    Heres my terminal log:
    <pre>Last login: Sun Nov 11 18:59:13 on ttys000
    Sebs-Mac-Mini:~ Seb$ cd /SourceCache/jpeg-6b
    Sebs-Mac-Mini:jpeg-6b Seb$ sudo cp /usr/share/libtool/config.sub .
    Password:
    Sebs-Mac-Mini:jpeg-6b Seb$ sudo cp /usr/share/libtool/config.guess .
    Sebs-Mac-Mini:jpeg-6b Seb$ sudo ./configure --enable-shared
    checking for gcc... gcc
    checking whether the C compiler (gcc ) works... yes
    checking whether the C compiler (gcc ) is a cross-compiler... no
    checking whether we are using GNU C... yes
    checking how to run the C preprocessor... gcc -E
    checking for function prototypes... yes
    checking for stddef.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for size_t... yes
    checking for type unsigned char... yes
    checking for type unsigned short... yes
    checking for type void... yes
    checking for working const... yes
    checking for inline... _inline_
    checking for broken incomplete types... ok
    checking for short external names... ok
    checking to see if char is signed... yes
    checking to see if right shift is signed... yes
    checking to see if fopen accepts b spec... yes
    checking for a BSD compatible install... /usr/bin/install -c
    checking for ranlib... ranlib
    checking host system type... i686-apple-darwin9.0.0
    checking for ranlib... ranlib
    checking for gcc... gcc
    checking whether we are using GNU C... yes
    checking for gcc option to produce PIC... -fPIC
    checking if gcc PIC flag -fPIC works... yes
    checking if gcc static flag -static works... none
    checking whether ln -s works... yes
    checking for ld used by GCC... /usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld
    checking if the linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) is GNU ld... no
    checking whether the linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) supports shared libraries... no
    checking for BSD-compatible nm... /usr/bin/nm -p
    checking command to parse /usr/bin/nm -p output... no
    checking how to hardcode library paths into programs... unsupported
    checking for /usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld option to reload object files... -r
    checking dynamic linker characteristics... no
    checking if libtool supports shared libraries... no
    checking whether to build shared libraries... no
    checking whether to build static libraries... yes
    checking for objdir... .libs
    creating libtool
    checking libjpeg version number... 62
    creating ./config.status
    creating Makefile
    creating jconfig.h
    jconfig.h is unchanged
    Sebs-Mac-Mini:jpeg-6b Seb$ sudo make
    make: Nothing to be done for `all'.
    Sebs-Mac-Mini:jpeg-6b Seb$ mkdir -p /usr/local/include
    Sebs-Mac-Mini:jpeg-6b Seb$ mkdir -p /usr/local/bin
    Sebs-Mac-Mini:jpeg-6b Seb$ mkdir -p /usr/local/lib
    Sebs-Mac-Mini:jpeg-6b Seb$ mkdir -p /usr/local/man/man1
    Sebs-Mac-Mini:jpeg-6b Seb$ sudo make install
    /usr/bin/install -c -m 644 jconfig.h /usr/local/include/jconfig.h
    /usr/bin/install -c -m 644 ./jpeglib.h /usr/local/include/jpeglib.h
    /usr/bin/install -c -m 644 ./jmorecfg.h /usr/local/include/jmorecfg.h
    /usr/bin/install -c -m 644 ./jerror.h /usr/local/include/jerror.h
    ./libtool --mode=install /usr/bin/install -c libjpeg.la /usr/local/lib/libjpeg.la
    /usr/bin/install -c libjpeg.la /usr/local/lib/libjpeg.la
    /usr/bin/install -c .libs/libjpeg.a /usr/local/lib/libjpeg.a
    ranlib /usr/local/lib/libjpeg.a
    chmod 644 /usr/local/lib/libjpeg.a
    Libraries have been installed in:
    /usr/local/lib
    To link against installed libraries in a given directory, LIBDIR,
    you must use the `-LLIBDIR' flag during linking.
    You will also need to do one of the following:
    See any operating system documentation about shared libraries for
    more information, such as the ld(1) and ld.so(8) manual pages.
    ./libtool --mode=install /usr/bin/install -c cjpeg /usr/local/bin/cjpeg
    /usr/bin/install -c cjpeg /usr/local/bin/cjpeg
    ./libtool --mode=install /usr/bin/install -c djpeg /usr/local/bin/djpeg
    /usr/bin/install -c djpeg /usr/local/bin/djpeg
    ./libtool --mode=install /usr/bin/install -c jpegtran /usr/local/bin/jpegtran
    /usr/bin/install -c jpegtran /usr/local/bin/jpegtran
    ./libtool --mode=install /usr/bin/install -c rdjpgcom /usr/local/bin/rdjpgcom
    /usr/bin/install -c rdjpgcom /usr/local/bin/rdjpgcom
    ./libtool --mode=install /usr/bin/install -c wrjpgcom /usr/local/bin/wrjpgcom
    /usr/bin/install -c wrjpgcom /usr/local/bin/wrjpgcom
    /usr/bin/install -c -m 644 ./cjpeg.1 /usr/local/man/man1/cjpeg.1
    /usr/bin/install -c -m 644 ./djpeg.1 /usr/local/man/man1/djpeg.1
    /usr/bin/install -c -m 644 ./jpegtran.1 /usr/local/man/man1/jpegtran.1
    /usr/bin/install -c -m 644 ./rdjpgcom.1 /usr/local/man/man1/rdjpgcom.1
    /usr/bin/install -c -m 644 ./wrjpgcom.1 /usr/local/man/man1/wrjpgcom.1
    Sebs-Mac-Mini:jpeg-6b Seb$ cd /SourceCache/php-5.2.4/ext/gd
    Sebs-Mac-Mini:gd Seb$ sudo phpize
    Configuring for:
    PHP Api Version: 20041225
    Zend Module Api No: 20060613
    Zend Extension Api No: 220060519
    Sebs-Mac-Mini:gd Seb$ sudo ./configure --with-zlib-dir=/usr --with-jpeg-dir=/usr/local/lib --with-png-dir=/usr/X11R6 --with-freetype-dir=/usr/X11R6 --with-xpm-dir=/usr/X11R6
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for gcc... gcc
    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 gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking whether gcc and cc understand -c and -o together... yes
    checking for system library directory... lib
    checking if compiler supports -R... no
    checking if compiler supports -Wl,-rpath,... yes
    checking build system type... i686-apple-darwin9.0.0
    checking host system type... i686-apple-darwin9.0.0
    checking target system type... i686-apple-darwin9.0.0
    checking for PHP prefix... /usr
    checking for PHP includes... -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib
    checking for PHP extension directory... /usr/lib/php/extensions/no-debug-non-zts-20060613
    checking for PHP installed headers prefix... /usr/include/php
    checking for re2c... no
    configure: WARNING: You will need re2c 0.12.0 or later if you want to regenerate PHP parsers.
    checking for gawk... no
    checking for nawk... no
    checking for awk... awk
    checking if awk is broken... no
    checking for GD support... yes, shared
    checking for the location of libjpeg... /usr/local/lib
    checking for the location of libpng... /usr/X11R6
    checking for the location of libz... /usr
    checking for the location of libXpm... /usr/X11R6
    checking for FreeType 1.x support... no
    checking for FreeType 2... /usr/X11R6
    checking for T1lib support... no
    checking whether to enable truetype string function in GD... no
    checking whether to enable JIS-mapped Japanese font support in GD... no
    checking for fabsf... yes
    checking for floorf... yes
    checking for jpegreadheader in -ljpeg... yes
    checking for pngwriteimage in -lpng... yes
    checking for XpmFreeXpmImage in -lXpm... yes
    checking for FTNewFace in -lfreetype... yes
    checking for ld used by gcc... /usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld
    checking if the linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) is GNU ld... no
    checking for /usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld option to reload object files... -r
    checking for BSD-compatible nm... /usr/bin/nm -p
    checking whether ln -s works... yes
    checking how to recognise dependent libraries... pass_all
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... rm: conftest.dSYM: is a directory
    rm: conftest.dSYM: is a directory
    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 dlfcn.h usability... yes
    checking dlfcn.h presence... yes
    checking for dlfcn.h... yes
    checking the maximum length of command line arguments... 196608
    checking command to parse /usr/bin/nm -p output from gcc object... rm: conftest.dSYM: is a directory
    rm: conftest.dSYM: is a directory
    rm: conftest.dSYM: is a directory
    rm: conftest.dSYM: is a directory
    ok
    checking for objdir... .libs
    checking for ar... ar
    checking for ranlib... ranlib
    checking for strip... strip
    rm: conftest.dSYM: is a directory
    rm: conftest.dSYM: is a directory
    checking if gcc static flag works... rm: conftest.dSYM: is a directory
    yes
    checking if gcc supports -fno-rtti -fno-exceptions... rm: conftest.dSYM: is a directory
    no
    checking for gcc option to produce PIC... -fno-common
    checking if gcc PIC flag -fno-common works... rm: conftest.dSYM: is a directory
    yes
    checking if gcc supports -c -o file.o... rm: conftest.dSYM: is a directory
    yes
    checking whether the gcc linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) supports shared libraries... yes
    checking dynamic linker characteristics... darwin9.0.0 dyld
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    creating libtool
    appending configuration tag "CXX" to libtool
    configure: creating ./config.status
    config.status: creating config.h
    config.status: config.h is unchanged
    Sebs-Mac-Mini:gd Seb$ sudo make
    /bin/sh /SourceCache/php-5.2.4/ext/gd/libtool --mode=install cp ./gd.la /SourceCache/php-5.2.4/ext/gd/modules
    cp ./.libs/gd.so /SourceCache/php-5.2.4/ext/gd/modules/gd.so
    cp ./.libs/gd.lai /SourceCache/php-5.2.4/ext/gd/modules/gd.la
    Libraries have been installed in:
    /SourceCache/php-5.2.4/ext/gd/modules
    If you ever happen to want to link against installed libraries
    in a given directory, LIBDIR, you must either use libtool, and
    specify the full pathname of the library, or use the `-LLIBDIR'
    flag during linking and do at least one of the following:
    - add LIBDIR to the `DYLDLIBRARYPATH' environment variable
    during execution
    See any operating system documentation about shared libraries for
    more information, such as the ld(1) and ld.so(8) manual pages.
    Build complete.
    Don't forget to run 'make test'.
    Sebs-Mac-Mini:gd Seb$ sudo make install
    Installing shared extensions: /usr/lib/php/extensions/no-debug-non-zts-20060613/
    Installing header files: /usr/include/php/
    Sebs-Mac-Mini:gd Seb$</pre>

  • Help needed from the GB experts! I've just installed Native instruments Session Strings PRO!

    Hello, I wasn't paying much attentionI've accidentally installed the VST and RTAS together with the AU format :-( Just wondering if this mistake has just caused me 3 x times the amount of hard disk space! I don't think I'd be using Protools (VST) or any of Steinberg's DAW (RTAS) anytime soon, I'm still new to all this different types of plugins, could someone tell me if I should leave these formats (VST and RTAS) in my hard drive?
    Thank you for reading

    lyndonfromcooks hill wrote:
    Thanks so much for the reply! I did manage to locate the VST and Digidesign folders as per your previous instructions, however both have empty files in them, I then clicked each and "get info" from the menu bar, just to make sure, but both do not have any files, nor taking any hard disk space, which is strange, maybe your correct by saying the samples that was loaded initialy AU (at 30+ gig size) are only referenced for use by the other two formats when needed...anyways I'm only using the Kontakt Player for this library so NI doesn't provide any support for any related issues, all good
    You're welcome!
    A few thoughts:
    First, make sure you check your plugin folders in both your hard drive library and home library. Perhaps it's in the other one (hard disk > library > plug-ins > etc. AND user name > library > plug-ins > etc.)
    However, because installing libraries in different formats isn't unheard of, I would guess that it doesn't install the big honking sound files more than once, for the very thing you're concerned about. Just a guess though. 
    As for NI... yeah... they're not exactly known for good tech support!
    lyndonfromcooks hill wrote:
    Matt, just on the side note I'm a long time lurker from this forum and I've read and learned a lot from your postings, glad to say with your help, I'd leave this topic solved for now.
    Thank you once again.
    Thanks for the kind words!
    (Finally, if after checking all the plug in folders, you still had questions about this, you could always post in the Logic forum since I know some of those people use both Logic and ProTools. I only use / and have installed AU's so haven't dealt with this one myself. I'm just kind of educated-guessing this!).

  • Just bought a Macbook Pro and need suggestion about loading sound libraries

    I just bought the lower end Macbook Pro 200 GB Mem/2GB Ram. I installed Logic Studio on it. I have about 129 GB memory left. My question is, how does anybody deal with installing Libraries. On my main desktop, I got a separate hard-drive which holds about 150 GB of sound Libraries which I pretty much use. I could not even put this on my Macbook. I would like to work on my files on my new Macbook but would have half of the sounds missing if I work on an existing file (transferring from my Desktop to my macbook) How does everybody else deal with this. A separate ext HD?
    Thanks

    Hi Wolf,
    First of all: semantics. "Memory" means RAM. It does not mean disk space. You have a Macbook Pro with a 200GB hard disk and 4GB of memory -- NOT a MBP with 200GB of memory.
    If I understand you correctly, you want to be able to put all the sound libraries on your internal hard disk so that you have them with you when you're working away from an external hard disk. There's a couple ways.
    1) Buy an extremely large hard disk (500GB) and take the laptop to a certified Apple repair center or an Apple store and have them put it in for you. Do not do it yourself, as that would void the computer's warranty. This should give you plenty of space.
    2) Buy an external 2.5" USB/Firewire hard disk. They're very small and they don't require a separate AC adaptor. They come in various capacities up to 500GB. You just plug it in and put your sound libraries on it and then carry it with you when you take your laptop away from your desk.

Maybe you are looking for

  • ITunes stops downloading due to other windows

    iTunes stops importing the minute I open another program and that program's window is on top of iTunes. Any ideas how to prevent this? Thanks in advance. David

  • Only One Direction

    servlet to applet running ok but applet to servlet it is not giving any response. my code in applet is:      String Connector="http://192.9.200.157:8080/fbicext/servlet/com.fujitsu.pd.ctl.tsarr010.InsertSeatInfo"; DateServletURL = new URL(Connector);

  • REP-50002: Server is shutting down

    ======================================== Subledger Accounting: Version : 12.0.0 Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved. XLAABACR module: Validate Application Accounting Definitions +----------------------------- | Starting

  • Oracle Startup/Shutdown Procedure

    Hi All, We have Oracle 10G R2 on AIX 5 with ASM managed storage. My question is what are the steps to shutdown oracle database. I mean should we stop the ASM instance first or simple shutdown database command will do all work. Similarly what are the

  • Radio plug in for touch

    Hi - Anybody found a radio that you can plug into the touch yet please (and available in the UK)? Thanks for your help