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

How to configure log4j fileappender for all classes?

In my application I read in an inputfile (e.g. myFile1.txt) and create an outputfile with the same name (e.g. myFile2log). Point is that the inputfile will be read within the java application and not given as command line parameter. Therefore it is…
Malvin
  • 859
  • 2
  • 11
  • 19
0
votes
2 answers

Building firefox error: c compiler cannot create executables

I'm trying to build firefox but I'm having some problems. I currently have Visual Studio 2008 Team Suite (trial if that matters). My mozconfig file: # Firefox ac_add_options --enable-application=browser mk_add_options…
Christopher Tarquini
  • 11,176
  • 16
  • 55
  • 73
0
votes
2 answers

need to connect two databases with Hibernate and JPA

I have an application that uses one database, for now i have this data-access-config.xml configured.
user1352643
  • 39
  • 2
  • 5
0
votes
1 answer

Hybrid heap support in Erlang R15B02?

Does Erlang R15B02 have support for hybrid heap? I run configure --enable-hybrid-heap blabla... and make it, but no [hybrid-heap] flag showing: $ erl Erlang R15B02 (erts-5.9.2) [source] [64-bit halfword] [smp:16:16] [async-threads:0]…
Xiao Jia
  • 4,169
  • 2
  • 29
  • 47
0
votes
2 answers

Problems on getting appWidgetId from the configure Activity

I'm creating an Android application with has some widgets. Everything was working till I started creating the settings Activity... First of all, my code: [Edit] Just trying to be clear: the Bundle (from intent.getExtras()) is ALWAYS null... What do…
0
votes
2 answers

How to choose a compiler version in Automake?

I have several compilers with the same name but of different versions or location. The ./configure script seems to stop at the first it finds in PATH. How can I tell Automake to choose one of them according to a custom rule ? I already have a macro…
alex_reader
  • 689
  • 1
  • 5
  • 22
0
votes
1 answer

make check fails after building gpgme

I am trying to build gpgme-1.3.2 on an Ubuntu 12.04. I've already built libgpg-error-1.10 and libassuan-2.0.3. The commands were simply: ./configure && make && make check && sudo make install Both libraries built succesful and make check gave me no…
Patrick R.
  • 412
  • 6
  • 15
0
votes
2 answers

configure file name for Tcl/Tk

When you build Tcl/Tk by default it creates the files tclsh85 wish85 However many programs call tclsh and wish. This is one fix for that cp tclsh85 tclsh cp wish85 wish However, can you simply build tclsh and wish directly, perhaps using a…
Zombo
  • 1
  • 62
  • 391
  • 407
0
votes
1 answer

What is the flags in GOCFLAGS_FOR_TARGET used for

I'm trying to build a GDB. The Makefile generated by configure contains a flags called "GOCFLAGS_FOR_TARGET". Could anyone tell me what the "GOCFLAGS" is used for? Thanks!
brian
  • 265
  • 1
  • 9
0
votes
1 answer

JQuery Countdown timer with Configurable start time

I would like to have a timer that would allow a user (of my website) to input how much time they want the countdown to go for (on a scale of minutes and seconds), as well as have a start/stop function. I've searched for something like this, but I…
user1339316
  • 75
  • 2
  • 9
0
votes
1 answer

Joomla Lof ArticleSlideShow Configuring Articles

I can't get how to use this module (Lof Article Slide Show), it says you have either to use the categories (ok, i got that) or the article id's. However, articles don't have any space in options that you can assign a class, an id's or anything…
Yannis Dran
  • 1,479
  • 2
  • 18
  • 24
0
votes
1 answer

Autoconf Standardized Configure Target Namings

Is there a way to automatically lookup the standardized target namings such as i686-pc-linux-gnu I typically want to feed as argument to the configure flag --exec-prefix in platform-specific builds? I've seen ./configure && make && make installs…
Nordlöw
  • 11,838
  • 10
  • 52
  • 99
0
votes
2 answers

FreeBSD custom configure arguments

What is the best way in FreeBSD to compile programm from ports if I need some custom configure arguments which is not present in default make config window? For example I want compile php with --enable-intl flag
zim32
  • 2,561
  • 1
  • 24
  • 31
0
votes
2 answers

Compiling ImageMagick as 64bit under OS X?

I'm trying to install moddims on OS X (see previous question), an Apache module with a dependency on ImageMagick. As far as I can tell, the OS X Apache is compiled as 64 bit. My previous attempt to run the moddims module I had compiled gave the…
Simon Willison
  • 15,642
  • 5
  • 36
  • 44
0
votes
1 answer

Not found z library when compiling zabbix-server

I have a problem with compiling zabbix-server on CentOS 6.2. Command line is: ./configure --enable-server --with-mysql --with-net-snmp --with-libcurl --with-jabber --with-ssh2 --with-openipmi --with-ldap --enable-static But error…
1 2 3
99
100