-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Gettext related changes avoid using "po" directory - remove old argp related code add support for `argp-standalone` - remove legacy broken code 'file_transfer.{c,h}' - Do not expose jabber registration code, TODO
- Loading branch information
Harshavardhana
committed
Apr 17, 2014
1 parent
1c91da8
commit 18c7ad8
Showing
54 changed files
with
7,647 additions
and
1,082 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,9 @@ config.guess | |
config.sub | ||
config.status | ||
configure | ||
config.h.in | ||
config.h | ||
stamp-h1 | ||
depcomp | ||
extensions/init.scm | ||
extensions/first-time-run.sh | ||
|
@@ -44,4 +47,5 @@ m4/ | |
src/freetalk | ||
po/[email protected] | ||
po/[email protected] | ||
po/remove-potcdate.sed | ||
po/remove-potcdate.sed | ||
contrib/argp-standalone/libargp.a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
TODO: | ||
1. Fix the bug introduced by invisible mode during freetalk to freetalk communication. | ||
|
||
1. Fix the bug introduced by invisible mode during freetalk to freetalk communication. | ||
Gtalk to freetalk Invisible mode works properly due to some additional handling of | ||
gtalk client from Google. | ||
|
||
2. File transfer code cleanup, fix it for new jabber protocol for file transfer | ||
2. File transfer code cleanup, fix it for new jabber protocol for file transfer | ||
(Atleast fix it somehow :P) | ||
|
||
3. Add new command like "/refresh" to get new list roster list from Jabber/Google server | ||
and also atleast make it dynamic, as there is occasional hanging of the roster list | ||
under invisible mode and other modes too. | ||
3. Add new command like "/refresh" to get new list roster list from Jabber/Google server | ||
and also atleast make it dynamic, as there is occasional hanging of the roster list | ||
under invisible mode and other modes too. | ||
|
||
4. Show idle if no activity on the terminal for 5 or more minutes. | ||
4. Show idle if no activity on the terminal for 5 or more minutes. | ||
|
||
5. Fix needed in handling of a notification of a statement "typing... " to be sent to Gtalk | ||
while the user is typing some content to be sent on the terminal of freetalk. | ||
5. Fix needed in handling of a notification of a statement "typing... " to be sent to Gtalk | ||
while the user is typing some content to be sent on the terminal of freetalk. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,79 @@ | ||
#!/bin/bash | ||
autopoint -f | ||
aclocal | ||
autoconf | ||
automake --add-missing | ||
|
||
echo "Now run ./configure and make" | ||
echo | ||
echo ... GlusterFS autogen ... | ||
echo | ||
|
||
## Check all dependencies are present | ||
MISSING="" | ||
|
||
# Check for aclocal | ||
env aclocal --version > /dev/null 2>&1 | ||
if [ $? -eq 0 ]; then | ||
ACLOCAL=aclocal | ||
else | ||
MISSING="$MISSING aclocal" | ||
fi | ||
|
||
# Check for autoconf | ||
env autoconf --version > /dev/null 2>&1 | ||
if [ $? -eq 0 ]; then | ||
AUTOCONF=autoconf | ||
else | ||
MISSING="$MISSING autoconf" | ||
fi | ||
|
||
# Check for autoheader | ||
env autoheader --version > /dev/null 2>&1 | ||
if [ $? -eq 0 ]; then | ||
AUTOHEADER=autoheader | ||
else | ||
MISSING="$MISSING autoheader" | ||
fi | ||
|
||
# Check for automake | ||
env automake --version > /dev/null 2>&1 | ||
if [ $? -eq 0 ]; then | ||
AUTOMAKE=automake | ||
else | ||
MISSING="$MISSING automake" | ||
fi | ||
|
||
# Check for tar | ||
env tar -cf /dev/null /dev/null > /dev/null 2>&1 | ||
if [ $? -ne 0 ]; then | ||
MISSING="$MISSING tar" | ||
fi | ||
|
||
## If dependencies are missing, warn the user and abort | ||
if [ "x$MISSING" != "x" ]; then | ||
echo "Aborting." | ||
echo | ||
echo "The following build tools are missing:" | ||
echo | ||
for pkg in $MISSING; do | ||
echo " * $pkg" | ||
done | ||
echo | ||
echo "Please install them and try again." | ||
echo | ||
exit 1 | ||
fi | ||
|
||
## Do the autogeneration | ||
echo Running ${ACLOCAL}... | ||
$ACLOCAL | ||
echo Running ${AUTOHEADER}... | ||
$AUTOHEADER | ||
echo Running ${AUTOCONF}... | ||
$AUTOCONF | ||
echo Running ${AUTOMAKE}... | ||
$AUTOMAKE --add-missing --copy --foreign | ||
|
||
# Run autogen in the argp-standalone sub-directory | ||
echo "Running autogen.sh in argp-standalone ..." | ||
( cd contrib/argp-standalone;./autogen.sh ) | ||
|
||
# Instruct user on next steps | ||
echo | ||
echo "Please proceed with configuring, compiling, and installing." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# From glibc | ||
|
||
# Copyright (C) 1997, 2003, 2004 Free Software Foundation, Inc. | ||
# This file is part of the GNU C Library. | ||
|
||
# The GNU C Library is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Library General Public License as | ||
# published by the Free Software Foundation; either version 2 of the | ||
# License, or (at your option) any later version. | ||
|
||
# The GNU C Library is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# Library General Public License for more details. | ||
|
||
# You should have received a copy of the GNU Library General Public | ||
# License along with the GNU C Library; see the file COPYING.LIB. If | ||
# not, write to the Free Software Foundation, Inc., | ||
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
AUTOMAKE_OPTIONS = foreign | ||
SUBDIRS = . | ||
|
||
LIBOBJS = @LIBOBJS@ | ||
|
||
noinst_LIBRARIES = libargp.a | ||
|
||
noinst_HEADERS = argp.h argp-fmtstream.h argp-namefrob.h | ||
|
||
EXTRA_DIST = mempcpy.c strchrnul.c strndup.c strcasecmp.c vsnprintf.c autogen.sh | ||
|
||
# Leaves out argp-fs-xinl.c and argp-xinl.c | ||
libargp_a_SOURCES = argp-ba.c argp-eexst.c argp-fmtstream.c \ | ||
argp-help.c argp-parse.c argp-pv.c \ | ||
argp-pvh.c | ||
|
||
libargp_a_LIBADD = $(LIBOBJS) | ||
|
||
|
Oops, something went wrong.