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

First Atmel Project

looking for a little help. I'm familiar with PIC Microcontrollers but have never used Atmel. I'm required to use an ATMEGA128 for a project at work so I've been playing around in Atmel Studio 6 the last few days. I'm having an issue however, I can't…
Killerb81
  • 53
  • 6
0
votes
1 answer

Can't configure Qt on windows

I have source code folder of Qt 5.1.0 and also 4.8.4. The thing is that when I put command: configure -static -release -no-exeptions the text of help screen only flashes and nothing else happens. What's the problem? Please, help me ASAP.
Filip Post
  • 21
  • 2
0
votes
1 answer

magento configure pager list?

instead of displaying “items 1-12 from 14 items total” i want to display like this “ items 12 from 14 items total “ how do i change this code to achieve this

tali
  • 5
  • 1
  • 3
0
votes
1 answer

how to add a new files to existing makefile project

I am trying to add some functionality to existing makefile project. I wrote some .c and .h files. After some googling time I found that Makefile.am should be modified and run autoreconf will do what I need. Can some one please explain how to do…
ishanaba
  • 65
  • 8
0
votes
2 answers

Installing Nginx server

I am trying to install Nginx server on ubuntu using wget http://nginx.org/download/nginx-1.5.3.tar.gz tar xvfz nginx-1.5.3.tar.gz cd nginx-1.5.3 ./configure make install this is what I get: tar: Skipping to next header gzip: stdin: invalid…
HobbitOfShire
  • 2,144
  • 5
  • 24
  • 41
0
votes
1 answer

R-2.15 on AIX5.3 - rl_readline_name error and configure

I am trying to install R package on AIX5.3. I've two queries regarding it: I followed Fan Long's steps. I installed the GNU utilities: libiconv and gettext also. However, on running ./configure --with-libpth-prefix=/home/jayant/utils…
jkp
  • 155
  • 2
  • 7
0
votes
1 answer

How to deal with multiple versions of Automake in configure.ac

I would like to selectively omit certain flags in my call to AM_INIT_AUTOMAKE in my configure.ac depending on the Automake version. Is there a way to do that? The specific problem I'm dealing with is that Automake 1.12 introduced some…
mgalgs
  • 15,671
  • 11
  • 61
  • 74
0
votes
1 answer

Is "make uninstall" "make install" always needed after ./configure?

My question is that since options of ./configure may change from time to time. Is the following step always required? make uninstall ./configure --(changed options) make make install I also encounter errors without make uninstall.
Rabbitybunny
  • 337
  • 1
  • 3
  • 7
0
votes
1 answer

Solving the "No package 'json' found" error

I'm on Mac OS X Mountain Lion and a newbie to autotools and other GNU build tools. I'm trying to build a custom version of json-c to use with a a C project (axis2/c). After running the auto tools, and I run the configure command I get a failure with…
dev_nut
  • 2,476
  • 4
  • 29
  • 49
0
votes
1 answer

how to change joystick controlls in xna

exactly the title. i need it for my game. i know how to change controlls on some games trough some programms that do exactly that, but i want to go into options screen, go change controlls, choose whether i will play on joystic or keyboard and then…
Monset
  • 648
  • 5
  • 25
0
votes
2 answers

Autotools - passing optional profiling library to configure script

I have built and installed a shared library to do some profiling of my projects via code instrumentation, specifically with the -finstrument-functions switch of gcc. It is possible to turn the instrumentation on and off with the compiler switch, and…
Andreas Grapentin
  • 5,499
  • 4
  • 39
  • 57
0
votes
1 answer

.NET equivalent of configure script

MSBuild project file (*.vcxproj, *.csproj) is the .NET equivalent of Makefile. Then what is the .NET equivalent of configure script?
linquize
  • 19,828
  • 10
  • 59
  • 83
0
votes
2 answers

Is it possible to compile ImageMagick with custom libxml2 on the Mac

It always seems to pick up the version from /usr/lib and there doesn't seem to be a ./configure parameter to override it. ./configure --prefix=$PREFIX --with-quantum-depth=8 --disable-installed --without-x --without-perl --enable-static…
rui
  • 11,015
  • 7
  • 46
  • 64
0
votes
1 answer

How do I create location-independent libtool library files with `configure`

I've been spoiled by build tools... I'm trying build some software packages, specifically for Heroku. The suggested build process specifies a configure --prefix=/tmp/package, which both puts the files under /tmp/package and embeds that path into…
Justin Love
  • 4,397
  • 25
  • 36
0
votes
1 answer

Magento - Let the user choose between exlude tax of include tax

I have a product with multiple options. The user chooses how much he wants to pay for the product. First I have created a dropdown box with the values €5,- €10,- etc. The product price i have put to €0. When I choose 10 euros, the product changes…
FamousWolluf
  • 568
  • 1
  • 3
  • 25