More later – you know where to find this one…..
UPDATE
So…..I installed Mint 17.2, 32-bit and installed a bunch of software via apt (mostly). I ran into a weird problem with PHP – something which I’d never seen before. PHP failed without the following configuration line:
LDFLAGS=”-lstdc++ /usr/lib/i386-linux-gnu/libstdc++.so.6″
AND: apt-get install libgdbm-dev or Mailrdop fails.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
LDFLAGS="-lstdc++ /usr/lib/i386-linux-gnu/libstdc++.so.6" CFLAGS="-fPIC";export CFLAGS ./configure \ --with-apxs2=/usr/local/apache2/bin/apxs \ --with-config-file-scan-dir=/etc/php5 \ --disable-debug \ --enable-ftp \ --enable-inline-optimization \ --enable-magic-quotes \ --enable-mbstring \ --enable-safe-mode \ --enable-sockets \ --enable-wddx=shared \ --enable-ftp \ --enable-exif \ --enable-calendar \ --enable-sysvsem \ --enable-sysvshm \ --enable-sysvmsg \ --enable-bcmath \ --enable-tokenizer \ --with-bz2 \ --enable-ctype \ --with-iconv \ --with-gettext \ --enable-shmop \ --enable-wddx \ --enable-intl \ --with-imap-ssl \ --enable-soap \ --with-gettext \ --with-libxml-dir=/opt \ --with-mysql=/usr/local/mysql \ --with-pdo-mysql=/usr/local/mysql \ --with-sqlite=shared \ --with-pdo-sqlite \ --with-mysqli=mysqlnd \ --with-regex=system \ --with-openssl \ --with-freetype-dir=/usr \ --with-jpeg-dir=/usr/include/jpeg \ --with-gd \ --with-zlib-dir=/usr/local/include \ --with-mcrypt=/usr/local/bin \ --with-curl |