-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update from version 7.0.0.11 to 7.0.4 - Update of rootfile - Changelog updated language flags, catch abortcompile throw in non-ragel progs 7.0.3 This version of colm includes a critical fix for big-endian system. Fixes #61. expect colm version 0.14.6 and version bump ragel to 7.0.3 7.0.2 Latest colm includes bugfixes for refcounting, which fixes a ragel issue with includes #58. expect colm 0.14.5 and version bump to 7.0.2 7.0.1 removed accidental commit of ragel/.exrc 7.0.0.12 implemented NfaClear in asm codegen Signed-off-by: Adolf Belka <[email protected]>
- Loading branch information
Showing
2 changed files
with
7 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
############################################################################### | ||
# # | ||
# IPFire.org - A linux based firewall # | ||
# Copyright (C) 2007-2018 IPFire Team <[email protected]> # | ||
# Copyright (C) 2007-2023 IPFire Team <[email protected]> # | ||
# # | ||
# This program is free software: you can redistribute it and/or modify # | ||
# it under the terms of the GNU General Public License as published by # | ||
|
@@ -24,7 +24,7 @@ | |
|
||
include Config | ||
|
||
VER = 7.0.0.11 | ||
VER = 7.0.4 | ||
|
||
THISAPP = ragel-$(VER) | ||
DL_FILE = $(THISAPP).tar.gz | ||
|
@@ -40,7 +40,7 @@ objects = $(DL_FILE) | |
|
||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE) | ||
|
||
$(DL_FILE)_BLAKE2 = d967251d4eeb06a0fb2c5f3bf398dbc53fe4499b092113bb948f03b50f9e468cf510b2196055544ae65a47559ad5baed57238ac92c8aae5300873716ddd070b1 | ||
$(DL_FILE)_BLAKE2 = d96444f6b8dc356b9effa6c5032952ffb2526833f90fcb63c7f6c293a73a70ba057995426ba789d237c61dee5e3aa1ab53ec3193bd31c9c4b994193910219d13 | ||
|
||
install : $(TARGET) | ||
|
||
|
@@ -72,6 +72,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) | |
$(UPDATE_AUTOMAKE) | ||
cd $(DIR_APP) && ./configure \ | ||
--prefix=/usr \ | ||
--with-colm=/usr \ | ||
--disable-manual \ | ||
--disable-static | ||
cd $(DIR_APP) && make $(MAKETUNING) | ||
cd $(DIR_APP) && make install | ||
|