- Add patch-configure containing my currently preferred workaround for the

problem described in PR 31142
- Remove patch for same from patch-aa
- Tidy up pkg-{comment,desc} somewhat
This commit is contained in:
Johann Visagie 2001-11-14 14:26:46 +00:00
parent 6e76729a1c
commit c29c4bae56
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=50025
4 changed files with 33 additions and 29 deletions

View file

@ -1,25 +1,6 @@
--- Makefile.in.orig Thu Jul 12 23:46:03 2001 --- Makefile.in.orig Fri Aug 31 15:12:28 2001
+++ Makefile.in Fri Aug 3 12:52:00 2001 +++ Makefile.in Wed Nov 14 16:04:12 2001
@@ -146,6 +146,9 @@ @@ -382,7 +382,7 @@
cd $(top_srcdir) && $(AUTOHEADER)
@echo timestamp > $(srcdir)/src/stamp-h.in 2> /dev/null
+$(srcdir)/libtool: ltconfig
+ $(srcdir)/ltconfig $(srcdir)/ltmain.sh
+
mostlyclean-hdr:
clean-hdr:
@@ -327,7 +330,7 @@
uninstall-am: uninstall-local
uninstall: uninstall-recursive
all-am: Makefile
-all-redirect: all-recursive
+all-redirect: $(srcdir)/libtool all-recursive
install-strip:
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs: installdirs-recursive
@@ -382,7 +385,7 @@
install-exec-hook: install-exec-hook:
$(mkinstalldirs) $(bindir) $(mkinstalldirs) $(bindir)

View file

@ -0,0 +1,12 @@
--- configure.orig Sun Aug 26 20:27:01 2001
+++ configure Wed Nov 14 16:02:31 2001
@@ -4428,7 +4428,8 @@
# All known linkers require a `.a' archive for static linking (except M$VC,
# which needs '.lib').
libext=a
-ltmain="$ac_aux_dir/ltmain.sh"
+ac_aux_dir_tmp="$ac_aux_dir"
+ltmain="$ac_aux_dir_tmp/ltmain.sh"
ofile="$default_ofile"
with_gnu_ld="$lt_cv_prog_gnu_ld"
need_locks="$enable_libtool_lock"

View file

@ -1 +1 @@
ZThreads: a platform-independent object-oriented threading package A platform-independent object-oriented C++ threading library

View file

@ -1,7 +1,18 @@
The ZThread package is an advanced object-oriented, cross-platform, Paraphrasing the website:
C++ threading and synchronization library. It provides a high level
The ZThread package is an advanced object-oriented, cross-platform, C++
threading and synchronization library. It provides a high level
abstraction of the native threading mechanisms to offer a great deal of abstraction of the native threading mechanisms to offer a great deal of
flexibility and control. flexibility and control.
More information is available at the ZThreads homepage: ZThread features interruptible Thread and Runnable objects for C++, control
WWW: http://zthread.sourceforge.net/ objects and implementations of concurrency design patterns. This includes
semaphores, mutexes, condition variabes as well as other more complex
components.
ZThread implementations are provided for POSIX and Win32 platforms.
Author: Eric Crahen <crahen@cse.buffalo.edu>
WWW: http://www.cse.buffalo.edu/~crahen/projects/zthread/
-- Johann Visagie <wjv@FreeBSD.org>