Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Goulet
Tor
Commits
b4c95bb4
Commit
b4c95bb4
authored
Dec 15, 2016
by
cypherpunks
Committed by
Nick Mathewson
Dec 23, 2016
Browse files
Report errors when updating configuration files
parent
a1c0ebc3
Changes
2
Show whitespace changes
Inline
Side-by-side
autogen.sh
View file @
b4c95bb4
#!/bin/sh
if
[
-x
"
`
which autoreconf 2>/dev/null
`
"
]
;
then
opt
=
"-i
f
"
opt
=
"-i
-f -W all,error
"
for
i
in
$@
;
do
case
"
$i
"
in
-v
)
opt
=
$opt
"
v"
opt
=
"
${
opt
}
-
v"
;;
esac
done
...
...
configure.ac
View file @
b4c95bb4
...
...
@@ -11,7 +11,7 @@ AC_CONFIG_MACRO_DIR([m4])
# "foreign" means we don't follow GNU package layout standards
# "1.11" means we require automake version 1.11 or newer
# "subdir-objects" means put .o files in the same directory as the .c files
AM_INIT_AUTOMAKE([foreign 1.11 subdir-objects])
AM_INIT_AUTOMAKE([foreign 1.11 subdir-objects
-Wall -Werror
])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_CONFIG_HEADERS([orconfig.h])
...
...
Write
Preview
Supports
Markdown
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