summaryrefslogtreecommitdiffstats
path: root/src/auto
AgeCommit message (Collapse)Author
2016-03-11patch 7.4.1537v7.4.1537Bram Moolenaar
Problem: Too many feature flags for pipes, jobs and channels. Solution: Only use FEAT_JOB_CHANNEL.
2016-02-29patch 7.4.1463v7.4.1463Bram Moolenaar
Problem: Configure doesn't find isinf() and isnan() on some systems. Solution: Use a configure check that includes math.h.
2016-02-27patch 7.4.1437v7.4.1437Bram Moolenaar
Problem: Old system doesn't have isinf() and NAN. (Ben Fritz) Solution: Adjust #ifdefs. Detect isnan() and isinf() functions with configure. Use a replacement when missing. (Kazunobu Kuriyama)
2016-02-27patch 7.4.1433v7.4.1433Bram Moolenaar
Problem: The Sniff interface is no longer useful, the tool has not been available for may years. Solution: Delete the Sniff interface and related code.
2016-02-23patch 7.4.1409v7.4.1409Bram Moolenaar
Problem: Configure includes GUI despite --disable-gui flag. Solution: Add SKIP_GTK3. (Kazunobu Kuriyama)
2016-02-23patch 7.4.1402v7.4.1402Bram Moolenaar
Problem: GTK 3 is not supported. Solution: Add GTK 3 support. (Kazunobu Kuriyama)
2016-02-22patch 7.4.1390v7.4.1390Bram Moolenaar
Problem: When building with GTK and glib-compile-resources cannot be found building Vim fails. (Michael Gehring) Solution: Make GLIB_COMPILE_RESOURCES empty instead of leaving it at "no". (nuko8, closes #655)
2016-01-31patch 7.4.1226v7.4.1226Bram Moolenaar
Problem: GRESOURCE_HDR is unused. Solution: Remove it. (Kazunobu Kuriyama)
2016-01-31patch 7.4.1221v7.4.1221Bram Moolenaar
Problem: Including netbeans and channel support in small and tiny builds. Build fails with some interfaces. Solution: Only include these features in small build and above. Let configure fail if trying to enable an interface that won't build.
2016-01-30patch 7.4.1216v7.4.1216Bram Moolenaar
Problem: Still using HAVE_STDARG_H. Solution: Assume it's always defined.
2016-01-28patch 7.4.1190v7.4.1190Bram Moolenaar
Problem: On OSX the default flag for dlopen() is different. Solution: Add RTLD_LOCAL in the configure check. (sv99, closes #604)
2016-01-24patch 7.4.1172v7.4.1172Bram Moolenaar
Problem: Configure is overly positive. Solution: Insert "test".
2016-01-24patch 7.4.1169v7.4.1169Bram Moolenaar
Problem: The socket I/O is intertwined with the netbeans code. Solution: Start refactoring the netbeans communication to split off the socket I/O. Add the +channel feature.
2016-01-20patch 7.4.1145v7.4.1145Bram Moolenaar
Problem: Default features are conservative. Solution: Make the default feature set for most of todays systems "huge".
2016-01-16patch 7.4.1104v7.4.1104Bram Moolenaar
Problem: Various problems building with MzScheme/Racket. Solution: Make it work with new versions of Racket. (Yukihiro Nakadaira, Ken Takata)
2016-01-09patch 7.4.1070v7.4.1070Bram Moolenaar
Problem: The Tcl interface can't be loaded dynamically on Unix. Solution: Make it possible to load it dynamically. (Ken Takata)
2016-01-02patch 7.4.1038v7.4.1038Bram Moolenaar
Problem: Still get a warning for a deprecated function with gdk-pixbuf 2.31. Solution: Change minimum minor version from 32 to 31.
2015-12-29patch 7.4.995v7.4.995Bram Moolenaar
Problem: gdk_pixbuf_new_from_inline() is deprecated. Solution: Generate auto/gui_gtk_gresources.c. (Kazunobu Kazunobu, closes #507)
2015-12-17patch 7.4.976v7.4.976Bram Moolenaar
Problem: When compiling Vim for MSYS2 (linked with msys-2.0.dll), the Win32 clipboard is not enabled. Solution: Recognize MSYS like CYGWIN. (Ken Takata)
2015-12-11patch 7.4.966v7.4.966Bram Moolenaar
Problem: Configure doesn't work with a space in a path. Solution: Put paths in quotes. (James McCoy, close #525)
2015-11-19patch 7.4.924v7.4.924Bram Moolenaar
Problem: DEVELOPER_DIR gets reset by configure. Solution: Do not reset DEVELOPER_DIR when there is no --with-developer-dir argument. (Kazuki Sakamoto, closes #482)
2015-09-09patch 7.4.862v7.4.862Bram Moolenaar
Problem: Still problems with pango_shape_full() not available. Solution: Change AC_TRY_COMPILE to AC_TRY_LINK.
2015-09-08patch 7.4.861v7.4.861Bram Moolenaar
Problem: pango_shape_full() is not always available. Solution: Add a configure check.
2015-06-21patch 7.4.750v7.4.750Bram Moolenaar
Problem: Cannot build with clang 3.5 on Cygwin with perl enabled. Solution: Strip "-fdebug-prefix-map" in configure. (Ken Takata)
2015-03-24updated for version 7.4.677v7.4.677Bram Moolenaar
Problem: Configure fails when specifying a python-config-dir. (Lcd) Solution: Check if PYTHONFRAMEWORKPREFIX is set.
2015-03-24updated for version 7.4.676v7.4.676Bram Moolenaar
Problem: On Mac, when not using the default Python framework configure doesn't do the right thing. Solution: Use a linker search path. (Kazunobu Kuriyama)
2015-03-05updated for version 7.4.650v7.4.650Bram Moolenaar
Problem: Configure check may fail because the dl library is not used. Solution: Put "-ldl" in LIBS rather than LDFLAGS. (Oazki Kiichi)
2014-11-30updated for version 7.4.538v7.4.538Bram Moolenaar
Problem: Tests fail with small features plus Python. Solution: Disallow weird combination of options. Do not set "fdm" when folding is disabled.
2014-10-11updated for version 7.4.475v7.4.475Bram Moolenaar
Problem: Can't compile on a system where Xutf8SetWMProperties() is not in the X11 library. Issue 265. Solution: Add a configure check.
2014-08-17updated for version 7.4.409v7.4.409Bram Moolenaar
Problem: Can't build with Perl on Fedora 20. Solution: Find xsubpp in another directory. (Michael Henry)
2014-07-30updated for version 7.4.385v7.4.385Bram Moolenaar
Problem: When building with tiny or small features building the .mo files fails. Solution: In autoconf do not setup for building the .mo files when it would fail.
2014-05-22updated for version 7.4.299v7.4.299Bram Moolenaar
Problem: When running configure twice DYNAMIC_PYTHON_DLL may become empty. Solution: Use AC_CACHE_VAL. (Ken Takata)
2014-04-12updated for version 7.4.258v7.4.258Bram Moolenaar
Problem: Configure fails if $CC contains options. Solution: Remove quotes around $CC. (Paul Barker)
2014-04-10updated for version 7.4.255v7.4.255Bram Moolenaar
Problem: Configure check for smack doesn't work with all shells. (David Larson) Solution: Remove spaces in set command.
2014-04-10updated for version 7.4.254v7.4.254Bram Moolenaar
Problem: Smack support detection is incomplete. Solution: Check for attr/xattr.h and specific macro.
2014-04-05updated for version 7.4.246v7.4.246Bram Moolenaar
Problem: Configure message for detecting smack are out of sequence. Solution: Put the messages in the right place. (Kazunobu Kuriyama)
2014-04-02updated for version 7.4.238v7.4.238Bram Moolenaar
Problem: Vim does not support the smack library. Solution: Add smack support (Jose Bollo)
2014-03-27updated for version 7.4.224v7.4.224Bram Moolenaar
Problem: /usr/bin/grep on Solaris does not support -F. Solution: Add configure check to find a good grep. (Danek Duvall)
2014-03-27updated for version 7.4.223v7.4.223Bram Moolenaar
Problem: Still using an older autoconf version. Solution: Switch to autoconf 2.69.
2014-03-27updated for version 7.4.222v7.4.222Bram Moolenaar
Problem: The Ruby directory is constructed from parts. Solution: Use 'rubyarchhdrdir' if it exists. (James McCoy)
2014-02-23updated for version 7.4.188v7.4.188Bram Moolenaar
Problem: SIZEOF_LONG clashes with similar defines in header files. Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
2013-11-21updated for version 7.4.095v7.4.095Bram Moolenaar
Problem: Regexp for LuaJIT version doesn't work on BSD. Solution: Use "*" instead of "\+" and "\?". (Ozaki)
2013-11-17updated for version 7.4.094v7.4.094Bram Moolenaar
Problem: Configure may not find that -lint is needed for gettext(). Solution: Check for gettext() with empty $LIBS. (Thomas De Schampheleire)
2013-11-17updated for version 7.4.093v7.4.093Bram Moolenaar
Problem: Configure can't use LuaJIT on ubuntu 12.04. Solution: Adjust the configure regexp that locates the version number. (Charles Strahan)
2013-11-04updated for version 7.4.068v7.4.068Bram Moolenaar
Problem: Cannot build Vim on Mac with non-Apple compilers. Solution: Remove the -no-cpp-precomp flag. (Misty De Meo)
2013-11-03updated for version 7.4.062v7.4.062Bram Moolenaar
Problem: Configure check for AvailabilityMacros.h is wrong. Solution: Use AC_CHECK_HEADERS().
2013-11-03updated for version 7.4.061v7.4.061Bram Moolenaar
Problem: Availability macros configure check in wrong place. Solution: Also check when not using Darwin. Remove version check.
2013-11-02updated for version 7.4.055v7.4.055Bram Moolenaar
Problem: Mac: Where availability macros are defined depends on the system. Solution: Add a configure check. (Felix Bünemann)
2013-10-02updated for version 7.4.048v7.4.048Bram Moolenaar
Problem: Recent clang version complains about -fno-strength-reduce. Solution: Add a configure check for the clang version. (Kazunobu Kuriyama)
2013-08-07updated for version 7.4b.016v7.4b.016Bram Moolenaar
Problem: Ruby detection fails on Fedora 19. Solution: Use one way to get the Ruby version. (Michael Henry)