summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cfb3caa)
raw | patch | inline | side by side (parent: cfb3caa)
author | daleharvey <daleharvey@users.sourceforge.net> | |
Sat, 24 Jun 2006 01:37:00 +0000 (01:37 +0000) | ||
committer | daleharvey <daleharvey@users.sourceforge.net> | |
Sat, 24 Jun 2006 01:37:00 +0000 (01:37 +0000) |
Makefile.mingw.common | patch | blob | history | |
src/make.exclude | patch | blob | history | |
src/pedro/work/filerec.cpp | patch | blob | history | |
src/pedro/work/groupchat.cpp | patch | blob | history |
diff --git a/Makefile.mingw.common b/Makefile.mingw.common
index e9533b0f8bba8a0d40e75c2444f6d9a2157b005d..a3d6680125fe17459b1fbe9d78372ad18b130b31 100644 (file)
--- a/Makefile.mingw.common
+++ b/Makefile.mingw.common
####### Inkboard abilities.
####### You must 'make -f Makefile.mingw clean' when turning this on or off
-##CFLAGS += -DWITH_INKBOARD
+CFLAGS += -DWITH_INKBOARD
####### IMPLICIT RULES
.cpp.o:
diff --git a/src/make.exclude b/src/make.exclude
index 6ac66cc777f333a5849f483704fb05139c90ab96..e23adc6c37b859200c13f0fa77cf5409794f9a92 100644 (file)
--- a/src/make.exclude
+++ b/src/make.exclude
livarot/Path-test.cpp
main.cpp
mod360-test.cpp
-pedro
trace/potrace/potest.cpp
round-test.cpp
sp-gradient-test.cpp
# For the moment, DO NOT remove these from cvs
# until those files compile everywhere
###############################################
-# Uncomment the following to prevent building with Loudmouth
-###############################################
-dialogs/whiteboard-connect-dialog.cpp
-dialogs/whiteboard-common-dialog.cpp
-dialogs/whiteboard-sharewithchat-dialog.cpp
-dialogs/whiteboard-sharewithuser-dialog.cpp
-jabber_whiteboard
ui/dialog/session-player.cpp
ui/dialog/whiteboard-connect.cpp
ui/dialog/whiteboard-sharewithchat.cpp
ui/dialog/whiteboard-sharewithuser.cpp
+dialogs/whiteboard-connect-dialog.cpp
+dialogs/whiteboard-common-dialog.cpp
+dialogs/whiteboard-sharewithchat-dialog.cpp
+dialogs/whiteboard-sharewithuser-dialog.cpp
+
###############################################
-# Uncomment the following to prevent building with Pedro
+# Uncomment the following to prevent building with Loudmouth
###############################################
-jabber_whiteboard/pedroxmpp.h
-jabber_whiteboard/pedrodom.h
-jabber_whiteboard/pedroxmpp.cpp
-jabber_whiteboard/pedrodom.cpp
+jabber_whiteboard/node-tracker.cpp
+jabber_whiteboard/inkboard-session.h
+jabber_whiteboard/message-verifier.h
+jabber_whiteboard/node-tracker.h
+jabber_whiteboard/node-utilities.h
+jabber_whiteboard/inkboard-session.cpp
+jabber_whiteboard/node-utilities.cpp
###############################################
# Various test harnesses in removeoverlap
index 9fc8b8647d5be722d9cc2573bc05e9762975677f..01d9b6bd89e231f69fdc161b38a16050aa3cc666 100644 (file)
}
printf("#####GOT A FILE\n");
-
+/*
+TODO: Just Commented out to compile
if (!client.fileReceive(listener.from,
listener.iqId,
listener.streamId,
{
return false;
}
-
+*/
client.pause(1000000);
client.disconnect();
index 38a17abb6ebe0612c7fa46e48e1248f9f582f474..6c2e186d9a005c78295868f1df1755e789a5fd3a 100644 (file)
{
printf("PRESENCE\n");
printf("from : %s\n", evt.getFrom().c_str());
- printf("presence : %s\n", evt.getPresence().c_str());
+ //printf("presence : %s\n", evt.getPresence().c_str());
+ // TODO: Just Commented out to compile
break;
}
case Pedro::XmppEvent::EVENT_MUC_MESSAGE:
printf("MUC JOIN\n");
printf("group: %s\n", evt.getGroup().c_str());
printf("from : %s\n", evt.getFrom().c_str());
- printf("presence: %s\n", evt.getPresence().c_str());
+ //printf("presence: %s\n", evt.getPresence().c_str());
+ // TODO: Just Commented out to compile
break;
}
case Pedro::XmppEvent::EVENT_MUC_LEAVE:
printf("MUC LEAVE\n");
printf("group: %s\n", evt.getGroup().c_str());
printf("from : %s\n", evt.getFrom().c_str());
- printf("presence: %s\n", evt.getPresence().c_str());
+ //printf("presence: %s\n", evt.getPresence().c_str());
+ // TODO: Just Commented out to compile
break;
}
case Pedro::XmppEvent::EVENT_MUC_PRESENCE:
printf("MUC PRESENCE\n");
printf("group : %s\n", evt.getGroup().c_str());
printf("from : %s\n", evt.getFrom().c_str());
- printf("presence: %s\n", evt.getPresence().c_str());
+ //printf("presence: %s\n", evt.getPresence().c_str());
+ // TODO: Just Commented out to compile
break;
}