PHP5 With MySQL Pre-compile Configuration Error

I have been attempting to compile PHP5 in order to get GD support for a Drupal website. The configuration runs fine until it gets to the MySQL configuration. It fails when checking "lmysqlclient" however the file appears to be found but it is of the wrong archetecture. I am using the MySQL.com binary for MySQL. The conf.log file for PHP is as follows:
-----START CONF.LOG-----
any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char mysql_close();
int main() {
mysql_close()
; return 0; }
configure:59851: checking for mysql_error in -lmysqlclient
configure:59870: gcc -o conftest -I/usr/include -g -O2 -no-cpp-precomp -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib -liconv -L/usr/lib -Wl,-rpath,/sw/lib -L/sw/lib -Wl,-rpath,/usr -L/usr conftest.c -lmysqlclient -lz -lldap -llber -liconv -liconv -lgd -lssl -lcrypto -lcurl -lz -lssl -lcrypto -lm -lxml2 -lz -licucore -lm -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssl -lcrypto -lz -lxml2 -lz -licucore -lm 1>&5
ld warning: in /usr/local/mysql/lib/libmysqlclient.dylib, file is not of required architecture
Undefined symbols:
"mysqlerror", referenced from:
_main in ccaK6P1K.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
configure: failed program was:
#line 59859 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char mysql_error();
int main() {
mysql_error()
; return 0; }
-----END CONF.LOG-----

MasterStarman wrote:
Sorry I haven't replied. Here is the output of the command you told me to run:
/usr/local/mysql/lib/libmysqlclient.dylib: Mach-O 64-bit dynamically linked shared library x86_64
OK. Now do that again on all of the libraries that you are linking with in that configure step. One (or more) of them is going to be i386. Download the source for those libraries, install them into /usr/local, and re-do your configure.
EDIT: I have looked through other threads about PHP and GD, it seems like I'm not the only one who wishes Apple would have included a very common library with the Mac. I sincerely hope they include better options in 10.6.
I agree. I will say this for the Linux community - they are much handier at compiling their own code. Mac people tend to look for an easy way out and often get stuck because of it.
I also have boiled it down to probably recompiling MySQL however this of course presents problems with the Leopard server as MySQL is a little more integrated.
That is unlikely to help. You have an entire system - Apache, PHP, MySQL that all need to link together. You can't fix just one. (Actually you can, but people prefer to use the optimized versions with Apache). You must do them all the same way and correctly. You don't have to replace anything that Apple has done. You could install your own pre-build software using MAMP. You could build it all yourself and install in /usr/local. Unfortunately, the answer most people pick is "try to fix the system install". That is possible, but it has to be done correctly and requires that you know how to do such things.

