diff options
author | steve <steve@FreeBSD.org> | 2000-01-29 22:26:02 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-01-29 22:26:02 +0000 |
commit | 4bb5dea3e3c2146de88aff3ff1c80c35dad6076b (patch) | |
tree | 96fb9b787d96654fc3f8195ea2fd2052a41de12a /devel/libsigc++/files | |
parent | 79d7ae401be5a8d7338aa94f386a5e33a9299a58 (diff) | |
download | FreeBSD-ports-4bb5dea3e3c2146de88aff3ff1c80c35dad6076b.zip FreeBSD-ports-4bb5dea3e3c2146de88aff3ff1c80c35dad6076b.tar.gz |
Adding libsigc++ version 0.8.6.
A callback framework for C++.
PR: 16419
Submitted by: Joe Lu <JoeLu@JoeLu.m8.ntu.edu.tw>
Diffstat (limited to 'devel/libsigc++/files')
-rw-r--r-- | devel/libsigc++/files/patch-aa | 11 | ||||
-rw-r--r-- | devel/libsigc++/files/patch-ab | 29 | ||||
-rw-r--r-- | devel/libsigc++/files/patch-ac | 20 | ||||
-rw-r--r-- | devel/libsigc++/files/patch-ad | 11 | ||||
-rw-r--r-- | devel/libsigc++/files/patch-ae | 11 |
5 files changed, 82 insertions, 0 deletions
diff --git a/devel/libsigc++/files/patch-aa b/devel/libsigc++/files/patch-aa new file mode 100644 index 0000000..8c62291 --- /dev/null +++ b/devel/libsigc++/files/patch-aa @@ -0,0 +1,11 @@ +--- Makefile.in Thu Jan 20 03:40:54 2000 ++++ Makefile.in Thu Jan 27 23:34:05 1994 +@@ -80,7 +80,7 @@ + USE_SYMBOL_UNDERSCORE = @USE_SYMBOL_UNDERSCORE@ + VERSION = @VERSION@ + +-SUBDIRS = sigc++ tests ++SUBDIRS = sigc++ + DIST_SUBDIRS = sigc++ examples tests scripts + + bin_SCRIPTS = sigc-config diff --git a/devel/libsigc++/files/patch-ab b/devel/libsigc++/files/patch-ab new file mode 100644 index 0000000..89440f4 --- /dev/null +++ b/devel/libsigc++/files/patch-ab @@ -0,0 +1,29 @@ +--- configure Wed Jan 19 15:06:41 2000 ++++ configure Thu Jan 27 23:33:56 1994 +@@ -2810,14 +2810,14 @@ + + if test "x$enable_threads" = "xyes" ; then + enable_threads="no" +-echo $ac_n "checking for pthread_self in -lpthread""... $ac_c" 1>&6 +-echo "configure:2815: checking for pthread_self in -lpthread" >&5 ++echo $ac_n "checking for pthread_self in -lc_r""... $ac_c" 1>&6 ++echo "configure:2815: checking for pthread_self in -lc_r" >&5 + ac_lib_var=`echo pthread'_'pthread_self | sed 'y%./+-%__p_%'` + if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + ac_save_LIBS="$LIBS" +-LIBS="-lpthread $LIBS" ++LIBS="-pthread -lc_r $LIBS" + cat > conftest.$ac_ext <<EOF + #line 2823 "configure" + #include "confdefs.h" +@@ -2848,7 +2848,7 @@ + fi + if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 +- enable_threads="yes";THREAD_LIB="-lpthread" ++ enable_threads="yes";THREAD_LIB="-pthread -lc_r" + else + echo "$ac_t""no" 1>&6 + fi diff --git a/devel/libsigc++/files/patch-ac b/devel/libsigc++/files/patch-ac new file mode 100644 index 0000000..5ee58ac --- /dev/null +++ b/devel/libsigc++/files/patch-ac @@ -0,0 +1,20 @@ +--- sigc++/Makefile.in Thu Jan 20 03:40:56 2000 ++++ sigc++/Makefile.in Thu Jan 27 23:40:23 1994 +@@ -65,7 +65,7 @@ + CXX = @CXX@ + DLLTOOL = @DLLTOOL@ + LD = @LD@ +-LIBSIGC_SO_VERSION = @LIBSIGC_SO_VERSION@ ++LIBSIGC_SO_VERSION = 1:0:0 + LIBTOOL = @LIBTOOL@ + LN_S = @LN_S@ + M4 = @M4@ +@@ -90,7 +90,7 @@ + libsigc_la_SOURCES = object.cc scope.cc marshal.cc slot.cc basic_signal.cc adaptor.cc thread.cc + + +-libsigc_la_LDFLAGS = -version-info $(LIBSIGC_SO_VERSION) -release $(SIGC_RELEASE) -no-undefined ++libsigc_la_LDFLAGS = -version-info $(LIBSIGC_SO_VERSION) -no-undefined + + libsigcdir = $(prefix)/include/sigc++ + diff --git a/devel/libsigc++/files/patch-ad b/devel/libsigc++/files/patch-ad new file mode 100644 index 0000000..4a95cca --- /dev/null +++ b/devel/libsigc++/files/patch-ad @@ -0,0 +1,11 @@ +--- sigc++/config/Makefile.in Thu Jan 20 03:40:58 2000 ++++ sigc++/config/Makefile.in Thu Jan 27 23:34:37 1994 +@@ -81,7 +81,7 @@ + + EXTRA_DIST = sigc++config.h.in + +-includedir = $(libdir)/sigc++/include ++includedir = $(prefix)/include/sigc++ + include_HEADERS = sigc++config.h + mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs + CONFIG_HEADER = sigc++config.h diff --git a/devel/libsigc++/files/patch-ae b/devel/libsigc++/files/patch-ae new file mode 100644 index 0000000..338287c --- /dev/null +++ b/devel/libsigc++/files/patch-ae @@ -0,0 +1,11 @@ +--- sigc++/macros/Makefile.in Thu Jan 20 03:40:59 2000 ++++ sigc++/macros/Makefile.in Fri Jan 28 00:03:54 1994 +@@ -83,7 +83,7 @@ + templates = template.macros.m4 slot.h.m4 func_slot.h.m4 class_slot.h.m4 object_slot.h.m4 basic_signal.h.m4 bind.h.m4 rettype.h.m4 convert.h.m4 + + +-m4includedir = $(includedir)/sigc++/macros ++m4includedir = $(prefix)/share/libsigc++ + m4include_HEADERS = $(templates) + + EXTRA_DIST = README $(templates) |