forked from souffle-lang/souffle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into oraculariserisation
- Loading branch information
Showing
66 changed files
with
61,168 additions
and
137 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,5 +1,5 @@ | ||
#!/bin/sh -e | ||
aclocal | ||
#! /bin/sh -e | ||
aclocal -I m4 | ||
autoheader | ||
automake --gnu --add-missing | ||
autoconf |
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 |
---|---|---|
|
@@ -8,7 +8,6 @@ | |
AC_INIT(souffle, m4_esyscmd([git describe --tags --abbrev=0 | tr -d '\n']), [[email protected]]) | ||
AC_PREREQ(2.68) | ||
AC_COPYRIGHT(['2013-15 Oracle and/or its affiliates']) | ||
AC_CONFIG_MACRO_DIRS([m4]) | ||
|
||
AC_CANONICAL_TARGET # target_cpu, target_vendor, and target_os | ||
AC_CANONICAL_BUILD # build_cpu, build_vendor, and build_os | ||
|
@@ -149,6 +148,9 @@ DIST_PACKAGING([bsd],[BSD_PACKAGE],[PKGBUILD],[pkgbuild]) | |
dnl Enable pthread library | ||
AC_CHECK_LIB(pthread, pthread_create,, | ||
[AC_MSG_ERROR([required library pthread missing])]) | ||
AC_CHECK_HEADER(sqlite3.h,,[AC_MSG_ERROR([required library sqlite3 missing])]) | ||
AC_CHECK_LIB(sqlite3, sqlite3_open,, | ||
[AC_MSG_ERROR([required library sqlite3 missing])]) | ||
|
||
dnl Enables OpenMP in the souffle compiler and interpreter | ||
AC_OPENMP | ||
|
@@ -178,6 +180,7 @@ AC_CONFIG_LINKS([include/souffle/IterUtils.h:src/IterUtils.h]) | |
AC_CONFIG_LINKS([include/souffle/Util.h:src/Util.h]) | ||
AC_CONFIG_LINKS([include/souffle/RamLogger.h:src/RamLogger.h]) | ||
AC_CONFIG_LINKS([include/souffle/SymbolTable.h:src/SymbolTable.h]) | ||
AC_CONFIG_LINKS([include/souffle/SqliteRelationWriter.h:src/SqliteRelationWriter.h]) | ||
AC_CONFIG_LINKS([prof/souffle-profile:prof/souffle-profile]) | ||
|
||
AM_MISSING_PROG([AUTOM4TE], [autom4te]) | ||
|
@@ -187,7 +190,6 @@ AC_FUNC_ALLOCA | |
AC_CHECK_HEADERS([arpa/inet.h fcntl.h float.h inttypes.h libintl.h limits.h malloc.h memory.h netdb.h stddef.h stdint.h stdlib.h string.h strings.h sys/time.h sys/timeb.h unistd.h wchar.h wctype.h]) | ||
|
||
# Checks for typedefs, structures, and compiler characteristics. | ||
AC_CHECK_HEADER_STDBOOL | ||
AC_C_INLINE | ||
AC_TYPE_INT16_T | ||
AC_TYPE_INT32_T | ||
|
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Portions of code that are modeled after the Doop framework | ||
(http://doop.program-analysis.org/) in samples/ have the following copyright and permission notice: | ||
|
||
Copyright (C) 2008-2009 Martin Bravenboer | ||
|
||
Permission is hereby granted, free of charge, to any person | ||
obtaining a copy of this software and associated documentation | ||
files (the "Software"), to deal in the Software without | ||
restriction, including without limitation the rights to use, | ||
copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the | ||
Software is furnished to do so, subject to the following | ||
conditions: | ||
|
||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES | ||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT | ||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
OTHER DEALINGS IN THE SOFTWARE. |
Empty file.
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
Oops, something went wrong.