Merge pull request #1056 from ebraminio/master

[ragel] Update to 6.10 and unbreak build
This commit is contained in:
Alexander Karatarakis 2017-05-10 14:57:45 -07:00 committed by GitHub
commit 0de42645f7
6 changed files with 15 additions and 50 deletions

View File

@ -4,13 +4,13 @@ Date: Tue, 4 Oct 2016 17:54:22 +0200
Subject: [PATCH 1/2] Remove unistd.h include 1
---
ragel-6.9/ragel/main.cpp | 1 -
ragel-6.10/ragel/main.cpp | 1 -
1 file changed, 1 deletion(-)
diff --git a/ragel-6.9/ragel/main.cpp b/ragel-6.9/ragel/main.cpp
diff --git a/ragel-6.10/ragel/main.cpp b/ragel-6.10/ragel/main.cpp
index f5fbd7b..e3bcc18 100644
--- a/ragel-6.9/ragel/main.cpp
+++ b/ragel-6.9/ragel/main.cpp
--- a/ragel-6.10/ragel/main.cpp
+++ b/ragel-6.10/ragel/main.cpp
@@ -24,7 +24,6 @@
#include <stdio.h>
#include <iostream>

View File

@ -4,13 +4,13 @@ Date: Tue, 4 Oct 2016 17:54:38 +0200
Subject: [PATCH 2/2] Remove unistd.h include 2
---
ragel-6.9/ragel/main.cpp | 1 -
ragel-6.10/ragel/main.cpp | 1 -
1 file changed, 1 deletion(-)
diff --git a/ragel-6.9/ragel/main.cpp b/ragel-6.9/ragel/main.cpp
diff --git a/ragel-6.10/ragel/main.cpp b/ragel-6.10/ragel/main.cpp
index e3bcc18..947b1c8 100644
--- a/ragel-6.9/ragel/main.cpp
+++ b/ragel-6.9/ragel/main.cpp
--- a/ragel-6.10/ragel/main.cpp
+++ b/ragel-6.10/ragel/main.cpp
@@ -25,7 +25,6 @@
#include <iostream>
#include <fstream>

View File

@ -1,25 +0,0 @@
From 852aebf39d85964141cf9243d89abc2d5ee761ce Mon Sep 17 00:00:00 2001
From: vlj <vljn.ovi@gmail.com>
Date: Tue, 4 Oct 2016 18:22:41 +0200
Subject: [PATCH 3/3] Fix rsxgoto.cpp build.
---
ragel-6.9/ragel/rbxgoto.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ragel-6.9/ragel/rbxgoto.cpp b/ragel-6.9/ragel/rbxgoto.cpp
index c54cb00..9e33425 100644
--- a/ragel-6.9/ragel/rbxgoto.cpp
+++ b/ragel-6.9/ragel/rbxgoto.cpp
@@ -658,7 +658,7 @@ void RbxGotoCodeGen::BREAK( ostream &ret, int targState )
out <<
" begin\n"
" " << P() << " += 1\n"
- " " << rbxGoto(ret, "_out") << "\n"
+ " "; rbxGoto(ret, "_out") << "\n"
" end\n";
}
--
2.8.3.windows.1

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.0)
project(ragel CXX)
project(ragel)
file(GLOB HEADERS
ragel/buffer.h

View File

@ -1,3 +1,3 @@
Source: ragel
Version: 6.9
Description:Ragel State Machine Compiler
Version: 6.10
Description: Ragel State Machine Compiler

View File

@ -1,17 +1,9 @@
# Common Ambient Variables:
# VCPKG_ROOT_DIR = <C:\path\to\current\vcpkg>
# TARGET_TRIPLET is the current triplet (x86-windows, etc)
# PORT is the current port name (zlib, etc)
# CURRENT_BUILDTREES_DIR = ${VCPKG_ROOT_DIR}\buildtrees\${PORT}
# CURRENT_PACKAGES_DIR = ${VCPKG_ROOT_DIR}\packages\${PORT}_${TARGET_TRIPLET}
#
include(vcpkg_common_functions)
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/ragel-6.9)
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/ragel-6.10)
vcpkg_download_distfile(ARCHIVE
URLS "http://www.colm.net/files/ragel/ragel-6.9.tar.gz"
FILENAME "ragel-6.9.tar.gz"
SHA512 46886a37fa0b785574c03ba6581d99bbeaa11ca65cf4fdc37ceef42f4869bd695694cd69b4b974a25cf539f004cb106e3debda17fc26e1a9a6a4295992733dbd
URLS "http://www.colm.net/files/ragel/ragel-6.10.tar.gz"
FILENAME "ragel-6.10.tar.gz"
SHA512 6c1fe4f6fa8546ae28b92ccfbae94355ff0d3cea346b9ae8ce4cf6c2bdbeb823e0ccd355332643ea72d3befd533a8b3030ddbf82be7ffa811c2c58cbb01aaa38
)
vcpkg_extract_source_archive(${ARCHIVE})
@ -23,12 +15,10 @@ vcpkg_apply_patches(
PATCHES
"${CMAKE_CURRENT_LIST_DIR}/0001-Remove-unistd.h-include-1.patch"
"${CMAKE_CURRENT_LIST_DIR}/0002-Remove-unistd.h-include-2.patch"
"${CMAKE_CURRENT_LIST_DIR}/0003-Fix-rsxgoto.cpp-build.patch"
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
GENERATOR "Visual Studio 14 2015"
)
vcpkg_install_cmake()