Revision: 40880
          http://brlcad.svn.sourceforge.net/brlcad/?rev=40880&view=rev
Author:   starseeker
Date:     2010-09-29 20:56:18 +0000 (Wed, 29 Sep 2010)

Log Message:
-----------
There we go - building apr now

Modified Paths:
--------------
    rt^3/trunk/src/other/subversion/CMakeLists.txt

Added Paths:
-----------
    rt^3/trunk/src/other/subversion/other/apr/test/Makefile.in
    rt^3/trunk/src/other/subversion/other/apr/test/internal/Makefile.in

Modified: rt^3/trunk/src/other/subversion/CMakeLists.txt
===================================================================
--- rt^3/trunk/src/other/subversion/CMakeLists.txt      2010-09-29 20:51:39 UTC 
(rev 40879)
+++ rt^3/trunk/src/other/subversion/CMakeLists.txt      2010-09-29 20:56:18 UTC 
(rev 40880)
@@ -48,6 +48,7 @@
 SET(SVN_LOCALE_DIR "${CMAKE_INSTALL_PREFIX}/share")
 FILE(APPEND ${SVN_CONFIG_H_FILE} "#cmakedefine SVN_LOCALE_DIR 
\"${SVN_LOCALE_DIR}\"\n")
 
+SET(SUBVERSION_INSTALL_MAN_DIR "${CMAKE_INSTALL_PREFIX}/man")
 
 FILE(APPEND ${SVN_CONFIG_H_FILE} "#define SVN_LIBSVN_CLIENT_LINKS_RA_LOCAL 
1\n")
 FILE(APPEND ${SVN_CONFIG_H_FILE} "#define SVN_LIBSVN_CLIENT_LINKS_RA_SVN 1\n")

Added: rt^3/trunk/src/other/subversion/other/apr/test/Makefile.in
===================================================================
--- rt^3/trunk/src/other/subversion/other/apr/test/Makefile.in                  
        (rev 0)
+++ rt^3/trunk/src/other/subversion/other/apr/test/Makefile.in  2010-09-29 
20:56:18 UTC (rev 40880)
@@ -0,0 +1,177 @@
+srcdir = @srcdir@
+VPATH = @srcdir@
+
+# PROGRAMS includes all test programs built on this platform.
+# STDTEST_PORTABLE
+#   test programs invoked via standard user interface, run on all platforms
+# TESTS
+#   test modules invoked through the abts suite (./testall)
+# STDTEST_NONPORTABLE
+#   test programs invoked via standard user interface, not portable
+# OTHER_PROGRAMS
+#   programs such as sendfile, that have to be invoked in a special sequence
+#   or with special parameters
+# TESTALL_COMPONENTS
+#   programs such as globalmutexchild which the various TESTS will invoke
+#   to validate process creation, pipes, dso mechansims and so forth
+
+STDTEST_PORTABLE = \
+       testlockp...@exeext@ \
+       testmutexsc...@exeext@ \
+       test...@exeext@
+
+TESTS = testtime.lo teststr.lo testvsn.lo testipsub.lo testshm.lo \
+       testmmap.lo testud.lo testtable.lo testsleep.lo testpools.lo \
+       testfmt.lo testfile.lo testdir.lo testfileinfo.lo testrand.lo \
+       testdso.lo testoc.lo testdup.lo testsockets.lo testproc.lo \
+       testpoll.lo testlock.lo testsockopt.lo testpipe.lo testthread.lo \
+       testhash.lo testargs.lo testnames.lo testuser.lo testpath.lo \
+       testenv.lo testprocmutex.lo testfnmatch.lo testatomic.lo testflock.lo \
+       testsock.lo testglobalmutex.lo teststrnatcmp.lo testfilecopy.lo \
+       testtemp.lo testlfs.lo testcond.lo
+
+OTHER_PROGRAMS = \
+       sendf...@exeext@ \
+       ec...@exeext@ \
+       sockp...@exeext@
+
+TESTALL_COMPONENTS = \
+       globalmutexch...@exeext@ \
+       libmod_test.la \
+       mod_test.la \
+       occh...@exeext@ \
+       proc_ch...@exeext@ \
+       readch...@exeext@ \
+       sockch...@exeext@ \
+       testshmprodu...@exeext@ \
+       testshmconsu...@exeext@ \
+       tryr...@exeext@
+
+PROGRAMS = $(TESTALL_COMPONENTS) $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE) \
+          $(OTHER_PROGRAMS)
+
+TARGETS = $(PROGRAMS)
+
+# bring in rules.mk for standard functionality
+...@include_rules@
+
+LOCAL_LIBS=../l...@[email protected]
+
+CLEAN_TARGETS = testfile.tmp lfstests/*.bin \
+       data/test*.txt data/test*.dat data/apr.testshm.shm
+
+CLEAN_SUBDIRS = internal
+
+INCDIR=../include
+INCLUDES=-I$(INCDIR) -I$(srcdir)/../include
+
+# link programs using -no-install to get real executables not
+# libtool wrapper scripts which link an executable when first run.
+LINK_PROG = $(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) \
+           @LT_NO_INSTALL@ $(ALL_LDFLAGS) -o $@
+
+# STDTEST_PORTABLE;
+
+abts.lo: $(srcdir)/abts.c $(srcdir)/abts.h $(srcdir)/abts_tests.h \
+        $(srcdir)/testutil.h
+
+testutil.lo: $(srcdir)/abts.c $(srcdir)/abts.h $(srcdir)/abts_tests.h \
+            $(srcdir)/testutil.h
+
+OBJECTS_testall = abts.lo testutil.lo $(TESTS) $(LOCAL_LIBS)
+test...@exeext@: $(OBJECTS_testall)
+       $(LINK_PROG) $(OBJECTS_testall) $(ALL_LIBS)
+# For VPATH builds; where we have no ./data, copy us some data
+# if we wait until 'make check', then 'make; ./testall' fails;
+       if test ! -d "./data"; then cp -r $(srcdir)/data data; fi
+
+OBJECTS_testlockperf = testlockperf.lo $(LOCAL_LIBS)
+testlockp...@exeext@: $(OBJECTS_testlockperf)
+       $(LINK_PROG) $(OBJECTS_testlockperf) $(ALL_LIBS)
+
+OBJECTS_testmutexscope = testmutexscope.lo $(LOCAL_LIBS)
+testmutexsc...@exeext@: $(OBJECTS_testmutexscope)
+       $(LINK_PROG) $(OBJECTS_testmutexscope) $(ALL_LIBS)
+
+# OTHER_PROGRAMS;
+
+OBJECTS_echod = echod.lo $(LOCAL_LIBS)
+ec...@exeext@: $(OBJECTS_echod)
+       $(LINK_PROG) $(OBJECTS_echod) $(ALL_LIBS)
+
+OBJECTS_sendfile = sendfile.lo $(LOCAL_LIBS)
+sendf...@exeext@: $(OBJECTS_sendfile)
+       $(LINK_PROG) $(OBJECTS_sendfile) $(ALL_LIBS)
+
+OBJECTS_sockperf = sockperf.lo $(LOCAL_LIBS)
+sockp...@exeext@: $(OBJECTS_sockperf)
+       $(LINK_PROG) $(OBJECTS_sockperf) $(ALL_LIBS)
+
+# TESTALL_COMPONENTS;
+
+OBJECTS_globalmutexchild = globalmutexchild.lo $(LOCAL_LIBS)
+globalmutexch...@exeext@: $(OBJECTS_globalmutexchild)
+       $(LINK_PROG) $(OBJECTS_globalmutexchild) $(ALL_LIBS)
+
+# Note -prefer-pic is only supported with libtool-1.4+
+mod_test.lo: $(srcdir)/mod_test.c
+       $(LIBTOOL) $(LTFLAGS) --mode=compile $(COMPILE) -prefer-pic -o $@ \
+         -c $(srcdir)/mod_test.c
+
+OBJECTS_mod_test = mod_test.lo
+mod_test.la: $(OBJECTS_mod_test)
+       $(LIBTOOL) $(LTFLAGS) --mode=link $(COMPILE) -rpath `pwd` -module \
+         -avoid-version $(LT_LDFLAGS) $(ALL_LDFLAGS) -o $@ \
+         $(OBJECTS_mod_test)
+
+OBJECTS_libmod_test = mod_test.lo $(LOCAL_LIBS)
+libmod_test.la: $(OBJECTS_libmod_test)
+       $(LIBTOOL) $(LTFLAGS) --mode=link $(COMPILE) -rpath `pwd` \
+         -avoid-version $(LT_LDFLAGS) $(ALL_LDFLAGS) -o $@ \
+         $(OBJECTS_libmod_test) $(ALL_LIBS)
+
+OBJECTS_occhild = occhild.lo $(LOCAL_LIBS)
+occh...@exeext@: $(OBJECTS_occhild)
+       $(LINK_PROG) $(OBJECTS_occhild) $(ALL_LIBS)
+
+OBJECTS_proc_child = proc_child.lo $(LOCAL_LIBS)
+proc_ch...@exeext@: $(OBJECTS_proc_child)
+       $(LINK_PROG) $(OBJECTS_proc_child) $(ALL_LIBS)
+
+OBJECTS_readchild = readchild.lo $(LOCAL_LIBS)
+readch...@exeext@: $(OBJECTS_readchild)
+       $(LINK_PROG) $(OBJECTS_readchild) $(ALL_LIBS)
+
+OBJECTS_sockchild = sockchild.lo $(LOCAL_LIBS)
+sockch...@exeext@: $(OBJECTS_sockchild)
+       $(LINK_PROG) $(OBJECTS_sockchild) $(ALL_LIBS)
+
+OBJECTS_testshmconsumer = testshmconsumer.lo $(LOCAL_LIBS)
+testshmconsu...@exeext@: $(OBJECTS_testshmconsumer) $(LOCAL_LIBS)
+       $(LINK_PROG) $(OBJECTS_testshmconsumer) $(ALL_LIBS)
+
+OBJECTS_testshmproducer = testshmproducer.lo $(LOCAL_LIBS)
+testshmprodu...@exeext@: $(OBJECTS_testshmproducer)
+       $(LINK_PROG) $(OBJECTS_testshmproducer) $(ALL_LIBS)
+
+OBJECTS_tryread = tryread.lo $(LOCAL_LIBS)
+tryr...@exeext@: $(OBJECTS_tryread)
+       $(LINK_PROG) $(OBJECTS_tryread) $(ALL_LIBS)
+
+check: $(TESTALL_COMPONENTS) $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE)
+       teststatus=0; \
+       progfailed=""; \
+       for prog in $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE); do \
+               ./$$prog; \
+               status=$$?; \
+               if test $$status != 0; then \
+                       teststatus=$$status; \
+                       progfailed="$$progfailed $$prog"; \
+               fi; \
+       done; \
+       if test $$teststatus != 0; then \
+               echo "Programs failed:$$progfailed"; \
+       fi; \
+       exit $$teststatus
+
+# DO NOT REMOVE


Property changes on: rt^3/trunk/src/other/subversion/other/apr/test/Makefile.in
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:eol-style
   + native

Added: rt^3/trunk/src/other/subversion/other/apr/test/internal/Makefile.in
===================================================================
--- rt^3/trunk/src/other/subversion/other/apr/test/internal/Makefile.in         
                (rev 0)
+++ rt^3/trunk/src/other/subversion/other/apr/test/internal/Makefile.in 
2010-09-29 20:56:18 UTC (rev 40880)
@@ -0,0 +1,37 @@
+srcdir = @srcdir@
+VPATH = @srcdir@
+
+NONPORTABLE = \
+       testre...@exeext@
+
+PROGRAMS = \
+
+TARGETS = $(PROGRAMS) $(NONPORTABLE)
+
+# bring in rules.mk for standard functionality
+...@include_rules@
+
+LOCAL_LIBS=../../l...@[email protected]
+
+CLEAN_TARGETS = testre...@exeext@
+
+INCDIR=../../include
+INCLUDES=-I$(INCDIR)
+
+CFLAGS=$(MY_CFLAGS)
+
+all: $(PROGRAMS) $(NONPORTABLE)
+
+check: $(PROGRAMS) $(NONPORTABLE)
+       for prog in $(PROGRAMS) $(NONPORTABLE); do \
+               ./$$prog; \
+               if test $$i = 255; then \
+                       echo "$$prog failed"; \
+                       break; \
+               fi \
+       done
+
+testre...@exeext@: testregex.lo $(LOCAL_LIBS)
+       $(LINK) testregex.lo $(LOCAL_LIBS) $(ALL_LIBS)
+
+# DO NOT REMOVE


Property changes on: 
rt^3/trunk/src/other/subversion/other/apr/test/internal/Makefile.in
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:eol-style
   + native


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to