|
From: <enl...@li...> - 2001-05-01 18:00:41
|
Enlightenment CVS committal
Author : rbdpngn
Project : e17
Module : libs/ewd
Dir : e17/libs/ewd
Modified Files:
Makefile.am configure.in ewd-config.in missing
Log Message:
Committing some major changes so that things will compile. Don't bother trying
to use the hash code right now. It's a mess of stuff I was experimenting with.
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewd/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.am 2001/04/14 07:19:16 1.2
+++ Makefile.am 2001/05/01 18:00:10 1.3
@@ -2,10 +2,9 @@
SUBDIRS = src test
-MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
- config.h.in config.sub configure install-sh \
- ltconfig ltmain.sh missing mkinstalldirs \
- stamp-h.in
+MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess ewd-config.h.in \
+ config.sub configure install-sh ltconfig ltmain.sh \
+ missing mkinstalldirs stamp-h.in
dist-hook:
if test -d data; then \
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewd/configure.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- configure.in 2001/04/14 07:19:16 1.2
+++ configure.in 2001/05/01 18:00:10 1.3
@@ -2,7 +2,7 @@
AC_INIT(configure.in)
AM_INIT_AUTOMAKE(ewd, 0.0.1)
-AM_CONFIG_HEADER(config.h)
+AM_CONFIG_HEADER(ewd-config.h)
AC_ISC_POSIX
AC_PROG_CC
@@ -12,7 +12,8 @@
AM_WITH_DMALLOC
-AC_CHECK_HEADERS(pthread.h,AC_DEFINE_UNQUOTED(HAVE_PTHREADS, "1"),AC_MSG_ERROR([*** POSIX thread support not found ***]))
+AC_CHECK_HEADERS(pthread.h,AC_DEFINE_UNQUOTED(HAVE_PTHREADS, "yes"),
+ AC_MSG_ERROR([*** POSIX thread support not found ***]))
dnl Set PACKAGE_LOCALE_DIR in config.h.
if test "x${prefix}" = "xNONE"; then
@@ -48,7 +49,7 @@
AC_OUTPUT([
Makefile
-config.h
+ewd-config.h
ewd-config
src/Makefile
test/Makefile
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewd/ewd-config.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ewd-config.in 2001/04/10 16:19:14 1.2
+++ ewd-config.in 2001/05/01 18:00:10 1.3
@@ -46,7 +46,7 @@
;;
--libs)
libdirs=-L@libdir@
- echo $libdirs -lewd -lm
+ echo $libdirs -lewd -lm -lpthreads
;;
*)
echo "${usage}" 1>&2
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewd/missing,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- missing 2001/04/09 19:49:16 1.1.1.1
+++ missing 2001/05/01 18:00:10 1.2
@@ -39,7 +39,7 @@
Supported PROGRAM values:
aclocal touch file \`aclocal.m4'
autoconf touch file \`configure'
- autoheader touch file \`config.h.in'
+ autoheader touch file \`ewd-config.h.in'
automake touch all \`Makefile.in' files
bison create \`y.tab.[ch]', if possible, from existing .[ch]
flex create \`lex.yy.c', if possible, from existing .c
@@ -83,7 +83,7 @@
to install the \`Autoconf' and \`GNU m4' packages. Grab them
from any GNU archive site."
files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' configure.in`
- test -z "$files" && files="config.h"
+ test -z "$files" && files="ewd-config.h"
touch_files=
for f in $files; do
case "$f" in
|