configure

PyQt setup for Qt 4.7.4

点点圈 提交于 2019-12-01 05:17:23
I try to install PyQt to develop Python apps using Qt. I downloaded SIP and PyQt4 from http://www.riverbankcomputing.co.uk and compiled the packages. But I encountered a problem while compiling PyQt4: I ran python configure.py in the Terminal and I got: Error: Make sure you have a working Qt v4 qmake on your PATH or use the -q argument to explicitly specify a working Qt v4 qmake. I looked in Qt settings and i saw the path for qmake defined here 'home/user/.QtSDK/Simulator/Qt/gcc/bin/qmake'. Where else should be this path set up? And how can i configure qt so i can write code directly into Qt

BLAS and LAPACK libraries required for compiling

◇◆丶佛笑我妖孽 提交于 2019-12-01 04:43:22
I recently downloaded the latest stable release of Gnu Octave, and was attempting to build and install it on my machine (Ubuntu 10.0.4 LTS 64bit). When I run ./configure, I got this error message: configure: error: You are required to have BLAS and LAPACK libraries Does anyone know Where do I obtain these libraries from? Try to run this apt-get install libblas-dev libatlas-dev liblapack-dev All libraries, required by octave package in ubuntu are listed here: http://packages.ubuntu.com/lucid/octave3.2 and to build new octave you need -dev packages of some listed libs. The octave in ubuntu

How to configure Outlook account via C#?

此生再无相见时 提交于 2019-12-01 04:30:23
问题 Need to configure email, name, mail server and other by c#. How do I do this without using Outlook Redemption? 回答1: First, create a PRF file - either manually or dynamically via your .NET application. Then, to import the account you launch Outlook with the command line option: outlook.exe /importprf C:\SomePath\FileName.prf This can be done within your C# code using the System.Diagnostics.Process class. 来源: https://stackoverflow.com/questions/11880930/how-to-configure-outlook-account-via-c

PyQt setup for Qt 4.7.4

孤街浪徒 提交于 2019-12-01 02:31:29
问题 I try to install PyQt to develop Python apps using Qt. I downloaded SIP and PyQt4 from http://www.riverbankcomputing.co.uk and compiled the packages. But I encountered a problem while compiling PyQt4: I ran python configure.py in the Terminal and I got: Error: Make sure you have a working Qt v4 qmake on your PATH or use the -q argument to explicitly specify a working Qt v4 qmake. I looked in Qt settings and i saw the path for qmake defined here 'home/user/.QtSDK/Simulator/Qt/gcc/bin/qmake'.

pkg-config doesn't work on Cygwin

亡梦爱人 提交于 2019-12-01 02:27:16
问题 I try to compile a program (OpenFP) using cygwin. The program depends on a package FFTW3 which I've compiled and installed succesfully. However when I launch ./configure for the main program I get an error: No package 'fftw3' found configure:6138: error: Package requirements ("fftw3") were not met: No package 'fftw3' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables FFTW3

BLAS and LAPACK libraries required for compiling

随声附和 提交于 2019-12-01 02:09:38
问题 I recently downloaded the latest stable release of Gnu Octave, and was attempting to build and install it on my machine (Ubuntu 10.0.4 LTS 64bit). When I run ./configure, I got this error message: configure: error: You are required to have BLAS and LAPACK libraries Does anyone know Where do I obtain these libraries from? 回答1: Try to run this apt-get install libblas-dev libatlas-dev liblapack-dev All libraries, required by octave package in ubuntu are listed here: http://packages.ubuntu.com

autotools syntax error with ax_check_compile_flag

余生颓废 提交于 2019-11-30 18:50:57
I am using autotools for building my C++ application. In my configure.ac I have the following line: AX_CHECK_COMPILE_FLAG([-Wall], [CPPFLAGS="$CPPFLAGS -Wall"]) which causes the following error when executing ./configure (after running autoreconf -i ): ./configure: line 3825: syntax error near unexpected token `-Wall,' ./configure: line 3825: `AX_CHECK_COMPILE_FLAG(-Wall, CPPFLAGS="$CPPFLAGS -Wall")' My system: Linux web 3.2.0-4-amd64 #1 SMP Debian 3.2.65-1+deb7u2 x86_64 GNU/Linux On my Ubuntu machine it works well, why do I get this error? autoreconf isn't magic (though I encounter package

where is a good tutorial on creating an R package with C++ source code? [closed]

三世轮回 提交于 2019-11-30 10:48:13
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I'm at a loss when I start looking at configure scripts. I'm not sure how to go about creating an R package which has several functions built from C/C++ in such a way that it's portable between Windows & Linux. My attempts to modify the guts of existing packages have been unfruitful. Any help or links would be

Configuring Maven for Windows 7, Files\\Java\\jdk1.6.0_23“” was unexpected at this time error

久未见 提交于 2019-11-30 08:06:37
I am trying to configure Maven on my Win 7 machine. I am following these steps: http://maven.apache.org/download.cgi I downloaded Maven into folder c:\Program Files\Apache Software Foundation\apache-maven-3.0.5\ I set all environmental variables as described in the URL above JAVA_HOME = C:\Program Files\Java\jdk1.6.0_23 M2_HOME = c:\Program Files\Apache Software Foundation\apache-maven-3.0.5\ M2 = %M2_HOME%\bin PATH = %M2%; C:\Program Files (x86)\SSH Communications Security\SSH Secure Shell; %JAVA_HOME%\bin ; C:\Program Files\Java\jdk1.6.0_23 But when I enter: C:\Users\Andrei>mvn --version I

How to static link Linux software that uses ./configure?

不想你离开。 提交于 2019-11-30 06:37:57
I would like to compile NRPE static, so I can copy the compiled binary to an OmniOS server, where I don't want gcc to be installed on. I would prefer to install NRPE with SSl support from a repository, but such doesn't seam to exist, so I would like to compile it myself. However the ./configure script doesn't contain a static option it seams ~/nrpe-2.15# ./configure --help | grep static ~/nrpe-2.15# ./configure --help | grep share --datadir=DIR read-only architecture-independent data [PREFIX/share] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] Question How do I