Changeset 361
- Timestamp:
- 04/23/08 23:24:34 (7 months ago)
- Location:
- trunk
- Files:
-
- 7 modified
-
thrucommon/bootstrap.sh (modified) (1 diff)
-
thrucommon/src/FileLogger.cpp (modified) (1 diff)
-
thrudex/bootstrap.sh (modified) (1 diff)
-
thrudex/configure.in (modified) (1 diff)
-
thrudex/src/LogBackend.cpp (modified) (1 diff)
-
thrudoc/bootstrap.sh (modified) (1 diff)
-
thrudoc/src/LogBackend.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thrucommon/bootstrap.sh
r319 r361 1 #! /bin/sh1 #!/bin/sh 2 2 3 #autoscan 4 libtoolize --copy --force 5 aclocal -I config/ac-macros 6 autoheader 7 touch NEWS README AUTHORS ChangeLog 8 automake --add-missing --copy 9 autoconf 3 #for macports 4 if test -d /opt/local/share/aclocal; then 5 aclocal -I /opt/local/share/aclocal || exit 1 6 else 7 aclocal || exit 1 8 fi 9 10 autoscan || exit 1 11 autoheader || exit 1 12 13 if libtoolize --version 1 >/dev/null 2>/dev/null; then 14 libtoolize --automake || exit 1 15 elif glibtoolize --version 1 >/dev/null 2>/dev/null; then 16 glibtoolize --automake || exit 1 17 fi 18 19 autoconf 20 automake -ac --add-missing --foreign || exit 1 -
trunk/thrucommon/src/FileLogger.cpp
r339 r361 20 20 21 21 #include <stdexcept> 22 #include <sys/time.h> 22 23 23 24 namespace fs = boost::filesystem; -
trunk/thrudex/bootstrap.sh
r325 r361 1 #! /bin/sh1 #!/bin/sh 2 2 3 #autoscan 4 libtoolize --copy --force 5 aclocal -I config 6 autoheader 7 touch NEWS README AUTHORS ChangeLog 8 automake --add-missing --copy 9 autoconf 3 #for macports 4 if test -d /opt/local/share/aclocal; then 5 aclocal -I /opt/local/share/aclocal || exit 1 6 else 7 aclocal || exit 1 8 fi 9 10 autoscan || exit 1 11 autoheader || exit 1 12 13 if libtoolize --version 1 >/dev/null 2>/dev/null; then 14 libtoolize --automake || exit 1 15 elif glibtoolize --version 1 >/dev/null 2>/dev/null; then 16 glibtoolize --automake || exit 1 17 fi 18 19 autoconf 20 automake -ac --add-missing --foreign || exit 1 -
trunk/thrudex/configure.in
r339 r361 74 74 # misc 75 75 AC_C_CONST 76 AC_CHECK_FUNCS([ memsetmkdir setlocale])76 AC_CHECK_FUNCS([clock_gettime gettimeofday memset poll socket strcasecmp strchr strdup mkdir setlocale]) 77 77 AC_CHECK_HEADERS([stdlib.h]) 78 78 AC_C_INLINE -
trunk/thrudex/src/LogBackend.cpp
r339 r361 18 18 #include "LogBackend.h" 19 19 #include "utils.h" 20 20 #include <sys/time.h> 21 21 #include <stdexcept> 22 22 -
trunk/thrudoc/bootstrap.sh
r216 r361 1 #! /bin/sh1 #!/bin/sh 2 2 3 #autoscan 4 libtoolize --copy --force 5 aclocal -I config 6 autoheader 7 touch NEWS README AUTHORS ChangeLog 8 automake --add-missing --copy 9 autoconf 3 #for macports 4 if test -d /opt/local/share/aclocal; then 5 aclocal -I /opt/local/share/aclocal || exit 1 6 else 7 aclocal || exit 1 8 fi 9 10 autoscan || exit 1 11 autoheader || exit 1 12 13 if libtoolize --version 1 >/dev/null 2>/dev/null; then 14 libtoolize --automake || exit 1 15 elif glibtoolize --version 1 >/dev/null 2>/dev/null; then 16 glibtoolize --automake || exit 1 17 fi 18 19 autoconf 20 automake -ac --add-missing --foreign || exit 1 -
trunk/thrudoc/src/LogBackend.cpp
r339 r361 20 20 21 21 #include <stdexcept> 22 #include <sys/time.h> 22 23 23 24 namespace fs = boost::filesystem;
