commit: r394 - in trunk: . daemon libspread stdutil
[email protected] Wed, 05 Mar 2008 11:17:20 -0500
| Newsgroups | gmane.network.spread.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: jonathan Date: 2008-03-05 11:17:20 -0500 (Wed, 05 Mar 2008) New Revision: 394 Modified: trunk/CVS_Readme.txt trunk/configure.in trunk/daemon/Changelog trunk/libspread/Makefile.in trunk/stdutil/configure.in Log: Fix svn checkout instruction line. Apply patch from Peter Friend to fix bug compiling on solaris 10. Add changelog entry for Johns old stdutil fix. Modified: trunk/CVS_Readme.txt =================================================================== --- trunk/CVS_Readme.txt 2007-01-24 22:41:09 UTC (rev 393) +++ trunk/CVS_Readme.txt 2008-03-05 16:17:20 UTC (rev 394) @@ -7,7 +7,7 @@ To checkout a copy you need to have submitted a ssh public key as described on the www.spread.org/devel/ webpage. Then run: -svn checkout svn+ssh://svn.spread.org/spread/trunk spread +svn checkout svn+ssh://[email protected]/spread/trunk spread You should now have a 'spread' directory which contains the subdirectories: Modified: trunk/configure.in =================================================================== --- trunk/configure.in 2007-01-24 22:41:09 UTC (rev 393) +++ trunk/configure.in 2008-03-05 16:17:20 UTC (rev 394) @@ -99,7 +99,8 @@ AC_CHECK_LIB(nsl, gethostbyaddr, , ) AC_CHECK_LIB(socket, socket, , ) - +AC_SEARCH_LIBS(shm_open, rt posix4, [], []) +AC_SEARCH_LIBS(nanosleep, rt posix4, [], []) AC_CHECK_LIB(m, sqrt) AC_FUNC_STRFTIME Modified: trunk/daemon/Changelog =================================================================== --- trunk/daemon/Changelog 2007-01-24 22:41:09 UTC (rev 393) +++ trunk/daemon/Changelog 2008-03-05 16:17:20 UTC (rev 394) @@ -1,3 +1,20 @@ +Wed Mar 5 11:14:50 2008 Jonathan Stanton <[email protected]> + + * CVS_Readme.txt: Fix commandline to checkout spread from svn + to specify the useraccount. + +Wed Mar 5 11:08:48 2008 Jonathan Stanton <[email protected]> + + * libspread/Makefile.in, configure.in, stdutil/configure.in: + Fix portability problem with solaris 10 not finding library + containing shm and nanosleep calls. Also Solaris does not + support the 'o' option to ar. Patch and fix from Peter Friend. + +Wed Jan 24 22:41:09 2007 John Schulz <[email protected]> + * stdutil/src/stdutil.c: Fixed improper integer cast in + stdhcode_sfh_get16bits in the #else definition. This bug + would cause byte alignment failures on picky architectures. + Wed Nov 29 23:02:30 2006 Jonathan Stanton <[email protected]> * All source: Update copyright header to include Claudiu Modified: trunk/libspread/Makefile.in =================================================================== --- trunk/libspread/Makefile.in 2007-01-24 22:41:09 UTC (rev 393) +++ trunk/libspread/Makefile.in 2008-03-05 16:17:20 UTC (rev 394) @@ -149,7 +149,7 @@ # Full Spread library with Fl_, SP_, and support modules linked in libspread.a: $(LIBTFL_OBJS) ../stdutil/lib/libstdutil-threaded-release.a $(AR) rv $@ $(LIBTFL_OBJS) - $(AR) xo ../stdutil/lib/libstdutil-threaded-release.a + $(AR) x ../stdutil/lib/libstdutil-threaded-release.a $(AR) rv $@ std*.to $(RANLIB) $@ Modified: trunk/stdutil/configure.in =================================================================== --- trunk/stdutil/configure.in 2007-01-24 22:41:09 UTC (rev 393) +++ trunk/stdutil/configure.in 2008-03-05 16:17:20 UTC (rev 394) @@ -38,6 +38,8 @@ AC_CHECK_LIB(pthread, pthread_create) AC_CHECK_LIB(thread, thr_create) AC_CHECK_LIB(posix4, sem_wait) +AC_SEARCH_LIBS(shm_open, rt posix4, [], []) +AC_SEARCH_LIBS(nanosleep, rt posix4, [], []) THLIBS=$LIBS AC_SUBST(THLIBS) LIBS=$OLDLIBS