aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.ac
Commit message (Collapse)AuthorAge
* Merge new string builtinGravatar Michael Steed2015-09-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds the new builtin 'string' which supports various string manipulation and matching algorithms, including PCRE based regular expressions. Fixes #2296 Squashed commit of the following: commit 4c3eaeb6e57d76463e9683c327142b0aeafb92b8 Author: ridiculousfish <corydoras@ridiculousfish.com> Date: Sat Sep 12 12:51:30 2015 -0700 Remove testdata and doc dirs from pcre2 source commit b2a8b4b50f2398b204fb72cfe4b5ba77ece2e1ab Merge: 11c8a47 7974aab Author: ridiculousfish <corydoras@ridiculousfish.com> Date: Sat Sep 12 12:32:40 2015 -0700 Merge branch 'string' of git://github.com/msteed/fish-shell into string-test commit 7974aab6d367f999f1140ab34c2535cef5cf3b00 Author: Michael Steed <msteed@saltstack.com> Date: Fri Sep 11 13:00:02 2015 -0600 build pcre2 lib only, no docs commit eb20b43d2d96b7e6d24618158ce71078de83c40b Merge: 1a09e70 5f519cb Author: Michael Steed <msteed68@gmail.com> Date: Thu Sep 10 20:00:47 2015 -0600 Merge branch 'string' of github.com:msteed/fish-shell into string commit 1a09e709d028393c9e9e6dc9a84278f399a15f3d Author: Michael Steed <msteed68@gmail.com> Date: Thu Sep 10 19:58:24 2015 -0600 rebase on master & address the fallout commit a0ec9772cd1a0a548a501a7633be05dab4e5ee46 Author: Michael Steed <msteed68@gmail.com> Date: Thu Sep 10 19:26:45 2015 -0600 use fish's wildcard_match() for glob matching commit 64c25a01e3f7234f220ba13545cf658a7492b1a4 Author: Michael Steed <msteed68@gmail.com> Date: Thu Aug 27 08:19:23 2015 -0600 some fixes from review - string_get_arg_stdin(): simplify and don't discard the argument when the trailing newline is absent - fix calls to pcre2 for e.g. string match -r -a 'a*' 'b' - correct test for args coming from stdin commit ece7f35ec5f4093763627d68d671b6c0c876896d Author: Michael Steed <msteed68@gmail.com> Date: Sat Aug 22 19:35:56 2015 -0600 fixes from review - Makefile.in: restore iwyu target - regex_replacer_t::replace_matches(): correct size passed to realloc() commit 9ff7477a926c4572e26171cab3cd42f8086be678 Author: Michael Steed <msteed68@gmail.com> Date: Thu Aug 20 13:08:33 2015 -0600 Minor doc improvements commit baf4e096b22dde3063b85b833795eb570d660ba7 Author: Michael Steed <msteed68@gmail.com> Date: Wed Aug 19 18:29:02 2015 -0600 another attempt to fix the ci build commit 896a2c2b279a419747bea26102229fbe84534a6f Author: Michael Steed <msteed68@gmail.com> Date: Wed Aug 19 18:03:49 2015 -0600 Updates after review comments - make match/replace without -a operate on the first match on each argument - use different exit codes for "no operation performed" and errors, as grep does - refactor regex compile code - use human-friendly error messages from pcre2 - improve error handling & reporting elsewhere - add a few tests - make some doc fixes - some simplification & cleanup - fix ci build failure (I hope) commit efd47dcbda2ca247d58bee56a7774cd75a1062fd Author: Michael Steed <msteed68@gmail.com> Date: Wed Aug 12 00:26:07 2015 -0600 fix dependencies for parallel make commit ed0850e2db467362066a3d94e3ececd17c1756cd Author: Michael Steed <msteed68@gmail.com> Date: Tue Aug 11 23:37:22 2015 -0600 Add missing pcre2 files + .gitignore commit 9492e7a7e929c03554336be1ddf80ca6b37f53c5 Author: Michael Steed <msteed68@gmail.com> Date: Tue Aug 11 22:44:05 2015 -0600 add pcre2-10.20 and update license.hdr commit 1a60b933718feb20c0bf7c9e257b8e495014ea1b Author: Michael Steed <msteed68@gmail.com> Date: Tue Aug 11 22:41:19 2015 -0600 add string builtin files - string builtin source, tests, & docs - changes to configure.ac & Makefile.in commit 5f519cb2a2c05213e0a88a7add7af288bc1c1352 Author: Michael Steed <msteed68@gmail.com> Date: Thu Sep 10 19:26:45 2015 -0600 use fish's wildcard_match() for glob matching commit 2ecd24f79500879e2de5bdf1b4c19dd44fc6ac85 Author: Michael Steed <msteed68@gmail.com> Date: Thu Aug 27 08:19:23 2015 -0600 some fixes from review - string_get_arg_stdin(): simplify and don't discard the argument when the trailing newline is absent - fix calls to pcre2 for e.g. string match -r -a 'a*' 'b' - correct test for args coming from stdin commit 45b777e4dc85c05cd4a186f4bdcae543c21aaf08 Author: Michael Steed <msteed68@gmail.com> Date: Sat Aug 22 19:35:56 2015 -0600 fixes from review - Makefile.in: restore iwyu target - regex_replacer_t::replace_matches(): correct size passed to realloc() commit 981cbb6ddf742a5fe8881af916e7b870b7e6422a Author: Michael Steed <msteed68@gmail.com> Date: Thu Aug 20 13:08:33 2015 -0600 Minor doc improvements commit ddb6a2a8fdb6aa31aad41e80d5481bb32c6ed8ff Author: Michael Steed <msteed68@gmail.com> Date: Wed Aug 19 18:29:02 2015 -0600 another attempt to fix the ci build commit 1e34e3191b028162863d263e9868052f75194aa5 Author: Michael Steed <msteed68@gmail.com> Date: Wed Aug 19 18:03:49 2015 -0600 Updates after review comments - make match/replace without -a operate on the first match on each argument - use different exit codes for "no operation performed" and errors, as grep does - refactor regex compile code - use human-friendly error messages from pcre2 - improve error handling & reporting elsewhere - add a few tests - make some doc fixes - some simplification & cleanup - fix ci build failure (I hope) commit 34232e152df17a3cfbf0a094dd51d148a4f04e6f Author: Michael Steed <msteed68@gmail.com> Date: Wed Aug 12 00:26:07 2015 -0600 fix dependencies for parallel make commit 00d7e781697f53454beb91c1d0fc4b2d28d6e034 Author: Michael Steed <msteed68@gmail.com> Date: Tue Aug 11 23:37:22 2015 -0600 Add missing pcre2 files + .gitignore commit 4498aa5f576e09634f7f619443e74d2f33c108e4 Author: Michael Steed <msteed68@gmail.com> Date: Tue Aug 11 22:44:05 2015 -0600 add pcre2-10.20 and update license.hdr commit 290c58c72e22db644ccf6fa9088051644980ed0a Author: Michael Steed <msteed68@gmail.com> Date: Tue Aug 11 22:41:19 2015 -0600 add string builtin files - string builtin source, tests, & docs - changes to configure.ac & Makefile.in
* configure: only define special attributes if not definedGravatar David Adam2015-07-29
| | | | | Fixes a build warning on FreeBSD, where <sys/cdefs.h> defines __packed and friends.
* Revert "Automatically add include paths for ncurses on Cygwin"Gravatar David Adam2015-06-26
| | | | | | | | | | This reverts commit cd7f1a15f86fd045d069d256ea7333d14c2913fa. Contemporary Cygwin systems provide the correct symlinks on both 32-bit and 64-bit installations to allow the transparent use of libncursesw as libncurses. Reversion of #1454.
* configure: use feature detection for -rdynamicGravatar David Adam2015-06-20
| | | | | | Fixes the Cygwin build, works on OS X. Work on #170.
* Fix typo in comment.Gravatar Ryo ONODERA2015-03-07
| | | | * DragonFly BSD is not Dragonfly BSD.
* Solaris build fixes: use _sys_errs if availableGravatar David Adam2014-12-21
|
* Solaris build fixes: detect <termios.h> in configureGravatar David Adam2014-12-21
| | | | The header is already used appropriately in the code.
* use configure to detect dirent.d_typeGravatar David Adam2014-12-21
|
* Define some macros to stop Solaris curses headers from breaking the STLGravatar ridiculousfish2014-12-21
|
* Solaris build fixes: pick the right curses more of the timeGravatar David Adam2014-12-21
|
* Remove del_curterm workaround on *BSD.Gravatar David Adam2014-12-08
| | | | | | | | | | FreeBSD PR was https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=108117 OpenBSD PR was 5447. Both have been fixed for years. This reverts commit c55cbd3f2f003ea6e36727f8b985e880d6aded85, among others.
* Move struct stat checks in configureGravatar Konrad Borowski2014-11-11
| | | Tests for POSIX_C_SOURCE value need to be done before any actual checks
* Makefile/configure: detect and use sed from configureGravatar David Adam2014-09-18
|
* Fixed Doxygen required version to 1.8.7Gravatar Mark Griffiths2014-09-04
| | | | | | | Doxygen 1.8.6 and lower do not have the \\htmlonly[block] directive which fixes a multitude of problems in the rendering of the docs. In Doxygen 1.8.7 the list of understood HTML entities was greatly increased. I tested earlier versions and many little issues returned.
* Update configure.ac and README for Doxygen 1.8Gravatar Mark Griffiths2014-09-03
|
* Revert 60b9f8d..e4d6eafGravatar Mark Griffiths2014-09-03
| | | | This rolls back to commit 60b9f8db18b8889c3db864e443ee113d897bfe72.
* Update autoconf and README for Doxygen 1.8Gravatar Mark Griffiths2014-09-03
|
* Remove getpeerid/getpeerucred and fallbacksGravatar David Adam2014-08-03
|
* Remove inotify-based universal notifierGravatar ridiculousfish2014-05-29
| | | | | | The inotify notifier is fragile, fails on travis, and fails to compile on certain Linux kernels. It doesn't appear to work as well as the named pipe mechanism. Best to just get rid of it.
* Merge branch 'master' into death_of_fishdGravatar ridiculousfish2014-05-09
|\
| * Automatically add include paths for ncurses on CygwinGravatar Philipp Schroer2014-05-09
| |
* | Merge branch 'master' into death_of_fishdGravatar ridiculousfish2014-05-03
|\| | | | | | | | | Conflicts: configure.ac
| * Use mkostemp instead of mktemp where availableGravatar ridiculousfish2014-05-03
| |
* | Early implementation of inotify-based universal variable notifier forGravatar ridiculousfish2014-05-01
| | | | | | | | Linux
| * Properly check for miliseconds during screen updateGravatar Konrad Borowski2014-05-01
| | | | | | | | | | | | This removes undefined behavior in the previous code by properly checking for miliseconds (actually typing proper names, not abusing pointer arithmetics).
| * Check effective credentials of socket peersGravatar David Adam2014-04-28
|/ | | | | | | | | Fix for CVE-2014-2905. Code for getpeereid() on non-BSD systems imported from the PostgreSQL project under a BSD-style license. Closes #1436
* Squelch some more warnings on LinuxGravatar ridiculousfish2014-04-27
|
* configure: turn off automatic searches through non-standard directoriesGravatar David Adam2014-03-30
| | | | | | | | | | | | | | | configure will no longer check for the existence of extra include, lib and bin directories in /usr/pkg /sw /opt /opt/local /usr/local. The check was not done in a particularly sensible manner and there are now no mandatory dependencies that not shipped in the main system trees on virtually every system in existence. If building with Fink, follow these directions as suggested by the fink project: http://www.finkproject.org/faq/usage-general.php#compile-myself Closes #1185, and closes #1186.
* configure/Makefile: remove unused $LIBS and $LDFLAGS complicationsGravatar David Adam2014-03-30
|
* Second attempt to fix the build. config.h.in changes need to go inGravatar ridiculousfish2014-03-25
| | | | configure.ac.
* Stop linking iconv, now that we have our own utf8 conversion routinesGravatar ridiculousfish2014-03-23
|
* Check for libtinfo after libncursesGravatar jer-gentoo2014-03-19
| | | | | | See Gentoo bug 459768 (https://bugs.gentoo.org/show_bug.cgi?id=459768) Closes #1322 (https://github.com/fish-shell/fish-shell/pull/1322).
* Remove old pager remnants, including documentation and references in theGravatar ridiculousfish2014-03-15
| | | | build system
* configure/Makefile: remove unused variables and unneeded declarationsGravatar David Adam2014-01-15
|
* configure.ac: Fix typoGravatar Arjun A.K2013-12-22
| | | | 'direcotry' => 'directory'
* autoconf build: clean up Makefile, remove fish.specGravatar David Adam2013-12-01
| | | | | | | | Removes some unused variables and out-of-date references. Wraps some tests in quotes to avoid expansion errors. Removes the fish.spec generated file as it is out of date and is arguably better maintained by downstream packagers. See http://github.com/zanchey/fish-build/ for a better RPM spec file.
* configure/Makefile: respect $LIBS, remove some egregarious liesGravatar David Adam2013-11-09
| | | | | | | - expunge LIBS_COMMON, it doesn't get used anywhere - don't reset LIBS to empty - move the gettext test as every binary depends on it - only include one set of libraries
* Link with $CXXFLAGS; disable GCC-specific autoconf check (squash fixes).Gravatar Geoff Nixon2013-10-29
|
* configure: use C++ for all tests, kill CFLAGSGravatar David Adam2013-10-02
|
* document and enforce Autoconf 2.60 or greaterGravatar David Adam (zanchey)2013-09-06
|
* Try to improve the error message printed when libcurses is not foundGravatar ridiculousfish2013-08-31
|
* configure.ac: don't add RPATH when searching for extra libsGravatar David Adam (zanchey)2013-08-22
| | | | | | Closes #766 doesn't appear to actually be required, and adding RPATH breaks Debian and OpenSUSE policy all flames to me
* configure.ac: remove m4_esyscmd_sGravatar David Adam (zanchey)2013-08-17
| | | | | | | | | | | | m4_esyscmd_s is a macro only available in Autoconf 2.64, which despite being released in 2009 is not available on a number of build targets for the project (specifically CentOS/RHEL 6). ca8e4c08a78 tries to remove the error produced with m4_pattern_allow, but that just silences the sanity check. Instead, replace m4_esyscmd_s with m4_esyscmd + manual removal of newlines.
* Fix compilation under CentOSGravatar Konrad Borowski2013-08-16
| | | I hope I didn't broke anything, but it works for me.
* configure.ac: generate the fish version number dynamicallyGravatar David Adam (zanchey)2013-08-11
| | | | Note that this will NOT get updated on every run - even if autoconf is run manually, the value may be cached. The PACKAGE_VERSION variable/symbol will not be reliable. Use FISH_BUILD_VERSION instead.
* docs: configure/Makefile changes to require at least Doxygen 1.5Gravatar David Adam2013-06-19
|
* Conditionally include sys/sysctl.hGravatar Ian Ray2013-06-01
|
* Rearrange some macros in configure.ac so that CXXFLAGS can default to -g -O2 ↵Gravatar ridiculousfish2013-04-19
| | | | again
* Build with -fno-exceptionsGravatar ridiculousfish2013-04-19
| | | | https://github.com/fish-shell/fish-shell/issues/664
* Fixed check for msgfmt in configure.acGravatar Siteshwar Vashisht2013-04-16
|