File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change
1
+ INSTALL
1
2
test-driver
2
3
test /test-suite.log
3
4
test /test_all.sh.log
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ rm -f src/*.o src/nip2 src/Makefile src/Makefile.in
13
13
ACDIR=` aclocal --print-ac-dir`
14
14
15
15
# OS X with brew sets ACDIR to
16
- # /usr/local/Cellar/automake/1.13.1 /share/aclocal, the staging area, which is
16
+ # /usr/local/Cellar/automake/x.y.z /share/aclocal, the staging area, which is
17
17
# totally wrong argh
18
18
if [ ! -d $ACDIR ]; then
19
19
ACDIR=/usr/local/share/aclocal
@@ -24,12 +24,11 @@ cp $ACDIR/codeset.m4 m4
24
24
cp $ACDIR /gettext.m4 m4
25
25
cp $ACDIR /glibc21.m4 m4
26
26
cp $ACDIR /iconv.m4 m4
27
- cp $ACDIR /isc-posix.m4 m4
28
27
cp $ACDIR /lcmessage.m4 m4
29
28
cp $ACDIR /progtest.m4 m4
30
29
31
30
# some systems need libtoolize, some glibtoolize ... how annoying
32
- echo testing for glibtoolize ...
31
+ echo -n " testing for glibtoolize ... "
33
32
if glibtoolize --version > /dev/null 2>&1 ; then
34
33
LIBTOOLIZE=glibtoolize
35
34
echo using glibtoolize
39
38
fi
40
39
41
40
aclocal
42
- glib-gettextize --force --copy
41
+ # this produces a lot of benign but misleading output ... hide it and hope for
42
+ # the best
43
+ glib-gettextize --force --copy > /dev/null
43
44
test -r aclocal.m4 && chmod u+w aclocal.m4
44
45
autoconf
45
46
autoheader
Original file line number Diff line number Diff line change 1
1
# Process this file with autoconf to produce a configure script.
2
2
3
- AC_INIT ( [ nip2] , [ 8.3.0] )
3
+ AC_INIT ( [ nip2] ,
[ 8.3.0] , [ [email protected] ] )
4
4
5
5
# foreign stops complaints about a missing README (we use README.md instead)
6
6
# and missing INSTALL (the standard Gnu INSTALL is not very useful)
7
- AM_INIT_AUTOMAKE ( [ -Wall foreign] )
7
+ AM_INIT_AUTOMAKE ( [ -Wno-portability foreign] )
8
8
9
9
AC_CONFIG_HEADERS ( config.h )
10
10
AC_CONFIG_MACRO_DIR ( [ m4] )
You can’t perform that action at this time.
0 commit comments