Similar Messages

  • NWDI for the 04s preview fails with 'SLD name-server configuration error'

    After the installation, everything seems to work fine except that when I go to CMS, the links on the top seems to be hardcoded to point to http://pwdf3102:50100/dtr, even in the Domain Data. When I tried to change it to my local server, it keeps complaining about "Unexpected error; inform your system administrator: <Localization failed: ResourceBundle='com.sap.cms.util.exception.CMSExceptionMessages', ID='SLD name-server configuration error', Arguments: []> : Can't find resource for bundle java.util.PropertyResourceBundle, key SLD name-server configuration error"
    Any suggestions on how to work around this? Thanks.

    Brian,
    Try to import the model file first by going to SLD->Administration->Import CIM Model. If the problem sticks, then try to remove the systems. The preview version has lots of pre-exist system name in the technical system, which you can find giving errors since they're not reachable. So you can remove them from SLD (Home->Technical Systems) if they are preventing you from procceeding.
    You need to go to http://server:port/dtr/system-tools/administration/NameServerConfiguration to update the name server as well.
    Hope this helps...
    Message was edited by: Yujian Yan

  • Help with JSP pre-compiling

    We have a web application using Jboss4.0.5, jdk 1.6 and And 1.6.5, and now we try to do a pre-compiling as part of our build procedure.
    That is the first time I am going to do a pre-comp of a major application, which includes about 1700 jsp files.
    The directory tree of the application is as follows:
    /project
        |--- > /web_pre-comp/pages/jsp ( it contains all the jsp files )
        |----> /web_pre-comp/WEB-INF ( it contains the web.xml file.)
        |----> /web_pre-comp/WEB-INF/tld ( it contains the tld files)
        |----> /web_pre-comp/WEB-INF/src ( it coutains the generated src file from jsp )
        |---->/web_pre-comp/WEB-INF/classes ( it contains the compiled classes once the jsp java files are generated.   )
        |----> build.xml ( the ant script )And there is my build.xml file looks like:
    <project>
          <target name="pro.jsp.generate" depens="init">
           <java classname="org.apache.jasper.JspC" fork="yes">
              <classpath refid="tomcat.jsp.classpath"/>
              <arg line=" -d "/>
              <arg value="${jsp.generated.src.dir}"/>
              <arg line="-p"/>
              <arg value="${jsp.package.name}"/>
              <arg line="-webapp"/>
              <arg value="${jsp.src.dir}"/>
           </java>
       </target>
    </project>When I was running the ant script, I received such message:
    [java] org.apache.jasper.JasperException: The absolute uri: http://www.prounlimited.com/wandappconfig.tld cannot be resolved in either web.xml or the jar files deployed with this application
    We do have suh messages included in the web.xml file.
      <taglib>
            <taglib-uri>http://www.prounlimited.com/wandappconfig.tld</taglib-uri>
            <taglib-location>/WEB-INF/tld/wandappconfig.tld</taglib-location>
        </taglib>Any Ideas how to make it working ?
    Another side questions is when some java file are created from JSP, I see some "005f" included in the java file name, such as "inc_sup_princing_view.jsp" creats a
    "inc_005fsup_005fpricing_005fview_jsp.java" file. Does someone know why this happen ?
    Thanks a lot !
    Charlie

    We have a web application using Jboss4.0.5, jdk 1.6
    and And 1.6.5, and now we try to do a pre-compiling
    as part of our build procedure. Hi Charlie,
    According to your ant build script you're using Jasper compiler, but your web container is JBoss.
    I know that Tomcat uses the Jasper compiler --- but I don't know if JBoss supports Jasper or not. Please check with JBoss if they support Jasper, if not they my support a different pre-compiler.
    That is the first time I am going to do a pre-comp of
    a major application, which includes about 1700 jsp
    files.
    The directory tree of the application is as follows:
    /project
    |--- > /web_pre-comp/pages/jsp ( it contains all
    the jsp files )
    |----> /web_pre-comp/WEB-INF ( it contains the
    web.xml file.)
    |----> /web_pre-comp/WEB-INF/tld ( it contains
    the tld files)
    |----> /web_pre-comp/WEB-INF/src ( it coutains the
    generated src file from jsp )
    |---->/web_pre-comp/WEB-INF/classes ( it contains
    the compiled classes once the jsp java files are
    generated.   )
    |----> build.xml ( the ant script )And there is my build.xml file looks like:
    <project>
    <target name="pro.jsp.generate" depens="init">
    <java classname="org.apache.jasper.JspC"
    fork="yes">
    <classpath refid="tomcat.jsp.classpath"/>
    <arg line=" -d "/>
    <arg value="${jsp.generated.src.dir}"/>
    <arg line="-p"/>
    <arg value="${jsp.package.name}"/>
    <arg line="-webapp"/>
    <arg value="${jsp.src.dir}"/>
    java>
    </target>
    </project>When I was running the ant script, I received such
    message:
    [java] org.apache.jasper.JasperException: The
    absolute uri:
    http://www.prounlimited.com/wandappconfig.tld cannot
    be resolved in either web.xml or the jar files
    deployed with this application
    Check if the tld folder is visible to the classpath tomcat.jsp.classpath used inside the Ant build file.
    >
    We do have suh messages included in the web.xml file.
      <taglib>
    taglib-uri>http://www.prounlimited.com/wandappconfig.t
    ld</taglib-uri>
    taglib-location>/WEB-INF/tld/wandappconfig.tld</taglib
    -location>
    </taglib>Any Ideas how to make it working ?
    Another side questions is when some java file are
    created from JSP, I see some "005f" included in the
    java file name, such as "inc_sup_princing_view.jsp"
    creats a
    "inc_005fsup_005fpricing_005fview_jsp.java" file.
    Does someone know why this happen ?
    The 005f is expected, it is for internal reference for the pre-compiler, nothing to worry about.
    >
    Thanks a lot !
    Charlie

  • AzureDiagnostics fails after role udpate with no changes to configuration, error "Failed to parse the WAD config file"

    Windows event log shows AzureDiagnostics errors "Failed to parse the WAD config file" and warning "
    No certficate with given thumbprint found in the certificate store. Thumbprint:" and
    System.ArgumentNullException: Value cannot be null.
    Parameter name: s
       at System.IO.StringReader..ctor(String s)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Validate(String configString, String schemaPath, StringBuilder builder)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Initialize(String configString, String schemaPath)
       at Microsoft.Azure.Plugins.Plugin.WadParser.Parse()
    Also tried a different deployment on a different subscription, same issue, and this one gets stuck in 'create' state with no roles showing up in 'instances' section for quite some time. Are Cloud Services even maintained by Microsoft
    anymore? Seems that they are second class citizens to VMs, no updates, no new portal, no new features, often can't update single role without updating all roles, etc.

    i am facing same error : here is the log:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Starting DiagnosticPlugin.exe DiagnosticPlugin-ShutdownEvent DiagnosticPlugin-TotalShutdownEvent -wadVer1v3
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Starting DiagnosticsPlugin
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Checking VM Type
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] File HandlerEnvironment.json not found. Extension set to PAAS
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] RcfFileName: C:\Config\881bb2e524c04870b4e993fd8fefb7d8.881bb2e524c04870b4e993fd8fefb7d8.WorkerRole1_IN_0.13.xml
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] RoleInstanceId: WorkerRole1_IN_0; DeploymentId: 881bb2e524c04870b4e993fd8fefb7d8; RoleName: WorkerRole1
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Checking VM Type
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] File HandlerEnvironment.json not found. Extension set to PAAS
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Store Size: 4096
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Reading XML configuration file
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Will use thumbprint 
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Decrypting private configuration
    DiagnosticsPlugin.exe Warning: 0 : [3/19/2015 6:00:39 PM] No certficate with given thumbprint found in the certificate store. Thumbprint:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:00:39 PM] Retrying after 30 seconds. Retry attempt 1
    DiagnosticsPlugin.exe Warning: 0 : [3/19/2015 6:01:09 PM] No certficate with given thumbprint found in the certificate store. Thumbprint:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:01:09 PM] Retrying after 30 seconds. Retry attempt 2
    DiagnosticsPlugin.exe Warning: 0 : [3/19/2015 6:01:39 PM] No certficate with given thumbprint found in the certificate store. Thumbprint:
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:01:39 PM] Retrying after 30 seconds. Retry attempt 3
    DiagnosticsPlugin.exe Error: 0 : [3/19/2015 6:02:09 PM] System.Security.Cryptography.CryptographicException: The enveloped-data message does not contain the specified recipient.
       at System.Security.Cryptography.Pkcs.EnvelopedCms.DecryptContent(RecipientInfoCollection recipientInfos, X509Certificate2Collection extraStore)
       at Microsoft.Azure.Plugins.Diagnostics.dll.PluginConfigurationSettingsProvider.DecryptPrivateConfig(String encryptedConfig)
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] WadCfg is provided in initial configuration. Using that to initialize Diagnostics.
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] <PublicConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
      <WadCfg>
        <DiagnosticMonitorConfiguration overallQuotaInMB="4096">
          <DiagnosticInfrastructureLogs />
          <Directories scheduledTransferPeriod="PT1M">
            <IISLogs containerName="wad-iis-logfiles" />
            <FailedRequestLogs containerName="wad-failedrequestlogs" />
          </Directories>
          <PerformanceCounters scheduledTransferPeriod="PT1M">
            <PerformanceCounterConfiguration counterSpecifier="\Memory\Available MBytes" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\ISAPI Extension Requests/sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\Web Service(_Total)\Bytes Total/Sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET Applications(__Total__)\Requests/Sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET Applications(__Total__)\Errors Total/Sec" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET\Requests Queued" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\ASP.NET\Requests Rejected" sampleRate="PT3M" />
            <PerformanceCounterConfiguration counterSpecifier="\Processor(_Total)\% Processor Time" sampleRate="PT3M" />
          </PerformanceCounters>
          <WindowsEventLog scheduledTransferPeriod="PT1M">
            <DataSource name="Application!*" />
            <DataSource name="System!*" />
          </WindowsEventLog>
          <CrashDumps dumpType="Full">
            <CrashDumpConfiguration processName="WaAppAgent.exe" />
            <CrashDumpConfiguration processName="WaIISHost.exe" />
            <CrashDumpConfiguration processName="WindowsAzureGuestAgent.exe" />
            <CrashDumpConfiguration processName="WaWorkerHost.exe" />
            <CrashDumpConfiguration processName="DiagnosticsAgent.exe" />
            <CrashDumpConfiguration processName="w3wp.exe" />
          </CrashDumps>
          <Logs scheduledTransferPeriod="PT1M" scheduledTransferLogLevelFilter="Verbose" />
        </DiagnosticMonitorConfiguration>
      </WadCfg>
      <StorageAccount>vinaystorageaccounttest</StorageAccount>
    </PublicConfig>
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] Private setting is loaded
    DiagnosticsPlugin.exe Error: 0 : [3/19/2015 6:02:09 PM] System.ArgumentNullException: Value cannot be null.
    Parameter name: s
       at System.IO.StringReader..ctor(String s)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Validate(String configString, String schemaPath, StringBuilder builder)
       at Microsoft.Azure.Plugins.Plugin.WadConfigValidator`1.Initialize(String configString, String schemaPath)
       at Microsoft.Azure.Plugins.Plugin.WadParser.Parse()
    DiagnosticsPlugin.exe Error: 0 : [3/19/2015 6:02:09 PM] Failed to parse the WAD config file
    DiagnosticsPlugin.exe Information: 0 : [3/19/2015 6:02:09 PM] DiagnosticPlugin.exe exit with code -106

  • Software updater configuration error

    Hope somebody can help...
    I tried to update my N95's firmware via the Nokia Software Updater.
    It was downloading the file (about 135mb) just fine when an error occured after it downloaded around 80mb . I did not make note of the error unfortunately. Now when starting the NSU, the starting screen appears and idles for about 2 minutes. The updater will not start up and comes back with an message saying: "configuration error"
    I have tried to uninstal and re-instal, uninstal and deleting remaining folders that are left behind but no luck. I also tried the port scanning thingy that Nokia suggested but could not find only closed ports on IP Address 127.0.0.1 between 62700-62750.
    So the odd thing is that it worked fine at first and now won't even startup, No firewall settings were changed.
    I would appreciate any suggestions
    I run windows Vista home premium.
    Thanks

    Willowy wrote:
    I know it's been a while, but I found another way to solve the annoying "configuration error" and I'd leave it here for someone else. Nokia tells you to turn off the Internet File Sharing in the FAQ of the NSU. Here it didn't work. So I decided if it is a network problem than I'd turn off the ICS. It worked and I didn't have to turn off any of my security software (firewall and antivirus). So.
    Start menu > Execute (or use the Search box in the start menu of Windows Vista) > Services > Find ICS in the list of services  > Right mouse > Stop. Now NSU will find the new firmware.
    Please turn on the ICS again after you finish the update.
    Thanks man! This has been my problem for such a long time!

  • Errors trying to compile PHP for use with MySQL

    I have installed and am using the GNU based tools from the Sunfreeware site to compile PHP. I already have Apache, MySQL, and Oracle compiled and working properly. Below is my configure string for my PHP build:
    ./configure --prefix=/usr/local/php5 \
    --with-config-file-scan-dir=/usr/local/php5/php.d \
    --with-apxs2=/var/apps/apache/bin/apxs \
    --with-ldap \
    --with-mysql=/var/apps/mysql \
    --with-mysqli=/var/apps/mysql/bin/mysql_config \
    --with-xsl=/usr/local/include/libxslt \
    --with-ncurses \
    --enable-xslt \
    --with-xslt-sablot \
    --with-bz2=/usr \
    --with-gd \
    --with-gdbm=/usr/local/lib \
    --with-openssl \
    --with-imap=/usr/local/imap-2006e \
    --with-imap-ssl \
    --with-freetype-dir=/usr/local/include/freetype2/freetype/freetype.h \
    --with-expat-dir \
    --with-tiff-dir \
    --with-zlib \
    --with-jpeg-dir=/usr/local/include/jpeglib.h \
    --with-png-dir=/usr/include/libpng12/png.h \
    --with-mcrypt \
    --with-curl \
    --with-curlwrappers \
    --with-gettext \
    --disable-short-tags \
    --disable-debug \
    --enable-calendar \
    --enable-ctype \
    --enable-discard-path \
    --enable-exif \
    --enable-ftp \
    --enable-memory-limit \
    --enable-sysvem \
    --enable-sysvshm \
    --enable-gd-native-ttf \
    --enable-soap \
    --enable-shmop \
    --enable-sockets \
    --enable-xslt \
    --enable-mbstring \
    --with-sqlite=shared \
    --with-pdo-sqlite=shared \
    --with-pdo-mysql=shared,/var/apps/mysql \
    --enable-pdo=shared \
    --enable-bcmath \
    --with-oci8=sharedI have ld, make, and various tools linked to /usr/local/bin/<toolname>. The configure string completes with no issue and the make runs for about 30 minutes before it stops with the following warnings/errors:
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    <snip>....
    /var/apps/php-5.2.5/ext/mysqli/mysqli_nonapi.c:209: undefined reference to `mysql_sqlstate'
    /var/apps/php-5.2.5/ext/mysqli/mysqli_nonapi.c:200: undefined reference to `mysql_set_server_option'
    /var/apps/php-5.2.5/ext/mysqli/mysqli_nonapi.c:212: undefined reference to `mysql_set_server_option'
    ext/mysqli/.libs/mysqli_nonapi.o: In function `zif_mysqli_query':
    /var/apps/php-5.2.5/ext/mysqli/mysqli_nonapi.c:251: undefined reference to `mysql_set_server_option'
    ext/mysqli/.libs/mysqli_nonapi.o: In function `zif_mysqli_get_warnings':
    /var/apps/php-5.2.5/ext/mysqli/mysqli_nonapi.c:298: undefined reference to `mysql_warning_count'
    ext/mysqli/.libs/mysqli_nonapi.o: In function `zif_mysqli_stmt_get_warnings'
    /var/apps/php-5.2.5/ext/mysqli/mysqli_warning.c:195: undefined reference to `mysql_warning_count'
    collect2: ld returned 1 exit status
    make: *** [sapi/cli/php] Error 1:
    There are many, many more "undefined reference" messages all mysql related.
    Here is my environment and crle output:
    LD_LIBRARY_PATH=/usr/local/ssl/lib:/usr/local/lib:/usr/local/BerkeleyDB.4.2/lib:/var/apps/mysql/lib/mysql
    PATH=/usr/local/bin:/usr/bin:/usr/sbin:/usr/local/sbin:/opt/sfw/bin:/usr/local/ssl/bin:/usr/ucb:/usr/ccs/bin:/opt/VRTS/bin:/etc:/opt/EMCpower/bin:/opt/EMCpower/bin/sparcv9:/etc/emc/bin:/opt/VRTSagents/ha/bin:/usr/local/include:/usr/include:/usr/platform/`uname -i`/sbin:/var/apps/mysql/bin:/var/apps/mysql/include/mysql:/opt/RICHPse/bin:/usr/local/php5/bin:/opt/sfw/sbin
    crle output
    Configuration file [version 4]: /var/ld/ld.config
    Default Library Path (ELF): /lib:/usr/lib:/usr/local/lib
    Trusted Directories (ELF): /lib/secure:/usr/lib/secure (system default)
    Any ideas as to how I can get around the MySQL errors, etc. would be appreciated.

    Here are the requirments for 10.5.8:
    Mac computer with an Intel, PowerPC G5, or PowerPC G4 (867MHz or faster) processor
    512MB of memory
    DVD drive for installation
    9GB of available disk space
    You have to purchase the upgrade from Apple for $129. You ned to call and order ti since it is not listed in their on-line store. You can also try eBay or Craig's List. 

  • AppContainers_test fails with error during pre-test configuration checks

    Hello,
    AppContainers_test fails with error during pre-test configuration checks:
    "[FAIL] The machine is not properly configured for testing: the test directory "C:\Windows\SYSTEM32\" is not ACL'd to allow execute permission for "APPLICATION PACKAGE AUTHORITY\ALL APPLICATION PACKAGES"
    But that kind of permission for APPLICATION PACKAGE AUTHORITY\ALL APPLICATION PACKAGES was allowed, also i tried to allow full access, but error was the same.
    In the test WindowsFilteringPlatform_Tests, the same requirement "REQ - Wfp-based products must not block App Container apps operating within their declared network intentions by default" was checked successfully.
    How can i pass successfully AppContainers_test? 
    I installed lastest versions of QFE and filters on my server, but it didn't help.

    Hi M'Alerter,
    I have the same issue, have you found a solution to your problem ? 
    Cheers,
    Ghalem

  • Compiling PHP with MySQL

    Hello all,
    I am having trouble compiling php 5.2 (also tried 5.3). This is my configure line:
    =======
    ./configure with-apxs2=/usr/local/apache2/bin/apxs with-mysql=/opt/mysql/mysql
    =======
    When I run "make", I get the following error:
    =======
    Undefined first referenced
    symbol in file
    mysql_set_character_set ext/mysql/php_mysql.o
    ld: fatal: Symbol referencing errors. No output written to sapi/cli/php
    collect2: ld returned 1 exit status
    *** Error code 1
    make: Fatal error: Command failed for target `sapi/cli/php'
    =======
    Here are my machine details:
    =======
    @[machine-name]-/usr/local/php5.2 # uname -a
    SunOS [machine-name] 5.10 Generic_138889-03 i86pc i386 i86pc Solaris
    @[machine-name]-/usr/local/php5.2 # isainfo -kv
    64-bit amd64 kernel modules
    =======
    PHP compiles fine when I do it without MySQL. Any assistance is greatly appreciated.
    Please let me know if you need additional information.
    Thank you.
    -Ryan

    Hi,
    first of all please mind that PHP 5.2 is out of support by the PHP developers on php.net. To receive bug fixes petc. you should use PHP 5.3.
    Secondly it is worth noticing that there are three function libraries (extensions) which allow accessing the MySQL database. One is the classic "mysql" extension, one is called mysqli, with "i" as in improved, and a driver for the PDO database abstraction - PDO_mysql. You are only activating one of these, in most situations you want all three of them gor maximum application compatibility.
    Now with PHP 5.3 PHP bundles an implementation complete of the MySQL Client functionality. So linking against a local installation is not needed. This implementation is called mysqlnd - MySQL native driver.
    To build w/ mysqlnd and all three function libraries use a configure line like this:
    ./configure with-apxs2=/usr/local/apache2/bin/apxs with-mysql=mysqlnd with-mysqli=mysqlnd with-pdo-mysql=mysqlnd
    If you have a strong reason for 5.2 or using libmysql I'd need more information, like which version of mysql was installed. Was it self-compiled or binaries from mysql.com etc. But I hope the above is fine.
    johannes

  • Problem with pre-compiling jsp's

              hi,
              we have an .ear running on wls 6.0 sp2.
              Our app has a web component(part of the .ear) as well which has tld's & jsp.We
              are following the struts framework.
              We configured the <jsp-descriptor> element in the weblogic.xml file to pre-compile
              the jsp's..but the server complains of the following
              any suggestions would be appreciated
              ==================================================================================================================================
              <Jan 9, 2002 4:00:06 PM EST> <Error> <HTTP> <[WebAppServletContext(3001228,ppp)]
              failure pre-compiling JSP's
              java.lang.NullPointerException
              at weblogic.servlet.jsp.Jsp2Java.makeReader(Jsp2Java.java:232)
              at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:112)
              at weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.java:253)
              at weblogic.servlet.jsp.Precompiler.compileOne(Precompiler.java:124)
              at weblogic.servlet.jsp.Precompiler.compile(Precompiler.java:44)
              at weblogic.servlet.internal.WebAppServletContext.precompileJSPs(WebAppServletContext.java:2003)
              at weblogic.servlet.internal.dd.DescriptorLoader.initFromWebApp(DescriptorLoader.java:742)
              at weblogic.servlet.internal.dd.DescriptorLoader.createServletContext(DescriptorLoader.java:359)
              at weblogic.servlet.internal.HttpServer.loadWARContext(HttpServer.java:467)
              at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:404)
              at weblogic.j2ee.WebAppComponent.deploy(WebAppComponent.java:74)
              at weblogic.j2ee.Application.addComponent(Application.java:133)
              at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:115)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:327)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:143)
              at weblogic.management.mbeans.custom.WebServer.addWebDeployment(WebServer.java:76)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:562)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:548)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:439)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:180)
              at $Proxy44.addWebDeployment(Unknown Source)
              at weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeployment(WebServerMBean_CachingStub.java:1012)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:313)
              at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:277)
              at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:232)
              at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:192)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:562)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:548)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:439)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:180)
              at $Proxy41.updateDeployments(Unknown Source)
              at weblogic.management.configuration.ServerMBean_CachingStub.updateDeployments(ServerMBean_CachingStub.java:2299)
              at weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(ApplicationManager.java:240)
              at weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManager.java:122)
              at java.lang.reflect.Method.invoke(Native Method)
              at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:562)
              at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:548)
              at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:439)
              at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:180)
              at $Proxy33.start(Unknown Source)
              at weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(ApplicationManagerMBean_CachingStub.java:435)
              at weblogic.management.Admin.startApplicationManager(Admin.java:1033)
              at weblogic.management.Admin.finish(Admin.java:493)
              at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:429)
              at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
              at weblogic.Server.main(Server.java:35)
              >
              <Jan 9, 2002 4:00:06 PM EST> <Debug> <HTTP> <Exception thrown while loading ppp:
              weblogic.utils.NestedException: failure pre-compiling JSP's - with nested exception:
              [java.lang.NullPointerException]>
              <Jan 9, 2002 4:00:06 PM EST> <Error> <J2EE> <Error deploying application ppp:
              Could not load ppp>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[HTTP myserver] Loading web app: wl_management_internal2>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[HTTP myserver] Loading wl_management_internal2
              from WAR file: C:\engr\project\ppp\.\config\Synchronoss\applications\.wl_temp_do_not_delete\wl_local_comp45831.war>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[Default WebApp] extracting classfiles
              to C:\engr\project\ppp\.\config\Synchronoss\applications\.wl_temp_do_not_delete\WEB-INF\_tmp_war_myserver_myserver_wl_management_internal2:>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[Default WebApp] extracted classfiles
              successfully...>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[WebAppServletContext(6559849,wl_management_internal2)]
              registering JSPServlet with initArgs '[JspConfig: verbose=true,packagePrefix=jsp_servlet,-compiler=javac,compileFlags=,workingDir=C:\engr\project\ppp\.\config\Synchronoss\applications\.wl_temp_do_not_delete\WEB-INF\_tmp_war_myserver_myserver_wl_management_internal2,pageCheckSeconds=1,superclass=null,keepgenerated=false,encoding=null,defaultfilename=index.jsp,noTryBlocks=false]'>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[WebAppServletContext(6559849,wl_management_internal2)]
              registering classpath servlet with initArgs 'null'>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[WebAppServletContext(6559849,wl_management_internal2)]
              registering getior servlet with initArgs 'null'>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <J2EE> <Deployed : wl_management_internal2>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <J2EE> <Deployed MailSession named com.bea.wlpi.MailSession>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <Initializing WEB server myserver>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[HTTP myserver] Loading web app: DefaultWebApp_myserver>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[HTTP myserver] Loading DefaultWebApp_myserver
              from directory: .\config\Synchronoss\applications\DefaultWebApp_myserver>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[WebAppServletContext(4157813,DefaultWebApp_myserver)]
              registering JSPServlet with initArgs '[JspConfig: verbose=true,packagePrefix=jsp_servlet,-compiler=javac,compileFlags=,workingDir=C:\engr\project\ppp\.\config\Synchronoss\applications\DefaultWebApp_myserver\WEB-INF\_tmp_war_myserver_myserver_DefaultWebApp_myserver,pageCheckSeconds=1,superclass=null,keepgenerated=false,encoding=null,defaultfilename=index.jsp,noTryBlocks=false]'>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[WebAppServletContext(4157813,DefaultWebApp_myserver)]
              registering classpath servlet with initArgs 'null'>
              <Jan 9, 2002 4:00:06 PM EST> <Info> <HTTP> <[WebAppServletContext(4157813,DefaultWebApp_myserver)]
              registering getior servlet with initArgs 'null'>
              

    [att1.html]
              

  • [SOLVED] configure: error: cannot run C compiled programs

    I'm trying to build lib32-libxkbcommon 0.5.0-1 from AUR with makepkg. I already tried installing pacman (setting the default makepkg.conf) and multilib-devel with no luck.
    makepkg messages:
    ==> Making package: lib32-libxkbcommon 0.5.0-1 (Mon May 11 00:17:05 EEST 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found libxkbcommon-0.5.0.tar.xz
    ==> Validating source files with sha256sums...
    libxkbcommon-0.5.0.tar.xz ... Passed
    ==> Extracting sources...
    -> Extracting libxkbcommon-0.5.0.tar.xz with bsdtar
    bsdtar: Failed to set default locale
    ==> Starting prepare()...
    ==> Removing existing $pkgdir/ directory...
    ==> Starting build()...
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking whether to enable maintainer-specific portions of Makefiles... yes
    checking for style of include used by make... GNU
    checking for gcc... gcc -m32
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... configure: error: in `/mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0':
    configure: error: cannot run C compiled programs.
    If you meant to cross compile, use `--host'.
    See `config.log' for more details
    ==> ERROR: A failure occurred in build().
    Aborting...
    makepkg.conf:
    # /etc/makepkg.conf
    # SOURCE ACQUISITION
    #-- The download utilities that makepkg should use to acquire sources
    # Format: 'protocol::agent'
    DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
    'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
    'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
    'rsync::/usr/bin/rsync --no-motd -z %u %o'
    'scp::/usr/bin/scp -C %u %o')
    # Other common tools:
    # /usr/bin/snarf
    # /usr/bin/lftpget -c
    # /usr/bin/wget
    #-- The package required by makepkg to download VCS sources
    # Format: 'protocol::package'
    VCSCLIENTS=('bzr::bzr'
    'git::git'
    'hg::mercurial'
    'svn::subversion')
    # ARCHITECTURE, COMPILE FLAGS
    CARCH="x86_64"
    CHOST="x86_64-unknown-linux-gnu"
    #-- Compiler and Linker Flags
    # -march (or -mcpu) builds exclusively for an architecture
    # -mtune optimizes for an architecture, but builds for whole processor family
    CPPFLAGS="-D_FORTIFY_SOURCE=2"
    CFLAGS="-march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4"
    CXXFLAGS="${CFLAGS}"
    LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
    #-- Make Flags: change this for DistCC/SMP systems
    MAKEFLAGS="-j5"
    #-- Debugging flags
    DEBUG_CFLAGS="-g -fvar-tracking-assignments"
    DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
    # BUILD ENVIRONMENT
    # Defaults: BUILDENV=(!distcc color !ccache check !sign)
    # A negated environment option will do the opposite of the comments below.
    #-- distcc: Use the Distributed C/C++/ObjC compiler
    #-- color: Colorize output messages
    #-- ccache: Use ccache to cache compilation
    #-- check: Run the check() function if present in the PKGBUILD
    #-- sign: Generate PGP signature file
    BUILDENV=(!distcc color !ccache check !sign)
    #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
    #-- specify a space-delimited list of hosts running in the DistCC cluster.
    #DISTCC_HOSTS=""
    #-- Specify a directory for package building.
    #BUILDDIR=/tmp/makepkg
    # GLOBAL PACKAGE OPTIONS
    # These are default values for the options=() settings
    # Default: OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
    # A negated option will do the opposite of the comments below.
    #-- strip: Strip symbols from binaries/libraries
    #-- docs: Save doc directories specified by DOC_DIRS
    #-- libtool: Leave libtool (.la) files in packages
    #-- staticlibs: Leave static library (.a) files in packages
    #-- emptydirs: Leave empty directories in packages
    #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
    #-- purge: Remove files specified by PURGE_TARGETS
    #-- upx: Compress binary executable files using UPX
    #-- debug: Add debugging flags as specified in DEBUG_* variables
    OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
    #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
    INTEGRITY_CHECK=(md5)
    #-- Options to be used when stripping binaries. See `man strip' for details.
    STRIP_BINARIES="--strip-all"
    #-- Options to be used when stripping shared libraries. See `man strip' for details.
    STRIP_SHARED="--strip-unneeded"
    #-- Options to be used when stripping static libraries. See `man strip' for details.
    STRIP_STATIC="--strip-debug"
    #-- Manual (man and info) directories to compress (if zipman is specified)
    MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
    #-- Doc directories to remove (if !docs is specified)
    DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
    #-- Files to be removed from all packages (if purge is specified)
    PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
    # PACKAGE OUTPUT
    # Default: put built package and cached source in build directory
    #-- Destination: specify a fixed directory where all packages will be placed
    #PKGDEST=/home/packages
    #-- Source cache: specify a fixed directory where source files will be cached
    #SRCDEST=/home/sources
    #-- Source packages: specify a fixed directory where all src packages will be placed
    #SRCPKGDEST=/home/srcpackages
    #-- Log files: specify a fixed directory where all log files will be placed
    #LOGDEST=/home/makepkglogs
    #-- Packager: name/email of the person or organization building packages
    #PACKAGER="John Doe <[email protected]>"
    #-- Specify a key to use for package signing
    #GPGKEY=""
    # COMPRESSION DEFAULTS
    COMPRESSGZ=(gzip -c -f -n)
    COMPRESSBZ2=(bzip2 -c -f)
    COMPRESSXZ=(xz -c -z -)
    COMPRESSLRZ=(lrzip -q)
    COMPRESSLZO=(lzop -q)
    COMPRESSZ=(compress -c -f)
    # EXTENSION DEFAULTS
    # WARNING: Do NOT modify these variables unless you know what you are
    # doing.
    PKGEXT='.pkg.tar.xz'
    SRCEXT='.src.tar.gz'
    # vim: set ft=sh ts=2 sw=2 et:
    config.log:
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
    It was created by libxkbcommon configure 0.5.0, which was
    generated by GNU Autoconf 2.69. Invocation command line was
    $ ./configure --prefix=/usr --libdir=/usr/lib32 --disable-docs --disable-static
    ## Platform. ##
    hostname = Arch
    uname -m = x86_64
    uname -r = 4.0.1-1-ARCH
    uname -s = Linux
    uname -v = #1 SMP PREEMPT Wed Apr 29 12:00:26 CEST 2015
    /usr/bin/uname -p = unknown
    /bin/uname -X = unknown
    /bin/arch = unknown
    /usr/bin/arch -k = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo = unknown
    /bin/machine = unknown
    /usr/bin/oslevel = unknown
    /bin/universe = unknown
    PATH: /usr/local/sbin
    PATH: /usr/local/bin
    PATH: /usr/bin
    PATH: /usr/lib/jvm/default/bin
    PATH: /usr/bin/site_perl
    PATH: /usr/bin/vendor_perl
    PATH: /usr/bin/core_perl
    ## Core tests. ##
    configure:2424: checking for a BSD-compatible install
    configure:2492: result: /usr/bin/install -c
    configure:2503: checking whether build environment is sane
    configure:2558: result: yes
    configure:2709: checking for a thread-safe mkdir -p
    configure:2748: result: /usr/bin/mkdir -p
    configure:2755: checking for gawk
    configure:2771: found /usr/bin/gawk
    configure:2782: result: gawk
    configure:2793: checking whether make sets $(MAKE)
    configure:2815: result: yes
    configure:2844: checking whether make supports nested variables
    configure:2861: result: yes
    configure:2987: checking whether to enable maintainer-specific portions of Makefiles
    configure:2996: result: yes
    configure:3023: checking for style of include used by make
    configure:3051: result: GNU
    configure:3122: checking for gcc
    configure:3149: result: gcc -m32
    configure:3378: checking for C compiler version
    configure:3387: gcc -m32 --version >&5
    gcc (GCC) 5.1.0
    Copyright (C) 2015 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    configure:3398: $? = 0
    configure:3387: gcc -m32 -v >&5
    Using built-in specs.
    COLLECT_GCC=gcc
    COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/5.1.0/lto-wrapper
    Target: x86_64-unknown-linux-gnu
    Configured with: /build/gcc-multilib/src/gcc-5-20150505/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --with-default-libstdcxx-abi=c++98
    Thread model: posix
    gcc version 5.1.0 (GCC)
    configure:3398: $? = 0
    configure:3387: gcc -m32 -V >&5
    gcc: error: unrecognized command line option '-V'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3398: $? = 1
    configure:3387: gcc -m32 -qversion >&5
    gcc: error: unrecognized command line option '-qversion'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3398: $? = 1
    configure:3418: checking whether the C compiler works
    configure:3440: gcc -m32 -march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro conftest.c >&5
    configure:3444: $? = 0
    configure:3492: result: yes
    configure:3495: checking for C compiler default output file name
    configure:3497: result: a.out
    configure:3503: checking for suffix of executables
    configure:3510: gcc -m32 -o conftest -march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro conftest.c >&5
    configure:3514: $? = 0
    configure:3536: result:
    configure:3558: checking whether we are cross compiling
    configure:3566: gcc -m32 -o conftest -march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro conftest.c >&5
    In file included from /usr/include/stdio.h:27:0,
    from conftest.c:11:
    /usr/include/features.h:365:25: fatal error: sys/cdefs.h: No such file or directory
    compilation terminated.
    configure:3570: $? = 1
    configure:3577: ./conftest
    ./configure: line 3579: ./conftest: No such file or directory
    configure:3581: $? = 127
    configure:3588: error: in `/mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0':
    configure:3590: error: cannot run C compiled programs.
    If you meant to cross compile, use `--host'.
    See `config.log' for more details
    ## Cache variables. ##
    ac_cv_env_CC_set=set
    ac_cv_env_CC_value='gcc -m32'
    ac_cv_env_CFLAGS_set=set
    ac_cv_env_CFLAGS_value='-march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4'
    ac_cv_env_CPPFLAGS_set=set
    ac_cv_env_CPPFLAGS_value=-D_FORTIFY_SOURCE=2
    ac_cv_env_CPP_set=
    ac_cv_env_CPP_value=
    ac_cv_env_DOT_set=
    ac_cv_env_DOT_value=
    ac_cv_env_DOXYGEN_set=
    ac_cv_env_DOXYGEN_value=
    ac_cv_env_LDFLAGS_set=set
    ac_cv_env_LDFLAGS_value=-Wl,-O1,--sort-common,--as-needed,-z,relro
    ac_cv_env_LIBS_set=
    ac_cv_env_LIBS_value=
    ac_cv_env_PKG_CONFIG_LIBDIR_set=
    ac_cv_env_PKG_CONFIG_LIBDIR_value=
    ac_cv_env_PKG_CONFIG_PATH_set=set
    ac_cv_env_PKG_CONFIG_PATH_value=/usr/lib32/pkgconfig
    ac_cv_env_PKG_CONFIG_set=
    ac_cv_env_PKG_CONFIG_value=
    ac_cv_env_XCB_XKB_CFLAGS_set=
    ac_cv_env_XCB_XKB_CFLAGS_value=
    ac_cv_env_XCB_XKB_LIBS_set=
    ac_cv_env_XCB_XKB_LIBS_value=
    ac_cv_env_XORG_MALLOC_DEBUG_ENV_set=
    ac_cv_env_XORG_MALLOC_DEBUG_ENV_value=
    ac_cv_env_YACC_set=
    ac_cv_env_YACC_value=
    ac_cv_env_YFLAGS_set=
    ac_cv_env_YFLAGS_value=
    ac_cv_env_build_alias_set=
    ac_cv_env_build_alias_value=
    ac_cv_env_host_alias_set=
    ac_cv_env_host_alias_value=
    ac_cv_env_target_alias_set=
    ac_cv_env_target_alias_value=
    ac_cv_path_install='/usr/bin/install -c'
    ac_cv_path_mkdir=/usr/bin/mkdir
    ac_cv_prog_AWK=gawk
    ac_cv_prog_ac_ct_CC='gcc -m32'
    ac_cv_prog_make_make_set=yes
    am_cv_make_support_nested_variables=yes
    ## Output variables. ##
    ACLOCAL='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing aclocal-1.14'
    ADMIN_MAN_DIR=''
    ADMIN_MAN_SUFFIX=''
    AMDEPBACKSLASH='\'
    AMDEP_FALSE='#'
    AMDEP_TRUE=''
    AMTAR='$${TAR-tar}'
    AM_BACKSLASH='\'
    AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
    AM_DEFAULT_VERBOSITY='1'
    AM_V='$(V)'
    APP_MAN_DIR=''
    APP_MAN_SUFFIX=''
    AR=''
    AUTOCONF='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing autoconf'
    AUTOHEADER='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing autoheader'
    AUTOMAKE='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing automake-1.14'
    AWK='gawk'
    BASE_CFLAGS=''
    BUILD_LINUX_TESTS_FALSE=''
    BUILD_LINUX_TESTS_TRUE=''
    CC='gcc -m32'
    CCDEPMODE=''
    CFLAGS='-march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4'
    CHANGELOG_CMD=''
    CPP=''
    CPPFLAGS='-D_FORTIFY_SOURCE=2'
    CWARNFLAGS=''
    CYGPATH_W='echo'
    DEFS=''
    DEPDIR='.deps'
    DLLTOOL=''
    DOT=''
    DOXYGEN=''
    DRIVER_MAN_DIR=''
    DRIVER_MAN_SUFFIX=''
    DSYMUTIL=''
    DUMPBIN=''
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EGREP=''
    ENABLE_DOCS_FALSE=''
    ENABLE_DOCS_TRUE=''
    ENABLE_X11_FALSE=''
    ENABLE_X11_TRUE=''
    EXEEXT=''
    FGREP=''
    FILE_MAN_DIR=''
    FILE_MAN_SUFFIX=''
    GREP=''
    HAVE_DOT=''
    HAVE_DOT_FALSE=''
    HAVE_DOT_TRUE=''
    HAVE_DOXYGEN_FALSE=''
    HAVE_DOXYGEN_TRUE=''
    HAVE_NO_UNDEFINED_FALSE=''
    HAVE_NO_UNDEFINED_TRUE=''
    INSTALL_CMD=''
    INSTALL_DATA='${INSTALL} -m 644'
    INSTALL_PROGRAM='${INSTALL}'
    INSTALL_SCRIPT='${INSTALL}'
    INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
    LD=''
    LDFLAGS='-Wl,-O1,--sort-common,--as-needed,-z,relro'
    LIBOBJS=''
    LIBS=''
    LIBTOOL=''
    LIB_MAN_DIR=''
    LIB_MAN_SUFFIX=''
    LIPO=''
    LN_S=''
    LTLIBOBJS=''
    MAINT=''
    MAINTAINER_MODE_FALSE='#'
    MAINTAINER_MODE_TRUE=''
    MAKEINFO='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing makeinfo'
    MANIFEST_TOOL=''
    MAN_SUBSTS=''
    MISC_MAN_DIR=''
    MISC_MAN_SUFFIX=''
    MKDIR_P='/usr/bin/mkdir -p'
    NM=''
    NMEDIT=''
    OBJDUMP=''
    OBJEXT=''
    OTOOL64=''
    OTOOL=''
    PACKAGE='libxkbcommon'
    PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=libxkbcommon'
    PACKAGE_NAME='libxkbcommon'
    PACKAGE_STRING='libxkbcommon 0.5.0'
    PACKAGE_TARNAME='libxkbcommon'
    PACKAGE_URL='http://xkbcommon.org'
    PACKAGE_VERSION='0.5.0'
    PATH_SEPARATOR=':'
    PKG_CONFIG=''
    PKG_CONFIG_LIBDIR=''
    PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
    RANLIB=''
    RT_LIBS=''
    SED=''
    SET_MAKE=''
    SHELL='/bin/sh'
    STRICT_CFLAGS=''
    STRIP=''
    VERSION='0.5.0'
    XCB_XKB_CFLAGS=''
    XCB_XKB_LIBS=''
    XKBCONFIGROOT=''
    XLOCALEDIR=''
    XORG_MALLOC_DEBUG_ENV=''
    XORG_MAN_PAGE=''
    YACC=''
    YACC_INST=''
    YFLAGS=''
    ac_ct_AR=''
    ac_ct_CC='gcc -m32'
    ac_ct_DUMPBIN=''
    am__EXEEXT_FALSE=''
    am__EXEEXT_TRUE=''
    am__fastdepCC_FALSE=''
    am__fastdepCC_TRUE=''
    am__include='include'
    am__isrc=''
    am__leading_dot='.'
    am__nodep='_no'
    am__quote=''
    am__tar='$${TAR-tar} chof - "$$tardir"'
    am__untar='$${TAR-tar} xf -'
    bindir='${exec_prefix}/bin'
    build=''
    build_alias=''
    build_cpu=''
    build_os=''
    build_vendor=''
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
    dvidir='${docdir}'
    exec_prefix='NONE'
    host=''
    host_alias=''
    host_cpu=''
    host_os=''
    host_vendor=''
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    install_sh='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/install-sh'
    libdir='/usr/lib32'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='${prefix}/var'
    mandir='${datarootdir}/man'
    mkdir_p='$(MKDIR_P)'
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    prefix='/usr'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    sysconfdir='${prefix}/etc'
    target_alias=''
    ## confdefs.h. ##
    /* confdefs.h */
    #define PACKAGE_NAME "libxkbcommon"
    #define PACKAGE_TARNAME "libxkbcommon"
    #define PACKAGE_VERSION "0.5.0"
    #define PACKAGE_STRING "libxkbcommon 0.5.0"
    #define PACKAGE_BUGREPORT "[url]https://bugs.freedesktop.org/enter_bug.cgi?product=libxkbcommon[/url]"
    #define PACKAGE_URL "[url]http://xkbcommon.org[/url]"
    #define PACKAGE "libxkbcommon"
    #define VERSION "0.5.0"
    configure: exit 1
    other info:
    core/pacman 4.2.1-1
    multilib/gcc-multilib 4.9.2-4 (multilib-devel) [installed]
        The GNU Compiler Collection - C and C++ frontends for multilib
    multilib/lib32-fakeroot 1.20.2-1 (multilib-devel) [installed]
        Tool for simulating superuser privileges (32-bit)
    multilib/lib32-libltdl 2.4.5-1 (multilib-devel) [installed]
        A generic library support script (32-bit)
    Last edited by tsester (2015-05-10 22:10:28)

    tsester wrote:P.S.: I recently transfered the linux system between failing disks
    In that case you should probably check that no other packages are missing files with
    pacman -Qkk 2>&1 | grep "No such file or directory"
    Any packages that report that they're missing files, you should reinstall.

  • Configuring php5 with enable XML on OAS 10.1.3.x

    My requirement is to enable XML on OAS 10.1.3.5.
    I am not sure how to configure it, so I stated using separate PHP5.2 to configure with XML enable on the server. After installation, when I am starting the opmn services I am getting below error. I think the error with platform. Which means current OS version is 64bit and php5.2 stage is 32bit version I guess.
    OAS_HOME=/u20/app/MSRV1P/apmsrv1p/oracle/product/OAS
    URL : http://nacisdell277.us.oracle.com:10330/phpinfo.php
    I used below command to configure :
    ./configure prefix=$ORACLE_HOME/php with-config-file-path=$ORACLE_HOME/Apache/Apache/conf --with-apxs=$ORACLE_HOME/Apache/Apache/bin/apxs
    with-oci8=instantclient,/u20/app/MSRV1P/apmsrv1p/oracle/product/instantclient_10_2 with-config-file-path=/u20/app/MSRV1P/apmsrv1p/oracle/product/OAS/Apache/Apache/php5--enable-sigchild enable-xml enable-simplexml enable-libxml enable-dom enable-simplexml enable-xml enable-xmlreader enable-xmlwriter enable-simplexml –with-xsl -with-zlib with-xml --with-libxml-dir
    Error :
    /u20/app/MSRV1P/apmsrv1p/oracle/product/OAS/Apache/Apache/bin/apachectl startssl: execing httpd
    Syntax error on line 247 of /u20/app/MSRV1P/apmsrv1p/oracle/product/OAS/Apache/Apache/conf/httpd.conf:
    Cannot load /u20/app/MSRV1P/apmsrv1p/oracle/product/OAS/Apache/Apache/libexec/libphp5.so into server: /u20/app/MSRV1P/apmsrv1p/oracle/product/OAS/Apache/Apache/libexec/libphp5.so: wrong ELF class: ELFCLASS64
    I checked in the Metalink for “configuring php5 with enable XML on OAS 10.1.3.x” but I couldn’t find anything.
    Please advise me on this.
    Thanks

    Hello;
    You can try installing glibc-devel to fix this.
    However on my version :
    Application Server Control Release 10.1.2.3.0 - PHP 5 does not seem to work. The conflict on mine is that PHP 4 came wrapped in the Oracle install and they don't play well together.
    Make sure your httpd.conf does not have this in it :
    LoadModule php4_module libexec/libphp4.soI'm NOT advising you to remove it if its there, I'm merely pointing to a possible conflict.
    Best Regards
    mseberg
    Later
    Glad you don't have the same version as me. Hard to find anything on this, found these ( Not exact matches )
    http://php.net/manual/en/oci8.installation.php ( Search for ELF )
    http://enlinea.creaelicita.cl/guia/oci8.setup.html
    http://docs.oracle.com/cd/E17390_01/doc.650/e17370.pdf
    Found this in the pdf : ( Similar )
    If the following error is received:
    *ERROR* - obssocookie: could not dlopen()
    /opt/netpoint/AccessServerSDK//oblix/lib/libobaccess.so:
    /opt/netpoint/AccessServerSDK//oblix/lib/libobaccess.so: wrong ELF class:
    ELFCLASS32
    This indicates that the 32-bit version of the Access Gate SDK was installed instead of
    the required 64-bit version. Edited by: mseberg on Feb 4, 2012 5:53 AM
    Still later
    Another thought is the PHP forum :
    PHP
    Also you need the 32bit Instant Client to be able run PHP. See http://blogs.oracle.com/opal/entry/using_php_oci8_with_32-bit_php
    Same OS message :
    ORA-03106: fatal two-task communication protocol error
    Edited by: mseberg on Feb 4, 2012 7:03 PM
    Rogue Notes from my Fusion Middleware on Red Hat 5 64 bit
    I downloaded php-5.3.5.tar.gz from http://www.php.net/downloads.php.
    Download the OCI headers http://www.oracle.com/technetwork/middleware/ias/ociheaders-134541.tar
    environment
    export ORACLE_HOME=/u01/app/oracle/product/fmw/oracle_pfrd
    export ORACLE_INSTANCE=/u01/app/oracle/product/fmw/fr_inst
    export CONFIG_FILE_PATH=$ORACLE_INSTANCE/config/OHS/ohs1
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/ohs/lib:$LD_LIBRARY_PATH
    Configure with Oracle Database (OCI8) support:
    ./configure with-apxs2=$ORACLE_HOME/ohs/bin/apxs prefix=$ORACLE_HOME with-config-file-path=$CONFIG_FILE_PATH with-oci8=$ORACLE_HOME --disable-rpath
    httpd.conf
    # And for PHP 5.x use:
    AddType application/x-httpd-php .php .phtml
    Edited by: mseberg on Feb 4, 2012 7:19 PM
    Edited by: mseberg on Feb 5, 2012 11:48 AM

  • Compileing wine - error on ./configure

    Hi,
    I'm fairly new to Arch, no Linux newbie though. I didn't know where to exactly post this, so I hope it's not completely wrong here (there was no specific devel/compilation forum, and it doesn't really fit to archbuild). I've been searching the forums and the web to no avail yet. Maybe anyone can help me.
    As the subject suggests, I've been trying to compile wine following the Gentoo Howto on the WineHQ wiki and am already failing upon configure. This is the command line output:
    [manuel@flyinghorse wine-1.1.1]$ ./configure --x-libraries=/opt/lib32/usr/lib/ LDFLAGS="-L/opt/lib32/usr/lib -L/opt/lib32/lib" --enable-opengl --with-x
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking whether make sets $(MAKE)... yes
    checking for gcc... gcc -m32
    checking for C compiler default output file name...
    configure: error: C compiler cannot create executables
    See `config.log' for more details.
    I'm stuck here. The config.log doens't help me at all. I uploaded it here. Anyone who can understand the error?
    As you can see from the command, I'm using the lib32 libraries and was trying to link to them. Yeah, I have read about the problems of 32bit applications under Arch64. And I wouldn't want to try it, if the regular wine/wine-suse packages were working. I'm however suffering from this bug. So I have no other choice as to patch and compile wine myself unless it gets implemented into the native wine source.
    What can I do here? Would compiling in a 32bit chroot help? I read that you could do that and then using it like bin32-wine, but didn't find any wiki entry or forum thread about it. So I seriously don't know how to do that. Or do I just create the 32bit chroot, compile there and use the program in Arch64? Any help there would be really appreciated. Also if you have any other idea what I could do without having to compile wine, I'm open to all suggestions. Thanks in advance.

    why do you prefer to compile packages using ./configure, make and make install?
    there is already a package for wine in AUR. http://aur.archlinux.org/packages.php?ID=7915
    download tarball, extract it, then makepkg. after the process is completed pacman -U package.pkg.tar.gz. for more details about the process
    http://wiki.archlinux.org/index.php/AUR_User_Guidelines
    Last edited by wonder (2008-07-15 09:46:11)

  • Ghostscript configuration problem: configure: error: no acceptable C compil

    hi
    I'm having a problem in configuring ghostscript.
    When I run "Configure", I get this message:
    +Last login: Thu Jun 24 09:04:52 on ttys001+
    +/espgs-8.15.4/configure ; exit;+
    +iMac:~ timgeers$ /espgs-8.15.4/configure ; exit;+
    +checking for gcc... no+
    +checking for cc... no+
    +checking for cc... no+
    +checking for cl... no+
    +configure: error: no acceptable C compiler found in $PATH+
    +See `config.log' for more details.+
    logout
    I seem to need to change the path, but I have no idea how to do that. Can anybody help?

    bertvtvt wrote:
    no, I haven't tried this. I don't know much about these things. How do I change that root and what command do I have to use?
    Is this in "terminal"? I haen't worked with this yet...
    My Ghostscript-folder is located in my Macintosh HD folder
    Yes, you will have to use Terminal. Sorry but I assumed you were already using Terminal. I guess you simply double-clicked on a file within the GS folder...
    Anyway, after you open Terminal you will see information similar to what you provided previously, for example:
    Last login: Thu Jun 24 09:04:52 on ttys001
    iMac:~ timgeers$
    This shows that your Mac is called iMac and it also shows the account name you logged in with. The ~ in front of the account name indicates you are in the Users directory. To change to the root, after the $ symbol, if you type cd followed by a / you can then press ENTER and this should the view to:
    Last login: Thu Jun 24 09:04:52 on ttys001
    iMac:/ timgeers$
    The slash after iMac: indicates you are now located at the root of the Mac, aka 'Macintosh HD' for your Mac.
    If you now enter cd "My Ghostscript", this should change you to the Ghostscript folder. The last step is to then enter the command you tried previously (if this is what the document tells you to do). Note you should add the leading period before the slash
    ./espgs-8.15.4/configure ; exit;
    If your Mac is correctly configured then you will be prompted to authenticate. However if your Mac does not have the C compiler installed, such as the GNU gcc which was part of the Developer Tools, then you may still get a message about no C compiler being present. Does the supporting documentation mention any prerequisites like having GCC?

  • Build failed () configure: error: C compiler create executable[SOLVED]

    I am a newbie in the forums, i recently installed arch x86_64 and am having a hard time building packages, i did install base-devel , gcc gcc-fortran gcc-obc..........all that stuff i also installed all the base devel stuff...like fakeroot,flex....(all the base devel stuff) but not luck, when i try 'makepkg -s' it still brings this error ---> " configure: error: C compiler cannot create executables" or sometimes --> configure: error: C++ compiler cannot create executables , i googled a bit on possible solutions, i came acroos similar post but the newbie was not using x86_64, i tried reinstalling GCC but to no avail whats the problem?
    hereis my makepkg.conf details
    # /etc/makepkg.conf
    # SOURCE ACQUISITION
    #-- The download utilities that makepkg should use to acquire sources
    # Format: 'protocol::agent'
    DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
    'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u'
    'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
    'rsync::/usr/bin/rsync -z %u %o'
    'scp::/usr/bin/scp -C %u %o')
    # Other common tools:
    # /usr/bin/snarf
    # /usr/bin/lftpget -c
    # /usr/bin/curl
    # ARCHITECTURE, COMPILE FLAGS
    CARCH="x86_64"
    CHOST="x86_64-unknown-linux-gnu"
    #-- Exclusive: will only run on x86_64
    # -march (or -mcpu) builds exclusively for an architecture
    # -mtune optimizes for an architecture, but builds for whole processor family
    CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe"
    CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe"
    LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
    #-- Make Flags: change this for DistCC/SMP systems
    #MAKEFLAGS="-j2"
    # BUILD ENVIRONMENT
    # Defaults: BUILDENV=(fakeroot !distcc color !ccache)
    # A negated environment option will do the opposite of the comments below.
    #-- fakeroot: Allow building packages as a non-root user
    #-- distcc: Use the Distributed C/C++/ObjC compiler
    #-- color: Colorize output messages
    #-- ccache: Use ccache to cache compilation
    BUILDENV=(fakeroot !distcc color !ccache)
    #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
    #-- specify a space-delimited list of hosts running in the DistCC cluster.
    #DISTCC_HOSTS=""
    # GLOBAL PACKAGE OPTIONS
    # These are default values for the options=() settings
    # Default: OPTIONS=(strip docs libtool emptydirs zipman purge)
    # A negated option will do the opposite of the comments below.
    #-- strip: Strip symbols from binaries/libraries in STRIP_DIRS
    #-- docs: Save doc directories specified by DOC_DIRS
    #-- libtool: Leave libtool (.la) files in packages
    #-- emptydirs: Leave empty directories in packages
    #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
    #-- purge: Remove files specified by PURGE_TARGETS
    OPTIONS=(strip docs libtool emptydirs zipman purge)
    #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
    INTEGRITY_CHECK=(md5)
    #-- Options to be used when stripping binaries. See `man strip' for details.
    STRIP_BINARIES="--strip-all"
    #-- Options to be used when stripping shared libraries. See `man strip' for details.
    STRIP_SHARED="--strip-unneeded"
    #-- Options to be used when stripping static libraries. See `man strip' for details.
    STRIP_STATIC="--strip-debug"
    #-- Manual (man and info) directories to compress (if zipman is specified)
    MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
    #-- Doc directories to remove (if !docs is specified)
    DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
    #-- Directories to be searched for the strip option (if strip is specified)
    STRIP_DIRS=(bin lib sbin usr/{bin,lib,sbin,local/{bin,lib,sbin}} opt/*/{bin,lib,sbin})
    #-- Files to be removed from all packages (if purge is specified)
    PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
    # PACKAGE OUTPUT
    # Default: put built package and cached source in build directory
    #-- Destination: specify a fixed directory where all packages will be placed
    #PKGDEST=/home/packages
    #-- Source cache: specify a fixed directory where source files will be cached
    #SRCDEST=/home/sources
    #-- Source packages: specify a fixed directory where all src packages will be placed
    #SRCPKGDEST=/home/srcpackages
    #-- Packager: name/email of the person or organization building packages
    #PACKAGER="John Doe <[email protected]>"
    # EXTENSION DEFAULTS
    # WARNING: Do NOT modify these variables unless you know what you are
    # doing.
    PKGEXT='.pkg.tar.xz'
    SRCEXT='.src.tar.gz'
    # vim: set ft=sh ts=2 sw=2 et:
    EDIT by bash: use the 'code' tag!
    Last edited by bray085 (2011-01-16 16:29:13)

    yo man sorry about that...as i said am a newbie..but i will be up and running with no time...i have double checked the config, i cant figure anything...i need your arch skills...anywayz here is my config.log details
    $ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-xcb --disable-static
    ## Platform. ##
    hostname = Muruthi
    uname -m = x86_64
    uname -r = 2.6.33-ARCH
    uname -s = Linux
    uname -v = #1 SMP PREEMPT Thu May 13 11:32:37 CEST 2010
    /usr/bin/uname -p = unknown
    /bin/uname -X = unknown
    /bin/arch = x86_64
    /usr/bin/arch -k = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo = unknown
    /bin/machine = unknown
    /usr/bin/oslevel = unknown
    /bin/universe = unknown
    PATH: /usr/local/bin
    PATH: /usr/bin
    PATH: /bin
    PATH: /usr/local/sbin
    PATH: /usr/sbin
    PATH: /sbin
    PATH: /usr/bin/vendor_perl
    PATH: /usr/bin/core_perl
    ## Core tests. ##
    configure:3338: checking for gcc
    configure:3354: found /usr/bin/gcc
    configure:3365: result: gcc
    configure:3594: checking for C compiler version
    configure:3603: gcc --version >&5
    gcc (GCC) 4.5.2
    Copyright (C) 2010 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    configure:3614: $? = 0
    configure:3603: gcc -v >&5
    Using built-in specs.
    COLLECT_GCC=gcc
    COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/lto-wrapper
    Target: x86_64-unknown-linux-gnu
    Configured with: /build/src/gcc-4.5.2/configure --prefix=/usr --enable-languages=c,c++,fortran,objc,obj-c++,ada --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --enable-gnu-unique-object --enable-lto --enable-plugin --enable-gold --with-plugin-ld=ld.gold --disable-multilib --disable-libstdcxx-pch --with-system-zlib --with-ppl --with-cloog --with-cloog-include=/usr/include/cloog-ppl --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info
    Thread model: posix
    gcc version 4.5.2 (GCC)
    configure:3614: $? = 0
    configure:3603: gcc -V >&5
    gcc: '-V' option must have argument
    configure:3614: $? = 1
    configure:3603: gcc -qversion >&5
    gcc: unrecognized option '-qversion'
    gcc: no input files
    configure:3614: $? = 1
    configure:3634: checking whether the C compiler works
    configure:3656: gcc -march=x86-64 -mtune=generic -O2 -pipe -Wl,--hash-style=gnu -Wl,--as-needed conftest.c >&5
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/cc1: error while loading shared libraries: libmpfr.so.4: cannot open shared object file: No such file or directory
    configure:3660: $? = 1
    configure:3698: result: no
    configure: failed program was:
    | /* confdefs.h */
    | #define PACKAGE_NAME "cairo"
    | #define PACKAGE_TARNAME "cairo"
    | #define PACKAGE_VERSION "1.10.2"
    | #define PACKAGE_STRING "cairo 1.10.2"
    | #define PACKAGE_BUGREPORT "http://bugs.freedesktop.org/enter_bug.cgi?product=cairo"
    | #define PACKAGE_URL ""
    | /* end confdefs.h. */
    |
    | int
    | main ()
    | {
    |
    | ;
    | return 0;
    | }
    configure:3703: error: in `/home/irong33k/Desktop/src/cairo-1.10.2':
    configure:3705: error: C compiler cannot create executables
    See `config.log' for more details
    ## Cache variables. ##
    ac_cv_env_CCC_set=
    ac_cv_env_CCC_value=
    ac_cv_env_CC_set=
    ac_cv_env_CC_value=
    ac_cv_env_CFLAGS_set=set
    ac_cv_env_CFLAGS_value='-march=x86-64 -mtune=generic -O2 -pipe'
    ac_cv_env_CPPFLAGS_set=
    ac_cv_env_CPPFLAGS_value=
    ac_cv_env_CPP_set=
    ac_cv_env_CPP_value=
    ac_cv_env_CXXCPP_set=
    ac_cv_env_CXXCPP_value=
    ac_cv_env_CXXFLAGS_set=set
    ac_cv_env_CXXFLAGS_value='-march=x86-64 -mtune=generic -O2 -pipe'
    ac_cv_env_CXX_set=
    ac_cv_env_CXX_value=
    ac_cv_env_FONTCONFIG_CFLAGS_set=
    ac_cv_env_FONTCONFIG_CFLAGS_value=
    ac_cv_env_FONTCONFIG_LIBS_set=
    ac_cv_env_FONTCONFIG_LIBS_value=
    ac_cv_env_FREETYPE_CFLAGS_set=
    ac_cv_env_FREETYPE_CFLAGS_value=
    ac_cv_env_FREETYPE_LIBS_set=
    ac_cv_env_FREETYPE_LIBS_value=
    ac_cv_env_GOBJECT_CFLAGS_set=
    ac_cv_env_GOBJECT_CFLAGS_value=
    ac_cv_env_GOBJECT_LIBS_set=
    ac_cv_env_GOBJECT_LIBS_value=
    ac_cv_env_LDFLAGS_set=set
    ac_cv_env_LDFLAGS_value='-Wl,--hash-style=gnu -Wl,--as-needed'
    ac_cv_env_LIBRSVG_CFLAGS_set=
    ac_cv_env_LIBRSVG_CFLAGS_value=
    ac_cv_env_LIBRSVG_LIBS_set=
    ac_cv_env_LIBRSVG_LIBS_value=
    ac_cv_env_LIBSPECTRE_CFLAGS_set=
    ac_cv_env_LIBSPECTRE_CFLAGS_value=
    ac_cv_env_LIBSPECTRE_LIBS_set=
    ac_cv_env_LIBSPECTRE_LIBS_value=
    ac_cv_env_LIBS_set=
    ac_cv_env_LIBS_value=
    ac_cv_env_PKG_CONFIG_set=
    ac_cv_env_PKG_CONFIG_value=
    ac_cv_env_POPPLER_CFLAGS_set=
    ac_cv_env_POPPLER_CFLAGS_value=
    ac_cv_env_POPPLER_LIBS_set=
    ac_cv_env_POPPLER_LIBS_value=
    ac_cv_env_VALGRIND_CFLAGS_set=
    ac_cv_env_VALGRIND_CFLAGS_value=
    ac_cv_env_VALGRIND_LIBS_set=
    ac_cv_env_VALGRIND_LIBS_value=
    ac_cv_env_XMKMF_set=
    ac_cv_env_XMKMF_value=
    ac_cv_env_build_alias_set=
    ac_cv_env_build_alias_value=
    ac_cv_env_directfb_CFLAGS_set=
    ac_cv_env_directfb_CFLAGS_value=
    ac_cv_env_directfb_LIBS_set=
    ac_cv_env_directfb_LIBS_value=
    ac_cv_env_drm_CFLAGS_set=
    ac_cv_env_drm_CFLAGS_value=
    ac_cv_env_drm_LIBS_set=
    ac_cv_env_drm_LIBS_value=
    ac_cv_env_drm_xr_CFLAGS_set=
    ac_cv_env_drm_xr_CFLAGS_value=
    ac_cv_env_drm_xr_LIBS_set=
    ac_cv_env_drm_xr_LIBS_value=
    ac_cv_env_egl_CFLAGS_set=
    ac_cv_env_egl_CFLAGS_value=
    ac_cv_env_egl_LIBS_set=
    ac_cv_env_egl_LIBS_value=
    ac_cv_env_gl_CFLAGS_set=
    ac_cv_env_gl_CFLAGS_value=
    ac_cv_env_gl_LIBS_set=
    ac_cv_env_gl_LIBS_value=
    ac_cv_env_glib_CFLAGS_set=
    ac_cv_env_glib_CFLAGS_value=
    ac_cv_env_glib_LIBS_set=
    ac_cv_env_glib_LIBS_value=
    ac_cv_env_gtk_CFLAGS_set=
    ac_cv_env_gtk_CFLAGS_value=
    ac_cv_env_gtk_LIBS_set=
    ac_cv_env_gtk_LIBS_value=
    ac_cv_env_host_alias_set=
    ac_cv_env_host_alias_value=
    ac_cv_env_pixman_CFLAGS_set=
    ac_cv_env_pixman_CFLAGS_value=
    ac_cv_env_pixman_LIBS_set=
    ac_cv_env_pixman_LIBS_value=
    ac_cv_env_png_CFLAGS_set=
    ac_cv_env_png_CFLAGS_value=
    ac_cv_env_png_LIBS_set=
    ac_cv_env_png_LIBS_value=
    ac_cv_env_png_REQUIRES_set=
    ac_cv_env_png_REQUIRES_value=
    ac_cv_env_qt_CFLAGS_set=
    ac_cv_env_qt_CFLAGS_value=
    ac_cv_env_qt_LIBS_set=
    ac_cv_env_qt_LIBS_value=
    ac_cv_env_target_alias_set=
    ac_cv_env_target_alias_value=
    ac_cv_env_xcb_CFLAGS_set=
    ac_cv_env_xcb_CFLAGS_value=
    ac_cv_env_xcb_LIBS_set=
    ac_cv_env_xcb_LIBS_value=
    ac_cv_env_xcb_drm_CFLAGS_set=
    ac_cv_env_xcb_drm_CFLAGS_value=
    ac_cv_env_xcb_drm_LIBS_set=
    ac_cv_env_xcb_drm_LIBS_value=
    ac_cv_env_xcb_shm_CFLAGS_set=
    ac_cv_env_xcb_shm_CFLAGS_value=
    ac_cv_env_xcb_shm_LIBS_set=
    ac_cv_env_xcb_shm_LIBS_value=
    ac_cv_env_xlib_CFLAGS_set=
    ac_cv_env_xlib_CFLAGS_value=
    ac_cv_env_xlib_LIBS_set=
    ac_cv_env_xlib_LIBS_value=
    ac_cv_env_xlib_xcb_CFLAGS_set=
    ac_cv_env_xlib_xcb_CFLAGS_value=
    ac_cv_env_xlib_xcb_LIBS_set=
    ac_cv_env_xlib_xcb_LIBS_value=
    ac_cv_env_xlib_xrender_CFLAGS_set=
    ac_cv_env_xlib_xrender_CFLAGS_value=
    ac_cv_env_xlib_xrender_LIBS_set=
    ac_cv_env_xlib_xrender_LIBS_value=
    ac_cv_prog_ac_ct_CC=gcc
    ## Output variables. ##
    ACLOCAL=''
    AMDEPBACKSLASH=''
    AMDEP_FALSE=''
    AMDEP_TRUE=''
    AMTAR=''
    AM_BACKSLASH=''
    AM_DEFAULT_VERBOSITY=''
    AR=''
    AS=''
    AUTOCONF=''
    AUTOHEADER=''
    AUTOMAKE=''
    AWK=''
    BFD_LIBS=''
    BUILD_ANY2PPM_FALSE=''
    BUILD_ANY2PPM_TRUE=''
    BUILD_CXX_FALSE=''
    BUILD_CXX_TRUE=''
    BUILD_DRM_XR_FALSE=''
    BUILD_DRM_XR_TRUE=''
    BUILD_PRIVATE_GLEW_FALSE=''
    BUILD_PRIVATE_GLEW_TRUE=''
    BUILD_SPHINX_FALSE=''
    BUILD_SPHINX_TRUE=''
    BUILD_XCB_SHM_FALSE=''
    BUILD_XCB_SHM_TRUE=''
    BUILD_XLIB_XCB_FALSE=''
    BUILD_XLIB_XCB_TRUE=''
    CAIROBOILERPLATE_LIBS=''
    CAIROPERF_LIBS=''
    CAIRO_CAN_TEST_PDF_SURFACE_FALSE=''
    CAIRO_CAN_TEST_PDF_SURFACE_TRUE=''
    CAIRO_CAN_TEST_PS_SURFACE_FALSE=''
    CAIRO_CAN_TEST_PS_SURFACE_TRUE=''
    CAIRO_CAN_TEST_SVG_SURFACE_FALSE=''
    CAIRO_CAN_TEST_SVG_SURFACE_TRUE=''
    CAIRO_CAN_TEST_WIN32_PRINTING_SURFACE_FALSE=''
    CAIRO_CAN_TEST_WIN32_PRINTING_SURFACE_TRUE=''
    CAIRO_CFLAGS=''
    CAIRO_HAS_BEOS_SURFACE_FALSE=''
    CAIRO_HAS_BEOS_SURFACE_TRUE=''
    CAIRO_HAS_DIRECTFB_SURFACE_FALSE=''
    CAIRO_HAS_DIRECTFB_SURFACE_TRUE=''
    CAIRO_HAS_DL_FALSE=''
    CAIRO_HAS_DL_TRUE=''
    CAIRO_HAS_DRM_SURFACE_FALSE=''
    CAIRO_HAS_DRM_SURFACE_TRUE=''
    CAIRO_HAS_DRM_XR_FUNCTIONS_FALSE=''
    CAIRO_HAS_DRM_XR_FUNCTIONS_TRUE=''
    CAIRO_HAS_EGL_FUNCTIONS_FALSE=''
    CAIRO_HAS_EGL_FUNCTIONS_TRUE=''
    CAIRO_HAS_FC_FONT_FALSE=''
    CAIRO_HAS_FC_FONT_TRUE=''
    CAIRO_HAS_FT_FONT_FALSE=''
    CAIRO_HAS_FT_FONT_TRUE=''
    CAIRO_HAS_GALLIUM_SURFACE_FALSE=''
    CAIRO_HAS_GALLIUM_SURFACE_TRUE=''
    CAIRO_HAS_GLX_FUNCTIONS_FALSE=''
    CAIRO_HAS_GLX_FUNCTIONS_TRUE=''
    CAIRO_HAS_GL_SURFACE_FALSE=''
    CAIRO_HAS_GL_SURFACE_TRUE=''
    CAIRO_HAS_GOBJECT_FUNCTIONS_FALSE=''
    CAIRO_HAS_GOBJECT_FUNCTIONS_TRUE=''
    CAIRO_HAS_INTERPRETER_FALSE=''
    CAIRO_HAS_INTERPRETER_TRUE=''
    CAIRO_HAS_LCOV_FALSE=''
    CAIRO_HAS_LCOV_TRUE=''
    CAIRO_HAS_MULTI_PAGE_SURFACES_FALSE=''
    CAIRO_HAS_MULTI_PAGE_SURFACES_TRUE=''
    CAIRO_HAS_OS2_SURFACE_FALSE=''
    CAIRO_HAS_OS2_SURFACE_TRUE=''
    CAIRO_HAS_PDF_SURFACE_FALSE=''
    CAIRO_HAS_PDF_SURFACE_TRUE=''
    CAIRO_HAS_PNG_FUNCTIONS_FALSE=''
    CAIRO_HAS_PNG_FUNCTIONS_TRUE=''
    CAIRO_HAS_PS_SURFACE_FALSE=''
    CAIRO_HAS_PS_SURFACE_TRUE=''
    CAIRO_HAS_PTHREAD_FALSE=''
    CAIRO_HAS_PTHREAD_TRUE=''
    CAIRO_HAS_QT_SURFACE_FALSE=''
    CAIRO_HAS_QT_SURFACE_TRUE=''
    CAIRO_HAS_QUARTZ_FONT_FALSE=''
    CAIRO_HAS_QUARTZ_FONT_TRUE=''
    CAIRO_HAS_QUARTZ_IMAGE_SURFACE_FALSE=''
    CAIRO_HAS_QUARTZ_IMAGE_SURFACE_TRUE=''
    CAIRO_HAS_QUARTZ_SURFACE_FALSE=''
    CAIRO_HAS_QUARTZ_SURFACE_TRUE=''
    CAIRO_HAS_SCRIPT_SURFACE_FALSE=''
    CAIRO_HAS_SCRIPT_SURFACE_TRUE=''
    CAIRO_HAS_SKIA_SURFACE_FALSE=''
    CAIRO_HAS_SKIA_SURFACE_TRUE=''
    CAIRO_HAS_SPECTRE_FALSE=''
    CAIRO_HAS_SPECTRE_TRUE=''
    CAIRO_HAS_SVG_SURFACE_FALSE=''
    CAIRO_HAS_SVG_SURFACE_TRUE=''
    CAIRO_HAS_SYMBOL_LOOKUP_FALSE=''
    CAIRO_HAS_SYMBOL_LOOKUP_TRUE=''
    CAIRO_HAS_TEE_SURFACE_FALSE=''
    CAIRO_HAS_TEE_SURFACE_TRUE=''
    CAIRO_HAS_TEST_SURFACES_FALSE=''
    CAIRO_HAS_TEST_SURFACES_TRUE=''
    CAIRO_HAS_TRACE_FALSE=''
    CAIRO_HAS_TRACE_TRUE=''
    CAIRO_HAS_VG_SURFACE_FALSE=''
    CAIRO_HAS_VG_SURFACE_TRUE=''
    CAIRO_HAS_WGL_FUNCTIONS_FALSE=''
    CAIRO_HAS_WGL_FUNCTIONS_TRUE=''
    CAIRO_HAS_WIN32_FONT_FALSE=''
    CAIRO_HAS_WIN32_FONT_TRUE=''
    CAIRO_HAS_WIN32_SURFACE_FALSE=''
    CAIRO_HAS_WIN32_SURFACE_TRUE=''
    CAIRO_HAS_XCB_DRM_FUNCTIONS_FALSE=''
    CAIRO_HAS_XCB_DRM_FUNCTIONS_TRUE=''
    CAIRO_HAS_XCB_SHM_FUNCTIONS_FALSE=''
    CAIRO_HAS_XCB_SHM_FUNCTIONS_TRUE=''
    CAIRO_HAS_XCB_SURFACE_FALSE=''
    CAIRO_HAS_XCB_SURFACE_TRUE=''
    CAIRO_HAS_XLIB_SURFACE_FALSE=''
    CAIRO_HAS_XLIB_SURFACE_TRUE=''
    CAIRO_HAS_XLIB_XCB_FUNCTIONS_FALSE=''
    CAIRO_HAS_XLIB_XCB_FUNCTIONS_TRUE=''
    CAIRO_HAS_XLIB_XRENDER_SURFACE_FALSE=''
    CAIRO_HAS_XLIB_XRENDER_SURFACE_TRUE=''
    CAIRO_HAS_XML_SURFACE_FALSE=''
    CAIRO_HAS_XML_SURFACE_TRUE=''
    CAIRO_LDFLAGS=''
    CAIRO_LIBS=''
    CAIRO_LIBTOOL_VERSION_INFO=''
    CAIRO_NONPKGCONFIG_CFLAGS=''
    CAIRO_NONPKGCONFIG_LIBS=''
    CAIRO_RELEASE_STATUS=''
    CAIRO_REQUIRES=''
    CAIRO_TEST_MODE=''
    CAIRO_TEST_UNDEFINED_LDFLAGS=''
    CAIRO_VERSION_MAJOR=''
    CAIRO_VERSION_MICRO=''
    CAIRO_VERSION_MINOR=''
    CAIRO_VERSION_SONUM=''
    CC='gcc'
    CCDEPMODE=''
    CFLAGS='-march=x86-64 -mtune=generic -O2 -pipe'
    CPP=''
    CPPFLAGS=''
    CROSS_COMPILING_FALSE=''
    CROSS_COMPILING_TRUE=''
    CXX=''
    CXXCPP=''
    CXXDEPMODE=''
    CXXFLAGS='-march=x86-64 -mtune=generic -O2 -pipe'
    CYGPATH_W=''
    DEFS=''
    DEPDIR=''
    DISABLE_SOME_FLOATING_POINT_FALSE=''
    DISABLE_SOME_FLOATING_POINT_TRUE=''
    DLLTOOL=''
    DSYMUTIL=''
    DUMPBIN=''
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EGREP=''
    ENABLE_GTK_DOC_FALSE=''
    ENABLE_GTK_DOC_TRUE=''
    EXEEXT=''
    FGREP=''
    FIND=''
    FONTCONFIG_CFLAGS=''
    FONTCONFIG_LIBS=''
    FREETYPE_CFLAGS=''
    FREETYPE_CONFIG=''
    FREETYPE_LIBS=''
    GOBJECT_CFLAGS=''
    GOBJECT_LIBS=''
    GREP=''
    GS=''
    GTKDOC_CHECK=''
    GTK_DOC_USE_LIBTOOL_FALSE=''
    GTK_DOC_USE_LIBTOOL_TRUE=''
    HAVE_GTK_FALSE=''
    HAVE_GTK_TRUE=''
    HAVE_PTHREAD_FALSE=''
    HAVE_PTHREAD_TRUE=''
    HAVE_REAL_PTHREAD_FALSE=''
    HAVE_REAL_PTHREAD_TRUE=''
    HAVE_SHM_FALSE=''
    HAVE_SHM_TRUE=''
    HTML_DIR=''
    INSTALL_DATA=''
    INSTALL_PROGRAM=''
    INSTALL_SCRIPT=''
    INSTALL_STRIP_PROGRAM=''
    LD=''
    LDFLAGS='-Wl,--hash-style=gnu -Wl,--as-needed'
    LIBM=''
    LIBOBJS=''
    LIBRSVG_CFLAGS=''
    LIBRSVG_LIBS=''
    LIBS=''
    LIBSPECTRE_CFLAGS=''
    LIBSPECTRE_LIBS=''
    LIBTOOL=''
    LIPO=''
    LN_S=''
    LTLIBOBJS=''
    LTP=''
    LTP_GENHTML=''
    MAKEINFO=''
    MKDIR_P=''
    NM=''
    NMEDIT=''
    OBJDUMP=''
    OBJEXT=''
    OS_WIN32_FALSE=''
    OS_WIN32_TRUE=''
    OTOOL64=''
    OTOOL=''
    PACKAGE=''
    PACKAGE_BUGREPORT='http://bugs.freedesktop.org/enter_bug.cgi?product=cairo'
    PACKAGE_NAME='cairo'
    PACKAGE_STRING='cairo 1.10.2'
    PACKAGE_TARNAME='cairo'
    PACKAGE_URL=''
    PACKAGE_VERSION='1.10.2'
    PATH_SEPARATOR=':'
    PKGCONFIG_REQUIRES=''
    PKG_CONFIG=''
    POPPLER_CFLAGS=''
    POPPLER_LIBS=''
    RANLIB=''
    SED=''
    SET_MAKE=''
    SHELL='/bin/sh'
    SHLIB_EXT=''
    SHM_LIBS=''
    SHTOOL=''
    STRIP=''
    VALGRIND_CFLAGS=''
    VALGRIND_LIBS=''
    VERSION=''
    XARGS=''
    XMKMF=''
    X_CFLAGS=''
    X_EXTRA_LIBS=''
    X_LIBS=''
    X_PRE_LIBS=''
    ac_ct_CC='gcc'
    ac_ct_CXX=''
    ac_ct_DUMPBIN=''
    am__EXEEXT_FALSE=''
    am__EXEEXT_TRUE=''
    am__fastdepCC_FALSE=''
    am__fastdepCC_TRUE=''
    am__fastdepCXX_FALSE=''
    am__fastdepCXX_TRUE=''
    am__include=''
    am__isrc=''
    am__leading_dot=''
    am__quote=''
    am__tar=''
    am__untar=''
    bindir='${exec_prefix}/bin'
    build=''
    build_alias=''
    build_cpu=''
    build_os=''
    build_vendor=''
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    directfb_CFLAGS=''
    directfb_LIBS=''
    docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
    drm_CFLAGS=''
    drm_LIBS=''
    drm_xr_CFLAGS=''
    drm_xr_LIBS=''
    dvidir='${docdir}'
    egl_CFLAGS=''
    egl_LIBS=''
    exec_prefix='NONE'
    gallium_DIR=''
    gl_CFLAGS=''
    gl_LIBS=''
    glib_CFLAGS=''
    glib_LIBS=''
    gtk_CFLAGS=''
    gtk_LIBS=''
    host=''
    host_alias=''
    host_cpu=''
    host_os=''
    host_vendor=''
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    install_sh=''
    libdir='${exec_prefix}/lib'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='/var'
    lt_ECHO='echo'
    mandir='${datarootdir}/man'
    mesa_DIR=''
    mkdir_p=''
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    pixman_CFLAGS=''
    pixman_LIBS=''
    png_CFLAGS=''
    png_LIBS=''
    png_REQUIRES=''
    prefix='/usr'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    pthread_CFLAGS=''
    pthread_LIBS=''
    qt_CFLAGS=''
    qt_LIBS=''
    real_pthread_CFLAGS=''
    real_pthread_LIBS=''
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    shm_LIBS=''
    skia_DIR=''
    sysconfdir='/etc'
    target_alias=''
    xcb_CFLAGS=''
    xcb_LIBS=''
    xcb_drm_CFLAGS=''
    xcb_drm_LIBS=''
    xcb_shm_CFLAGS=''
    xcb_shm_LIBS=''
    xlib_CFLAGS=''
    xlib_LIBS=''
    xlib_xcb_CFLAGS=''
    xlib_xcb_LIBS=''
    xlib_xrender_CFLAGS=''
    xlib_xrender_LIBS=''
    ## confdefs.h. ##
    /* confdefs.h */
    #define PACKAGE_NAME "cairo"
    #define PACKAGE_TARNAME "cairo"
    #define PACKAGE_VERSION "1.10.2"
    #define PACKAGE_STRING "cairo 1.10.2"
    #define PACKAGE_BUGREPORT "http://bugs.freedesktop.org/enter_bug.cgi?product=cairo"
    #define PACKAGE_URL ""
    configure: exit 77

  • [SOLVED] configure: error: C compiler cannot create executables

    I have tried to build three AUR packages, but the builds always fail with the following output:
    ==> Entering fakeroot environment...
    ==> Starting build()...
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking build system type... (cached) i686-pc-linux-gnu
    checking target system type... i686-pc-linux-gnu
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... no
    checking for style of include used by make... none
    checking for gcc... gcc
    checking for C compiler default output file name...
    configure: error: in `/home/learner/builds/tuxmath/src/tuxmath_w_fonts-1.7.2':
    configure: error: C compiler cannot create executables
    See `config.log' for more details.
    ==> ERROR: Build Failed.
    Aborting...
    I could not find the indicated config.log file.
    I installed all the dependencies indicated in the wiki, but I have a feeling I must be missing basic in my configuration.  Both gcc and base-devel are installed.  I've also run makepkg as root.  What amI doing wrong?
    Last edited by intelligo (2010-02-04 00:33:14)

    Here's the config,log:
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
    It was created by Tux Of Math Command configure 1.7.2, which was
    generated by GNU Autoconf 2.63. Invocation command line was
    $ ./configure --prefix=/usr
    ## Platform. ##
    hostname = uknow4kids
    uname -m = i686
    uname -r = 2.6.32-ARCH
    uname -s = Linux
    uname -v = #1 SMP PREEMPT Mon Jan 25 20:06:48 UTC 2010
    /usr/bin/uname -p = unknown
    /bin/uname -X = unknown
    /bin/arch = i686
    /usr/bin/arch -k = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo = unknown
    /bin/machine = unknown
    /usr/bin/oslevel = unknown
    /bin/universe = unknown
    PATH: /bin
    PATH: /usr/bin
    PATH: /sbin
    PATH: /usr/sbin
    PATH: /usr/bin/perlbin/site
    PATH: /usr/bin/perlbin/vendor
    PATH: /usr/bin/perlbin/core
    ## Core tests. ##
    configure:1951: checking build system type
    configure:1969: result: i686-pc-linux-gnu
    configure:1991: checking host system type
    configure:2006: result: i686-pc-linux-gnu
    configure:2034: checking build system type
    configure:2052: result: i686-pc-linux-gnu
    configure:2074: checking target system type
    configure:2089: result: i686-pc-linux-gnu
    configure:2134: checking for a BSD-compatible install
    configure:2202: result: /bin/install -c
    configure:2213: checking whether build environment is sane
    configure:2256: result: yes
    configure:2281: checking for a thread-safe mkdir -p
    configure:2320: result: /bin/mkdir -p
    configure:2333: checking for gawk
    configure:2349: found /bin/gawk
    configure:2360: result: gawk
    configure:2371: checking whether make sets $(MAKE)
    configure:2397: result: no
    configure:2604: checking for style of include used by make
    configure:2632: result: none
    configure:2702: checking for gcc
    configure:2718: found /usr/bin/gcc
    configure:2729: result: gcc
    configure:2961: checking for C compiler version
    configure:2969: gcc --version >&5
    gcc (GCC) 4.4.3
    Copyright (C) 2010 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    configure:2973: $? = 0
    configure:2980: gcc -v >&5
    Using built-in specs.
    Target: i686-pc-linux-gnu
    Configured with: ../configure --prefix=/usr --enable-shared --enable-languages=c,c++,fortran,objc,obj-c++,ada --enable-threads=posix --mandir=/usr/share/man --infodir=/usr/share/info --enable-__cxa_atexit --disable-multilib --libdir=/usr/lib --libexecdir=/usr/lib --enable-clocale=gnu --disable-libstdcxx-pch --with-tune=generic
    Thread model: posix
    gcc version 4.4.3 (GCC)
    configure:2984: $? = 0
    configure:2991: gcc -V >&5
    gcc: '-V' option must have argument
    configure:2995: $? = 1
    configure:3018: checking for C compiler default output file name
    configure:3040: gcc -march=i686 -mtune=generic -O2 -pipe -Wl,--hash-style=gnu -Wl,--as-needed conftest.c >&5
    gcc: error trying to exec '/usr/lib/gcc/i686-pc-linux-gnu/4.4.3/cc1': execv: Exec format error
    configure:3044: $? = 1
    configure:3082: result:
    configure: failed program was:
    | /* confdefs.h. */
    | #define PACKAGE_NAME "Tux Of Math Command"
    | #define PACKAGE_TARNAME "tuxmath"
    | #define PACKAGE_VERSION "1.7.2"
    | #define PACKAGE_STRING "Tux Of Math Command 1.7.2"
    | #define PACKAGE_BUGREPORT "[email protected]"
    | #define PACKAGE "tuxmath"
    | #define VERSION "1.7.2"
    | #define PROGRAM_NAME "tuxmath"
    | /* end confdefs.h. */
    |
    | int
    | main ()
    | {
    |
    | ;
    | return 0;
    | }
    configure:3088: error: in `/home/learner/builds/tuxmath/src/tuxmath_w_fonts-1.7.2':
    configure:3091: error: C compiler cannot create executables
    See `config.log' for more details.
    ## Cache variables. ##
    ac_cv_build=i686-pc-linux-gnu
    ac_cv_env_CC_set=
    ac_cv_env_CC_value=
    ac_cv_env_CFLAGS_set=set
    ac_cv_env_CFLAGS_value='-march=i686 -mtune=generic -O2 -pipe'
    ac_cv_env_CPPFLAGS_set=
    ac_cv_env_CPPFLAGS_value=
    ac_cv_env_CPP_set=
    ac_cv_env_CPP_value=
    ac_cv_env_LDFLAGS_set=set
    ac_cv_env_LDFLAGS_value='-Wl,--hash-style=gnu -Wl,--as-needed'
    ac_cv_env_LIBS_set=
    ac_cv_env_LIBS_value=
    ac_cv_env_YACC_set=
    ac_cv_env_YACC_value=
    ac_cv_env_YFLAGS_set=
    ac_cv_env_YFLAGS_value=
    ac_cv_env_build_alias_set=
    ac_cv_env_build_alias_value=
    ac_cv_env_host_alias_set=
    ac_cv_env_host_alias_value=
    ac_cv_env_target_alias_set=
    ac_cv_env_target_alias_value=
    ac_cv_host=i686-pc-linux-gnu
    ac_cv_path_install='/bin/install -c'
    ac_cv_path_mkdir=/bin/mkdir
    ac_cv_prog_AWK=gawk
    ac_cv_prog_ac_ct_CC=gcc
    ac_cv_prog_make_make_set=no
    ac_cv_target=i686-pc-linux-gnu
    ## Output variables. ##
    ACLOCAL='${SHELL} /home/learner/builds/tuxmath/src/tuxmath_w_fonts-1.7.2/missing --run aclocal-1.10'
    ALLOCA=''
    AMDEPBACKSLASH='\'
    AMDEP_FALSE='#'
    AMDEP_TRUE=''
    AMTAR='${SHELL} /home/learner/builds/tuxmath/src/tuxmath_w_fonts-1.7.2/missing --run tar'
    AUTOCONF='${SHELL} /home/learner/builds/tuxmath/src/tuxmath_w_fonts-1.7.2/missing --run autoconf'
    AUTOHEADER='${SHELL} /home/learner/builds/tuxmath/src/tuxmath_w_fonts-1.7.2/missing --run autoheader'
    AUTOMAKE='${SHELL} /home/learner/builds/tuxmath/src/tuxmath_w_fonts-1.7.2/missing --run automake-1.10'
    AWK='gawk'
    BUILD_MINGW32_FALSE=''
    BUILD_MINGW32_TRUE=''
    CC='gcc'
    CCDEPMODE=''
    CFLAGS='-march=i686 -mtune=generic -O2 -pipe'
    CPP=''
    CPPFLAGS=''
    CYGPATH_W='echo'
    DEFS=''
    DEPDIR='.deps'
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EGREP=''
    EXEEXT=''
    GETTEXT_MACRO_VERSION=''
    GMSGFMT=''
    GMSGFMT_015=''
    GREP=''
    INSTALL_DATA='${INSTALL} -m 644'
    INSTALL_PROGRAM='${INSTALL}'
    INSTALL_SCRIPT='${INSTALL}'
    INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
    INTLLIBS=''
    INTL_MACOSX_LIBS=''
    LDFLAGS='-Wl,--hash-style=gnu -Wl,--as-needed'
    LIBICONV=''
    LIBINTL=''
    LIBOBJS=''
    LIBS=''
    LTLIBICONV=''
    LTLIBINTL=''
    LTLIBOBJS=''
    MAKEINFO='${SHELL} /home/learner/builds/tuxmath/src/tuxmath_w_fonts-1.7.2/missing --run makeinfo'
    MKDIR_P='/bin/mkdir -p'
    MSGFMT=''
    MSGFMT_015=''
    MSGMERGE=''
    NAME_VERSION='tuxmath-1.7.2'
    NSIS=''
    NSI_BUILD_FALSE=''
    NSI_BUILD_TRUE=''
    NSI_DLL_DIR=''
    NSI_INSTALL_DIR=''
    OBJEXT=''
    PACKAGE='tuxmath'
    PACKAGE_BUGREPORT='[email protected]'
    PACKAGE_NAME='Tux Of Math Command'
    PACKAGE_STRING='Tux Of Math Command 1.7.2'
    PACKAGE_TARNAME='tuxmath'
    PACKAGE_VERSION='1.7.2'
    PATH_SEPARATOR=':'
    POSUB=''
    POW_LIB=''
    RANLIB=''
    SDL_CFLAGS=''
    SDL_CONFIG=''
    SDL_LIBS=''
    SET_MAKE='MAKE=make'
    SHELL='/bin/sh'
    STRIP=''
    USE_NLS=''
    VERSION='1.7.2'
    WINDRES=''
    XGETTEXT=''
    XGETTEXT_015=''
    XGETTEXT_EXTRA_OPTIONS=''
    YACC=''
    YFLAGS=''
    ac_ct_CC='gcc'
    am__fastdepCC_FALSE=''
    am__fastdepCC_TRUE=''
    am__include='#'
    am__isrc=''
    am__leading_dot='.'
    am__quote=''
    am__tar='${AMTAR} chof - "$$tardir"'
    am__untar='${AMTAR} xf -'
    bindir='${exec_prefix}/bin'
    build='i686-pc-linux-gnu'
    build_alias=''
    build_cpu='i686'
    build_os='linux-gnu'
    build_vendor='pc'
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
    dvidir='${docdir}'
    exec_prefix='NONE'
    host='i686-pc-linux-gnu'
    host_alias=''
    host_cpu='i686'
    host_os='linux-gnu'
    host_vendor='pc'
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    install_sh='$(SHELL) /home/learner/builds/tuxmath/src/tuxmath_w_fonts-1.7.2/install-sh'
    libdir='${exec_prefix}/lib'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='${prefix}/var'
    mandir='${datarootdir}/man'
    mkdir_p='/bin/mkdir -p'
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    prefix='/usr'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    sysconfdir='${prefix}/etc'
    target='i686-pc-linux-gnu'
    target_alias=''
    target_cpu='i686'
    target_os='linux-gnu'
    target_vendor='pc'
    ## confdefs.h. ##
    #define PACKAGE_NAME "Tux Of Math Command"
    #define PACKAGE_TARNAME "tuxmath"
    #define PACKAGE_VERSION "1.7.2"
    #define PACKAGE_STRING "Tux Of Math Command 1.7.2"
    #define PACKAGE_BUGREPORT "[email protected]"
    #define PACKAGE "tuxmath"
    #define VERSION "1.7.2"
    #define PROGRAM_NAME "tuxmath"
    configure: exit 77
    And here's makepkg.conf:
    # /etc/makepkg.conf
    # SOURCE ACQUISITION
    #-- The download utilities that makepkg should use to acquire sources
    # Format: 'protocol::agent'
    DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
    'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u'
    'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
    'rsync::/usr/bin/rsync -z %u %o'
    'scp::/usr/bin/scp -C %u %o')
    # Other common tools:
    # /usr/bin/snarf
    # /usr/bin/lftpget -c
    # /usr/bin/curl
    # ARCHITECTURE, COMPILE FLAGS
    CARCH="i686"
    CHOST="i686-pc-linux-gnu"
    #-- Exclusive: will only run on i686
    # -march (or -mcpu) builds exclusively for an architecture
    # -mtune optimizes for an architecture, but builds for whole processor family
    CFLAGS="-march=i686 -mtune=generic -O2 -pipe"
    CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe"
    LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
    #-- Make Flags: change this for DistCC/SMP systems
    #MAKEFLAGS="-j2"
    # BUILD ENVIRONMENT
    # Defaults: BUILDENV=(fakeroot !distcc color !ccache)
    # A negated environment option will do the opposite of the comments below.
    #-- fakeroot: Allow building packages as a non-root user
    #-- distcc: Use the Distributed C/C++/ObjC compiler
    #-- color: Colorize output messages
    #-- ccache: Use ccache to cache compilation
    BUILDENV=(fakeroot !distcc color !ccache)
    #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
    #-- specify a space-delimited list of hosts running in the DistCC cluster.
    #DISTCC_HOSTS=""
    # GLOBAL PACKAGE OPTIONS
    # These are default values for the options=() settings
    # Default: OPTIONS=(strip docs libtool emptydirs zipman purge)
    # A negated option will do the opposite of the comments below.
    #-- strip: Strip symbols from binaries/libraries in STRIP_DIRS
    #-- docs: Save doc directories specified by DOC_DIRS
    #-- libtool: Leave libtool (.la) files in packages
    #-- emptydirs: Leave empty directories in packages
    #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
    #-- purge: Remove files specified by PURGE_TARGETS
    OPTIONS=(strip docs libtool emptydirs zipman purge)
    #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
    INTEGRITY_CHECK=(md5)
    #-- Manual (man and info) directories to compress (if zipman is specified)
    MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
    #-- Doc directories to remove (if !docs is specified)
    DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
    #-- Directories to be searched for the strip option (if strip is specified)
    STRIP_DIRS=(bin lib sbin usr/{bin,lib,sbin,local/{bin,lib,sbin}} opt/*/{bin,lib,sbin})
    #-- Files to be removed from all packages (if purge is specified)
    PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
    # PACKAGE OUTPUT
    # Default: put built package and cached source in build directory
    #-- Destination: specify a fixed directory where all packages will be placed
    #PKGDEST=/home/packages
    #-- Source cache: specify a fixed directory where source files will be cached
    #SRCDEST=/home/sources
    #-- Packager: name/email of the person or organization building packages
    #PACKAGER="John Doe <[email protected]>"
    # EXTENSION DEFAULTS
    # WARNING: Do NOT modify these variables unless you know what you are
    # doing.
    PKGEXT='.pkg.tar.gz'
    SRCEXT='.src.tar.gz'
    # vim: set ft=sh ts=2 sw=2 et:
    Thanks for your help!

Maybe you are looking for

  • BIP Outputting to PDF the second page starts 1 line higher than the first

    Hello - Im using Embedded BI Publisher 10.1.3.4.2 to print a document to PDF. Once I print 45 lines on the first page, I page-break to continue on page number 2. For some reason the page 2 output starts 1 line above where it starts one page 1. It's a

  • Query says master data value is invalid in selection screen.

    Hi, I am experiencing an issue that is occurring across many reports in our BW QA system, not just one. My InfoProvider clearly contains data with plant = US33. However, when I run the report and in the selection screen I enter US33 I get the error m

  • Upcoming SAP Best Practices Data Migration Training - Berlin

    YOU ARE INVITED TO ATTEND HANDS-ON TRAINING Berlin, Germany: October 06 u2013 08, 2010     ` Installation and Deployment of SAP Best Practices for Data Migration & SAP BusinessObjects Data Integrator Install and learn how to use the latest SAP Best P

  • How do you un-download 7.2?

    i just downloaded a itunes 7.2 and i get an error saying that there is a problem with my audio configuration. i looked at the system requirements again and saw that it required a 500 MHz Pentium class or better. my computer only has a 400. i am askin

  • Release Strategy and workflow in Purchase Requisition

    Hello All, My client wants to activate the release strategy and workflow at the purch req and PO levels. They allow users to create a Preq and reference that preq to the PO, or users may create a PO without referencing a Preq. Since they have the rel