Skip to content

Commit 50d9ff3

Browse files
committed
Migrating to github
1 parent f35b54c commit 50d9ff3

File tree

171 files changed

+4902
-2634
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

171 files changed

+4902
-2634
lines changed

.gitignore

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
gmon.out
2+
*.o
3+
*.la
4+
*.lo
25
*.swp
36
.deps
47
.libs
@@ -7,8 +10,8 @@ Makefile.in
710
install
811
src/libutil.la
912
src/libutil_la*
10-
test/test_util-*
11-
test/test_util
13+
test/test_utxx-*
14+
test/test_utxx
1215
test/example_repeating_timer-*
1316
test/example_repeating_timer
1417
test/generated
@@ -28,5 +31,5 @@ config.*
2831
configure
2932
libtool
3033
stamp-h1
31-
util.pc
34+
utxx.pc
3235
test.sh

LICENSE

+502
Large diffs are not rendered by default.

Makefile.am

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ SUBDIRS = src test
22
ACLOCAL_AMFLAGS = -I build-aux
33

44
pkgconfigdir = $(libdir)/pkgconfig
5-
nodist_pkgconfig_DATA = util.pc
5+
nodist_pkgconfig_DATA = utxx.pc
66

77
clean-local:
88
-rm -fr @default_prefix@
@@ -24,9 +24,9 @@ MAINTAINERCLEANFILES = configure build-aux/l*.m4 build-aux/*.sh \
2424
build-aux/install-sh build-aux/Doxyfile \
2525
aclocal.m4 Makefile.in src/Makefile.in \
2626
test/Makefile.in \
27-
util.pc
27+
utxx.pc
2828

2929
EXTRA_DIST = build-aux/boost.m4 build-aux/boost.m4.readme \
30-
build-aux/Doxyfile.in bootstrap
30+
build-aux/Doxyfile.in bootstrap LICENSE
3131

3232
.PHONY: docs doc

README

+1-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ util - an open-source collection of C++ miscelaneous components
2828

2929
Downloading
3030
===========
31-
$ git clone git@git.assembla.com:util.git
31+
$ git clone git@github.com:saleyn/utxx.git
3232

3333
Building
3434
========
@@ -53,5 +53,3 @@ Contributors
5353
LICENSE
5454
=======
5555
GNU Lesser General Public License
56-
57-

configure.ac

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# -*- Autoconf -*-
22

33
AC_PREREQ([2.63])
4-
AC_INIT([util], [0.1], [BUG-REPORT-ADDRESS])
4+
AC_INIT([utxx], [0.1], [BUG-REPORT-ADDRESS])
55
AC_CONFIG_AUX_DIR([build-aux])
66
AC_CONFIG_MACRO_DIR([build-aux])
77
AM_INIT_AUTOMAKE([foreign -Wall -Wno-portability])
88

9-
AC_SUBST([utildir], [$libdir/util])
9+
AC_SUBST([utxxdir], [$libdir/utxx])
1010

1111
# Default prefix
1212
AC_PREFIX_DEFAULT(`pwd`)
@@ -108,7 +108,7 @@ AC_CONFIG_FILES([Makefile])
108108
AC_CONFIG_FILES([src/Makefile])
109109
AC_CONFIG_FILES([test/Makefile])
110110
AC_CONFIG_FILES([test.sh], [chmod +x test.sh])
111-
AC_CONFIG_FILES([util.pc:util.pc.in])
111+
AC_CONFIG_FILES([utxx.pc:utxx.pc.in])
112112

113113
AC_OUTPUT
114114

include/util/boost/iovec_range.hpp

-48
This file was deleted.

include/util/delegate.hpp

-1
This file was deleted.

include/util/delegate/delegate.hpp

-31
This file was deleted.

include/util/delegate/detail/delegate_list.hpp

-189
This file was deleted.

0 commit comments

Comments
 (0)