summaryrefslogtreecommitdiffstats
path: root/src/auto/configure
AgeCommit message (Collapse)Author
2013-07-12updated for version 7.4a.011v7.4a.011Bram Moolenaar
Problem: Configure check for Python 3 config name isn't right. Solution: Always include vi_cv_var_python3_version. (Tim Harder)
2013-07-09updated for version 7.4a.010v7.4a.010Bram Moolenaar
Problem: Test 86 and 97 fail when building with Python or Python 3 and using a static library. Solution: Add configure check to add -fPIE compiler flag.
2013-07-03updated for version 7.3.1300v7.3.1300Bram Moolenaar
Problem: Mac: tiny and small build fails. Solution: Don't include os_macosx.m in tiny build. Include mouse support in small build. (Kazunobu Kuriyama)
2013-06-18updated for version 7.3.1221v7.3.1221Bram Moolenaar
Problem: When build flags change "make distclean" run into a configure error. Solution: When CFLAGS changes delete auto/config.cache. Also avoid adding duplicate text to flags.
2013-06-17updated for version 7.3.1216v7.3.1216Bram Moolenaar
Problem: Configure can't find Motif on Ubuntu. Solution: Search for libXm in /usr/lib/*-linux-gnu.
2013-06-14updated for version 7.3.1193v7.3.1193Bram Moolenaar
Problem: fail_if_missing not used for Python 3. Solution: Give an error when Python 3 can't be configured. (Andrei Olsen)
2013-06-11updated for version 7.3.1168v7.3.1168Bram Moolenaar
Problem: Python "sane" configure checks give a warning message. Solution: Use single quotes intead of escaped double quotes. (Ben Fritz)
2013-06-11updated for version 7.3.1167v7.3.1167Bram Moolenaar
Problem: Python configure check doesn't reject Python 2 when requesting Python 3. Some systems need -pthreads instead of -pthread. Solution: Adjust configure accordingly. (Andrei Olsen)
2013-06-10updated for version 7.3.1163v7.3.1163Bram Moolenaar
Problem: Not easy to load Python modules. Solution: Search "python2", "python3" and "pythonx" directories in 'runtimepath' for Python modules. (ZyX)
2013-06-02updated for version 7.3.1101v7.3.1101Bram Moolenaar
Problem: Configure doesn't find Python 3 on Ubuntu 13.04. Solution: First try distutils.sysconfig. Also fix some indents. (Ken Takata)
2013-05-15updated for version 7.3.948v7.3.948Bram Moolenaar
Problem: Cannot build with Python 2.2 Solution: Make Python interface work with Python 2.2 Make 2.2 the first supported version. (ZyX)
2013-05-06updated for version 7.3.925v7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-05-04updated for version 7.3.923v7.3.923Bram Moolenaar
Problem: Check for X11 header files fails on Solaris. Solution: Only use -Werror for gcc. (Laurent Blume)
2013-04-15updated for version 7.3.897v7.3.897Bram Moolenaar
Problem: Configure doesn't always find the shared library. Solution: Change the configure script. (Ken Takata)
2013-02-26updated for version 7.3.836v7.3.836Bram Moolenaar
Problem: Clipboard does not work on Win32 when compiled with Cygwin. Solution: Move the Win32 clipboard code to a separate file and use it when building with os_unix.c. (Frodak Baksik, Ken Takata)
2013-02-06updated for version 7.3.805v7.3.805Bram Moolenaar
Problem: Lua version 5.2 is not detected properly on Arch Linux. Solution: Adjust autoconf. (lilydjwg)
2013-01-30updated for version 7.3.791v7.3.791Bram Moolenaar
Problem: MzScheme interface doesn't work propely. Solution: Make it work better. (Sergey Khorev)
2012-12-12updated for version 7.3.755v7.3.755Bram Moolenaar
Problem: Autoconf doesn't find Python 3 if it's called "python". Solution: Search for "python2" and "python3" first, then "python".
2012-11-23updated for version 7.3.728v7.3.728Bram Moolenaar
Problem: Cannot compile with MzScheme interface on Ubuntu 12.10. Solution: Find the collects directory under /usr/share.
2012-10-03updated for version 7.3.679v7.3.679Bram Moolenaar
Problem: Ruby detection uses Config, newer Ruby versions use RbConfig. Solution: Detect the need to use RbConfig. (Vit Ondruch)
2012-10-03updated for version 7.3.678v7.3.678Bram Moolenaar
Problem: Ruby .so name may not be correct. Solution: Use the LIBRUBY_SO entry from the config. (Vit Ondruch)
2012-10-03updated for version 7.3.674v7.3.674Bram Moolenaar
Problem: Can't compile with Lua/dyn on Cygwin. Solution: Adjust configure to use the right library name. (Ken Takata)
2012-09-21updated for version 7.3.669v7.3.669Bram Moolenaar
Problem: When building with Cygwin loading Python dynamically fails. Solution: Use DLLLIBRARY instead of INSTSONAME. (Ken Takata)
2012-08-15updated for version 7.3.631v7.3.631Bram Moolenaar
Problem: Cannot complete user names. Solution: Add user name completion. (Dominique Pelle)
2012-07-25updated for version 7.3.613v7.3.613Bram Moolenaar
Problem: Including Python's config.c in the build causes trouble. It is not clear why it was there. Solution: Omit the config file. (James McCoy)
2012-06-13updated for version 7.3.555v7.3.555Bram Moolenaar
Problem: Building on IBM z/OS fails. Solution: Adjust configure. Use the QUOTESED value from config.mk instead of the hard coded one in Makefile. (Stephen Bovy)
2012-02-05updated for version 7.3.432v7.3.432Bram Moolenaar
Problem: ACLs are not supported for ZFS or NFSv4 on Solaris. Solution: Add configure check and code. (Danek Duvall)
2011-12-14updated for version 7.3.381v7.3.381Bram Moolenaar
Problem: Configure silently skips interfaces that won't work. Solution: Add the --enable-fail_if_missing argument. (Shlomi Fish)
2011-12-14updated for version 7.3.378v7.3.378Bram Moolenaar
Problem: When cross-compiling the check for uint32_t fails. Solution: Only give a warning message. (Maksim Melnikau)
2011-12-08updated for version 7.3.368v7.3.368Bram Moolenaar
Problem: Gcc complains about redefining _FORTIFY_SOURCE. Solution: Undefine it before redefining it.
2011-09-02updated for version 7.3.291v7.3.291Bram Moolenaar
Problem: Configure doesn't work properly with Python3. Solution: Put -ldl before $LDFLAGS. Add PY3_NO_RTLD_GLOBAL. (Roland Puntaier)
2011-07-15updated for version 7.3.245v7.3.245Bram Moolenaar
Problem: Python 3.2 libraries not correctly detected. Solution: Add the suffix to the library name. (Niclas Zeising)
2011-06-13updated for version 7.3.218v7.3.218Bram Moolenaar
Problem: Tiny configuration problem with Python 3. Solution: Add abiflags in one more place. (Andreas Behr)
2011-06-12updated for version 7.3.212v7.3.212Bram Moolenaar
Problem: With Python 3.2 ":py3" fails. Solution: Move PyEval_InitThreads() to after Py_Initialize(). (Roland Puntaier) Check abiflags in configure. (Andreas Behr)
2011-05-10updated for version 7.3.183v7.3.183Bram Moolenaar
Problem: When Exuberant ctags binary is exuberant-ctags it's not found. Solution: Add configure check for exuberant-ctags.
2011-05-05updated for version 7.3.176v7.3.176Bram Moolenaar
Problem: Ruby linking doesn't work properly on Mac OS X. Solution: Fix the configure check for Ruby. (Bjorn Winckler)
2011-05-05updated for version 7.3.174v7.3.174Bram Moolenaar
Problem: When Exuberant ctags binary is exctags it's not found. Solution: Add configure check for exctags. (Hong Xu)
2011-02-09updated for version 7.3.117v7.3.117Bram Moolenaar
Problem: On some systems --as-needed does not work, because the "tinfo" library is included indirectly from "ncurses". (Charles Campbell) Solution: In configure prefer using "tinfo" instead of "ncurses".
2010-11-16updated for version 7.3.062v7.3.062Bram Moolenaar
Problem: Python doesn't work properly when installed in another directory than expected. Solution: Figure out home directory in configure and use Py_SetPythonHome() at runtime. (Roland Puntaier)
2010-11-03updated for version 7.3.050v7.3.050Bram Moolenaar
Problem: The link script is clumsy. Solution: Use the --as-needed linker option if available. (Kirill A. Shutemov)
2010-11-03updated for version 7.3.049v7.3.049Bram Moolenaar
Problem: PLT has rebranded their Scheme to Racket. Solution: Add support for Racket 5.x. (Sergey Khorev)
2010-10-27updated for version 7.3.043v7.3.043Bram Moolenaar
Problem: Can't load Ruby dynamically on Unix. Solution: Adjust the configure script. (James Vega)
2010-08-13Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)Bram Moolenaar
2010-07-25Use the SONAME-versioned liblua, if it exists. (James Vega)Bram Moolenaar
2010-07-24Remove -arch flag from build flags for Perl. (Bjorn Wickler)Bram Moolenaar
2010-07-24Find python3 also in lib64 directory. (Ben Boeckel)Bram Moolenaar
2010-07-24Specify library to load for Python more precisely. (James Vega)Bram Moolenaar
2010-07-22Make it possible to load Lua dynamically on Unix. (Luis Carvalho)Bram Moolenaar
2010-07-21Make it possible to load Perl dynamically on Unix. (James Vega)Bram Moolenaar
2010-07-19Fix configure for Python3 libs and version number. (James Vega)Bram Moolenaar