E CVS: apps/e technikolor

2005-11-09 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : technikolor
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_dnd.h 


Log Message:
MIN def is ambiguous and not defined in this codebase.  Defining it here just 
in case.
===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_dnd.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- e_dnd.h 8 Oct 2005 13:10:19 -   1.23
+++ e_dnd.h 9 Nov 2005 10:58:09 -   1.24
@@ -129,3 +129,8 @@
 
 #endif
 #endif
+
+#ifndef MIN
+#define MIN(x, y) (((x) > (y)) ? (y) : (x))
+#endif
+




---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e technikolor

2005-11-08 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : technikolor
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/battery


Modified Files:
e_mod_main.c 


Log Message:
Patch submitted by Devon O\'Dell <[EMAIL PROTECTED]>.  A fix for FreeBSD/AMD64 
which lacks APM.
===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/modules/battery/e_mod_main.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -3 -r1.52 -r1.53
--- e_mod_main.c25 Oct 2005 10:51:25 -  1.52
+++ e_mod_main.c9 Nov 2005 07:56:20 -   1.53
@@ -1468,6 +1468,7 @@
 static Status *
 _battery_bsd_apm_check(Battery *ef)
 {
+#ifdef __i386__
int  ac_stat, bat_stat, bat_val, time_val;
char buf[4096];
int  hours, minutes;
@@ -1556,6 +1557,9 @@
  }

return stat;
+#else
+   return NULL;
+#endif
 }
 #endif
 




---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e technikolor

2003-02-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : technikolor
Project : e17
Module  : apps/e

Dir : e17/apps/e/src


Modified Files:
Makefile.am 


Log Message:
Yoink!  Say goodbye to GETTEXT in E.  Support issues with GT have been tedious and the 
codebase will be trashed in a month or two anyway, so for all parties concerned there 
is no reason to keep it.  I'm leaving some of the supplimentary files in the repo just 
incase we descide to do an about-face.  



===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/Makefile.am,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -3 -r1.53 -r1.54
--- Makefile.am 15 Jan 2003 18:29:54 -  1.53
+++ Makefile.am 2 Feb 2003 23:53:19 -   1.54
@@ -6,7 +6,6 @@
 DEBUGFLAGS = -W -Wall -g -DDEBUG #-DDEBUG_NEST
 
 INCLUDES = \
-   -I$(top_srcdir)/intl \
@evas_cflags@ @edb_cflags@ @ebits_cflags@ @ecore_cflags@ @efsd_cflags@ 
@ebg_cflags@ $(DEBUGFLAGS)
 
 bin_PROGRAMS = enlightenment
@@ -56,4 +55,4 @@
 e_view_look.h e_view_look.c \
e.h
 
-enlightenment_LDADD = @evas_libs@ @edb_libs@ @ebits_libs@ @ecore_libs@ @efsd_libs@ 
@ebg_libs@ -lm $(INTLLIBS)
+enlightenment_LDADD = @evas_libs@ @edb_libs@ @ebits_libs@ @ecore_libs@ @efsd_libs@ 
+@ebg_libs@ -lm 




---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs



E CVS: apps/e technikolor

2003-02-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : technikolor
Project : e17
Module  : apps/e

Dir : e17/apps/e/client


Modified Files:
Makefile.am 


Log Message:
Yoink!  Say goodbye to GETTEXT in E.  Support issues with GT have been tedious and the 
codebase will be trashed in a month or two anyway, so for all parties concerned there 
is no reason to keep it.  I'm leaving some of the supplimentary files in the repo just 
incase we descide to do an about-face.  



===
RCS file: /cvsroot/enlightenment/e17/apps/e/client/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.am 12 Mar 2001 01:06:09 -  1.1
+++ Makefile.am 2 Feb 2003 23:53:19 -   1.2
@@ -1,7 +1,6 @@
 ## Process this file with automake to produce Makefile.in
 
-INCLUDES = \
-   -I$(top_srcdir)/intl
+INCLUDES = 
 
 bin_PROGRAMS = e_ipc_client
 




---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs



E CVS: apps/e technikolor

2003-02-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : technikolor
Project : e17
Module  : apps/e

Dir : e17/apps/e/tools


Modified Files:
Makefile.am 


Log Message:
Yoink!  Say goodbye to GETTEXT in E.  Support issues with GT have been tedious and the 
codebase will be trashed in a month or two anyway, so for all parties concerned there 
is no reason to keep it.  I'm leaving some of the supplimentary files in the repo just 
incase we descide to do an about-face.  



===
RCS file: /cvsroot/enlightenment/e17/apps/e/tools/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 21 Apr 2002 07:22:58 -  1.6
+++ Makefile.am 2 Feb 2003 23:53:19 -   1.7
@@ -1,7 +1,6 @@
 ## Process this file with automake to produce Makefile.in
 
 INCLUDES = \
-   -I$(top_srcdir)/intl \
 @evas_cflags@ @edb_cflags@ @ebits_cflags@ @ecore_cflags@ @efsd_cflags@ 
@ebg_cflags@
 
 bin_PROGRAMS = e_img_import e_img_export e_setup
@@ -9,14 +8,14 @@
 e_img_import_SOURCES = \
 e_img_import.c
 
-e_img_import_LDADD = @evas_libs@ @edb_libs@ @ebits_libs@ @ecore_libs@ -lm $(INTLLIBS)
+e_img_import_LDADD = @evas_libs@ @edb_libs@ @ebits_libs@ @ecore_libs@ -lm
 
 e_img_export_SOURCES = \
 e_img_export.c
 
