Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dssp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
dssp
Commits
04da2918
Unverified
Commit
04da2918
authored
Jan 11, 2021
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disable resources by default
parent
0e5c3dea
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
configure
+0
-0
configure.ac
+5
-2
src/config.hpp.in
+3
-0
No files found.
configure
View file @
04da2918
This diff is collapsed.
Click to expand it.
configure.ac
View file @
04da2918
...
@@ -24,6 +24,9 @@ AC_ARG_VAR([DEBUG], [Build a debug version of the application])
...
@@ -24,6 +24,9 @@ AC_ARG_VAR([DEBUG], [Build a debug version of the application])
AC_ARG_VAR([MRC], [Specify a location for the mrc executable])
AC_ARG_VAR([MRC], [Specify a location for the mrc executable])
PKG_PROG_PKG_CONFIG
dnl using resources?
USE_RSRC=0
USE_RSRC=0
if test "x$MRC" = "x"; then
if test "x$MRC" = "x"; then
...
@@ -35,9 +38,9 @@ if test "x$MRC" = "x"; then
...
@@ -35,9 +38,9 @@ if test "x$MRC" = "x"; then
else
else
AC_ARG_ENABLE(
AC_ARG_ENABLE(
resources,
resources,
[AS_HELP_STRING([--
disable-resources], [Do not u
se mrc to store data in resources])])
[AS_HELP_STRING([--
enable-resources], [U
se mrc to store data in resources])])
AS_IF([test "x$enable_resources"
!= "xno
" ], [
AS_IF([test "x$enable_resources"
= "xyes
" ], [
USE_RSRC=1
USE_RSRC=1
])
])
fi
fi
...
...
src/config.hpp.in
View file @
04da2918
...
@@ -75,3 +75,6 @@
...
@@ -75,3 +75,6 @@
/* Define to 1 if you have the ANSI C header files. */
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
#undef STDC_HEADERS
/* Use mrc to store resources */
#undef USE_RSRC
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment