]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix bug #1805 cannot specify hostname in ./configure
authorKern Sibbald <kern@sibbald.com>
Thu, 19 Apr 2012 09:17:13 +0000 (11:17 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:50:36 +0000 (14:50 +0200)
bacula/autoconf/configure.in

index 02b17a342699d04fa7a0567982d5856208d94799..acbdf2f9087c6b9cfe2061ab3f29e05647c959d9 100644 (file)
@@ -1264,6 +1264,11 @@ hostname=`uname -n | cut -d '.' -f 1`
 if test x${hostname} = x ; then
   hostname="localhost"
 fi
+dnl Make sure hostname is resolved
+ping -c 1 $hostname 2>/dev/null 1>/dev/null
+if test ! $? = 0; then
+  hostname="localhost"
+fi
 AC_ARG_WITH(hostname,
    AC_HELP_STRING([--with-hostname=RESNAME], [specify host name for daemons]),
    [
@@ -2858,16 +2863,6 @@ WIN32=
 MACOSX=
 COMPRESS_MANPAGES=yes
 
-hostname=`uname -n | cut -d '.' -f 1`
-if test x${hostname} = x ; then
-   hostname="localhost"
-fi
-dnl Make sure hostname is resolved
-ping -c 1 $hostname 2>/dev/null 1>/dev/null
-if test ! $? = 0; then
-  hostname="localhost"
-fi
-
 case "$DISTNAME" in
 aix)
    DISTVER=`uname -r`