diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2014-04-03 19:57:13 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-04-07 14:43:52 +0700 |
commit | 68d4a9b6cf257bafa66b99bed3af81941d4a6a88 (patch) | |
tree | aa1620fc6599402cb8b5e2fe0126ad8bc51a58a4 /development/dao/dao_readline.patch | |
parent | eb6d03d83f68fbaf4d4800eb435a5b3fdff92bf5 (diff) |
development/dao: Added (The Dao Programming Language).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/dao/dao_readline.patch')
-rw-r--r-- | development/dao/dao_readline.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/development/dao/dao_readline.patch b/development/dao/dao_readline.patch new file mode 100644 index 000000000000..9a64430da058 --- /dev/null +++ b/development/dao/dao_readline.patch @@ -0,0 +1,32 @@ +--- dao-2.0-devel-2014-01-19/CMakeLists.original.txt 2014-04-03 12:27:09.424917752 +0300 ++++ dao-2.0-devel-2014-01-19/CMakeLists.txt 2014-04-03 12:29:11.000397849 +0300 +@@ -89,12 +89,12 @@ + endif(DAO_HAS_FENV) + + # Check whether the system has readline.h or not. +-find_path(DAO_HAS_READLINE NAMES "readline/readline.h" "readline/history.h") +-if(DAO_HAS_READLINE) +- include_directories("${DAO_HAS_READLINE}") +- add_definitions(-DDAO_USE_READLINE) +- list(APPEND DAO_SYSTEM_LIBS "readline") +-endif(DAO_HAS_READLINE) ++# find_path(DAO_HAS_READLINE NAMES "readline/readline.h" "readline/history.h") ++# if(DAO_HAS_READLINE) ++# include_directories("${DAO_HAS_READLINE}") ++# add_definitions(-DDAO_USE_READLINE) ++# list(APPEND DAO_SYSTEM_LIBS "readline") ++# endif(DAO_HAS_READLINE) + + # Setup for Minix: + if( "${CMAKE_SYSTEM_NAME}" STREQUAL "Minix" ) +@@ -199,8 +199,8 @@ + RUNTIME DESTINATION "bin" + LIBRARY DESTINATION "lib" + ARCHIVE DESTINATION "lib" +- PRIVATE_HEADER DESTINATION "include" +- PUBLIC_HEADER DESTINATION "include" ++ PRIVATE_HEADER DESTINATION "include/dao" ++ PUBLIC_HEADER DESTINATION "include/dao" + ) + #autobind.dao is obsolete: + #install(FILES "${PROJECT_SOURCE_DIR}/tools/autobind.dao" DESTINATION "bin") |