diff options
author | Dan Winship <danw@src.gnome.org> | 2000-07-07 12:10:38 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-07-07 12:10:38 +0800 |
commit | 85f3b5ebb879e611ffbd823d6ff7b3e2ce1cd936 (patch) | |
tree | be818406676749b6cdb9ed7aca300a0228d8d8e2 | |
parent | 2fd4f883fac06d433273ed2cef5dd5cb1ffa8abd (diff) | |
download | gsoc2013-evolution-85f3b5ebb879e611ffbd823d6ff7b3e2ce1cd936.tar gsoc2013-evolution-85f3b5ebb879e611ffbd823d6ff7b3e2ce1cd936.tar.gz gsoc2013-evolution-85f3b5ebb879e611ffbd823d6ff7b3e2ce1cd936.tar.bz2 gsoc2013-evolution-85f3b5ebb879e611ffbd823d6ff7b3e2ce1cd936.tar.lz gsoc2013-evolution-85f3b5ebb879e611ffbd823d6ff7b3e2ce1cd936.tar.xz gsoc2013-evolution-85f3b5ebb879e611ffbd823d6ff7b3e2ce1cd936.tar.zst gsoc2013-evolution-85f3b5ebb879e611ffbd823d6ff7b3e2ce1cd936.zip |
make pthreads not required again, since they aren't, and remove
* configure.in: make pthreads not required again, since they
aren't, and remove widgets/e-toolbar/Makefile from AC_OUTPUT since
that dir doesn't exist any more.
svn path=/trunk/; revision=3939
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 11 |
2 files changed, 11 insertions, 6 deletions
@@ -1,3 +1,9 @@ +2000-07-07 Dan Winship <danw@helixcode.com> + + * configure.in: make pthreads not required again, since they + aren't, and remove widgets/e-toolbar/Makefile from AC_OUTPUT since + that dir doesn't exist any more. + 2000-07-06 Chris Toshok <toshok@helixcode.com> * configure.in (AC_OUTPUT): remove the default_user Directories diff --git a/configure.in b/configure.in index e291d36f3c..2529377f74 100644 --- a/configure.in +++ b/configure.in @@ -165,17 +165,17 @@ dnl FIXME: support more thread types, pth at least GNOME_PTHREAD_CHECK -if test "x$PTHREAD_LIB" = "x" ; then - AC_MSG_ERROR([POSIX threads are currently required for Evolution]) -fi +dnl if test "x$PTHREAD_LIB" = "x" ; then +dnl AC_MSG_ERROR([POSIX threads are currently required for Evolution]) +dnl fi dnl dnl Notice that this is a hack, and we wont be able to use this forever, but dnl at least for some time dnl -THREADS_LIBS="$PTHREAD_LIB `glib-config --libs gthread`" -THREADS_CFLAGS="`glib-config --cflags gthread`" +dnl THREADS_LIBS="$PTHREAD_LIB `glib-config --libs gthread`" +dnl THREADS_CFLAGS="`glib-config --cflags gthread`" AC_SUBST(THREADS_LIBS) AC_SUBST(THREADS_CFLAGS) @@ -474,7 +474,6 @@ widgets/Makefile widgets/e-paned/Makefile widgets/e-table/Makefile widgets/e-text/Makefile -widgets/e-toolbar/Makefile widgets/meeting-time-sel/Makefile widgets/misc/Makefile widgets/shortcut-bar/Makefile |