diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-11-22 21:33:10 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-11-22 21:33:10 -0800 |
commit | e1174f5ea6ff0a51738830e10a92819135a22b32 (patch) | |
tree | 1f0059bfc36238cd987b16e7da02588a7dfecc4b | |
parent | d9f00cc8a2cb018377e7cd7ea44d35f7ce710f07 (diff) | |
download | txr-e1174f5ea6ff0a51738830e10a92819135a22b32.tar.gz txr-e1174f5ea6ff0a51738830e10a92819135a22b32.tar.bz2 txr-e1174f5ea6ff0a51738830e10a92819135a22b32.zip |
* configure: Fix environ test case for C++.
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | configure | 2 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,9 @@ 2011-11-22 Kaz Kylheku <kaz@kylheku.com> + * configure: Fix environ test case for C++. + +2011-11-22 Kaz Kylheku <kaz@kylheku.com> + * match.c (search_form): Bugfix: we must search to one character position after the end of the line, otherwise we can never match @(eol). @@ -881,6 +881,8 @@ fi printf "Checking whether we have environ ... " cat > conftest.c <<! +#include <stdio.h> + int main(void) { extern char **environ; |