[gtk-vnc] Rename gvnc.[h,c] -> vncconnection.[h,c]



commit a53062248e150a88847dd0760ad83146ee2335c3
Author: Daniel P. Berrange <berrange redhat com>
Date:   Tue Nov 17 22:34:34 2009 +0000

    Rename gvnc.[h,c] -> vncconnection.[h,c]

 autogen.sh                      |    6 +++---
 configure.ac                    |    2 +-
 src/Makefile.am                 |    2 +-
 src/{gvnc.c => vncconnection.c} |    2 +-
 src/{gvnc.h => vncconnection.h} |    0
 src/vncdisplay.c                |    2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/autogen.sh b/autogen.sh
index 371b98b..1d2a117 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -39,8 +39,8 @@ if test "$DIE" -eq 1; then
 fi
 
 if test -z "$*"; then
-	echo "I am going to run ./configure with --enable-warnings - if you "
-        echo "wish to pass any extra arguments to it, please specify them on "
+	echo "I am going to run ./configure with --enable-compile-warnings=maximum"
+        echo "If you wish to pass any extra arguments to it, please specify them on "
         echo "the $0 command line."
 fi
 
@@ -55,7 +55,7 @@ rm -f COPYING
 
 cd $THEDIR
 
-$srcdir/configure --enable-warnings "$@" && {
+$srcdir/configure --enable-compile-warnings=maximum "$@" && {
     echo
     echo "Now type 'make' to compile gtk-vnc."
 }
diff --git a/configure.ac b/configure.ac
index 20ea5c2..132b6fe 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT([gtk-vnc], [0.3.10])
-AC_CONFIG_SRCDIR([src/gvnc.c])
+AC_CONFIG_SRCDIR([src/vncconnection.c])
 dnl Causes problems with RHEL-5 vintage intltool
 dnl AC_CONFIG_AUX_DIR([build-aux])
 AM_CONFIG_HEADER([config.h])
diff --git a/src/Makefile.am b/src/Makefile.am
index e1d5552..5b295f1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -24,7 +24,7 @@ libgtk_vnc_1_0_la_SOURCES = blt.h blt1.h \
 	coroutine.h \
 	d3des.h d3des.c \
 	dh.h dh.c \
-	gvnc.h gvnc.c \
+	vncconnection.h vncconnection.c \
 	vncdisplay.h vncdisplay.c \
         vncmarshal.h vncmarshal.c \
 	x_keymap.h x_keymap.c vnc_keycodes.h \
diff --git a/src/gvnc.c b/src/vncconnection.c
similarity index 99%
rename from src/gvnc.c
rename to src/vncconnection.c
index c42fd6e..e1484c9 100644
--- a/src/gvnc.c
+++ b/src/vncconnection.c
@@ -20,7 +20,7 @@
 
 #include <config.h>
 
-#include "gvnc.h"
+#include "vncconnection.h"
 
 #include <sys/socket.h>
 #include <netinet/in.h>
diff --git a/src/gvnc.h b/src/vncconnection.h
similarity index 100%
rename from src/gvnc.h
rename to src/vncconnection.h
diff --git a/src/vncdisplay.c b/src/vncdisplay.c
index d6464f7..6c5df3f 100644
--- a/src/vncdisplay.c
+++ b/src/vncdisplay.c
@@ -23,7 +23,7 @@
 
 #include "vncdisplay.h"
 #include "coroutine.h"
-#include "gvnc.h"
+#include "vncconnection.h"
 #include "utils.h"
 #include "vncmarshal.h"
 #include "config.h"



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