[gnome-network]patch to configure.in



Hi all,

	I have found an error launching autogen.sh

$ ./autogen.sh
....
configure: error: conditional "RFB" was never defined.
Usually this means the macro was only invoked conditionally.

	I attach a patch with the correction, moving the AM_CONDITIONAL out
from a if statement.

regards

-- 
Álvaro Peña González <apg esware com>
Esware Linux
Index: configure.in
===================================================================
RCS file: /cvs/gnome/gnome-network/configure.in,v
retrieving revision 1.107
diff -u -r1.107 configure.in
--- configure.in	27 Nov 2003 10:11:58 -0000	1.107
+++ configure.in	28 Nov 2003 09:45:18 -0000
@@ -40,8 +40,8 @@
 dnl provide PGK_CONFIG checks.
 AC_PATH_PROG(LIBVNC, libvncserver-config, no)
 
+AM_CONDITIONAL(RFB, test "x$LIBVNC" != "xno")
 if test "x$LIBVNC" != "xno"; then
-	AM_CONDITIONAL(RFB, test "x$LIBVNC" != "xno")
 	VNC_CFLAGS=`libvncserver-config --cflags`
 	VNC_LIBS=`libvncserver-config --libs`
 fi


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]