configure

MIME types missing in IIS 7 for ASP.NET - 404.17

青春壹個敷衍的年華 提交于 2020-01-01 02:16:14
问题 When getting a newly configured Windows 7 box, I noticed that ASP.NET was turned off by default. So was classical ASP. I was getting a 404.17 error for a web application. I think it's because I don't have an "aspx" MIME type. Although that's just a guess. When I turned them on under Control Panel > Programs and Features > Turn Windows Features on or off, and restarted my Windows 7 machine, the MIME types never showed up. Can someone check what MIME type they have for *.aspx pages, and tell me

zlib, harsh compiler warnings and configure test

烂漫一生 提交于 2019-12-30 18:49:41
问题 I'm trying to compile zlib from the command line, and I'm getting this message when using -Wall -Wextra -Wconversion (full cross-compile script is below): Compiler error reporting is too harsh for ./configure (perhaps remove -Werror ). Here's the configure test that's generating the line: cat > $test.c << EOF int foo() { return 0; } EOF echo "Checking for obsessive-compulsive compiler options..." >> configure.log if try $CC -c $CFLAGS $test.c; then : else echo "Compiler error reporting is too

Create custom keyboard and configure it on your iPhone

徘徊边缘 提交于 2019-12-28 12:45:07
问题 I am working on creating custom keyboardas presented by EMOJI with having characters and pictorial icons like smileys and other day to day used symbols.So far i came to know that these symbols have unicode standards that are added to Unicode Consortium and approved by Apple. http://itunes.apple.com/us/app/emoji-free!/id332509635?mt=8 I need help regarding the process these symbols are registered. Is it possible to make the keyboard compatible for text inputting in all the apps installed on

Why does my BitBake autotools recipe fail during do_configure?

流过昼夜 提交于 2019-12-25 18:20:12
问题 I am attempting to create a fairly simple BitBake recipe that uses autotools, which you can see here: SUMMARY = "an example autotools recipe" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" inherit autotools SRC_URI = "file://${TOPDIR}/piu/geo_utilities" S = "${TOPDIR}/piu/geo_utilities" After starting a BitBake build with this recipe's default package included, do_configure fails with the following: configure: exit 0 WARNING: /home

Can't install Vision Workbench

折月煮酒 提交于 2019-12-25 02:58:18
问题 I am trying to install the Vision Workbench on my computer, following the instructions from this homepage: http://lunokhod.org/?p=13. I have installed all dependencies but I have libboost1.54-all-dev instead since I am using Mint 17 (Ubuntu 14.4). After that I have created the config.options file I do ./autogen and ./configure . However, I get the following in the logfile: configure:20861: /usr/include/boost is missing these required libraries: BOOST_PROGRAM_OPTIONS BOOST_FILESYSTEM BOOST

Building LablGtk fails

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-25 02:14:35
问题 I'm trying to build LablGtk to enable building CoqIDE from source. I used lablgtk-2.18.7.tar.gz from here. When I tried to configure-make it I got this error (and similar other errors): File "gdk.ml", line 346, characters 2-55: 346 | external create : len:int -> t = "ml_point_array_new" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Error (warning 61): This primitive declaration uses type t, which is unannotated and unboxable. The representation of such types may change in future

Multiline command.go in SciTE

十年热恋 提交于 2019-12-24 23:49:27
问题 The Short This deals with SciTE and the go language in Windows (in particular, Windows 7). This is my first time using SciTE, so if there is another way to achieve my goal that is fine as well. Goal: With one key press, compile, link, and execute the newly created binary. The Long I want to setup the compile/link/excecute under the "go" command in SciTE. This may be slightly confusing as it is also for the go language. Here is what I have so far: command.compile.*.go=8g $(FileNameExt) command

install octave *no root*, missing BLAS and LAPACK

只愿长相守 提交于 2019-12-24 14:12:45
问题 I am trying to install octave on my machine (Scientific Linux 6.4 based on red hat) without having root access. After running the following: ./configure CPPFLAGS="-I/some_stuff/user_name/bin/pcre-8.32/include" LDFLAGS="-L/some_stuff/user_name/bin/pcre-8.32/lib" (I had to install pcre apriori; before I got errors re: pcre), I get a message along the lines: configure: error: You are required to have BLAS and LAPACK libraries Now LAPACK has just been made in $HOME/bin/lapack-3.4.2 yet the same

MacOS: configure: error: C compiler cannot create executables

孤人 提交于 2019-12-24 00:56:42
问题 I am trying to install opensmile on my Macbookd and encountered the following error: configure: error: C compiler cannot create executables I have Xcode 8.2.1 installed. I already tried some answers on similar topics on StackOverflow but nothing helped so far. /opt/local/bin/port select --list gcc gives me: Available versions for gcc: mp-gcc47 (active) none Here is the configure.log: This file contains any messages produced by compilers while running configure, to aid debugging if configure

Why can't Nettle 2.4's `configure` find GMP 5.0.2?

孤者浪人 提交于 2019-12-23 20:25:41
问题 I'm attempting to build GnuTLS on Mac OS X 10.5 (Leopard) Server (yeah, I know, it's a bit dated, but that's what this server is running at the moment) and am running into an issue building Nettle: I've built & installed GMP, but Nettle's configure cannot find it. I built & installed GMP 5.0.2 as follows (the GCC version solution is from here): curl -O ftp://ftp.gmplib.org/pub/gmp-5.0.2/gmp-5.0.2.tar.bz2 tar xjf gmp-5.0.2.tar.bz2 pushd gmp-5.0.2 CC=gcc-4.2 CXX=g++4.2 ./configure --prefix=/usr