configure

Compiling a gnu program without sse3

I'm compiling an app for a device where the architecture does not support sse beyond sse2, and was wondering is it possible to disable compiling with sse3 instructions from GNU autoconf generated configure scripts? I know you can turn it off in gcc/g++ with mno-sse3 option, but it would be nice if I could turn it off at the configuration...

FFMPEG won't configure for iPhone

I have downloaded FFMPEG via svn, and put the gas-preprocessor into usr/local/bin. But, when I try to post the following code into terminal, it says: "-bash: ./configure: No such file or directory" This is the code: ./configure --cc=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc --as='gas-preprocessor.pl /Developer/Platfo...

Why in "Configure Data Source" when i choose "Parameter source :Control" all ControlIDs are duplicated?

Hi , I don't know it happen just to me or Others have the same situation too . All the time when i bind a DataControl to an ObjectDataSource in "Configure Data Source" wizard of ObjectDataSource,when i set parameter source as "Control" in "ControlId" DropdownList there are TWO Item of every control in the WebForm , while it make sense ...

Apache with c# classes.

Is there any way to have apache "pass" the request it takes to a c# "application" to handle, allowing it to return specific content. I want to handle an intense amount of asynchronous calls to apache via javascript and have these calls routed through c# (much the way asp.net does). Has anyone successfully done this before? Any idea where...

Set up mail to receive emails on Google App Engine

The documentation is rather incomplete. I could not set up the inbound email. Please kindly advise. Here are some details: app.yaml: handlers: - url: /_ah/mail/owner@oladic\.appspotmail\.com script: handle_owner.py login: admin - url: /_ah/mail/support@oladic\.appspotmail\.com script: handle_support.py login: admin - url...

Forcing 32-bit architecture via configure

Hi. What is the best way to force a configure script to build a 32-bit code? I have a 64-bit machine, and trying to build a 32-bit code. Tried setting the --build type with several options, but this just doesn't work. Thanks! ...

C# .Net 2.0 Automatic Configuration of proxy?

Hi Guys, I am working on a project to download files using .Net c# 2.0 SP1. One of the requirements of the project is to not seek any proxy details and automatically detect this from IE etc. Now i haven't worked with proxy before and hence i am a bit baffled. After hours of searching google, msdn etc, i have come across the following a...

Using Debian tools for building g++

I would like to rebuild g++ with my own specific settings. Here is what I did so far: sudo aptitude install build-dep g++-4.2 mkdir trial && cd trial apt-get source g++-4.2 Now I want to configure my specific settings. For g++ this is normally done by e.g. sh configure --prefix=/home/voku/non-productive But unfortunately I cannot ...

Qt::How small can it be made?

I'm using Qt for an embedded Linux app and want to make it as small as possible. At the moment If I make a statically compiled executable it will be 3.9Mb, pretty much only using the GUI parts I need. I got it to 3.9Mb just by using qconfig and configuration parameters. I was thinking about seeing how much smaller it could be made by mod...

Best way to programatically check for existence of header file?

Is it just to test compile a simple program, with that header file #included in it? To better understand the compilation process I'm writing my own "configure", which tests for the existence of a few header and library files. ...

PHP error: libphp5.so: undefined symbol: _estrndup

I compile Apache-MySQL-PHP by hand to build a custom install using the configure options from below. When I start apache it fails to start and adds the below error in the error_log. * Apache 2 * Mysql 5.0 * PHP 5.1 * CentOS Linux 5.4 * GCC compiler the error in apache log httpd: Syntax error on line 54 of /opt/clamp/etc/httpd.conf: Can...

create custom LAMP distribution like XAMPP

I wish to make a self contained LAMP distro software package from source with at least the following: * php must have mysqli, ldap and GD support * all required .so's must be included (like libpng needed by GD) (self contained) I managed to make one but i keep patching quirks to it, SO i thought to start from a wide-used one like XAM...

Using svn with xampp for php projects

I have heard a lot about version control and would like to work on it. I read some tutorials about the same. However i am not quite sure how svn works with xampp. I have installed svn, Tortoise svn and made the necessary changes in xampp. For instance i copied the two required modules to c:/xampp/apache/modules and also made changes to t...

What configure options were used when building gcc / libstdc++?

After reading about the problem of passing empty std::string objects between DLLs and EXEs, I am concerned about the configure options used to build my gcc / libstdc++. More specific I want to know if --enable-fully-dynamic-string was used during ./configure. I'm using MinGW 4.4.0 on Windows XP. Does anybody know the configuration use...

Check result of AX_PYTHON_MODULE in configure.ac

In using the m4_ax_python_module.m4 macro in configure.ac (AX_PYTHON_MODULE), one can know at configure time if a given module is installed. It takes two arguments, the module name, and second argument which if not empty, will lead to an exit, useful when the module is a must-have. In the case where you don't want a fatal exit, how do ...

What does a typical ./configure do in linux?

Why is it necessary though everything is specified in a makefile? ...

gcc support libraries fail when cross-compiling

I'm trying to cross-compile gcc 4.4.3 and it's cross libraries. I have set all the Environment Variables needed for cross-compilation (AS, CC, CXX, AR, RANLIB, STRIP) and used the same setup for a lot of other stuff already, all of which worked fine. Now gcc itself also compiles without a problem but the support libraries are really puz...

OpenSSL not listed under PHP modules but shows up in the configure command

PHP 5.2.12 OS X 10.5.8 If I compile PHP from source with the following configure command ./configure --disable-all --with-openssl=shared,/opt/local it succeeds. However, after a make and make install, php -m does not list the openssl module. Based on what I've read, I think it may be due to multiple installs of the openssl librar...

FFmpeg on iPhone getting error running 'make'

I'm getting an error when trying to make ffmpeg on my intel mac, iPhone SDK 3.1, using the same command lines that were used here, and using the latest checkout of ffmpeg from svn. Here's the error that I'm getting: CC libavcodec/apedec.o AS libavcodec/arm/dsputil_arm.o /bin/sh: /usr/local/bin/gas-preprocessor.pl: Permission denied ma...

With a ./configure (php) what is the difference between --disable-[name] and --without-[name]?

I want to avoid compiling php with fileinfo, ereg, and parch. What is the difference between --disable and --without with configure? ...