You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(58) |
Sep
(79) |
Oct
(41) |
Nov
(80) |
Dec
(23) |
---|
From: <sg...@us...> - 2003-08-29 10:40:21
|
Update of /cvsroot/libfunutil/libfunutil In directory sc8-pr-cvs1:/tmp/cvs-serv13014 Modified Files: toc_shared.qmake.at Log Message: added QT's variation on C*FLAGS Index: toc_shared.qmake.at =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/toc_shared.qmake.at,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- toc_shared.qmake.at 22 Aug 2003 16:22:44 -0000 1.5 +++ toc_shared.qmake.at 29 Aug 2003 10:40:17 -0000 1.6 @@ -8,7 +8,37 @@ FUN_LIB_SO = $$FUN_LIB_DIR/libfunUtil.so CONFIG += qt warn_off debug -exists( $(QTDIR)/lib/libqt-mt* ) { - #message( "Configuring for multi-threaded Qt..." ) + +QTDIR = @QTDIR@ +QTBINDIR = @QTBINDIR@ +QTINCDIR = @QTINCDIR@ +QTLIBDIR = @QTLIBDIR@ +# -lqt (or -lqt-mt?) if we have Qt, nothing if we don't. +LQT = @LQT@ +UIC = @UIC@ +MOC = @MOC@ +QMAKE = @QMAKE@ + +CC = @CC@ +INCLUDES += @INCLUDES@ +# C preprocessor flags, used in compiling C & C++ files. +CPPFLAGS += @CPPFLAGS@ +CPPFLAGS += $$INCLUDES -DHAVE_CONFIG_H=1 +# Optimization flags (-g or -On) used in compiling C & C++ files. +OPT = @OPT@ +# Warning flags (-Wall, -Werror, -woff, etc.) used in compiling C & C++ files. +WARN = @WARN@ +# C flags, used in compiling C files. Includes $$OPT and $$WARN. +QMAKE_CFLAGS += @CFLAGS@ +QMAKE_CFLAGS += $$OPT $$WARN +# C++ flags, used in compiling C++ files. Includes $$OPT and $$WARN. +QMAKE_CXXFLAGS += @CXXFLAGS@ +QMAKE_CXXFLAGS += $$OPT $$WARN +# ld flags, used in linking binaries. +LDFLAGS += @LDFLAGS@ + + +exists( $$QTDIR/lib/libqt-mt* ) { + # message( "Configuring for multi-threaded Qt..." ) CONFIG += thread } |
From: <sg...@us...> - 2003-08-29 08:49:34
|
Update of /cvsroot/libfunutil/libfunutil/include/fun In directory sc8-pr-cvs1:/tmp/cvs-serv29353 Modified Files: Makefile Log Message: corrected the path for the installed headers. Index: Makefile =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/include/fun/Makefile,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Makefile 29 Aug 2003 08:45:27 -0000 1.5 +++ Makefile 29 Aug 2003 08:49:29 -0000 1.6 @@ -3,6 +3,7 @@ DIST_FILES += Makefile INSTALL_PACKAGE_HEADERS = $(wildcard *.h) +INSTALL_PACKAGE_HEADERS_DEST = $(prefix)/include/fun clean-local: @$(call toc_clean_files,$(wildcard *.h)) |
From: <sg...@us...> - 2003-08-29 08:47:29
|
Update of /cvsroot/libfunutil/libfunutil/toc/tests In directory sc8-pr-cvs1:/tmp/cvs-serv29062 Modified Files: toc_core_tests.sh Log Message: modernized a bit. Removed 'install' in favor of install-sh. Index: toc_core_tests.sh =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/toc/tests/toc_core_tests.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- toc_core_tests.sh 28 Aug 2003 09:29:43 -0000 1.5 +++ toc_core_tests.sh 29 Aug 2003 08:47:26 -0000 1.6 @@ -3,35 +3,41 @@ # pass for a tree to be considered toc-capable may be placed # in here. +toc_quietly "Required components:" for x in \ - awk-AWK \ - bash-SHELL \ - cat-CAT \ - cut-CUT \ - gzip-GZIP \ - install-INSTALLER_BIN \ - ls-LS \ - more-XtocX \ - perl-PERL \ - sed-SED \ + awk=AWK \ + bash=SHELL \ + cat=CAT \ + cut=CUT \ + gzip=GZIP \ + ls=LS \ + more=XtocX \ + perl=PERL \ + sed=SED \ + xargs=XARGS \ ; do - f=${x%%-*} - v=${x##*-} + f=${x%%=*} + v=${x##*=} toc_find_failok $f || { - echo "configure couldn't find required app: $core_app" + echo "configure couldn't find required app: $f" return 1 } test "x$v" = "xXtocX" && continue toc_add_make $v=${TOC_FIND_RESULT} done +toc_find_fail install-sh ${TOC_TOCDIR}/bin +toc_add_make INSTALLER_BIN="\$(top_srcdir)/${TOC_FIND_RESULT##${PWD}/}" +toc_find_fail makedist ${TOC_TOCDIR}/bin +toc_add_make TOC_MAKEDIST_BIN="\$(top_srcdir)/${TOC_FIND_RESULT##${PWD}/}" + for x in \ gnu_make \ gnu_find \ gnu_tar \ ; do toc_run_failok $x || { - echo "configure's core build-tree sanity check failed." + echo "required test $x failed." return 1 } done @@ -39,6 +45,17 @@ #toc_run_failok gnu_install || { # boldecho "Didn't find GNU install. You won't be able to do a 'make install'." #} + +toc_quietly "Optional components:" +for x in \ + bzip2=BZIP \ + zip=ZIP \ + ; do + f=${x%%=*} + v=${x##*=} + toc_find_failok $f + toc_add_make $v=${TOC_FIND_RESULT} +done toc_boldecho -n "Core configure checks completed. " echo ${TOC_EMOTICON_OKAY} |
From: <sg...@us...> - 2003-08-29 08:45:31
|
Update of /cvsroot/libfunutil/libfunutil/include/fun In directory sc8-pr-cvs1:/tmp/cvs-serv28708 Modified Files: Makefile Log Message: modernized the install code Index: Makefile =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/include/fun/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 23 Aug 2003 00:36:12 -0000 1.4 +++ Makefile 29 Aug 2003 08:45:27 -0000 1.5 @@ -2,11 +2,10 @@ DIST_FILES += Makefile +INSTALL_PACKAGE_HEADERS = $(wildcard *.h) + clean-local: @$(call toc_clean_files,$(wildcard *.h)) distclean-local: clean-local -install-local: - @$(call toc_make_install,$(wildcard *.h),$(prefix)/include/fun,--mode=0644) -uninstall-local: - @$(call toc_make_uninstall,$(wildcard *.h),$(prefix)/include/fun) +clean: clean-local |
From: Rusty B. <bo...@us...> - 2003-08-29 07:48:44
|
Update of /cvsroot/qub/CVSROOT In directory sc8-pr-cvs1:/tmp/cvs-serv20013 Modified Files: loginfo Log Message: Oops, wrong damn tree. Sorry!! Index: loginfo =================================================================== RCS file: /cvsroot/qub/CVSROOT/loginfo,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- loginfo 29 Aug 2003 07:33:22 -0000 1.10 +++ loginfo 29 Aug 2003 07:48:41 -0000 1.11 @@ -28,5 +28,4 @@ # CVSROOT $CVSROOT/CVSROOT/syncmail %{sVv} st...@wa... # DEFAULT $CVSROOT/CVSROOT/syncmail %{sVv} qub...@li... -# DEFAULT $CVSROOT/CVSROOT/syncmail -u %{sVv} qub...@li... -DEFAULT $CVSROOT/CVSROOT/syncmail -u %{sVv} lib...@li... +DEFAULT $CVSROOT/CVSROOT/syncmail -u %{sVv} qub...@li... |
From: Rusty B. <ho...@sb...> - 2003-08-29 07:31:56
|
Thought I'd make sure the list is working before I switch libfunutil to use it. --Rusty |