configure

Multiple sqlite installs on same server

别说谁变了你拦得住时间么 提交于 2019-12-23 12:59:26
问题 I've got a server at work on which I am basically building an apache/mysql/subversion/php/python development base. I've found that the RPM repos the server is pointed at only have version 3.3.6-5 of sqlite, which subversion 1.6.17 chokes on, requiring at least version 3.4: An appropriate version of sqlite could not be found. We recommmend 3.6.13, but require at least 3.4.0. Please either install a newer sqlite on this system or get the sqlite 3.6.13 amalgamation from: http://www.sqlite.org

Multiple sqlite installs on same server

吃可爱长大的小学妹 提交于 2019-12-23 12:59:15
问题 I've got a server at work on which I am basically building an apache/mysql/subversion/php/python development base. I've found that the RPM repos the server is pointed at only have version 3.3.6-5 of sqlite, which subversion 1.6.17 chokes on, requiring at least version 3.4: An appropriate version of sqlite could not be found. We recommmend 3.6.13, but require at least 3.4.0. Please either install a newer sqlite on this system or get the sqlite 3.6.13 amalgamation from: http://www.sqlite.org

Why does bash freeze in windows?

放肆的年华 提交于 2019-12-23 07:49:58
问题 I am running the bash program in windows which was installed along with msys and mingw. I am trying to run ./configure . However whenever I do it the configuration freezes on "checking whether make sets $(MAKE)" . Can you think of any reason why and how I can fix this issue. I ran the command sh -x ./configure To see exactly where it freezes. The last run command is conftest.make which has the following code SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' When I run this command by itself

C Compiler cannot create executables on SUA/Interix

孤者浪人 提交于 2019-12-23 04:04:13
问题 Whenever I try to build an application with Interix's GCC on Windows, this is what happens: /tmp/grep-2.5.4-src/build$ ../configure --build=x86_64-pc-interix6 checking for a BSD-compatible install... /bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ../install-sh -c -d checking for gawk... gawk checking whether make sets $(MAKE)... yes checking build system type... x86_64-pc-interix6 checking host system type... x86_64-pc-interix6

How do you define the options you see in ./configure --help?

扶醉桌前 提交于 2019-12-23 02:48:18
问题 I'm currently trying to set up a package to be installed with autotools. In most, if not all, major software packages, configure --help lists a large number of options like ./configure --ENABLE-FLOAT, etc. I was wondering where I can define these options. Thanks, Sam 回答1: Use AC_ARG_ENABLE and AC_ARG_WITH in your configure.ac file. 来源: https://stackoverflow.com/questions/2655177/how-do-you-define-the-options-you-see-in-configure-help

configure.in: AM_DISABLE_SHARED doesn't change my Makefile

别来无恙 提交于 2019-12-23 01:10:50
问题 I'm extremely new to using Makefiles and autoconf. I'm using the Camellia image library and trying to statically link my code against their libraries. When I run "make" on the Camellia image library, I get libCamellia.a, .so, .la, and .so.0.0.0 files inside my /usr/local/lib directory. This is the command I use to compile my code with their libraries: gcc -L/usr/local/lib -lCamellia -o myprogram myprogram.c This works fine, but when I try to statically link, this is what I get: gcc -static -L

configure the left and right mac 'command' keys differently?

蓝咒 提交于 2019-12-22 09:50:04
问题 I'm wandering if I can set the right mac 'command' to act like the ctrl key, but keep the default functionality of the left 'command' key. Thanks. 回答1: There is a really awesome application called Ukelele (free) that is, unfortunately, unable to distinguish between left and right command keys. However, there is an even better application I recently found called "ControllerMate" that lets you do exactly what you want. You can find it here: http://www.orderedbytes.com/controllermate/ If you

`./configure` options for cross compile?

*爱你&永不变心* 提交于 2019-12-22 08:08:49
问题 As far as I know, ./configure script is generated with GNU Autoconf . I don't know about Autoconf at all. How do these tools work, and how can I use this ./configure script to make source to cross-compile? 回答1: This is a pretty good little article to read on how to cross-compile: http://linux.bytesex.org/cross-compiler.html. The main part in cross-compiling is setting the configure flags for the compiler to poinst to the target architecture and platform: ./configure --target=sparc-linux -

Autotools: how to cleanup files created by “./configure” in lighttpd project?

风流意气都作罢 提交于 2019-12-21 06:48:54
问题 I'm trying out lighttpd for an embedded Linux project. I got the latest source package and started writing a master Makefile encapsulating all configure, compile, install (for testing) etc stuff. And vice-versa, I want to cleanup every step. After the cleanup there should be no generated files anymore. This is important for repetitive testing. I wonder if there is a way to do a complete cleanup of what ./configure generated? I'm not familiar with autotools in details. Any hints? 回答1: I

Why has nobody created an open source build system for the brain dead? [closed]

坚强是说给别人听的谎言 提交于 2019-12-21 03:46:28
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 6 years ago . I want to build a shared library. GNU/Linux is the development and target platform. C is the implementation language. I can't decide how I want to setup the build system and keep flitting around three options