Questions tagged [configure]

A Configure script is an executable script designed to aid in developing a program to be run on a wide number of different computers.

A Configure script is an executable script designed to aid in developing a program to be run on a wide number of different computers. It matches the libraries on the user's computer, with those required by the program, just before compiling it from its source code.

As a common practice, all configure scripts are named "configure". Usually, configure scripts are written in Bash syntax, but they may be written for execution in any desired shell.

1550 questions
0
votes
1 answer

How to configure ASP.NET site on IIS 7.0

I found a lot of articles on internet about "Deploying ASP.NET website on IIS 7.0" and now i know that how to do it. But unfortunately when i set website on the IIS, i get another error! At the first i got "IIS APPPOOL\TradeSite" error. but, when i…
Aspmaker
  • 25
  • 5
0
votes
2 answers

Why doesn't this bit of code work? Setting variables and config file

I have recently just made this script: if test -s $HOME/koolaid.txt ; then Billz=$(grep / $HOME/koolaid.txt) echo $Billz else Billz=$HOME/notkoolaid echo $Billz fi if test -d $Billz ; then echo "Ok" else touch $Billz fi So…
DeaIss
  • 2,525
  • 7
  • 27
  • 37
0
votes
1 answer

Run local GCC on remote linux server

I'm sure this has been asked before but after some time searching I'm not finding quite what I want. I have a test server that I cannot install GCC or other development needs on. On my development linux computer I can ssh to the test server, I want…
FaultyJuggler
  • 532
  • 1
  • 8
  • 29
0
votes
2 answers

Configure is unable to find a working compiler

I'm trying to run configure telling it to use a cross compiler (the one provided by the Android NDK), but it isn't able to find one. I did the following (note, the Android NDK root is in /prod/ndk/): (inside the folder I want to compile, which is…
shblsh
  • 81
  • 1
  • 9
0
votes
1 answer

GTK configure error

On running: ./configure --prefix=/opt/gtk I receive the following error at message: configure: error: Package requirements (glib-2.0 >= 2.33.1 atk >= 2.5.3 pango >= 1.30.0 cairo >= 1.10.0 cairo-gobject >= 1.10.0 gdk-pixbuf-2.0 >=…
Aditya Sihag
  • 5,057
  • 4
  • 32
  • 43
0
votes
1 answer

configure rcsserver and have trouble with boost

I want to configure rcsserver at ubuntu 13.04 with boost V 1.53I extract rccserver 15-2I used this at extracted folder from .tar.gz file: $./configure but at last... checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how…
user1640342
0
votes
1 answer

What does a colon do in this GNU configure script?

I'm looking at the differences between configure scripts for two versions of Apache and I have noticed the following in the new version of configure: if [ some test ]; then : do this else do that versus the old version: if [ some test ];…
Rob Wells
  • 36,220
  • 13
  • 81
  • 146
0
votes
1 answer

How to set "./configure --without-iconv" in Eclipse (CDT)?

I'm with this error: "undefined reference to 'libiconv_open'" While compiling On this site there is a solution: [SOLVED] Error "undefined reference to 'libiconv_open'" while compiling But, I'm using Eclipse CDT + MingW to compile, and I have not…
Reynaldo
  • 504
  • 8
  • 13
0
votes
1 answer

Memory Limit (67108864) in activemq

I have a problem when it comes to the ActiveMQ. I need to know where exactly I can re-configure the Active MQ to avoid the following error: Usage Manager Memory Limit (67108864) reached on queue://1000010. Producers will be throttled to the rate at…
0
votes
1 answer

When ./configure is given conflicting options, which wins?

I'm building a cross-compiling gcc using buildroot, and can supply some additional configuration options to the ./configure step without patching the buildroot sources. However, I want to override an option that the buildroot sources have already…
dubiousjim
  • 4,722
  • 1
  • 36
  • 34
0
votes
1 answer

I'm trying to install ImageMagick via HomeBrew and the Brew Doctor is giving me the following error. Any advice?

Warning: "config" scripts exist outside your system or Homebrew directories. ./configure scripts often look for *-config scripts to determine if software packages are installed, and what additional flags to use when compiling and linking. Having…
0
votes
1 answer

rpm can't find configure no such file

I have a problem with my spec file. When I run it with rpmbuild it says it can't find ./configure no such file or directory. Here is a part of the code of my spec file. Can someone help me? ... BuildRequires: gd-devel > 1.8, mailx, libjpeg-devel,…
0
votes
1 answer

undefined method `define_index' with thinking-sphinx

Getting this error when I run rake ts:index, or rake ts:configure. I can't remember everything I have tried - most of the solutions I found had to do with older versions of gems, etc. Obviously, it is not my define_index definition which I placed in…
ewizard
  • 2,801
  • 4
  • 52
  • 110
0
votes
1 answer

Manage the build of multiple libraries in one place

Suppose that I have multiple libraries that I can build with cmake or with configure scripts, there is a tool that can help me with building this libraries such as I can easily manage the rebuilding of this libraries with few modifications like…
user2348816
  • 532
  • 4
  • 9
0
votes
0 answers

Project Compilation Error - ld.exe cannot find glut32.lib

I'm desperately trying to configure glut with the Eclipse CDT plugin and have been failing to do so for the past couple hours. I downloaded the most recent version of glut here. And have placed the various files and such in the places tutorials…
outlaw
  • 1