Fahmon compile fails, problem with wxwidgets?

I tried compiling fahmon, but it says that I need to have wxwidgets installed.  I compiled wxWidgets fine, but what do I do after that?  Here's the error I get when I compile fahmon:
wxWidgets must be installed on your system.
Please check that wx-config is in path, the directory
where wxWidgets libraries are installed (returned by
'wx-config --libs' or 'wx-config --static --libs' command)
is in LD_LIBRARY_PATH or equivalent variable and
wxWidgets version is 2.8.0 or above.
Thanks!

jackassplus wrote:
My question is why the regex finds no matches.
all my checking is done before it gets here
IOW , Why would ".{5}$" not find a match in "thisChunk"
?Your regex ".{5}$" finds 0536B.
Before calling group() method, you should call find() method on the matcher in a while loop or an if clause. Otherwise, the regex engine is just idling.

Similar Messages

  • BUILD FAILED: problem with junit

    Hi, I'm taking the CDJ-310A - Developing Applications for the J2EE Platform course and have run into a problem when issuing a call to asant. When I run asant test the message it gives is "Ant could not find the task or a class this task relies upon.".The errors I get refer to the junit package.
    I've check the CLASSPATH and it seams ok:
    D:\labs\FJ310\bankproject>javap junit.framework.TestCase
    Compiled from "TestCase.java"
    public abstract class junit.framework.TestCase extends junit.framework.Assert im
    plements junit.framework.Test{
    public junit.framework.TestCase();
    public junit.framework.TestCase(java.lang.String);
    public int countTestCases();
    protected junit.framework.TestResult createResult();
    public junit.framework.TestResult run();
    public void run(junit.framework.TestResult);
    public void runBare() throws java.lang.Throwable;
    protected void runTest() throws java.lang.Throwable;
    protected void setUp() throws java.lang.Exception;
    protected void tearDown() throws java.lang.Exception;
    public java.lang.String toString();
    public java.lang.String getName();
    public void setName(java.lang.String);
    D:\labs\FJ310\bankproject>javap junit.textui.TestRunner
    Compiled from "TestRunner.java"
    public class junit.textui.TestRunner extends junit.runner.BaseTestRunner{
    public static final int SUCCESS_EXIT;
    public static final int FAILURE_EXIT;
    public static final int EXCEPTION_EXIT;
    public junit.textui.TestRunner();
    public junit.textui.TestRunner(java.io.PrintStream);
    public junit.textui.TestRunner(junit.textui.ResultPrinter);
    public static void run(java.lang.Class);
    public static junit.framework.TestResult run(junit.framework.Test);
    public static void runAndWait(junit.framework.Test);
    public void testFailed(int, junit.framework.Test, java.lang.Throwable);
    public void testStarted(java.lang.String);
    public void testEnded(java.lang.String);
    protected junit.framework.TestResult createTestResult();
    public junit.framework.TestResult doRun(junit.framework.Test);
    public junit.framework.TestResult doRun(junit.framework.Test, boolean);
    protected void pause(boolean);
    public static void main(java.lang.String[]);
    public junit.framework.TestResult start(java.lang.String[]) throws jav
    a.lang.Exception;
    protected junit.framework.TestResult runSingleMethod(java.lang.String, java.
    lang.String, boolean) throws java.lang.Exception;
    protected void runFailed(java.lang.String);
    public void setPrinter(junit.textui.ResultPrinter);
    But still these errors still are produced:
    D:\labs\FJ310\bankproject>asant clean
    Buildfile: build.xml
    clean:
    [delete] Deleting directory D:\labs\FJ310\bankproject\build
    [delete] Deleting directory D:\labs\FJ310\bankproject\jar
    BUILD SUCCESSFUL
    Total time: 0 seconds
    D:\labs\FJ310\bankproject>asant
    Buildfile: build.xml
    prepare:
    [mkdir] Created dir: D:\labs\FJ310\bankproject\build
    [mkdir] Created dir: D:\labs\FJ310\bankproject\jar
    compile:
    [javac] Compiling 6 source files to D:\labs\FJ310\bankproject\build
    [javac] D:\labs\FJ310\bankproject\src\bank\BankMgrTest.java:9: package junit
    .framework does not exist
    [javac] import junit.framework.*;
    [javac] ^
    [javac] D:\labs\FJ310\bankproject\src\bank\BankMgrTest.java:11: cannot find
    symbol
    [javac] symbol: class TestCase
    [javac] public class BankMgrTest extends TestCase {
    [javac] ^
    [javac] D:\labs\FJ310\bankproject\src\bank\BankMgrTest.java:15: cannot find
    symbol
    [javac] symbol : class Test
    [javac] location: class bank.BankMgrTest
    [javac] public static Test suite() {
    [javac] ^
    [javac] D:\labs\FJ310\bankproject\src\bank\BankMgrTest.java:16: cannot find
    symbol
    [javac] symbol : class TestSuite
    [javac] location: class bank.BankMgrTest
    [javac] return new TestSuite(BankMgrTest.class);
    [javac] ^
    [javac] D:\labs\FJ310\bankproject\src\bank\BankMgrTest.java:20: package juni
    t.textui does not exist
    [javac] junit.textui.TestRunner.run(suite());
    [javac] ^
    [javac] D:\labs\FJ310\bankproject\src\bank\BankMgrTest.java:39: cannot find
    symbol
    [javac] symbol : method assertEquals(java.lang.String,java.lang.String)
    [javac] location: class bank.BankMgrTest
    [javac] assertEquals("Fred", data.getFirstname());
    [javac] ^
    [javac] D:\labs\FJ310\bankproject\src\bank\BankMgrTest.java:40: cannot find
    symbol
    [javac] symbol : method assertEquals(java.lang.String,java.lang.String)
    [javac] location: class bank.BankMgrTest
    [javac] assertEquals("Flintstone", data.getLastname());
    [javac] ^
    [javac] Note: Some input files use unchecked or unsafe operations.
    [javac] Note: Recompile with -Xlint:unchecked for details.
    [javac] 7 errors
    BUILD FAILED
    D:\labs\FJ310\bankproject\build.xml:14: Compile failed; see the compiler error o
    utput for details.
    Total time: 4 seconds
    Any help solving these errors would be highly appreciated. I'm stuck right now. Thanks!

    i have this problem too. and i added in CLASSPATH the path for junit.jar file. but still does not work
    my build.xml file :
    <project name="bankproject" default="deploy" basedir=".">
      <property environment="env"/>
      <property name="src.dir"     value="${basedir}/src"/>
      <property name="build.dir"   value="${basedir}/build"/>
      <property name="jar.dir"     value="${basedir}/jar"/>
      <target name="prepare">
        <mkdir dir="${build.dir}"/>
        <mkdir dir="${jar.dir}"/>
      </target>
      <target name="compile" depends="prepare" >
        <javac destdir="${build.dir}">
          <src path="${src.dir}"/>
        </javac>
      </target>
      <target name="package-bankmgr" depends="compile">
        <delete file="${jar.dir}/BankEJBModule.jar"/>
        <copy file="dd/bank-ejb-jar.xml" tofile="${build.dir}/ejb-jar.xml" overwrite="true"/>
        <copy file="dd/bank-sun-ejb-jar.xml" tofile="${build.dir}/sun-ejb-jar.xml" overwrite="true"/>
        <jar jarfile="${jar.dir}/BankEJBModule.jar">
          <metainf dir="${build.dir}" includes="ejb-jar.xml,sun-ejb-jar.xml" />
          <fileset dir="${build.dir}">
            <include name="bank/**" />
            <exclude name="bank/BankMgrTest.class" />
            <exclude name="bank/CustomerTest.class" />
          </fileset>
        </jar>
      </target>
      <target name="package-ejbs" depends="package-bankmgr" />
      <target name="package-client" depends="compile">
        <delete file="${jar.dir}/ClientModule.jar"/>
        <copy file="dd/bank-application-client.xml" tofile="${build.dir}/application-client.xml" overwrite="true"/>
        <copy file="dd/bank-sun-application-client.xml" tofile="${build.dir}/sun-application-client.xml" overwrite="true"/>
        <jar jarfile="${jar.dir}/ClientModule.jar">
          <manifest>
             <attribute name="Main-Class" value="bank.MessageClient" />
         </manifest>
          <metainf dir="${build.dir}" includes="application-client.xml,sun-application-client.xml" />
          <fileset dir="${build.dir}">
            <include name="bank/MessageClient.class" />
          </fileset>
        </jar>
      </target>
      <target name="assemble-app" depends="package-ejbs,package-client">
        <delete file="${jar.dir}/BankApplication.ear"/>
        <copy file="dd/bank-application.xml" tofile="${build.dir}/application.xml" overwrite="true"/>
        <ear destfile="${jar.dir}/BankApplication.ear" appxml="${build.dir}/application.xml">
          <fileset dir="${jar.dir}">
              <include name="BankEJBModule.jar"/>
              <include name="ClientModule.jar"/>
          </fileset>
        </ear>
      </target>
      <property name="j2ee.home"   value="${env.J2EE_HOME}" />
      <property name="admin.user"  value="admin" />
      <property name="admin.pass"  value="password" />
      <property name="appname"     value="BankApplication"/>
      <property name="ear.file"    value="${jar.dir}/${appname}.ear" />
      <target name="setAsadmin" >
         <condition property="asadmin" value="asadmin.bat">
            <os family="windows"/>
         </condition>
         <condition property="asadmin" value="asadmin">
            <not>
               <os family="windows"/>
            </not>
         </condition>
      </target>
      <target name="deploy" depends="assemble-app,setAsadmin">
        <echo message="Deploying ${ear.file}."/>
        <exec dir="." executable="${j2ee.home}/bin/${asadmin}">
            <arg line=" deploy"/>
            <arg line=" --user ${admin.user}"/>
            <arg line=" --password ${admin.pass}"/>
            <arg line=" --force=true"/>
            <arg line=" --name ${appname}"/>
         <arg line=" --retrieve=." />
            <arg line=" ${ear.file}"/>
         </exec>  
      </target>
      <target name="get-stubs" depends="setAsadmin">
        <echo message="Retrieving stubs JAR file for ${appname}."/>
        <exec dir="." executable="${j2ee.home}/bin/${asadmin}">
            <arg line=" get-client-stubs"/>
            <arg line=" --user ${admin.user}"/>
            <arg line=" --password ${admin.pass}"/>
            <arg line=" --appname ${appname}"/>
            <arg line=" ."/>
         </exec>  
      </target>
      <target name="undeploy" depends="setAsadmin">
        <echo message="Undeploying ${appname}."/>
        <exec dir="." executable="${j2ee.home}/bin/${asadmin}">
            <arg line=" undeploy"/>
            <arg line=" --user ${admin.user}"/>
            <arg line=" --password ${admin.pass}"/>
            <arg line=" ${appname}"/>
         </exec>  
      </target>
      <target name="test">
        <junit printsummary="on" haltonfailure="no" filtertrace="off">
          <classpath>
            <pathelement location="${build.dir}"/>
            <pathelement path="${java.class.path}"/>
            <pathelement path="BankApplicationClient.jar" />
          </classpath>
         <formatter type="plain" usefile="no"/>
          <test name="bank.BankMgrTest"/>
        </junit>
      </target>
      <target name="clean">
        <delete dir="${build.dir}" />
        <delete dir="${jar.dir} "/>
      </target>
    </project>

  • Compilation's problems with eclipse

    hello
    in working for my thesis with eclipse I have see that the modify to source code have not effect in runt-time
    In effect I have an file .class, I modify the source file .java, I compile and i go this in run with the Eclipse command <<run>> but the behavior not change.
    I don't lie because i appnd a
    system.out
    to main of a class and in run-time the print is'nt.
    What's appened?
    I not remober about modify about Eclipse's configuration ????
    What do you think??
    thank for every feed-back
    Alessandro Puzielli

    Ehm...
    I use Eclipse over Linux.. I have runned Eclipse as
    "root" a few of day ago and Eclipse's behaviort was
    ok. After I have lanched Eclipse as normal user and
    in effect I try to overwriter the *class of root and
    it's impossible!it's normal 'cause you don't have the permissions on the project files
    I have take a few of day for the understand the
    problem with a
    $ stat name_of_file_.classThanks for the responses!so if your project is a small project, start Eclipse as normal user and rewrite your project ! otherwise, log u as root and give you all the permission on the project and it may work (chmod 777 -R project_path)
    peace
    fred

  • I have call fail problem with my iphone 4 , i can't make calls

    I'm facing the problem of call fail and i can't make calls from my i phone , but i can recive calls & data also , only the problem is for the outgoing calls.

    ejcampbell wrote:
    Strange that a 10-12 year old dumb phone significantly out perfromed the 4S with a marginal signal is little disquieting. 
    Not really... that ancient EDGE only phone will stop working as AT&T sunsets their EDGE network over the next few years.
    Some phones are simply better at picking up weak signals than others.

  • Compiling 0ad - problem with updating workspaces

    Hello.
    I am trying to compile the game 0ad from AUR with makepkg (tried as root and as normal user). Afte downloading and making I get this error message:
    Aktualisiert zu Revision 7314.
    ==> SVN checkout done or server timeout
    ==> Starting make...
    ==> Updating Workspaces...
    /mnt/winshare/user/0ad/PKGBUILD: Zeile 40: ./update-workspaces.sh: Keine Berechtigung
    ==> FEHLER: Build fehlgeschlagen.
    Breche ab ...
    The main problem is, that I have no permission to use ./update-workspaces.sh although it has the permission mask 777! I even tried to compile as root, but the error persists. I am not sure, but maybe it has something to do with the circumstance that I compile the files on a ntfs-partition. I have to, because my ext3-partition is too small.
    I appreciate any help.
    Greetz,
    haunted

    Hi again
    And that's why we call them bugs.
    Did you remember to report it as same to Adobe? The link is in my sig.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Compile / run problems with netbeans 6 but not netbeans 6 beta 1 or 5.5

    When I compile my project in netbeans IDE 6.0 (Build 200711261600) 1.6.0_01; Java HotSpot(TM) Client VM 1.6.0_01-b06 i get quite often a "can not find symbol" error or during runtime a "netbeans 6 java.lang.NoClassDefFoundError" exception. also switching between F6 or ctrl-F5 mode can cause the problem to appear.
    Compiling again or clean build resolves it.
    However running the same project under netbeans 5.5 or 6 beta 1 never gives this problem.
    any hint what might be wrong? i looked and compared the project settings but can't see any difference, but I assume that the upgrade script must have changed something.

    <?xml version="1.0" encoding="UTF-8" ?>
    - <project name="BorderDemo" default="default" basedir=".">
    <import file="nbproject/build-impl.xml" />
    </project>This is 'build.xml' file. Check for 'project.xml' file in 'nbproject' folder. You will find it to be:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <project xmlns="http://www.netbeans.org/ns/project/1">
      <type>org.netbeans.modules.java.j2seproject</type>
    - <configuration>
    - <data xmlns="http://www.netbeans.org/ns/j2se-project/3">
      <name>BorderDemo</name>
      <minimum-ant-version>1.6.5</minimum-ant-version>
    - <source-roots>
      <root id="src.dir" />
      </source-roots>
      </data>
      </configuration>
      </project>Change it to:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <project xmlns="http://www.netbeans.org/ns/project/1">
      <type>org.netbeans.modules.java.j2seproject</type>
    - <configuration>
    - <data xmlns="http://www.netbeans.org/ns/j2se-project/3">
      <name>BorderDemo</name>
      <minimum-ant-version>1.6.5</minimum-ant-version>
    - <source-roots>
      <root id="src.dir" />
      </source-roots>
      <test-roots>
      <root id="test.src.dir" />
      </test-roots>
      </data>
      </configuration>
      </project>I hope it works.....
    thanks!

  • Precondition Failed problem with apache plugin using SSL

    I got a "Precondition Failed" while trying to use apache + mod_ssl + mod_wl128_20.so.
    I am using Apache 2.0.52 & WebLogic 8.1 SP4 on Windows 2K Server.
    The web.xml is something like this:
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Secured</web-resource-name>
    <url-pattern>/appmanager/Portal/desktop</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    While the httpd.conf is:
         <IfModule mod_weblogic.c>
              SetHandler weblogic-handler
              WebLogicHost localhost
              WebLogicPort 7001
              MatchExpression *
         </IfModule>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    <VirtualHost localhost:443>
         <IfModule mod_weblogic.c>
              DEBUG ALL
              SetHandler weblogic-handler
              SecureProxy ON
              TrustedCAFile C:/bea81/weblogic81/server/lib/CertGenCA.der
              RequireSSLHostMatch FALSE
              WebLogicHost localhost
              WebLogicPort 7002
              KeepAliveEnabled false
              MatchExpression *
         </IfModule>
    The proxy of http is fine and I can also use port virtualhost 443 map to weblogic http (port 7001).
    But when I use 443 map to 7002 (SSL), I got an error:
         Precondition Failed
         The precondition on the request for the URL /MyPortal/appmanager/Portal/desktop evaluated to false.
    When I turned on the DEBUG ALL in httpd.conf, I find an error message:
         ================New Request: [GET /MyPortal/appmanager/Portal/desktop HTTP/1.1] =================
         Thu Aug 11 14:29:44 2005 INFO: SSL is configured
         Thu Aug 11 14:29:44 2005 SSL Main Context not set. Calling InitSSL
         Thu Aug 11 14:29:44 2005 ERROR: SSL initialization failed
    Can anyone help me? Please email me by [email protected]
    Thanks very much!

    I got past the initial problem. You need to run der2pem and use the pem file not the der file.

  • 5140 - Camera say operation failed/problem with ch...

    Every time I try to take a photo it comes up with 'operation failed'. There's plenty of memory, 'tis a mystery to me.
    ALSO - charging, says it's full, but after one (short) call it's empty.
    Any ideas 'cos I love this phone and don't really want to replace it.

    Every time I try to take a photo it comes up with 'operation failed'. There's plenty of memory, 'tis a mystery to me.
    ALSO - charging, says it's full, but after one (short) call it's empty.
    Any ideas 'cos I love this phone and don't really want to replace it.

  • Cannot compile Lightspark, problem with llvm

    Hello,
    Lightspark is a new flash player for Flash 9 and more I would like to try. All is done for Ubuntu users, but for the others you have to compile the sources, that's what I am trying.
    During the compilation, here is what I got :
    [ 94%] Built target spark
    Scanning dependencies of target lightspark
    [ 97%] Building CXX object CMakeFiles/lightspark.dir/main.cpp.o
    Linking CXX executable lightspark
    /usr/bin/ld: cannot find -lLLVMLinker
    collect2: ld a retourné 1 code d'état d'exécution
    make[2]: *** [lightspark] Erreur 1
    make[1]: *** [CMakeFiles/lightspark.dir/all] Erreur 2
    make: *** [all] Erreur 2
    As far as I searched on Google, the problem should be easy to fix, there is one name file to change or one packet to download. If this is really the problem, which file/packet ?
    Lightspark wants the user to use cmake :
    [zarmakuizz@zarok objs]$ cmake -DCMAKE-BUILD-TYPE=Release ..
    -- The C compiler identification is GNU
    -- The CXX compiler identification is GNU
    -- Check for working C compiler: /usr/bin/gcc
    -- Check for working C compiler: /usr/bin/gcc -- works
    -- Detecting C compiler ABI info
    -- Detecting C compiler ABI info - done
    -- Check for working CXX compiler: /usr/bin/c++
    -- Check for working CXX compiler: /usr/bin/c++ -- works
    -- Detecting CXX compiler ABI info
    -- Detecting CXX compiler ABI info - done
    -- Found assembler: /usr/bin/nasm
    -- LLVM llvm-config found at: /usr/bin/llvm-config
    -- LLVM version: 2.7
    -- LLVM CXX flags: -I/usr/include  -DNDEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -O2 -fomit-frame-pointer -fno-exceptions -fno-rtti -fPIC -Woverloaded-virtual
    -- LLVM LD flags: -L/usr/lib/llvm  -lpthread -lffi -ldl -lm
    -- LLVM core libs: -lLLVMLinker -lLLVMArchive -lLLVMBitWriter -lLLVMBitReader -lLLVMInstrumentation -lLLVMipo -lLLVMTransformUtils -lLLVMipa -lLLVMAnalysis -lLLVMTarget -lLLVMMC -lLLVMCore -lLLVMSupport -lLLVMSystem
    -- LLVM JIT libs: -lLLVMX86Disassembler -lLLVMX86AsmParser -lLLVMMCParser -lLLVMX86AsmPrinter -lLLVMX86CodeGen -lLLVMSelectionDAG -lLLVMAsmPrinter -lLLVMX86Info -lLLVMJIT -lLLVMExecutionEngine -lLLVMCodeGen -lLLVMScalarOpts -lLLVMInstCombine -lLLVMTransformUtils -lLLVMipa -lLLVMAnalysis -lLLVMTarget -lLLVMMC -lLLVMCore -lLLVMSupport -lLLVMSystem
    -- LLVM JIT objs:
    -- Found LLVM: /usr/include
    -- Looking for include files CMAKE_HAVE_PTHREAD_H
    -- Looking for include files CMAKE_HAVE_PTHREAD_H - found
    -- Looking for pthread_create in pthreads
    -- Looking for pthread_create in pthreads - not found
    -- Looking for pthread_create in pthread
    -- Looking for pthread_create in pthread - found
    -- Found Threads: TRUE
    -- Found CURL: /usr/lib/libcurl.so
    -- Found ZLIB: /usr/lib/libz.so
    -- checking for modules 'gl;libpcrecpp;libavcodec;libavutil;ftgl;x11'
    --   found gl, version 7.7.1
    --   found libpcrecpp, version 8.02
    --   found libavcodec, version 52.67.0
    --   found libavutil, version 50.15.2
    --   found ftgl, version 2.1.3~rc5
    --   found x11, version 1.3.3
    -- Loaded CMakeASM-NASMInformation - ASM-NASM support is still experimental, please report issues
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/zarmakuizz/progra/lightspark-0.3.1/objs
    When compiling :
    [zarmakuizz@zarok objs]$ make
    Scanning dependencies of target spark
    [  2%] Building CXX object CMakeFiles/spark.dir/swf.cpp.o
    [  5%] Building CXX object CMakeFiles/spark.dir/swftypes.cpp.o
    /home/zarmakuizz/progra/lightspark-0.3.1/swftypes.cpp: In member function 'virtual void lightspark::FILLSTYLE::setFragmentProgram() const':
    /home/zarmakuizz/progra/lightspark-0.3.1/swftypes.cpp:1268:25: attention : unused variable 'buffer'
    /home/zarmakuizz/progra/lightspark-0.3.1/swftypes.cpp:1269:16: attention : unused variable 'grad_index'
    /home/zarmakuizz/progra/lightspark-0.3.1/swftypes.cpp:1271:7: attention : unused variable 'index_l'
    /home/zarmakuizz/progra/lightspark-0.3.1/swftypes.cpp:1273:7: attention : unused variable 'index_r'
    [  8%] Building CXX object CMakeFiles/spark.dir/tags.cpp.o
    [ 10%] Building CXX object CMakeFiles/spark.dir/geometry.cpp.o
    [ 13%] Building CXX object CMakeFiles/spark.dir/actions.cpp.o
    [ 16%] Building CXX object CMakeFiles/spark.dir/frame.cpp.o
    [ 18%] Building CXX object CMakeFiles/spark.dir/input.cpp.o
    [ 21%] Building CXX object CMakeFiles/spark.dir/streams.cpp.o
    [ 24%] Building CXX object CMakeFiles/spark.dir/tags_stub.cpp.o
    [ 27%] Building CXX object CMakeFiles/spark.dir/logger.cpp.o
    [ 29%] Building CXX object CMakeFiles/spark.dir/vm.cpp.o
    [ 32%] Building CXX object CMakeFiles/spark.dir/asobjects.cpp.o
    [ 35%] Building CXX object CMakeFiles/spark.dir/abc.cpp.o
    [ 37%] Building CXX object CMakeFiles/spark.dir/abc_codesynt.cpp.o
    /home/zarmakuizz/progra/lightspark-0.3.1/abc_codesynt.cpp: In member function 'lightspark::ASObject* (* lightspark::method_info::synt_method())(lightspark::call_context*)':
    /home/zarmakuizz/progra/lightspark-0.3.1/abc_codesynt.cpp:1611:53: attention : passing NULL to non-pointer argument 2 of 'static llvm::Constant* llvm::ConstantInt::get(const llvm::Type*, uint64_t, bool)'
    /home/zarmakuizz/progra/lightspark-0.3.1/abc_codesynt.cpp:2606:53: attention : passing NULL to non-pointer argument 2 of 'static llvm::Constant* llvm::ConstantInt::get(const llvm::Type*, uint64_t, bool)'
    [ 40%] Building CXX object CMakeFiles/spark.dir/abc_opcodes.cpp.o
    [ 43%] Building CXX object CMakeFiles/spark.dir/flashdisplay.cpp.o
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp: In static member function 'static lightspark::ASObject* lightspark::Graphics::lineTo(lightspark::ASObject*, lightspark::ASObject* const*, unsigned int)':
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1634:12: attention : unused variable 'th'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1637:6: attention : unused variable 'x'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1638:6: attention : unused variable 'y'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp: In static member function 'static lightspark::ASObject* lightspark::Graphics::drawCircle(lightspark::ASObject*, lightspark::ASObject* const*, unsigned int)':
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1671:9: attention : unused variable 'x'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1672:9: attention : unused variable 'y'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1673:9: attention : unused variable 'radius'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp: In static member function 'static lightspark::ASObject* lightspark::Graphics::drawRect(lightspark::ASObject*, lightspark::ASObject* const*, unsigned int)':
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1694:6: attention : unused variable 'x'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1695:6: attention : unused variable 'y'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1696:6: attention : unused variable 'width'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1697:6: attention : unused variable 'height'
    [ 45%] Building CXX object CMakeFiles/spark.dir/flashevents.cpp.o
    [ 48%] Building CXX object CMakeFiles/spark.dir/textfile.cpp.o
    [ 51%] Building CXX object CMakeFiles/spark.dir/thread_pool.cpp.o
    [ 54%] Building CXX object CMakeFiles/spark.dir/flashgeom.cpp.o
    [ 56%] Building CXX object CMakeFiles/spark.dir/flashnet.cpp.o
    [ 59%] Building CXX object CMakeFiles/spark.dir/flashsystem.cpp.o
    [ 62%] Building CXX object CMakeFiles/spark.dir/flashutils.cpp.o
    [ 64%] Building CXX object CMakeFiles/spark.dir/compat.cpp.o
    [ 67%] Building CXX object CMakeFiles/spark.dir/abc_interpreter.cpp.o
    [ 70%] Building CXX object CMakeFiles/spark.dir/flashexternal.cpp.o
    [ 72%] Building CXX object CMakeFiles/spark.dir/flashtext.cpp.o
    [ 75%] Building CXX object CMakeFiles/spark.dir/flashmedia.cpp.o
    [ 78%] Building CXX object CMakeFiles/spark.dir/flv.cpp.o
    [ 81%] Building CXX object CMakeFiles/spark.dir/netutils.cpp.o
    [ 83%] Building CXX object CMakeFiles/spark.dir/timer.cpp.o
    [ 86%] Building CXX object CMakeFiles/spark.dir/decoder.cpp.o
    /home/zarmakuizz/progra/lightspark-0.3.1/decoder.cpp: In member function 'virtual bool lightspark::FFMpegDecoder::decodeData(uint8_t*, uint32_t)':
    /home/zarmakuizz/progra/lightspark-0.3.1/decoder.cpp:365:2: attention : 'int avcodec_decode_video(AVCodecContext*, AVFrame*, int*, const uint8_t*, int)' is deprecated (declared at /usr/include/libavcodec/avcodec.h:3448)
    /home/zarmakuizz/progra/lightspark-0.3.1/decoder.cpp:365:69: attention : 'int avcodec_decode_video(AVCodecContext*, AVFrame*, int*, const uint8_t*, int)' is deprecated (declared at /usr/include/libavcodec/avcodec.h:3448)
    /home/zarmakuizz/progra/lightspark-0.3.1/decoder.cpp:372:2: attention : comparaison entre des expressions entières signée et non signée
    [ 89%] Building CXX object CMakeFiles/spark.dir/threading.cpp.o
    [ 91%] Building CXX object CMakeFiles/spark.dir/flashxml.cpp.o
    /home/zarmakuizz/progra/lightspark-0.3.1/flashxml.cpp: In static member function 'static lightspark::ASObject* lightspark::XMLDocument::_constructor(lightspark::ASObject*, lightspark::ASObject* const*, unsigned int)':
    /home/zarmakuizz/progra/lightspark-0.3.1/flashxml.cpp:46:15: attention : unused variable 'th'
    [ 94%] Building ASM-NASM object CMakeFiles/spark.dir/fastpaths_64.asm.o
    Linking CXX static library libspark.a
    [ 94%] Built target spark
    Scanning dependencies of target lightspark
    [ 97%] Building CXX object CMakeFiles/lightspark.dir/main.cpp.o
    Linking CXX executable lightspark
    /usr/bin/ld: cannot find -lLLVMLinker
    collect2: ld a retourné 1 code d'état d'exécution
    make[2]: *** [lightspark] Erreur 1
    make[1]: *** [CMakeFiles/lightspark.dir/all] Erreur 2
    make: *** [all] Erreur 2
    I don't know what to do to fix it Any idea ?
    Regards,
    Zarmakuizz

    Check here
    http://bbs.archlinux.org/viewtopic.php?id=97363

  • Nodemanager start failed (problems with native libraries)

    Hi,
    I've problem in starting nodemanager, this exception has been raised when I run startNodeManager.sh script:
    + CLASSPATH=/e/bea/patch_weblogic300/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/e/bea/jdk150_06/lib/tools.jar:/e/bea/sipserver30/server/lib/weblogic_sp.jar:/e/bea/sipserver30/server/lib/wlss/sipservlet.jar:/e/bea/sipserver30/server/lib/wlss/wlss.jar:/e/bea/sipserver30/server/lib/wlss/wlss-descriptor-binding.jar:/e/bea/sipserver30/server/lib/wlss/profile-service-descriptor-binding.jar:/e/bea/sipserver30/server/lib/wlss/wlss-mbeaninfo.jar:/e/bea/sipserver30/server/lib/wlss/wlss_i18n.jar:/e/bea/sipserver30/server/lib/wlss/wlssechosvr.jar:/e/bea/sipserver30/server/lib/wlss/wlssdiameter.jar:/e/bea/sipserver30/server/lib/wlss/sctp.jar:/e/bea/sipserver30/server/lib/weblogic.jar:/e/bea/sipserver30/server/lib/webservices.jar::/e/bea/patch_weblogic300/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/e/bea/jdk150_06/lib/tools.jar:/e/bea/sipserver30/server/lib/weblogic_sp.jar:/e/bea/sipserver30/server/lib/wlss/sipservlet.jar:/e/bea/sipserver30/server/lib/wlss/wlss.jar:/e/bea/sipserver30/server/lib/wlss/wlss-descriptor-binding.jar:/e/bea/sipserver30/server/lib/wlss/profile-service-descriptor-binding.jar:/e/bea/sipserver30/server/lib/wlss/wlss-mbeaninfo.jar:/e/bea/sipserver30/server/lib/wlss/wlss_i18n.jar:/e/bea/sipserver30/server/lib/wlss/wlssechosvr.jar:/e/bea/sipserver30/server/lib/wlss/wlssdiameter.jar:/e/bea/sipserver30/server/lib/wlss/sctp.jar:/e/bea/sipserver30/server/lib/weblogic.jar:/e/bea/sipserver30/server/lib/webservices.jar::/e/bea/sipserver30/common/eval/pointbase/lib/pbclient51.jar:/e/bea/sipserver30/server/lib/xqrl.jar::/e/bea
    + export CLASSPATH
    + export PATH
    + cd /e/bea/sipserver30/common/nodemanager
    + set -x
    + '[' '' '!=' '' ']'
    + '[' '' '!=' '' ']'
    + /e/bea/jdk150_06/bin/java -client -Xms32m -Xmx200m -XX:MaxPermSize=128m -Xverify:none -da -Dplatform.home=/e/bea/sipserver30 -Dwls.home=/e/bea/sipserver30/server -Dwli.home=/e/bea/sipserver30/integration -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/e/bea/patch_weblogic300/profiles/default/sysext_manifest_classpath -Xverify:none -Djava.security.policy=/e/bea/sipserver30/server/lib/weblogic.policy -Dweblogic.nodemanager.javaHome=/e/bea/jdk150_06 weblogic.NodeManager -v
    <1-mar-2007 12.24.43> <INFO> <Loading domains file: /e/bea/sipserver30/common/nodemanager/nodemanager.domains>
    <1-mar-2007 12.24.44> <GRAVE> <Fatal error in node manager server>
    weblogic.nodemanager.common.ConfigException: Native version is enabled but node manager native library could not be loaded
    at weblogic.nodemanager.server.NMServerConfig.initProcessControl(NMServerConfig.java:212)
    at weblogic.nodemanager.server.NMServerConfig.<init>(NMServerConfig.java:172)
    at weblogic.nodemanager.server.NMServer.init(NMServer.java:174)
    at weblogic.nodemanager.server.NMServer.<init>(NMServer.java:139)
    at weblogic.nodemanager.server.NMServer.main(NMServer.java:286)
    at weblogic.NodeManager.main(NodeManager.java:31)
    Caused by: java.lang.UnsatisfiedLinkError: no nodemanager in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
    at java.lang.Runtime.loadLibrary0(Runtime.java:822)
    at java.lang.System.loadLibrary(System.java:992)
    at weblogic.nodemanager.util.UnixProcessControl.<init>(UnixProcessControl.java:16)
    at weblogic.nodemanager.util.Platform.getProcessControl(Platform.java:108)
    at weblogic.nodemanager.server.NMServerConfig.initProcessControl(NMServerConfig.java:210)
    ... 5 more
    It seems that problem is in nodemanager native library :
    /e/bea/sipserver30/server/native/linux/i686/libnodemanager.so
    I'm working on a host with a Amd Cpu
    cat /proc/cpuinfo
    model name : AMD Opteron(tm) Processor 280
    and a Linux OS:
    # uname -a
    Linux 2.6.9-34.ELsmp #1 SMP Fri Feb 24 16:56:28 EST 2006 x86_64 x86_64 x86_64 GNU/Linux
    thank in advance

    Hi
    Just modify the NativeVersionEnabled property to false in nodemanager.properties file, that will solve the pb. If you dont have a property in nodemanager.properties file add one.
    Thanks,
    Venkata Koteswara Rao

  • [Solved] kernel 2.6.28.1 compilation fails with reiser4 patch

    Hi,
    has anyone had problems compiling the latest kernel with the reiser4 patch?
    The patching process itself completes successfully apart from this part:
    patching file include/linux/fs.h
    Hunk #1 succeeded at 1372 (offset 3 lines).
    Hunk #2 succeeded at 1811 (offset 3 lines).
    patching file mm/filemap.c
    While the compilation fails here
    CC fs/reiser4/plugin/file/file_conversion.o
    fs/reiser4/plugin/file/file_conversion.c: In function 'reiser4_write_begin_careful':
    fs/reiser4/plugin/file/file_conversion.c:689: error: implicit declaration of function '__grab_cache_page'
    fs/reiser4/plugin/file/file_conversion.c:689: warning: assignment makes pointer from integer without a cast
    make[2]: *** [fs/reiser4/plugin/file/file_conversion.o] Error 1
    make[1]: *** [fs/reiser4] Error 2
    make: *** [fs] Error 2
    Or is it just me doing something wrong?
    Last edited by moz (2009-01-23 13:08:27)

    moz wrote:
    Hi,
    has anyone had problems compiling the latest kernel with the reiser4 patch?
    The patching process itself completes successfully apart from this part:
    patching file include/linux/fs.h
    Hunk #1 succeeded at 1372 (offset 3 lines).
    Hunk #2 succeeded at 1811 (offset 3 lines).
    patching file mm/filemap.c
    While the compilation fails here
    CC fs/reiser4/plugin/file/file_conversion.o
    fs/reiser4/plugin/file/file_conversion.c: In function 'reiser4_write_begin_careful':
    fs/reiser4/plugin/file/file_conversion.c:689: error: implicit declaration of function '__grab_cache_page'
    fs/reiser4/plugin/file/file_conversion.c:689: warning: assignment makes pointer from integer without a cast
    make[2]: *** [fs/reiser4/plugin/file/file_conversion.o] Error 1
    make[1]: *** [fs/reiser4] Error 2
    make: *** [fs] Error 2
    Or is it just me doing something wrong?
    It is a well known issue

  • Error creating files. Compilation failed... when publishing iOS app with AIR 3.1 and Flash 11.5.1

    Hello, I'm running Windows 7. I'm using Flash 11.5.1 (that's CS5.5 updated once) and AIR 3.1 to make an iPhone app.
    I can export the app perfectly fine with either Ctrl+Enter or F12.
    I added all the required things with AIR for iOS settings, such as a p12 certificate and icon files.
    I then hit publish. After I hit publish, I got this error:
    Error creating files.
    Compilation failed...
    I tried dragging the window to see if there was anything hidden behind the elipses. What can I do to fix this problem?

    note sure if I'm much help other than to CONFIRM it is working for me by using the sdk WITHOUT the compiler. Check out adobe's little note: "Note : Flex users will need to download the original AIR SDK without the new compiler."
    I am using FB 4.7 with AIR 3.6 and seems to compile correctly for iOS.
    Maybe try reinstalling flash builder?
    I honestly don't know if the JRE has anything to do with it... I'm using 1.7 ....to see what JRE you're using, open the Java Control Panel (I right click my java orange icon and hit properties), select the Java tab, then hit "View..."

  • The timesheet creation failed, because of problems with the project I server or with data validation

    Hi,
    One of my user is facing issue in creating new time sheet,
    "The time sheet creation failed, because of problems with the project server or with data validations".
    This issue is coming to only few members out of 10000 members.
    Note: For the same user, can able to do in other machines. only the problem in his machine. Have ran the office diagnostics, but still the problem persists.
    Is any add-on's/any settings need to update in IE. Could any one please help me on how to fix this issue?
    Many thanks in advance.

    I would check the compatibility settings in IE etc, or try another browser (chrome, safari etc.)
    Ben Howard [MVP] | web |
    blog | book

  • Hi, I have a problem with getting my apple Id working for me. It's been 2 months since it happened and Apple failed to act. I can tell my story proerly, but am not sure, you guys can help, so I just copy my message to them today, I am trying to get it acr

    Hi, I have a problem with getting my apple Id working for me. It's been 2 months since it happened and Apple failed to act. I can tell my story proerly, but am not sure, you guys can help, so I just copy my message to them today, I am trying to get it across all the places around to pay their attention. This is a desperate move, so if you are not the right people to help me to get my message accross, may be you can advise where can I go.
    Thank you, and sorry for the language.
    Vitas Dijokas
    I am sorry to say that, but your security makes my life miserable – it’s been 2 months since my Apple ID account got stuck, and since then I cannot update 37 applications (to date), i.e. most of my applications. Half of them I bought. I also paid for iCloud, and it is not working. I paid money and I am stuck with old applications and no iCloud. Your security *****. Your service ***** too. It took your service 1 month to finally understand why this happened to me, and it took me tens of emails to you and 3 hours of telephone conversation to find out the reason for my problem. And the problem is still not fixed. NOT FIXED. You just leave your customer – the one who paid you money and spent so much time with you trying to help you help me – and nothing. You tell me:  “Vitas, Stick your stinky iphone in your *** and enjoy life, we do not care!” *************.
    It is ******* outrageous, and you should know that,  guys. Get into the ******* database and correct the bug. Get someone in the partners-telephone carriers company (it is Orange as carreer and Cellcom as seller of the phone)  authorized to Identify me in personal encounter in one of the branches in Israel (where I live) and make sure it is really me, and get the ******* system accept my password and let me use my phone.
    Otherwise **** off. None of my friends will get my advise to buy an iphone or any of apple products. And I think you should be very attentive to cases like this, guys. Do your work for the money we pay, or disappear. There are many others eager to take your place, and if the problem is not fixed I will eventually go to the others. My patience is lost, and as soon as I can afford another phone I will change it. AND I WILL TRY TO GIVE BAAAAAD PUBLICITY TO APPLE – I am threatening here, so ACT NOW.
    Vitas Dijokas

    Well, it seems waiting is not my strong suit..! I renamed a javascript file called recovery to sessionstore. This file was in the folder sessionstore-backups I had copied from mozilla 3 days ago, when my tabs were still in place. I replaced the sessionstore in mozilla's default folder with the renamed file and then started mozilla. And the tabs reappeared as they were 3 days ago!
    So there goes the tab problem. But again when I started mozilla the window saying "a script has stopped responding" appeared, this time the script being: chrome//browser/contenttabbrowser.xml2542
    If someone knows how to fix this and make firefox launch normally, please reply! Thank you

  • Yes another user with problem with Apple Mobile Device Support, I am getting the error message: Service 'Apple Mobile Device'(Apple Mobile Device) failed to start. Vertify that you have sufficient privileges to start system service....

    Yes another user with problem with Apple Mobile Device Support, I am getting the error message: Service 'Apple Mobile Device'(Apple Mobile Device) failed to start. Vertify that you have sufficient privileges to start system service....I hit retry and it came up again. I hit ignore and it prompted me to hit finish so Itunes can open.   I looked thru alot of these posts on here to try and resolve this problem myself but it's not working too well...I downloaded Itunes to my desktop so I can right click it with the program i downloaded called WinRAR. I extracted it and then went into the folder called Itunes64setup. I saw the file called AppleMobileDeviceSupport64 in there so I began to try and download it on it's own. Well that didn't work as I planned and got this error message:
    Apple Mobile Device Support wasn't installed on your computer. The installer encountered errors before Apple Mobile Device Support could be configured. Your system has not been modified. To retry these operations at a later time,please run the installer again.
    Well I tried to run it again and came up with the same message...I see that some people got great support to help them so I am hoping someone can help me as well. I know "b nor" is very qualfied and hopefully can help me! Please advise what I can do. Thank you

    Hi Iss9243,
    Welcome to the Support Communities!
    You've already tried some great troubleshooting steps, but the article below gives you quite a few more for this issue.  Hope it helps ....
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    - Judy

Maybe you are looking for

  • EEM event track is not supported (version 3.2)

    Hello, I'm replacing a router 2911 by IE3010 (with IP service) and trying to transfer configurations across. I have noticed that on the IE3010 EEM , I can't trigger an event based on Object Tracking.  IE3010(config-applet)#event ?   application      

  • T5120 - Fault Manager hevy log files on errlog

    My Oracle database server T5120 with Solaris 10 OS dumping continuous error message as shown it is connected to my 3510 storage. Is it a driver problem ? or any patch has to be installed ? Also this server showing ioerros on the 3510 connected drives

  • How to Map SAP B1  for retail industry

    hi every one, we r going to implement SAP B1 for a retail company which trades on shoes and bags. they have one Head office and 12 ware houses they simply buy finished goods from vendors and pack in their in house and sell it to customers. no product

  • Network Discovery of Citrix Netscaler

    I am unable to discover a Citrix Netscaler as a network device. I've enabled tracing on the discovery and can see that the initial queries to the device are responding but then ther are timeouts attempting to access interface types.  The OID does tim

  • Modifying bank key

    hiii gems i have one doubt regarding the fi02 where i want to change the bank key length is there any method to change r should we take help of abaper points will be rewarded thanks in advance Jaipal