-e_img_export_LDADD = @evas_libs@ @edb_libs@ @ebits_libs@ @ecore_libs@ -lm $(INTLLIBS)
+e_img_export_LDADD = @evas_libs@ @edb_libs@ @ebits_libs@ @ecore_libs@ -lm
 
 e_setup_SOURCES = \
 e_setup.c
 
-e_setup_LDADD = @evas_libs@ @edb_libs@ @ebits_libs@ @ecore_libs@ @ebg_libs@ -lm 
$(INTLLIBS)
+e_setup_LDADD = @evas_libs@ @edb_libs@ @ebits_libs@ @ecore_libs@ @ebg_libs@ -lm 




---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs



E CVS: apps/e technikolor

2003-02-02 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : technikolor
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
Makefile.am autogen.sh configure.ac configure.in 


Log Message:
Yoink!  Say goodbye to GETTEXT in E.  Support issues with GT have been tedious and the 
codebase will be trashed in a month or two anyway, so for all parties concerned there 
is no reason to keep it.  I'm leaving some of the supplimentary files in the repo just 
incase we descide to do an about-face.  



===
RCS file: /cvsroot/enlightenment/e17/apps/e/Makefile.am,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- Makefile.am 15 Jan 2003 18:29:54 -  1.11
+++ Makefile.am 2 Feb 2003 23:53:18 -   1.12
@@ -1,6 +1,6 @@
 ## Process this file with automake to produce Makefile.in
 
-SUBDIRS = po src lib client tools doc
+SUBDIRS = src lib client tools doc
 
 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
config.h.in config.sub configure install-sh \
===
RCS file: /cvsroot/enlightenment/e17/apps/e/autogen.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- autogen.sh  15 Jan 2003 18:29:54 -  1.5
+++ autogen.sh  2 Feb 2003 23:53:18 -   1.6
@@ -29,28 +29,6 @@
   }
 }
 
-grep "^AM_GNU_GETTEXT" $srcdir/configure.in >/dev/null && {
-  grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \
-  (gettext --version) < /dev/null > /dev/null 2>&1 || {
-echo
-echo "**Error**: You must have \`gettext' installed."
-echo "Get ftp://alpha.gnu.org/gnu/gettext-0.10.35.tar.gz";
-echo "(or a newer version if it is available)"
-DIE=1
-  }
-}
-
-grep "^AM_GNOME_GETTEXT" $srcdir/configure.in >/dev/null && {
-  grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \
-  (gettext --version) < /dev/null > /dev/null 2>&1 || {
-echo
-echo "**Error**: You must have \`gettext' installed."
-echo "Get ftp://alpha.gnu.org/gnu/gettext-0.10.35.tar.gz";
-echo "(or a newer version if it is available)"
-DIE=1
-  }
-}
-
 (automake --version) < /dev/null > /dev/null 2>&1 || {
   echo
   echo "**Error**: You must have \`automake' installed."
@@ -104,26 +82,6 @@
##  echo "**Warning**: No such directory \`$k'.  Ignored."
 fi
   done
-  if grep "^AM_GNU_GETTEXT" configure.in >/dev/null; then
-   if grep "sed.*POTFILES" configure.in >/dev/null; then
- : do nothing -- we still have an old unmodified configure.in
-   else
- echo "Creating $dr/aclocal.m4 ..."
- test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
- echo "Running gettextize...  Ignore non-fatal messages."
- echo "no" | setup-gettext.sh
- echo "Making $dr/aclocal.m4 writable ..."
- test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
-fi
-  fi
-  if grep "^AM_GNOME_GETTEXT" configure.in >/dev/null; then
-   echo "Creating $dr/aclocal.m4 ..."
-   test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
-   echo "Running gettextize...  Ignore non-fatal messages."
-   echo "no" | setup-gettext.sh
-   echo "Making $dr/aclocal.m4 writable ..."
-   test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
-  fi
   if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then
echo "Running libtoolize..."
libtoolize --force --copy || abort "libtoolize"
===
RCS file: /cvsroot/enlightenment/e17/apps/e/configure.ac,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- configure.ac15 Jan 2003 18:29:54 -  1.15
+++ configure.ac2 Feb 2003 23:53:18 -   1.16
@@ -34,7 +34,6 @@
 
 dnl Add the languages which your application supports here.
 ALL_LINGUAS=""
-AM_GNU_GETTEXT
 
 dnl Set PACKAGE_LOCALE_DIR in config.h.
 if test "x${prefix}" = "xNONE"; then
@@ -234,7 +233,6 @@
 src/Makefile
 lib/Makefile
 client/Makefile
-po/Makefile.in
 tools/Makefile
 doc/Makefile
 doc/kernel-doc
===
RCS file: /cvsroot/enlightenment/e17/apps/e/configure.in,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -3 -r1.30 -r1.31
--- configure.in15 Jan 2003 18:29:54 -  1.30
+++ configure.in2 Feb 2003 23:53:18 -   1.31
@@ -33,7 +33,6 @@
 
 dnl Add the languages which your application supports here.
 ALL_LINGUAS=""
-AM_GNU_GETTEXT
 
 dnl Set PACKAGE_LOCALE_DIR in config.h.
 if test "x${prefix}" = "xNONE"; then
@@ -233,7 +232,6 @@
 src/Makefile
 lib/Makefile
 client/Makefile
-po/Makefile.in
 tools/Makefile
 doc/Makefile
 doc/kernel-doc




---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.c