Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
binwalk
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
binwalk
Commits
4f4122b1
Commit
4f4122b1
authored
10 years ago
by
devttys0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added cygwin specific build patches
parent
12fe62d5
master
…
v2.3.4
v2.3.3
v2.3.2
v2.3.1
v2.3.0
v2.2.0
v2.1.1
v2.0.1
v2.0.0
python27
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletions
+6
-1
Makefile.in
Makefile.in
+2
-1
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
No files found.
Makefile.in
View file @
4f4122b1
...
...
@@ -6,6 +6,7 @@ export prefix=@prefix@
export
exec_prefix
=
@exec_prefix@
export
LIBDIR
=
@libdir@
export
INSTALL_OPTIONS
=
@INSTALL_OPTIONS@
export
PLATFORM
=
@PLATFORM@
BUILD_C_LIBS
=
@BUILD_C_LIBS@
PYTHON
=
@PYTHON@
...
...
@@ -18,7 +19,7 @@ all: build
install
:
build
if
[
"
$(BUILD_C_LIBS)
"
-eq
"1"
]
;
then
make
-C
$(SRC_C_DIR)
install
;
fi
$(PYTHON)
./setup.py install
if
[
"
$(BUILD_C_LIBS)
"
-eq
"1"
]
;
then
ldconfig
||
true
;
fi
if
[
"
$(BUILD_C_LIBS)
"
-eq
"1"
]
&&
[
"
$(PLATFORM)
"
!=
"Cygwin"
]
;
then
ldconfig
||
true
;
fi
deps
:
./deps.sh
...
...
This diff is collapsed.
Click to expand it.
configure
View file @
4f4122b1
...
...
@@ -600,6 +600,7 @@ ac_includes_default="\
ac_subst_vars
=
'LTLIBOBJS
INSTALL_OPTIONS
PLATFORM
SOEXT
SONAME
PYTHON
...
...
@@ -3334,6 +3335,8 @@ SONAME=$SONAME
SOEXT
=
$SOEXT
PLATFORM
=
$(
uname
-o
)
INSTALL_OPTIONS
=
$INSTALL_OPTIONS
ac_config_files
=
"
$ac_config_files
Makefile"
...
...
This diff is collapsed.
Click to expand it.
configure.ac
View file @
4f4122b1
...
...
@@ -41,6 +41,7 @@ AC_SUBST(BUILD_C_LIBS, $BUILD_C_LIBS)
AC_SUBST(PYTHON, $PYTHON)
AC_SUBST(SONAME, $SONAME)
AC_SUBST(SOEXT, $SOEXT)
AC_SUBST(PLATFORM, $(uname -o))
AC_SUBST(INSTALL_OPTIONS, $INSTALL_OPTIONS)
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
This diff is collapsed.
Click to expand it.
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