Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libplist
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwn
libplist
Commits
054578a2
Commit
054578a2
authored
Apr 20, 2017
by
Christophe Fergeau
Committed by
Nikias Bassen
Apr 20, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
autofoo: Ensure that 'make distcheck' doesn't fail when cython is not installed
parent
d0193690
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
Makefile.am
Makefile.am
+4
-1
configure.ac
configure.ac
+1
-5
No files found.
Makefile.am
View file @
054578a2
AUTOMAKE_OPTIONS
=
foreign
ACLOCAL_AMFLAGS
=
-I
m4
SUBDIRS
=
libcnary src include tools
$(CYTHON_SUB)
test
SUBDIRS
=
libcnary src include tools
test
if
HAVE_CYTHON
SUBDIRS
+=
cython
endif
docs/html
:
$(top_builddir)/doxygen.cfg $(top_srcdir)/include/plist/*.h
rm
-rf
docs
...
...
configure.ac
View file @
054578a2
...
...
@@ -117,21 +117,17 @@ if [test "x$CYTHON" != "xfalse"]; then
CYTHON_PLIST_INCLUDE_DIR=$($PKG_CONFIG --variable=includedir libplist)/plist/cython
if [test ! -d "$CYTHON_PLIST_INCLUDE_DIR"]; then
CYTHON_PLIST_INCLUDE_DIR=.
CYTHON_SUB=cython
cython_python_bindings=yes
AC_MSG_RESULT([Using built-in libplist Cython bindings (assuming this is a first build)])
else
AC_SUBST([CYTHON_PLIST_INCLUDE_DIR])
AC_MSG_RESULT([$CYTHON_PLIST_INCLUDE_DIR])
CYTHON_SUB=cython
cython_python_bindings=yes
fi
else
CYTHON_SUB=
cython_python_bindings=no
fi
AM_CONDITIONAL([HAVE_CYTHON],[test "x$CYTHON_SUB" = "xcython"])
AC_SUBST([CYTHON_SUB])
AM_CONDITIONAL([HAVE_CYTHON],[test "x$cython_python_bindings" = "xyes"])
AS_COMPILER_FLAGS(GLOBAL_CFLAGS, "-Wall -Wextra -Wredundant-decls -Wshadow -Wpointer-arith -Wwrite-strings -Wswitch-default -Wno-unused-parameter -Wno-strict-aliasing -fvisibility=hidden $PTHREAD_CFLAGS")
GLOBAL_LDFLAGS="$PTHREAD_LIBS"
...
...
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