You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(622) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(303) |
Feb
(64) |
Mar
(5) |
Apr
(63) |
May
(82) |
Jun
(53) |
Jul
(50) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: stephan b. <sg...@us...> - 2004-12-23 02:28:22
|
Update of /cvsroot/pclasses/pclasses2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20692 Modified Files: configure.pclasses2 Log Message: added kludge placeholders for the config.h vars Index: configure.pclasses2 =================================================================== RCS file: /cvsroot/pclasses/pclasses2/configure.pclasses2,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- configure.pclasses2 23 Dec 2004 00:08:42 -0000 1.2 +++ configure.pclasses2 23 Dec 2004 02:28:13 -0000 1.3 @@ -2,7 +2,7 @@ #^^^ this helps emacs out, so it'll start in shell-script-mode # This is the configure script for the pclasses source tree. -toc_add_config PACKAGE_RELEASE_CODENAME="The Rewrite" +toc_export PACKAGE_RELEASE_CODENAME="The Rewrite" toc_test check_dist_md5s @@ -15,104 +15,159 @@ toc_test_require gnu_cpp_tools toc_test_require gcc_try_compile ${TOC_HOME}/tests/cpp/check_stl_newstyle.cpp test x1 = x${configure_enable_ccdv} && toc_test use_ccdv - -####### docs: -toc_find lyx ${configure_with_lyx%/*}:$PATH && toc_export LYX_BIN=${TOC_FIND_RESULT} - - ############################################################ # accumulate -I and -L/-l entries here: -includes_path= -ldadd= +# Reminder: these are the flags for linking +inc="${INCLUDES}" +ldadd="${LDADD}" ############################################################ +toc_test libltdl || toc_test_require libdl # prefer ltdl, else allow dl. + + ############################################################ # supplemental libs -{ - for i in mysql_clients; do - toc_test $i - done -} - +toc_test mysql_config +toc_test pg_config # toc_test libexpat # && ldadd="${ldadd} -lexpat" +######################################################################## +# pthreads kludge... use_pthread=0 toc_test gcc_try_compile ${TOC_HOME}/tests/c/check_for_pthread.c && { use_pthread=1 - cli_ldadd="${cli_ldadd} -lpthread" + THREADS_LDADD="-lpthread" + THREADS_INCLUDES="" # i hope it's in a system default path! } -toc_export eshell_HAVE_PTHREAD=${use_pthread} -unset use_pthread -if test x0 = "x${use_pthread}" ; then - toc_die 127 "The tree currently needs pthreads. To be fixed." +if test x0 = "x${pclasses2_HAVE_PTHREAD}" ; then + toc_die 127 "The build tree currently needs pthreads. To be fixed." fi - +unset use_pthread +# /pthread +######################################################################## ######################################################################## -# TODO: -# figure out the list of -lLIBS for clients to link against, based -# on what modules we will build! -removeDupes=${TOC_HOME}/bin/removeDupeArgs -CLIENT_LDADD="$(${removeDupes} -L${prefix}/lib -lpclasses2)" -CLIENT_INCLUDES="$(${removeDupes} -I${prefix}/include)" +{ # huge_kludges: +cat <<EOF > /dev/null +the following defs needs to be ported to toc: +PTHREAD_CREATE_JOINABLE +STDC_HEADERS +WITH_STL +WORDS_BIGENDIAN +_FILE_OFFSET_BITS +_LARGE_FILES +_MINIX +_POSIX_1_SOURCE +_POSIX_SOURCE +EOF -#{ # generate PACKAGE_NAME-config: -# export ldadd -# export includes_path -# toc_test_require PACKAGE_NAME-config -# PACKAGE_PREFIX="${PACKAGE_NAME}_" -# CLIENT_LDADD="${CLIENT_LDADD}" -# CLIENT_INCLUDES="${CLIENT_INCLUDES})" +force=" +HAVE_LARGEFILE=1 +HAVE_DLFCN_H=1 +HAVE_DLOPEN=1 +HAVE_DYLD=1 +HAVE_FUNC_GETSERVBYNAME_R_4=0 +HAVE_FUNC_GETSERVBYNAME_R_5=0 +HAVE_FUNC_GETSERVBYNAME_R_6=0 +HAVE_GETPAGESIZE=1 +HAVE_INTTYPES_H=1 +HAVE_LIBRT=1 +HAVE_LONG_DOUBLE=1 +HAVE_MEMORY_H=1 +HAVE_MMAP=1 +HAVE_PTHREAD=1 +HAVE_PTHREAD_GET_EXPIRATION_NP=1 +HAVE_PTHREAD_MUTEXATTR_SETPSHARED=1 +HAVE_PTHREAD_MUTEX_TIMEDLOCK=1 +HAVE_PTHREAD_MUTEX_TIMED_NP=1 +HAVE_PTHREAD_RWLOCK_TIMEDLOCK=1 +HAVE_PTHREAD_YIELD=1 +HAVE_PTHREAD_CREATE_JOINABLE=1 +HAVE_SHL_LOAD=1 +HAVE_SHM_OPEN=1 +HAVE_STDINT_H=1 +HAVE_STDLIB_H=1 +HAVE_STRINGS_H=1 +HAVE_STRING_H=1 +HAVE_SYSV_IPC=1 +HAVE_SYS_STAT_H=1 +HAVE_SYS_TYPES_H=1 +HAVE_UNISTD_H=1 +SIZEOF___INT64=64 +WITH_STL=${configure_with_stl-1} +" - # import the PACKAGE_NAME-config info to ease life for us later on... -# eval $(./${PACKAGE_NAME}-config --toc-config | sed -e 's/$/; /') + for i in ${force}; do + toc_export PCLASSES_${i%%=*}=${i##*=} + done - # echo -e "ldadd=${ldadd}\nLIBS11N_LDADD=${LIBS11N_LDADD}\nLIBS11N_CLIENT_LDADD=${LIBS11N_CLIENT_LDADD}" -# unset includes_path -# unset ldadd -#} + ${CC} -o sizes toc/tests/cpp/type_sizes.cpp -lstdc++ &>/dev/null || { + toc_die $? "Error getting system's type sizes!" + } + for kvp in $(./sizes PCLASSES); do + toc_export ${kvp%%=*}=${kvp##*=} + done + rm sizes +} # /huge_kludges +######################################################################## -#PACKAGE_CFLAGS="${PCLASSES2_CLIENT_INCLUDES}" -# PACKAGE_LDADD="${PCLASSES2_CLIENT_LDADD}" -# toc_test_require create_pkg-config_data +###### stuff: +toc_find lyx ${configure_with_lyx%/*}:$PATH \ + && toc_export LYX_BIN=${TOC_FIND_RESULT} # for (future) lib manual +toc_export BUILD_USER="$USER" +toc_export BUILD_HOST=$(hostname) +toc_export PACKAGE_EMAIL_ADDRESS=pcl...@li... +toc_export PACKAGE_URL=http://pclasses.com +toc_export PACKAGE_LICENSE="GNU LGPL" -###### stuff: -toc_add_config BUILD_USER="$USER" -toc_add_config BUILD_HOST=`hostname` -toc_add_config PACKAGE_EMAIL_ADDRESS=pcl...@li... -toc_add_config PACKAGE_URL=http://pclasses.com -toc_add_config PACKAGE_LICENSE="GNU LGPL" +CLIENT_LDADD="-L${prefix}/lib -lpcore" +CLIENT_INCLUDES="-I${prefix}/include" +removeDupes=${TOC_HOME}/bin/removeDupeArgs +# These are the libs the core lib The libs +toc_export LIBPCORE_LDADD="$(${removeDupes} ${ldadd})" +toc_export LIBPCORE_INCLUDES="$(${removeDupes} ${inc})" +toc_export LIBPSYSTEM_LDADD="$(${removeDupes} ${THREADS_LDADD})" +toc_export LIBPSYSTEM_INCLUDES="$(${removeDupes} ${THREADS_INCLUDES})" -toc_test_require atfilter_file include/pclasses/pclasses_config.h.at include/pclasses/pclasses_config.h +toc_export LIBPSQL_MYSQL_LDADD="$(${removeDupes} ${ldadd} ${MYSQL_LDADD})" +toc_export LIBPSQL_MYSQL_INCLUDES="$(${removeDupes} ${inc} ${MYSQL_INCLUDES})" +toc_export LIBPSQL_POSTSQL_LDADD="$(${removeDupes} ${ldadd} ${POSTGRES_LDADD})" +toc_export LIBPSQL_POSTSQL_INCLUDES="$(${removeDupes} ${inc} ${POSTGRES_INCLUDES})" -toc_boldecho "======================= Creating Makefiles..." +######################################################################## +# Anything below this line should not modify the config: we are +# now exporting our files... +######################################################################## +######################################################################## +toc_boldecho "======================= Creating Makefiles..." make_out=${PWD}/.toc.Makefile { - cat <<EOF -#!/usr/bin/make -f -# Automatically generated by configure. -# Do not edit this file: put your code in Makefile.toc. -include Makefile.toc -DIST_FILES += Makefile.toc -DIST_FILES := \$(filter-out Makefile,\$(DIST_FILES)) -# ^^^^ toc automatically adds Makefile to DIST_FILES. -DISTCLEAN_FILES += Makefile -# ^^^^ todo + # ACHTUNG: note use of HARD TABS in the following cat: + cat <<-EOF + #!/usr/bin/make -f + # Automatically generated by configure on $(date). + # Do not edit this file: put your code in Makefile.toc. + include Makefile.toc + DIST_FILES += Makefile.toc + DIST_FILES := \$(filter-out Makefile,\$(DIST_FILES)) + # ^^^^ toc automatically adds Makefile to DIST_FILES. + DISTCLEAN_FILES += Makefile + # ^^^^ todo EOF } > $make_out +#### Make Makefiles for m in $(find . -type f -name Makefile.toc | sort); do nm=${m%%.toc} echo -en "\t\t$nm ... " cmp $make_out $nm &>/dev/null && { echo -e "\r${TOC_EMOTICON_OKAY} up to date" -smile="" continue } cp $make_out $nm || toc_die 1 "Could not write $nm!" @@ -120,8 +175,13 @@ done rm $make_out toc_boldecho "======================= ${TOC_EMOTICON_OKAY} Created Makefiles." -return 0 +######################################################################## + +toc_test_require atfilter_file \ + include/pclasses/pclasses-config.h.at \ + include/pclasses/pclasses-config.h ##### close the config-filtered files: toc_test_require toc_project_makefile # ^^^^ this must come last. +return 0 |
From: stephan b. <sg...@us...> - 2004-12-23 02:28:01
|
Update of /cvsroot/pclasses/pclasses2/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20557 Modified Files: Makefile.toc Log Message: this dir now builds, at least basically Index: Makefile.toc =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/Makefile.toc,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile.toc 23 Dec 2004 00:18:54 -0000 1.1 +++ Makefile.toc 23 Dec 2004 02:27:52 -0000 1.2 @@ -1,65 +1,37 @@ -################################################### -# AUTO-GENERATED guess at a toc-aware Makefile, -# based off of the contents of directory: -# ./src -# Created by ./toc/bin/create_makefile_stubs.sh -# Wed Dec 22 23:10:45 CET 2004 -# It must be tweaked to suit your needs. -################################################### +#!/usr/bin/make -f + include toc.make -SUBDIRS = Net System Unicode Util -############## FLEXES: -# WARNING: FLEXES stuff only works for C++-based flexers -FLEXES = -FLEXES_ARGS = -+ -p -OBJECTS += -include $(TOC_MAKESDIR)/flex.make -# Run target FLEXES to process these. -# REMINDER: add the generated C++ files to your SOURCES, if needed. -############## /FLEXES + +# SUBDIRS = Net System Unicode Util + SOURCES = Alloc.cpp \ AtomicInt.gcc-x86.cpp \ ByteOrderTraits.cpp \ - Char.cpp \ Exception.cpp \ - IODevice.cpp \ - LinkedItem.cpp \ - String.cpp \ - TextStream.cpp + LinkedItem.cpp + +# will move to IO: IODevice.cpp +# will move to Unicode: Char.cpp String.cpp TextStream.cpp DIST_FILES += $(SOURCES) -OBJECTS = Alloc.o \ - AtomicInt.gcc-x86.o \ - ByteOrderTraits.o \ - Char.o \ - Exception.o \ - IODevice.o \ - LinkedItem.o \ - String.o \ - TextStream.o +OBJECTS = $(patsubst %.cpp,%.o,$(SOURCES)) CLEAN_FILES += $(OBJECTS) -build_libs = 0 +build_libs = 1 +LIBNAME = libpcore ifeq (1,$(build_libs)) - STATIC_LIBS = thislib - thislib_a_OBJECTS = $(OBJECTS) - thislib_so_OBJECTS = $(thislib_a_OBJECTS) - # thislib_so_VERSION = $(PACKAGE_VERSION) + STATIC_LIBS = $(LIBNAME) + SHARED_LIBS = $(STATIC_LIBS) + $(LIBNAME)_a_OBJECTS = $(OBJECTS) + $(LIBNAME)_so_OBJECTS = $($(LIBNAME)_a_OBJECTS) + $(LIBNAME)_so_LDADD = $(LIBPCLASSES_LDADD) + $(LIBNAME)_so_VERSION = $(PACKAGE_VERSION) include $(TOC_MAKESDIR)/SHARED_LIBS.make include $(TOC_MAKESDIR)/STATIC_LIBS.make # Run targets STATIC_LIBS and SHARED_LIBS build these. endif -build_bins = 0 -ifeq (1,$(build_bins)) - BIN_PROGRAMS = thisbin - thisbin_bin_OBJECTS = $(OBJECTS) - include $(TOC_MAKESDIR)/BIN_PROGRAMS.make - INSTALL_BINS += $(BIN_PROGRAMS) - # Run target BIN_PROGRAMS to build these. -endif - -all: +all: STATIC_LIBS SHARED_LIBS ################################################### # end auto-generated rules ################################################### |
From: stephan b. <sg...@us...> - 2004-12-23 02:25:41
|
Update of /cvsroot/pclasses/pclasses2/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19977 Modified Files: Exception.cpp Log Message: added a missing return Index: Exception.cpp =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/Exception.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- Exception.cpp 22 Dec 2004 17:54:34 -0000 1.1.1.1 +++ Exception.cpp 23 Dec 2004 02:25:32 -0000 1.2 @@ -45,6 +45,7 @@ { _what = err._what; _source = err._source; + return *this; } |
From: stephan b. <sg...@us...> - 2004-12-23 02:25:08
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19792 Modified Files: SourceInfo.h Log Message: added a missing return Index: SourceInfo.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/SourceInfo.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- SourceInfo.h 22 Dec 2004 17:54:39 -0000 1.1.1.1 +++ SourceInfo.h 23 Dec 2004 02:24:59 -0000 1.2 @@ -101,6 +101,7 @@ _file = si._file; _line = si._line; _func = si._func; + return *this; } private: |
From: stephan b. <sg...@us...> - 2004-12-23 02:06:01
|
Update of /cvsroot/pclasses/pclasses2/toc/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15695/toc/tests Added Files: pg_config.sh mysql_config.sh Log Message: egg --- NEW FILE: mysql_config.sh --- #!/do/not/bash # toc_run_description = Looking for mysql_config # toc_begin_help = # # Looks for mysql_config. If it finds it then the following vars # are exported: # # MYSQL_CONFIG_BIN=/path/to/mysql_config # MYSQL_LIBS=link args for client apps # MYSQL_INCLUDES=includes args for client apps # # Clients can use --with-mysql_config=/path/to/mysql_config to specify # their config script. # # = toc_end_help cf=${configure_with_mysql_config} test x = "x${cf}" && { toc_find_in_path mysql_config ${prefix}/bin:$PATH || { return 127 } toc_export MYSQL_CONFIG_BIN=${TOC_FIND_RESULT} } toc_export MYSQL_CONFIG_BIN=${TOC_FIND_RESULT} toc_export MYSQL_INCLUDES="$(${MYSQL_CONFIG_BIN} --include)" toc_export MYSQL_LIBS="$(${MYSQL_CONFIG_BIN} --libs)" return 0 --- NEW FILE: pg_config.sh --- #!/do/not/bash # toc_run_description = "Looking for pg_config (postgres)" # toc_begin_help = # # Looks for pg_config. If it finds it then the following vars # are exported: # # POSTGRES_CONFIG_BIN=/path/to/pg_config # POSTGRES_LIBS=link args for client apps # POSTGRES_INCLUDES=includes args for client apps # # Clients can use --with-postgres-config=/path/to/pg_config to specify # their config script. # # = toc_end_help cf=${configure_with_postgres_config} test x = "x${cf}" && { toc_find_in_path pg_config "${prefix}/bin:$PATH" || { return 127 } toc_export POSTGRES_CONFIG_BIN=${TOC_FIND_RESULT} } toc_export POSTGRES_INCLUDES="-I$(${POSTGRES_CONFIG_BIN} --includedir) -I$(${POSTGRES_CONFIG_BIN} --includedir-server)" toc_export POSTGRES_LIBS="-L$(${POSTGRES_CONFIG_BIN} --libdir) -lpgeasy" return 0 |
From: stephan b. <sg...@us...> - 2004-12-23 02:02:13
|
Update of /cvsroot/pclasses/pclasses2/toc/tests/cpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14924 Added Files: type_sizes.cpp Log Message: egg --- NEW FILE: type_sizes.cpp --- #include <iostream> #define OUT(M,T) std::cout << prefix << "_SIZEOF_"<<# M << "="<<sizeof(T)<<"\n"; int main( int argc, char **argv ) { if( 2 != argc ) { std::cerr << "Usage: "<<argv[0]<<" var_prefix\n"; return 1; } const char * prefix = argv[1]; OUT(CHAR,char); OUT(INT,int); OUT(LONG,long); OUT(LONG_LONG,long long); OUT(SHORT,short); // OUT(__INT64,int64); return 0; } |
From: Christian P. <cp...@us...> - 2004-12-23 01:08:00
|
Update of /cvsroot/pclasses/pclasses2/src/IO In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2679/IO Log Message: Directory /cvsroot/pclasses/pclasses2/src/IO added to the repository |
From: Christian P. <cp...@us...> - 2004-12-23 01:07:21
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/IO In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2531/IO Log Message: Directory /cvsroot/pclasses/pclasses2/include/pclasses/IO added to the repository |
From: Christian P. <cp...@us...> - 2004-12-23 01:07:20
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/Unicode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2531/Unicode Log Message: Directory /cvsroot/pclasses/pclasses2/include/pclasses/Unicode added to the repository |
From: stephan b. <sg...@us...> - 2004-12-23 00:37:28
|
Update of /cvsroot/pclasses/pclasses2/toc/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28301/bin Modified Files: create_makefile_stubs.sh Log Message: copied in Makefiles from s11n toc dist ==> Makefile.toc. These work. Index: create_makefile_stubs.sh =================================================================== RCS file: /cvsroot/pclasses/pclasses2/toc/bin/create_makefile_stubs.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- create_makefile_stubs.sh 22 Dec 2004 19:04:23 -0000 1.1 +++ create_makefile_stubs.sh 23 Dec 2004 00:37:17 -0000 1.2 @@ -73,7 +73,7 @@ echo "############## FLEXES:" export flext=flex local flexes="$(ls *.${flext} 2>/dev/null)" - test x"$flexes" != "$flexes" && { + test "x$flexes" != "x" && { stderr "Adding FLEXES" echo "# WARNING: FLEXES stuff only works for C++-based flexers" echo -n "FLEXES = " @@ -218,6 +218,7 @@ stderr "Creating $d/$out" { cat <<EOF +#!/usr/bin/make -f ################################################### # AUTO-GENERATED guess at a toc-aware Makefile, # based off of the contents of directory: |
From: stephan b. <sg...@us...> - 2004-12-23 00:37:28
|
Update of /cvsroot/pclasses/pclasses2/toc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28301 Modified Files: Makefile.toc Log Message: copied in Makefiles from s11n toc dist ==> Makefile.toc. These work. Index: Makefile.toc =================================================================== RCS file: /cvsroot/pclasses/pclasses2/toc/Makefile.toc,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile.toc 23 Dec 2004 00:18:56 -0000 1.1 +++ Makefile.toc 23 Dec 2004 00:37:16 -0000 1.2 @@ -1,3 +1,5 @@ include toc.make -SUBDIRS = make tests bin sbin -all: + +SUBDIRS = sbin bin tests make + +all: subdirs |
From: stephan b. <sg...@us...> - 2004-12-23 00:32:13
|
Update of /cvsroot/pclasses/pclasses2/m4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26770 Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- #!/usr/bin/make ################################################### # AUTO-GENERATED guess at a toc-aware Makefile, # based off of the contents of directory: # ./src # Created by ./toc/bin/create_makefile_stubs.sh # Wed Dec 22 23:10:45 CET 2004 # It must be tweaked to suit your needs. ################################################### include toc.make DIST_FILES += $(wildcard *.m4 *.am) all: ################################################### # end auto-generated rules ################################################### |
From: stephan b. <sg...@us...> - 2004-12-23 00:29:33
|
Update of /cvsroot/pclasses/pclasses2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25881 Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- ################################################### # AUTO-GENERATED guess at a toc-aware Makefile, # based off of the contents of directory: # . # Created by ./toc/bin/create_makefile_stubs.sh # Thu Dec 23 01:26:47 CET 2004 # It must be tweaked to suit your needs. ################################################### include toc.make SUBDIRS = AT include m4 src templates test toc DIST_FILES += README \ NEWS \ ChangeLog \ toc.pclasses2.make.at \ autogen.sh \ find_toc.sh \ notes.txt ############## FLEXES: # WARNING: FLEXES stuff only works for C++-based flexers FLEXES = FLEXES_ARGS = -+ -p OBJECTS += include $(TOC_MAKESDIR)/flex.make # Run target FLEXES to process these. # REMINDER: add the generated C++ files to your SOURCES, if needed. ############## /FLEXES all: ################################################### # end auto-generated rules ################################################### |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:11
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/System In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948/include/pclasses/System Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- ################################################### # AUTO-GENERATED guess at a toc-aware Makefile, # based off of the contents of directory: # ./include/pclasses/System # Created by ./toc/bin/create_makefile_stubs.sh # Wed Dec 22 23:10:45 CET 2004 # It must be tweaked to suit your needs. ################################################### include toc.make ############## FLEXES: # WARNING: FLEXES stuff only works for C++-based flexers FLEXES = FLEXES_ARGS = -+ -p OBJECTS += include $(TOC_MAKESDIR)/flex.make # Run target FLEXES to process these. # REMINDER: add the generated C++ files to your SOURCES, if needed. ############## /FLEXES HEADERS = Condition.h \ CriticalSection.h \ File.h \ Mutex.h \ Pipe.h \ Semaphore.h \ SharedLib.h \ SharedMemory.h \ SystemError.h \ Thread.h DIST_FILES += $(HEADERS) INSTALL_PACKAGE_HEADERS += $(HEADERS) all: ################################################### # end auto-generated rules ################################################### |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:11
|
Update of /cvsroot/pclasses/pclasses2/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948/include Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- ################################################### # AUTO-GENERATED guess at a toc-aware Makefile, # based off of the contents of directory: # ./include # Created by ./toc/bin/create_makefile_stubs.sh # Wed Dec 22 23:10:45 CET 2004 # It must be tweaked to suit your needs. ################################################### include toc.make SUBDIRS = pclasses ############## FLEXES: # WARNING: FLEXES stuff only works for C++-based flexers FLEXES = FLEXES_ARGS = -+ -p OBJECTS += include $(TOC_MAKESDIR)/flex.make # Run target FLEXES to process these. # REMINDER: add the generated C++ files to your SOURCES, if needed. ############## /FLEXES all: ################################################### # end auto-generated rules ################################################### |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:10
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/Net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948/include/pclasses/Net Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- ################################################### # AUTO-GENERATED guess at a toc-aware Makefile, # based off of the contents of directory: # ./include/pclasses/Net # Created by ./toc/bin/create_makefile_stubs.sh # Wed Dec 22 23:10:45 CET 2004 # It must be tweaked to suit your needs. ################################################### include toc.make ############## FLEXES: # WARNING: FLEXES stuff only works for C++-based flexers FLEXES = FLEXES_ARGS = -+ -p OBJECTS += include $(TOC_MAKESDIR)/flex.make # Run target FLEXES to process these. # REMINDER: add the generated C++ files to your SOURCES, if needed. ############## /FLEXES HEADERS = InetAddress.h \ InetSocket.h \ NetworkAddress.h \ Socket.h DIST_FILES += $(HEADERS) INSTALL_PACKAGE_HEADERS += $(HEADERS) all: ################################################### # end auto-generated rules ################################################### |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:09
|
Update of /cvsroot/pclasses/pclasses2/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948/templates Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- ################################################### # AUTO-GENERATED guess at a toc-aware Makefile, # based off of the contents of directory: # ./templates # Created by ./toc/bin/create_makefile_stubs.sh # Wed Dec 22 23:10:45 CET 2004 # It must be tweaked to suit your needs. ################################################### include toc.make ############## FLEXES: # WARNING: FLEXES stuff only works for C++-based flexers FLEXES = FLEXES_ARGS = -+ -p OBJECTS += include $(TOC_MAKESDIR)/flex.make # Run target FLEXES to process these. # REMINDER: add the generated C++ files to your SOURCES, if needed. ############## /FLEXES all: ################################################### # end auto-generated rules ################################################### |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:09
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948/include/pclasses Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- ################################################### # AUTO-GENERATED guess at a toc-aware Makefile, # based off of the contents of directory: # ./include/pclasses # Created by ./toc/bin/create_makefile_stubs.sh # Wed Dec 22 23:10:45 CET 2004 # It must be tweaked to suit your needs. ################################################### include toc.make SUBDIRS = Net System Util DIST_FILES += pclasses_config.h.at ############## FLEXES: # WARNING: FLEXES stuff only works for C++-based flexers FLEXES = FLEXES_ARGS = -+ -p OBJECTS += include $(TOC_MAKESDIR)/flex.make # Run target FLEXES to process these. # REMINDER: add the generated C++ files to your SOURCES, if needed. ############## /FLEXES HEADERS = Algorithm.h \ Alloc.h \ Atomic.h \ AtomicTraits.h \ BasicTypes.h \ ByteOrderTraits.h \ Char.h \ CircularQueue.h \ Exception.h \ IntrusivePtr.h \ IntTypeLimits.h \ IntTypes.h \ IODevice.h \ LinkedItem.h \ List.h \ LockTraits.h \ NonCopyable.h \ Pair.h \ pclasses_config.h \ Queue.h \ ScopedArrayPtr.h \ ScopedPtr.h \ SharedPtr.h \ SourceInfo.h \ Stack.h \ String.h \ TextStream.h \ TypeTraits.h \ ValueType.h \ Vector.h DIST_FILES += $(HEADERS) INSTALL_PACKAGE_HEADERS += $(HEADERS) all: ################################################### # end auto-generated rules ################################################### |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:09
|
Update of /cvsroot/pclasses/pclasses2/toc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948/toc Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- include toc.make SUBDIRS = make tests bin sbin all: |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:09
|
Update of /cvsroot/pclasses/pclasses2/toc/sbin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948/toc/sbin Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- #!/usr/bin/make -f include toc.make DIST_FILES += toc_core.sh toconfigure |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:08
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/Util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948/include/pclasses/Util Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- ################################################### # AUTO-GENERATED guess at a toc-aware Makefile, # based off of the contents of directory: # ./include/pclasses/Util # Created by ./toc/bin/create_makefile_stubs.sh # Wed Dec 22 23:10:45 CET 2004 # It must be tweaked to suit your needs. ################################################### include toc.make ############## FLEXES: # WARNING: FLEXES stuff only works for C++-based flexers FLEXES = FLEXES_ARGS = -+ -p OBJECTS += include $(TOC_MAKESDIR)/flex.make # Run target FLEXES to process these. # REMINDER: add the generated C++ files to your SOURCES, if needed. ############## /FLEXES HEADERS = ManagedThread.h \ ThreadPool.h \ WorkQueue.h DIST_FILES += $(HEADERS) INSTALL_PACKAGE_HEADERS += $(HEADERS) all: ################################################### # end auto-generated rules ################################################### |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:08
|
Update of /cvsroot/pclasses/pclasses2/toc/tests/cpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948/toc/tests/cpp Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- include toc.make DIST_FILES += $(wildcard *.cpp *.c) all: |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:08
|
Update of /cvsroot/pclasses In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948 Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- ################################################### # AUTO-GENERATED guess at a toc-aware Makefile, # based off of the contents of directory: # . # Created by ./toc/bin/create_makefile_stubs.sh # Wed Dec 22 23:10:45 CET 2004 # It must be tweaked to suit your needs. ################################################### include toc.make SUBDIRS = admin AT include src templates test toc DIST_FILES += README \ NEWS \ ChangeLog \ toc.pclasses2.make.at \ find_toc.sh \ notes.txt ############## FLEXES: # WARNING: FLEXES stuff only works for C++-based flexers FLEXES = FLEXES_ARGS = -+ -p OBJECTS += include $(TOC_MAKESDIR)/flex.make # Run target FLEXES to process these. # REMINDER: add the generated C++ files to your SOURCES, if needed. ############## /FLEXES all: ################################################### # end auto-generated rules ################################################### |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:07
|
Update of /cvsroot/pclasses/pclasses2/toc/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948/toc/tests Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- SUBDIRS = cpp c include toc.make DIST_FILES += $(wildcard *.sh *.at) all: subdirs |
From: stephan b. <sg...@us...> - 2004-12-23 00:19:07
|
Update of /cvsroot/pclasses/pclasses2/toc/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22948/toc/bin Added Files: Makefile.toc Log Message: egg --- NEW FILE: Makefile.toc --- include toc.make DIST_FILES += atsign_parse \ ccdv.c \ cleanup_vars \ getMakefileVar \ install-sh \ makedist \ mkdep.c \ relativePathToSharedMakefile \ removeDupeArgs CLEAN_FILES += mkdep |