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
41778c3d
Commit
41778c3d
authored
Oct 25, 2008
by
Jonathan Beck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix autotools conditional
parent
58799015
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
15 deletions
+16
-15
configure.ac
configure.ac
+2
-2
Makefile.am
src/Makefile.am
+14
-13
No files found.
configure.ac
View file @
41778c3d
...
@@ -43,13 +43,13 @@ AC_ARG_ENABLE([dev-tools],
...
@@ -43,13 +43,13 @@ AC_ARG_ENABLE([dev-tools],
[build development helper tools (default is no)])],
[build development helper tools (default is no)])],
[build_dev_tools=true],
[build_dev_tools=true],
[build_dev_tools=false])
[build_dev_tools=false])
AM_CONDITIONAL(
BUILD_DEV_TOOLS, test x$build_dev_tools = xtrue
)
AM_CONDITIONAL(
[BUILD_DEV_TOOLS], [test x$build_dev_tools = xtrue]
)
AC_ARG_ENABLE([debug-code],
AC_ARG_ENABLE([debug-code],
[AS_HELP_STRING([--enable-debug-code],
[AS_HELP_STRING([--enable-debug-code],
[enable debug message reporting in library (default is yes)])],
[enable debug message reporting in library (default is yes)])],
[debug_code=true],
[debug_code=true],
[debug_code=false])
[debug_code=false])
AM_CONDITIONAL(
STRIP_DEBUG_CODE, test x$debug_code = xfalse
)
AM_CONDITIONAL(
[STRIP_DEBUG_CODE], [test x$debug_code = xfalse]
)
AC_OUTPUT(Makefile src/Makefile include/Makefile fdi/Makefile libiphone-1.0.pc)
AC_OUTPUT(Makefile src/Makefile include/Makefile fdi/Makefile libiphone-1.0.pc)
src/Makefile.am
View file @
41778c3d
...
@@ -6,21 +6,22 @@ AM_LDFLAGS = $(libxml2_LIBS) $(libusb_LIBS) $(libglib2_LIBS) $(libgnutls_LIBS) $
...
@@ -6,21 +6,22 @@ AM_LDFLAGS = $(libxml2_LIBS) $(libusb_LIBS) $(libglib2_LIBS) $(libgnutls_LIBS) $
bin_PROGRAMS
=
libiphone-initconf
bin_PROGRAMS
=
libiphone-initconf
if
BUILD_DEV_TOOLS
if
BUILD_DEV_TOOLS
bin_PROGRAMS
=
iphoneclient libiphone-initconf lckd-client afccheck
bin_PROGRAMS
+=
iphoneclient lckd-client afccheck
iphoneclient_SOURCES
=
main.c
iphoneclient_LDADD
=
libiphone.la
lckd_client_SOURCES
=
lckdclient.c
lckd_client_CFLAGS
=
$(AM_CFLAGS)
lckd_client_LDFLAGS
=
-lreadline
$(AM_LDFLAGS)
lckd_client_LDADD
=
libiphone.la
afccheck_SOURCES
=
afccheck.c
afccheck_CFLAGS
=
$(AM_CFLAGS)
afccheck_LDFLAGS
=
$(AM_LDFLAGS)
afccheck_LDADD
=
libiphone.la
endif
endif
iphoneclient_SOURCES
=
main.c
iphoneclient_LDADD
=
libiphone.la
lckd_client_SOURCES
=
lckdclient.c
lckd_client_CFLAGS
=
$(AM_CFLAGS)
lckd_client_LDFLAGS
=
-lreadline
$(AM_LDFLAGS)
lckd_client_LDADD
=
libiphone.la
afccheck_SOURCES
=
afccheck.c
afccheck_CFLAGS
=
$(AM_CFLAGS)
afccheck_LDFLAGS
=
$(AM_LDFLAGS)
afccheck_LDADD
=
libiphone.la
libiphone_initconf_SOURCES
=
initconf.c userpref.c lockdown.c plist.c usbmux.c iphone.c utils.c
libiphone_initconf_SOURCES
=
initconf.c userpref.c lockdown.c plist.c usbmux.c iphone.c utils.c
libiphone_initconf_CFLAGS
=
$(libgthread2_CFLAGS)
$(AM_CFLAGS)
libiphone_initconf_CFLAGS
=
$(libgthread2_CFLAGS)
$(AM_CFLAGS)
libiphone_initconf_LDFLAGS
=
$(libgthread2_LIBS)
$(AM_LDFLAGS)
libiphone_initconf_LDFLAGS
=
$(libgthread2_LIBS)
$(AM_LDFLAGS)
...
...
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