Skip to content

Commit

Permalink
prepare for a release
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomif committed May 3, 2022
1 parent 4d64746 commit dde03f9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fortune-mod/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)

SET (WITH_TEST_SUITE CACHE BOOL "")
SET (NO_OFFENSIVE CACHE BOOL "Exclude the offensive option.")
SET (USE_WIN32_REGEX_LIBS TRUE CACHE BOOL "")
SET (USE_WIN32_REGEX_LIBS TRUE CACHE BOOL "Link to the regex libraries (only affects MSWin builds)")
SET (LOCALDIR "${CMAKE_INSTALL_PREFIX}/local/share/games/fortunes" CACHE STRING "LOCALDIR fortunes dir")
SET (LOCALODIR "${LOCALDIR}/off" CACHE STRING "offensive fortunes localdir")
SET (COOKIEDIR "${CMAKE_INSTALL_PREFIX}/share/games/fortunes" CACHE STRING "cookie dir not under /usr/local")
Expand Down
8 changes: 8 additions & 0 deletions fortune-mod/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
(Note: this file has been re-arranged to be in reverse chronological
order, which is The Right Thing for ChangeLogs - DLC)

May 3, 2022 (fortune-mod 3.14.0)

Fix CI builds - especially on x86-64 MS Windows.

Add new quotes.

Minor code cleanups.

December 29, 2021 (fortune-mod 3.12.0)

Generate a newer and more canonical datfiles/rules-of-acquisition
Expand Down
2 changes: 1 addition & 1 deletion fortune-mod/datfiles/politics
Original file line number Diff line number Diff line change
Expand Up @@ -2988,5 +2988,5 @@ targets women wearing fur instead of biker gangs wearing leather...

It's all about who it is easier to intimidate.

-- WWw Captioned Image ( https://is.gd/VwdKxZ )
-- WWW Captioned Image ( https://is.gd/VwdKxZ )
%
2 changes: 1 addition & 1 deletion fortune-mod/fortune/fortune.c
Original file line number Diff line number Diff line change
Expand Up @@ -1965,7 +1965,7 @@ int main(int argc, char *argv[])
#ifdef WITH_REGEX
if (Match)
{
exit_code = (find_matches() != false);
exit_code = find_matches();
regfree(&Re_pat);
goto cleanup;
}
Expand Down

0 comments on commit dde03f9

Please sign in to comment.