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
4 answers

How to configure URLs using PHP

Is there a way to make this URL: http://readme.com/read?blog=10092 look like this: http://readme.com/read/blog/10092 Using PHP?
Nomad
  • 613
  • 2
  • 7
  • 15
0
votes
1 answer

Autotools: setting 'influential environment variables'

When running './configure --help', at the end you get an output similar to this: Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have…
neoaggelos
  • 632
  • 1
  • 4
  • 18
0
votes
1 answer

What kind of output from ./configure is considered bad?

I'm compiling several libraries that use automake. When I run the ./configure command (with a few flags thrown in), most of the checks pass with a 'yes' but several of them have a 'no'. Is this necessarily leading to my compilation error? In other…
s g
  • 5,289
  • 10
  • 49
  • 82
0
votes
2 answers

Disabling cxx support for libtool after calling AC_PROG_CXX

For my project (library), I use configure with libtool and automake to build under linux hosts. The library consists of a C API, as well as an optional C++ extension. So, since AC_PROG_CXX must be called globally, I use automake…
neoaggelos
  • 632
  • 1
  • 4
  • 18
0
votes
1 answer

./configure from another app cannot recognize my CUDA environment(Ubuntu12.10)

I think its a simple problem because my nvcc actually works. But the configuration process from PLASMA SIMULATION CODE cannot recognize my CUDA. The configure.ac file is attached. I'm new to autoconf, so I don't know how to debug the problem. For…
Asgard
  • 103
  • 1
  • 2
  • 9
0
votes
2 answers

how to compile, setup, and make a library .so as shared in linux

I am new to linux compiling an opensource shared library. after I downloaded, let say gTest from google, I unzipped the folder. cd gtest.x.x.x then configure then I did, make all a bunch of compilation, then linking is expected, am I right? and…
aah134
  • 860
  • 12
  • 25
0
votes
1 answer

How can I store data to use it any where in my element

I am face to a problem and I can not find a solution!!! may not enougn experience with CakePHP :o) I created a setting pages (Controller+Model+view) On admin_edit action, I created a form to enter the parameter of the web site, as the site of name…
pierrot10
  • 129
  • 4
  • 13
0
votes
1 answer

Failure using configure of nccmp

I would like to install the nccmp program to compare netCDF files. Checking the documentation, the installation follows the typical structure: ./configure make make check make install make clean However, I'm stuck in the first step because…
cardogar
  • 359
  • 1
  • 4
  • 17
0
votes
0 answers

Configure error while building GUPNP

I'm just starting with development on linux and want to built the latest version of libGUPNP https://wiki.gnome.org/action/show/Projects/GUPnP?action=show&redirect=GUPnP Unfortunately while running configure I get this error message that I don't…
Thomas
  • 8,397
  • 7
  • 29
  • 39
0
votes
2 answers

make error "virtual memory exhausted stop " while building spidermonkey

I got this error while I was building spidermonkey using cygwin terminal, the error is "***virtual memory exhausted stop" so how to solve this error ?
sara
  • 256
  • 1
  • 3
  • 15
0
votes
0 answers

Apache ./configure can't find pcre-config script

I'm trying to install Apache on Red Hat. It's a system I don't have full control over (my sysadmins have given me a directory to work in). So I've downloaded, configured, and installed APR, APR-Util, and PCRE, in addition to Apache 2.4.7. I ran…
Shawn
  • 717
  • 11
  • 31
0
votes
1 answer

Configure Netbeans basic settings

I want to configure netbeans 7.4 settings for c++. I'm posting here because netbeans forums are close to dead. Can anyone tell me how to do the following things :- 1) When you create a new project of a 'new application' type, main.cpp is already…
Silver Falcon
  • 176
  • 1
  • 1
  • 11
0
votes
1 answer

configure script for xcode

I'm working on a cross platform project that uses several open source libraries such as zlib. When configuring for Linux I simply run the ./configure from a shell. On Windows I can do this from a MingWshell, but what do I do when building for OSX…
XPlatformer
  • 1,148
  • 8
  • 18
0
votes
3 answers

Trying To Capatalize Each Word In A String In Java

I'm trying to capitalize the first character of each word in a string in Java. Yes I've done my research, I found this How to capitalize the first character of each word in a string. I've downloaded the binaries but I have no clue how to install…
cubecubed
  • 228
  • 4
  • 18
0
votes
1 answer

Pidgin building from source ./configure error

I am trying to build Pidgin from the source code, and have been following the directions here. When trying to run ./configure, I get these errors: ./configure: line 2672: config.log: Permission denied ./configure: line 2682: config.log: Permission…
user2060214
  • 423
  • 1
  • 6
  • 11