diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2017-12-20 00:40:58 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2017-12-20 00:40:58 +0100 |
commit | dbfa491594e0c84079bebc991107e1b51a228433 (patch) | |
tree | 45c42b4abb81067f139b2acdffed18c8612577f8 /autogen.sh | |
parent | 8c051422c1673e57ce70cc9dccb6e136d901cc09 (diff) |
ptunnel-ng:
* fixed mingw64 cross compile issues
* using getaddrinfo instead of obsolete gethostbyname
* removed IS_WINDOWS AM_CONDITIONAL
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -3,11 +3,14 @@ set -e set -x -test -f ./Makefile && make distclean +OLDPWD=$(pwd) +cd $(dirname $0) +test -f Makefile && make distclean aclocal autoheader automake --force-missing --add-missing autoconf -./configure $@ && make -j${BUILDJOBS:-4} all +cd ${OLDPWD} +$(dirname $0)/configure $@ && make -j${BUILDJOBS:-4} all |