You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(19) |
Oct
(10) |
Nov
(14) |
Dec
(58) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
(5) |
Mar
(33) |
Apr
(31) |
May
(3) |
Jun
(30) |
Jul
(4) |
Aug
(26) |
Sep
(23) |
Oct
|
Nov
(6) |
Dec
(56) |
2008 |
Jan
(12) |
Feb
(9) |
Mar
(2) |
Apr
(8) |
May
(2) |
Jun
(3) |
Jul
(4) |
Aug
(1) |
Sep
|
Oct
|
Nov
(16) |
Dec
(4) |
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(36) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
From: Florian G. <re...@us...> - 2008-01-03 22:06:09
|
Update of /cvsroot/perfparse/_perfparse/libpp_common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10160/libpp_common Modified Files: Makefile.am Makefile.in config_file.c Log Message: some refactoring Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_common/Makefile.in,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Makefile.in 18 Dec 2007 15:10:33 -0000 1.21 --- Makefile.in 3 Jan 2008 22:04:44 -0000 1.22 *************** *** 262,266 **** libpp_common_la_CPPFLAGS = '-DLIBDIR="${libdir}"' '-DLOCALSTATEDIR="$(localstatedir)"' '-DSYSCONFDIR="$(sysconfdir)"' '-DPREFIX="$(prefix)"' ${GLIB_CFLAGS} ${ZLIB_CFLAGS} '-DLOCALEDIR="$(datadir)/locale"' -I${top_srcdir} libpp_common_la_LIBADD = ${ZLIB_LIBS} ! libpp_common_la_LDFLAGS = all: all-am --- 262,266 ---- libpp_common_la_CPPFLAGS = '-DLIBDIR="${libdir}"' '-DLOCALSTATEDIR="$(localstatedir)"' '-DSYSCONFDIR="$(sysconfdir)"' '-DPREFIX="$(prefix)"' ${GLIB_CFLAGS} ${ZLIB_CFLAGS} '-DLOCALEDIR="$(datadir)/locale"' -I${top_srcdir} libpp_common_la_LIBADD = ${ZLIB_LIBS} ! libpp_common_la_LDFLAGS = -version-info 1:0:0 all: all-am Index: Makefile.am =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_common/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 26 Sep 2005 14:36:33 -0000 1.1.1.1 --- Makefile.am 3 Jan 2008 22:04:44 -0000 1.2 *************** *** 5,8 **** libpp_common_la_CPPFLAGS='-DLIBDIR="${libdir}"' '-DLOCALSTATEDIR="$(localstatedir)"' '-DSYSCONFDIR="$(sysconfdir)"' '-DPREFIX="$(prefix)"' ${GLIB_CFLAGS} ${ZLIB_CFLAGS} '-DLOCALEDIR="$(datadir)/locale"' -I${top_srcdir} libpp_common_la_LIBADD = ${ZLIB_LIBS} ! libpp_common_la_LDFLAGS = --- 5,8 ---- libpp_common_la_CPPFLAGS='-DLIBDIR="${libdir}"' '-DLOCALSTATEDIR="$(localstatedir)"' '-DSYSCONFDIR="$(sysconfdir)"' '-DPREFIX="$(prefix)"' ${GLIB_CFLAGS} ${ZLIB_CFLAGS} '-DLOCALEDIR="$(datadir)/locale"' -I${top_srcdir} libpp_common_la_LIBADD = ${ZLIB_LIBS} ! libpp_common_la_LDFLAGS = -version-info 1:0:0 Index: config_file.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_common/config_file.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** config_file.c 18 Dec 2007 00:03:00 -0000 1.8 --- config_file.c 3 Jan 2008 22:04:44 -0000 1.9 *************** *** 122,127 **** config_item_add(config_definition, CONFIG_ITEM_ID_SERVER_PORT, "Server_Port", "1976", _("Server port"), _("Port for perfparsed server\n# Put 0 or \"\" to disable the server"), "-p", "--port", TYPE_INT, 1); config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG, "Service_Log", "/" LOCALSTATEDIR "/serviceperf.log", _("Input log source (from nagios or perfparsed)"), _("Log source from nagios (or other tools) that perfparse will scan\n# Authorized values: a file name, '-' for stdin, '|' for a fifo and '>' for a host:port socket\n# For sockets, a command 'history' will be sent before retreiving the data"), "-l", "--serviceperf-log", TYPE_STRING, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG_SAVE_POSITION, "Service_Log_Save_Position", "yes", _("Save the read position"), _("Save the read position in the nagios log file ? If yes, perfparse will start from that position instead of from the beginning"), NULL, NULL, TYPE_BOOLEAN, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG_POSITION_MARK_PATH, "Service_Log_Position_Mark_Path", "/" LOCALSTATEDIR "/serviceperf.mark" , _("Position mark file path"), _("Path for files containing the read position for nagios log files"), NULL, NULL, TYPE_STRING, 1); config_item_add(config_definition, CONFIG_ITEM_ID_HISTORY_START_TM, "History_Start_Tm", "-86400", _("Start timestamp for history retreiving"), _("Start timestamp for history retreiving (positive is absolute, negative is relative to end tm)"), NULL, "--history_start_tm", TYPE_INT, 1); config_item_add(config_definition, CONFIG_ITEM_ID_HISTORY_END_TM, "History_End_Tm", "-30", _("End timestamp for history retreiving"), _("End timestamp for history retreiving (positive is absolute, negative is relative to Now)"), NULL, "--history_end_tm", TYPE_INT, 1); --- 122,127 ---- config_item_add(config_definition, CONFIG_ITEM_ID_SERVER_PORT, "Server_Port", "1976", _("Server port"), _("Port for perfparsed server\n# Put 0 or \"\" to disable the server"), "-p", "--port", TYPE_INT, 1); config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG, "Service_Log", "/" LOCALSTATEDIR "/serviceperf.log", _("Input log source (from nagios or perfparsed)"), _("Log source from nagios (or other tools) that perfparse will scan\n# Authorized values: a file name, '-' for stdin, '|' for a fifo and '>' for a host:port socket\n# For sockets, a command 'history' will be sent before retreiving the data"), "-l", "--serviceperf-log", TYPE_STRING, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG_SAVE_POSITION, "Service_Log_Save_Position", "yes", _("Save the read position"), _("Save the read position in the Service_Log file ? If yes, perfparse will start from that position instead of from the beginning"), NULL, NULL, TYPE_BOOLEAN, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG_POSITION_MARK_PATH, "Service_Log_Position_Mark_Path", "/" LOCALSTATEDIR "/serviceperf.mark" , _("Position mark file path"), _("Path for file containing the read position for Service_Log file"), NULL, NULL, TYPE_STRING, 1); config_item_add(config_definition, CONFIG_ITEM_ID_HISTORY_START_TM, "History_Start_Tm", "-86400", _("Start timestamp for history retreiving"), _("Start timestamp for history retreiving (positive is absolute, negative is relative to end tm)"), NULL, "--history_start_tm", TYPE_INT, 1); config_item_add(config_definition, CONFIG_ITEM_ID_HISTORY_END_TM, "History_End_Tm", "-30", _("End timestamp for history retreiving"), _("End timestamp for history retreiving (positive is absolute, negative is relative to Now)"), NULL, "--history_end_tm", TYPE_INT, 1); |
From: Florian G. <re...@us...> - 2007-12-23 13:56:10
|
Update of /cvsroot/perfparse/_perfparse/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11245 Modified Files: perfparsed.sh Log Message: make perfparsed dependant on mysql (todo: use parameter?) Index: perfparsed.sh =================================================================== RCS file: /cvsroot/perfparse/_perfparse/scripts/perfparsed.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** perfparsed.sh 30 Sep 2007 22:43:46 -0000 1.4 --- perfparsed.sh 23 Dec 2007 13:56:13 -0000 1.5 *************** *** 7,11 **** ### BEGIN INIT INFO # Provides: perfparsed ! # Required-Start: $local_fs $remote_fs $syslog # Required-Stop: # Default-Start: 2 3 5 --- 7,11 ---- ### BEGIN INIT INFO # Provides: perfparsed ! # Required-Start: $local_fs $remote_fs $syslog mysql # Required-Stop: # Default-Start: 2 3 5 |
From: Florian G. <re...@us...> - 2007-12-18 15:10:36
|
Update of /cvsroot/perfparse/_perfparse/libnagios_perfdata_parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/libnagios_perfdata_parser Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libnagios_perfdata_parser/Makefile.in,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Makefile.in 2 Aug 2007 22:20:21 -0000 1.20 --- Makefile.in 18 Dec 2007 15:10:33 -0000 1.21 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,27 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 15,23 ---- *************** *** 75,89 **** libnagios_perfdata_parser_la_OBJECTS = \ $(am_libnagios_perfdata_parser_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libnagios_perfdata_parser_la_SOURCES) DIST_SOURCES = $(libnagios_perfdata_parser_la_SOURCES) --- 71,86 ---- libnagios_perfdata_parser_la_OBJECTS = \ $(am_libnagios_perfdata_parser_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libnagios_perfdata_parser_la_SOURCES) DIST_SOURCES = $(libnagios_perfdata_parser_la_SOURCES) *************** *** 93,98 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 90,93 ---- *************** *** 106,117 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 101,104 ---- *************** *** 150,153 **** --- 137,141 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 174,177 **** --- 162,166 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 195,205 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 184,191 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 210,220 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 196,206 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 229,232 **** --- 215,219 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 258,261 **** --- 245,249 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 264,267 **** --- 252,257 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ lib_LTLIBRARIES = libnagios_perfdata_parser.la libnagios_perfdata_parser_la_SOURCES = log_parser.c libnagios_perfdata_parser.h *************** *** 301,305 **** install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ --- 291,295 ---- install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ *************** *** 312,316 **** uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ --- 302,306 ---- uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ *************** *** 327,331 **** done libnagios_perfdata_parser.la: $(libnagios_perfdata_parser_la_OBJECTS) $(libnagios_perfdata_parser_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libnagios_perfdata_parser_la_LDFLAGS) $(libnagios_perfdata_parser_la_OBJECTS) $(libnagios_perfdata_parser_la_LIBADD) $(LIBS) mostlyclean-compile: --- 317,321 ---- done libnagios_perfdata_parser.la: $(libnagios_perfdata_parser_la_OBJECTS) $(libnagios_perfdata_parser_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libnagios_perfdata_parser_la_OBJECTS) $(libnagios_perfdata_parser_la_LIBADD) $(LIBS) mostlyclean-compile: *************** *** 338,343 **** .c.o: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 328,333 ---- .c.o: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 345,350 **** .c.obj: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 335,340 ---- .c.obj: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 352,357 **** .c.lo: ! @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 342,347 ---- .c.lo: ! @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 364,371 **** -rm -rf .libs _libs - distclean-libtool: - -rm -f libtool - uninstall-info-am: - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ --- 354,357 ---- *************** *** 417,436 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 403,421 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 448,452 **** installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 433,437 ---- installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 483,487 **** -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 468,472 ---- -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 497,506 **** --- 482,499 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: install-libLTLIBRARIES + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 523,527 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ --- 516,522 ---- ps-am: ! uninstall-am: uninstall-libLTLIBRARIES ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ *************** *** 529,540 **** distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am \ ! install-libLTLIBRARIES install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 524,536 ---- distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am \ ! install-libLTLIBRARIES install-man install-pdf install-pdf-am \ ! install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. |
From: Florian G. <re...@us...> - 2007-12-18 15:10:35
|
Update of /cvsroot/perfparse/_perfparse/perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/perfparse Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/perfparse/Makefile.in,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Makefile.in 2 Aug 2007 22:20:22 -0000 1.20 --- Makefile.in 18 Dec 2007 15:10:34 -0000 1.21 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,27 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 15,23 ---- *************** *** 75,78 **** --- 71,77 ---- am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) perfparse_log2any_DEPENDENCIES = $(am__DEPENDENCIES_2) + perfparse_log2any_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(perfparse_log2any_LDFLAGS) $(LDFLAGS) -o $@ am_perfparsed_OBJECTS = perfparsed-perfparsed.$(OBJEXT) \ perfparsed-perfparse-common.$(OBJEXT) \ *************** *** 82,96 **** perfparsed_OBJECTS = $(am_perfparsed_OBJECTS) perfparsed_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(perfparse_log2any_SOURCES) $(perfparsed_SOURCES) DIST_SOURCES = $(perfparse_log2any_SOURCES) $(perfparsed_SOURCES) --- 81,99 ---- perfparsed_OBJECTS = $(am_perfparsed_OBJECTS) perfparsed_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) ! perfparsed_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ ! $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(perfparsed_LDFLAGS) $(LDFLAGS) -o $@ ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(perfparse_log2any_SOURCES) $(perfparsed_SOURCES) DIST_SOURCES = $(perfparse_log2any_SOURCES) $(perfparsed_SOURCES) *************** *** 100,105 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 103,106 ---- *************** *** 113,124 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 114,117 ---- *************** *** 157,160 **** --- 150,154 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 181,184 **** --- 175,179 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 202,212 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 197,204 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 217,227 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 209,219 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 236,239 **** --- 228,232 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 265,268 **** --- 258,262 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 271,274 **** --- 265,270 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ @USE_DB_MYSQL_TRUE@GO_MYSQL = mysql @USE_DB_POSTGRESQL_TRUE@GO_POSTGRESSQL = postgresql *************** *** 330,334 **** install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ --- 326,330 ---- install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ *************** *** 358,365 **** perfparse-log2any$(EXEEXT): $(perfparse_log2any_OBJECTS) $(perfparse_log2any_DEPENDENCIES) @rm -f perfparse-log2any$(EXEEXT) ! $(LINK) $(perfparse_log2any_LDFLAGS) $(perfparse_log2any_OBJECTS) $(perfparse_log2any_LDADD) $(LIBS) perfparsed$(EXEEXT): $(perfparsed_OBJECTS) $(perfparsed_DEPENDENCIES) @rm -f perfparsed$(EXEEXT) ! $(LINK) $(perfparsed_LDFLAGS) $(perfparsed_OBJECTS) $(perfparsed_LDADD) $(LIBS) mostlyclean-compile: --- 354,361 ---- perfparse-log2any$(EXEEXT): $(perfparse_log2any_OBJECTS) $(perfparse_log2any_DEPENDENCIES) @rm -f perfparse-log2any$(EXEEXT) ! $(perfparse_log2any_LINK) $(perfparse_log2any_OBJECTS) $(perfparse_log2any_LDADD) $(LIBS) perfparsed$(EXEEXT): $(perfparsed_OBJECTS) $(perfparsed_DEPENDENCIES) @rm -f perfparsed$(EXEEXT) ! $(perfparsed_LINK) $(perfparsed_OBJECTS) $(perfparsed_LDADD) $(LIBS) mostlyclean-compile: *************** *** 381,386 **** .c.o: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 377,382 ---- .c.o: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 388,393 **** .c.obj: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 384,389 ---- .c.obj: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 395,400 **** .c.lo: ! @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 391,396 ---- .c.lo: ! @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 402,407 **** perfparse_log2any-perfparse-log2any.o: perfparse-log2any.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-perfparse-log2any.o -MD -MP -MF "$(DEPDIR)/perfparse_log2any-perfparse-log2any.Tpo" -c -o perfparse_log2any-perfparse-log2any.o `test -f 'perfparse-log2any.c' || echo '$(srcdir)/'`perfparse-log2any.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_log2any-perfparse-log2any.Tpo" "$(DEPDIR)/perfparse_log2any-perfparse-log2any.Po"; else rm -f "$(DEPDIR)/perfparse_log2any-perfparse-log2any.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-log2any.c' object='perfparse_log2any-perfparse-log2any.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 398,403 ---- perfparse_log2any-perfparse-log2any.o: perfparse-log2any.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-perfparse-log2any.o -MD -MP -MF $(DEPDIR)/perfparse_log2any-perfparse-log2any.Tpo -c -o perfparse_log2any-perfparse-log2any.o `test -f 'perfparse-log2any.c' || echo '$(srcdir)/'`perfparse-log2any.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_log2any-perfparse-log2any.Tpo $(DEPDIR)/perfparse_log2any-perfparse-log2any.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-log2any.c' object='perfparse_log2any-perfparse-log2any.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 409,414 **** perfparse_log2any-perfparse-log2any.obj: perfparse-log2any.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-perfparse-log2any.obj -MD -MP -MF "$(DEPDIR)/perfparse_log2any-perfparse-log2any.Tpo" -c -o perfparse_log2any-perfparse-log2any.obj `if test -f 'perfparse-log2any.c'; then $(CYGPATH_W) 'perfparse-log2any.c'; else $(CYGPATH_W) '$(srcdir)/perfparse-log2any.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_log2any-perfparse-log2any.Tpo" "$(DEPDIR)/perfparse_log2any-perfparse-log2any.Po"; else rm -f "$(DEPDIR)/perfparse_log2any-perfparse-log2any.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-log2any.c' object='perfparse_log2any-perfparse-log2any.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 405,410 ---- perfparse_log2any-perfparse-log2any.obj: perfparse-log2any.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-perfparse-log2any.obj -MD -MP -MF $(DEPDIR)/perfparse_log2any-perfparse-log2any.Tpo -c -o perfparse_log2any-perfparse-log2any.obj `if test -f 'perfparse-log2any.c'; then $(CYGPATH_W) 'perfparse-log2any.c'; else $(CYGPATH_W) '$(srcdir)/perfparse-log2any.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_log2any-perfparse-log2any.Tpo $(DEPDIR)/perfparse_log2any-perfparse-log2any.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-log2any.c' object='perfparse_log2any-perfparse-log2any.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 416,421 **** perfparse_log2any-perfparse-common.o: perfparse-common.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-perfparse-common.o -MD -MP -MF "$(DEPDIR)/perfparse_log2any-perfparse-common.Tpo" -c -o perfparse_log2any-perfparse-common.o `test -f 'perfparse-common.c' || echo '$(srcdir)/'`perfparse-common.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_log2any-perfparse-common.Tpo" "$(DEPDIR)/perfparse_log2any-perfparse-common.Po"; else rm -f "$(DEPDIR)/perfparse_log2any-perfparse-common.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-common.c' object='perfparse_log2any-perfparse-common.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 412,417 ---- perfparse_log2any-perfparse-common.o: perfparse-common.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-perfparse-common.o -MD -MP -MF $(DEPDIR)/perfparse_log2any-perfparse-common.Tpo -c -o perfparse_log2any-perfparse-common.o `test -f 'perfparse-common.c' || echo '$(srcdir)/'`perfparse-common.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_log2any-perfparse-common.Tpo $(DEPDIR)/perfparse_log2any-perfparse-common.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-common.c' object='perfparse_log2any-perfparse-common.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 423,428 **** perfparse_log2any-perfparse-common.obj: perfparse-common.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-perfparse-common.obj -MD -MP -MF "$(DEPDIR)/perfparse_log2any-perfparse-common.Tpo" -c -o perfparse_log2any-perfparse-common.obj `if test -f 'perfparse-common.c'; then $(CYGPATH_W) 'perfparse-common.c'; else $(CYGPATH_W) '$(srcdir)/perfparse-common.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_log2any-perfparse-common.Tpo" "$(DEPDIR)/perfparse_log2any-perfparse-common.Po"; else rm -f "$(DEPDIR)/perfparse_log2any-perfparse-common.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-common.c' object='perfparse_log2any-perfparse-common.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 419,424 ---- perfparse_log2any-perfparse-common.obj: perfparse-common.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-perfparse-common.obj -MD -MP -MF $(DEPDIR)/perfparse_log2any-perfparse-common.Tpo -c -o perfparse_log2any-perfparse-common.obj `if test -f 'perfparse-common.c'; then $(CYGPATH_W) 'perfparse-common.c'; else $(CYGPATH_W) '$(srcdir)/perfparse-common.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_log2any-perfparse-common.Tpo $(DEPDIR)/perfparse_log2any-perfparse-common.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-common.c' object='perfparse_log2any-perfparse-common.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 430,435 **** perfparse_log2any-log_reader.o: log_reader.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-log_reader.o -MD -MP -MF "$(DEPDIR)/perfparse_log2any-log_reader.Tpo" -c -o perfparse_log2any-log_reader.o `test -f 'log_reader.c' || echo '$(srcdir)/'`log_reader.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_log2any-log_reader.Tpo" "$(DEPDIR)/perfparse_log2any-log_reader.Po"; else rm -f "$(DEPDIR)/perfparse_log2any-log_reader.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log_reader.c' object='perfparse_log2any-log_reader.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 426,431 ---- perfparse_log2any-log_reader.o: log_reader.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-log_reader.o -MD -MP -MF $(DEPDIR)/perfparse_log2any-log_reader.Tpo -c -o perfparse_log2any-log_reader.o `test -f 'log_reader.c' || echo '$(srcdir)/'`log_reader.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_log2any-log_reader.Tpo $(DEPDIR)/perfparse_log2any-log_reader.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log_reader.c' object='perfparse_log2any-log_reader.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 437,442 **** perfparse_log2any-log_reader.obj: log_reader.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-log_reader.obj -MD -MP -MF "$(DEPDIR)/perfparse_log2any-log_reader.Tpo" -c -o perfparse_log2any-log_reader.obj `if test -f 'log_reader.c'; then $(CYGPATH_W) 'log_reader.c'; else $(CYGPATH_W) '$(srcdir)/log_reader.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_log2any-log_reader.Tpo" "$(DEPDIR)/perfparse_log2any-log_reader.Po"; else rm -f "$(DEPDIR)/perfparse_log2any-log_reader.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log_reader.c' object='perfparse_log2any-log_reader.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 433,438 ---- perfparse_log2any-log_reader.obj: log_reader.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-log_reader.obj -MD -MP -MF $(DEPDIR)/perfparse_log2any-log_reader.Tpo -c -o perfparse_log2any-log_reader.obj `if test -f 'log_reader.c'; then $(CYGPATH_W) 'log_reader.c'; else $(CYGPATH_W) '$(srcdir)/log_reader.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_log2any-log_reader.Tpo $(DEPDIR)/perfparse_log2any-log_reader.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log_reader.c' object='perfparse_log2any-log_reader.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 444,449 **** perfparse_log2any-storage.o: storage.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-storage.o -MD -MP -MF "$(DEPDIR)/perfparse_log2any-storage.Tpo" -c -o perfparse_log2any-storage.o `test -f 'storage.c' || echo '$(srcdir)/'`storage.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_log2any-storage.Tpo" "$(DEPDIR)/perfparse_log2any-storage.Po"; else rm -f "$(DEPDIR)/perfparse_log2any-storage.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage.c' object='perfparse_log2any-storage.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 440,445 ---- perfparse_log2any-storage.o: storage.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-storage.o -MD -MP -MF $(DEPDIR)/perfparse_log2any-storage.Tpo -c -o perfparse_log2any-storage.o `test -f 'storage.c' || echo '$(srcdir)/'`storage.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_log2any-storage.Tpo $(DEPDIR)/perfparse_log2any-storage.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage.c' object='perfparse_log2any-storage.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 451,456 **** perfparse_log2any-storage.obj: storage.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-storage.obj -MD -MP -MF "$(DEPDIR)/perfparse_log2any-storage.Tpo" -c -o perfparse_log2any-storage.obj `if test -f 'storage.c'; then $(CYGPATH_W) 'storage.c'; else $(CYGPATH_W) '$(srcdir)/storage.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_log2any-storage.Tpo" "$(DEPDIR)/perfparse_log2any-storage.Po"; else rm -f "$(DEPDIR)/perfparse_log2any-storage.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage.c' object='perfparse_log2any-storage.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 447,452 ---- perfparse_log2any-storage.obj: storage.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_log2any_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_log2any-storage.obj -MD -MP -MF $(DEPDIR)/perfparse_log2any-storage.Tpo -c -o perfparse_log2any-storage.obj `if test -f 'storage.c'; then $(CYGPATH_W) 'storage.c'; else $(CYGPATH_W) '$(srcdir)/storage.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_log2any-storage.Tpo $(DEPDIR)/perfparse_log2any-storage.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage.c' object='perfparse_log2any-storage.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 458,463 **** perfparsed-perfparsed.o: perfparsed.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-perfparsed.o -MD -MP -MF "$(DEPDIR)/perfparsed-perfparsed.Tpo" -c -o perfparsed-perfparsed.o `test -f 'perfparsed.c' || echo '$(srcdir)/'`perfparsed.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-perfparsed.Tpo" "$(DEPDIR)/perfparsed-perfparsed.Po"; else rm -f "$(DEPDIR)/perfparsed-perfparsed.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparsed.c' object='perfparsed-perfparsed.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 454,459 ---- perfparsed-perfparsed.o: perfparsed.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-perfparsed.o -MD -MP -MF $(DEPDIR)/perfparsed-perfparsed.Tpo -c -o perfparsed-perfparsed.o `test -f 'perfparsed.c' || echo '$(srcdir)/'`perfparsed.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-perfparsed.Tpo $(DEPDIR)/perfparsed-perfparsed.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparsed.c' object='perfparsed-perfparsed.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 465,470 **** perfparsed-perfparsed.obj: perfparsed.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-perfparsed.obj -MD -MP -MF "$(DEPDIR)/perfparsed-perfparsed.Tpo" -c -o perfparsed-perfparsed.obj `if test -f 'perfparsed.c'; then $(CYGPATH_W) 'perfparsed.c'; else $(CYGPATH_W) '$(srcdir)/perfparsed.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-perfparsed.Tpo" "$(DEPDIR)/perfparsed-perfparsed.Po"; else rm -f "$(DEPDIR)/perfparsed-perfparsed.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparsed.c' object='perfparsed-perfparsed.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 461,466 ---- perfparsed-perfparsed.obj: perfparsed.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-perfparsed.obj -MD -MP -MF $(DEPDIR)/perfparsed-perfparsed.Tpo -c -o perfparsed-perfparsed.obj `if test -f 'perfparsed.c'; then $(CYGPATH_W) 'perfparsed.c'; else $(CYGPATH_W) '$(srcdir)/perfparsed.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-perfparsed.Tpo $(DEPDIR)/perfparsed-perfparsed.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparsed.c' object='perfparsed-perfparsed.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 472,477 **** perfparsed-perfparse-common.o: perfparse-common.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-perfparse-common.o -MD -MP -MF "$(DEPDIR)/perfparsed-perfparse-common.Tpo" -c -o perfparsed-perfparse-common.o `test -f 'perfparse-common.c' || echo '$(srcdir)/'`perfparse-common.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-perfparse-common.Tpo" "$(DEPDIR)/perfparsed-perfparse-common.Po"; else rm -f "$(DEPDIR)/perfparsed-perfparse-common.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-common.c' object='perfparsed-perfparse-common.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 468,473 ---- perfparsed-perfparse-common.o: perfparse-common.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-perfparse-common.o -MD -MP -MF $(DEPDIR)/perfparsed-perfparse-common.Tpo -c -o perfparsed-perfparse-common.o `test -f 'perfparse-common.c' || echo '$(srcdir)/'`perfparse-common.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-perfparse-common.Tpo $(DEPDIR)/perfparsed-perfparse-common.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-common.c' object='perfparsed-perfparse-common.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 479,484 **** perfparsed-perfparse-common.obj: perfparse-common.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-perfparse-common.obj -MD -MP -MF "$(DEPDIR)/perfparsed-perfparse-common.Tpo" -c -o perfparsed-perfparse-common.obj `if test -f 'perfparse-common.c'; then $(CYGPATH_W) 'perfparse-common.c'; else $(CYGPATH_W) '$(srcdir)/perfparse-common.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-perfparse-common.Tpo" "$(DEPDIR)/perfparsed-perfparse-common.Po"; else rm -f "$(DEPDIR)/perfparsed-perfparse-common.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-common.c' object='perfparsed-perfparse-common.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 475,480 ---- perfparsed-perfparse-common.obj: perfparse-common.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-perfparse-common.obj -MD -MP -MF $(DEPDIR)/perfparsed-perfparse-common.Tpo -c -o perfparsed-perfparse-common.obj `if test -f 'perfparse-common.c'; then $(CYGPATH_W) 'perfparse-common.c'; else $(CYGPATH_W) '$(srcdir)/perfparse-common.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-perfparse-common.Tpo $(DEPDIR)/perfparsed-perfparse-common.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-common.c' object='perfparsed-perfparse-common.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 486,491 **** perfparsed-server_parser.o: server_parser.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-server_parser.o -MD -MP -MF "$(DEPDIR)/perfparsed-server_parser.Tpo" -c -o perfparsed-server_parser.o `test -f 'server_parser.c' || echo '$(srcdir)/'`server_parser.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-server_parser.Tpo" "$(DEPDIR)/perfparsed-server_parser.Po"; else rm -f "$(DEPDIR)/perfparsed-server_parser.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='server_parser.c' object='perfparsed-server_parser.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 482,487 ---- perfparsed-server_parser.o: server_parser.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-server_parser.o -MD -MP -MF $(DEPDIR)/perfparsed-server_parser.Tpo -c -o perfparsed-server_parser.o `test -f 'server_parser.c' || echo '$(srcdir)/'`server_parser.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-server_parser.Tpo $(DEPDIR)/perfparsed-server_parser.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='server_parser.c' object='perfparsed-server_parser.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 493,498 **** perfparsed-server_parser.obj: server_parser.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-server_parser.obj -MD -MP -MF "$(DEPDIR)/perfparsed-server_parser.Tpo" -c -o perfparsed-server_parser.obj `if test -f 'server_parser.c'; then $(CYGPATH_W) 'server_parser.c'; else $(CYGPATH_W) '$(srcdir)/server_parser.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-server_parser.Tpo" "$(DEPDIR)/perfparsed-server_parser.Po"; else rm -f "$(DEPDIR)/perfparsed-server_parser.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='server_parser.c' object='perfparsed-server_parser.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 489,494 ---- perfparsed-server_parser.obj: server_parser.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-server_parser.obj -MD -MP -MF $(DEPDIR)/perfparsed-server_parser.Tpo -c -o perfparsed-server_parser.obj `if test -f 'server_parser.c'; then $(CYGPATH_W) 'server_parser.c'; else $(CYGPATH_W) '$(srcdir)/server_parser.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-server_parser.Tpo $(DEPDIR)/perfparsed-server_parser.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='server_parser.c' object='perfparsed-server_parser.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 500,505 **** perfparsed-log_reader.o: log_reader.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-log_reader.o -MD -MP -MF "$(DEPDIR)/perfparsed-log_reader.Tpo" -c -o perfparsed-log_reader.o `test -f 'log_reader.c' || echo '$(srcdir)/'`log_reader.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-log_reader.Tpo" "$(DEPDIR)/perfparsed-log_reader.Po"; else rm -f "$(DEPDIR)/perfparsed-log_reader.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log_reader.c' object='perfparsed-log_reader.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 496,501 ---- perfparsed-log_reader.o: log_reader.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-log_reader.o -MD -MP -MF $(DEPDIR)/perfparsed-log_reader.Tpo -c -o perfparsed-log_reader.o `test -f 'log_reader.c' || echo '$(srcdir)/'`log_reader.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-log_reader.Tpo $(DEPDIR)/perfparsed-log_reader.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log_reader.c' object='perfparsed-log_reader.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 507,512 **** perfparsed-log_reader.obj: log_reader.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-log_reader.obj -MD -MP -MF "$(DEPDIR)/perfparsed-log_reader.Tpo" -c -o perfparsed-log_reader.obj `if test -f 'log_reader.c'; then $(CYGPATH_W) 'log_reader.c'; else $(CYGPATH_W) '$(srcdir)/log_reader.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-log_reader.Tpo" "$(DEPDIR)/perfparsed-log_reader.Po"; else rm -f "$(DEPDIR)/perfparsed-log_reader.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log_reader.c' object='perfparsed-log_reader.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 503,508 ---- perfparsed-log_reader.obj: log_reader.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-log_reader.obj -MD -MP -MF $(DEPDIR)/perfparsed-log_reader.Tpo -c -o perfparsed-log_reader.obj `if test -f 'log_reader.c'; then $(CYGPATH_W) 'log_reader.c'; else $(CYGPATH_W) '$(srcdir)/log_reader.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-log_reader.Tpo $(DEPDIR)/perfparsed-log_reader.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log_reader.c' object='perfparsed-log_reader.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 514,519 **** perfparsed-storage.o: storage.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-storage.o -MD -MP -MF "$(DEPDIR)/perfparsed-storage.Tpo" -c -o perfparsed-storage.o `test -f 'storage.c' || echo '$(srcdir)/'`storage.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-storage.Tpo" "$(DEPDIR)/perfparsed-storage.Po"; else rm -f "$(DEPDIR)/perfparsed-storage.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage.c' object='perfparsed-storage.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 510,515 ---- perfparsed-storage.o: storage.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-storage.o -MD -MP -MF $(DEPDIR)/perfparsed-storage.Tpo -c -o perfparsed-storage.o `test -f 'storage.c' || echo '$(srcdir)/'`storage.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-storage.Tpo $(DEPDIR)/perfparsed-storage.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage.c' object='perfparsed-storage.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 521,526 **** perfparsed-storage.obj: storage.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-storage.obj -MD -MP -MF "$(DEPDIR)/perfparsed-storage.Tpo" -c -o perfparsed-storage.obj `if test -f 'storage.c'; then $(CYGPATH_W) 'storage.c'; else $(CYGPATH_W) '$(srcdir)/storage.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-storage.Tpo" "$(DEPDIR)/perfparsed-storage.Po"; else rm -f "$(DEPDIR)/perfparsed-storage.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage.c' object='perfparsed-storage.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 517,522 ---- perfparsed-storage.obj: storage.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-storage.obj -MD -MP -MF $(DEPDIR)/perfparsed-storage.Tpo -c -o perfparsed-storage.obj `if test -f 'storage.c'; then $(CYGPATH_W) 'storage.c'; else $(CYGPATH_W) '$(srcdir)/storage.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-storage.Tpo $(DEPDIR)/perfparsed-storage.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage.c' object='perfparsed-storage.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 528,533 **** perfparsed-storage_history.o: storage_history.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-storage_history.o -MD -MP -MF "$(DEPDIR)/perfparsed-storage_history.Tpo" -c -o perfparsed-storage_history.o `test -f 'storage_history.c' || echo '$(srcdir)/'`storage_history.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-storage_history.Tpo" "$(DEPDIR)/perfparsed-storage_history.Po"; else rm -f "$(DEPDIR)/perfparsed-storage_history.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_history.c' object='perfparsed-storage_history.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 524,529 ---- perfparsed-storage_history.o: storage_history.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-storage_history.o -MD -MP -MF $(DEPDIR)/perfparsed-storage_history.Tpo -c -o perfparsed-storage_history.o `test -f 'storage_history.c' || echo '$(srcdir)/'`storage_history.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-storage_history.Tpo $(DEPDIR)/perfparsed-storage_history.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_history.c' object='perfparsed-storage_history.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 535,540 **** perfparsed-storage_history.obj: storage_history.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-storage_history.obj -MD -MP -MF "$(DEPDIR)/perfparsed-storage_history.Tpo" -c -o perfparsed-storage_history.obj `if test -f 'storage_history.c'; then $(CYGPATH_W) 'storage_history.c'; else $(CYGPATH_W) '$(srcdir)/storage_history.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparsed-storage_history.Tpo" "$(DEPDIR)/perfparsed-storage_history.Po"; else rm -f "$(DEPDIR)/perfparsed-storage_history.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_history.c' object='perfparsed-storage_history.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 531,536 ---- perfparsed-storage_history.obj: storage_history.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparsed_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparsed-storage_history.obj -MD -MP -MF $(DEPDIR)/perfparsed-storage_history.Tpo -c -o perfparsed-storage_history.obj `if test -f 'storage_history.c'; then $(CYGPATH_W) 'storage_history.c'; else $(CYGPATH_W) '$(srcdir)/storage_history.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparsed-storage_history.Tpo $(DEPDIR)/perfparsed-storage_history.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_history.c' object='perfparsed-storage_history.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 547,554 **** -rm -rf .libs _libs - distclean-libtool: - -rm -f libtool - uninstall-info-am: - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ --- 543,546 ---- *************** *** 600,619 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 592,610 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 631,635 **** installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 622,626 ---- installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 665,669 **** -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 656,660 ---- -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 679,690 **** --- 670,689 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: install-binPROGRAMS @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) install-exec-hook + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 707,726 **** ps-am: ! uninstall-am: uninstall-binPROGRAMS uninstall-info-am @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) uninstall-hook .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic clean-libtool ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-binPROGRAMS install-data install-data-am install-exec \ ! install-exec-am install-exec-hook install-info install-info-am \ ! install-man install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-binPROGRAMS uninstall-hook \ ! uninstall-info-am --- 706,728 ---- ps-am: ! uninstall-am: uninstall-binPROGRAMS @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) uninstall-hook + .MAKE: install-am install-exec-am install-strip uninstall-am + .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic clean-libtool ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-binPROGRAMS install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-exec-hook \ ! install-html install-html-am install-info install-info-am \ ! install-man install-pdf install-pdf-am install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-binPROGRAMS uninstall-hook |
From: Florian G. <re...@us...> - 2007-12-18 15:10:34
|
Update of /cvsroot/perfparse/_perfparse/libpp_mysql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/libpp_mysql Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_mysql/Makefile.in,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Makefile.in 12 Aug 2007 00:11:44 -0000 1.21 --- Makefile.in 18 Dec 2007 15:10:33 -0000 1.22 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,27 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 15,23 ---- *************** *** 76,90 **** libpp_mysql_la-db_macro_actions.lo libpp_mysql_la_OBJECTS = $(am_libpp_mysql_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libpp_mysql_la_SOURCES) DIST_SOURCES = $(libpp_mysql_la_SOURCES) --- 72,87 ---- libpp_mysql_la-db_macro_actions.lo libpp_mysql_la_OBJECTS = $(am_libpp_mysql_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libpp_mysql_la_SOURCES) DIST_SOURCES = $(libpp_mysql_la_SOURCES) *************** *** 94,99 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 91,94 ---- *************** *** 107,118 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 102,105 ---- *************** *** 151,154 **** --- 138,142 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 175,178 **** --- 163,167 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 196,206 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 185,192 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 211,221 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 197,207 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 230,233 **** --- 216,220 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 259,262 **** --- 246,250 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 265,268 **** --- 253,258 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ lib_LTLIBRARIES = libpp_mysql.la libpp_mysql_la_SOURCES = common.c common.h dbms.h dbms.c del_policy.c del_policy.h db_macro_actions.c db_macro_actions.h *************** *** 304,308 **** install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ --- 294,298 ---- install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ *************** *** 315,319 **** uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ --- 305,309 ---- uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ *************** *** 330,334 **** done libpp_mysql.la: $(libpp_mysql_la_OBJECTS) $(libpp_mysql_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libpp_mysql_la_LDFLAGS) $(libpp_mysql_la_OBJECTS) $(libpp_mysql_la_LIBADD) $(LIBS) mostlyclean-compile: --- 320,324 ---- done libpp_mysql.la: $(libpp_mysql_la_OBJECTS) $(libpp_mysql_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libpp_mysql_la_OBJECTS) $(libpp_mysql_la_LIBADD) $(LIBS) mostlyclean-compile: *************** *** 344,349 **** .c.o: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 334,339 ---- .c.o: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 351,356 **** .c.obj: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 341,346 ---- .c.obj: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 358,363 **** .c.lo: ! @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 348,353 ---- .c.lo: ! @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 365,394 **** libpp_mysql_la-common.lo: common.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_mysql_la-common.lo -MD -MP -MF "$(DEPDIR)/libpp_mysql_la-common.Tpo" -c -o libpp_mysql_la-common.lo `test -f 'common.c' || echo '$(srcdir)/'`common.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_mysql_la-common.Tpo" "$(DEPDIR)/libpp_mysql_la-common.Plo"; else rm -f "$(DEPDIR)/libpp_mysql_la-common.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='common.c' object='libpp_mysql_la-common.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_mysql_la-common.lo `test -f 'common.c' || echo '$(srcdir)/'`common.c libpp_mysql_la-dbms.lo: dbms.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_mysql_la-dbms.lo -MD -MP -MF "$(DEPDIR)/libpp_mysql_la-dbms.Tpo" -c -o libpp_mysql_la-dbms.lo `test -f 'dbms.c' || echo '$(srcdir)/'`dbms.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_mysql_la-dbms.Tpo" "$(DEPDIR)/libpp_mysql_la-dbms.Plo"; else rm -f "$(DEPDIR)/libpp_mysql_la-dbms.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dbms.c' object='libpp_mysql_la-dbms.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_mysql_la-dbms.lo `test -f 'dbms.c' || echo '$(srcdir)/'`dbms.c libpp_mysql_la-del_policy.lo: del_policy.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_mysql_la-del_policy.lo -MD -MP -MF "$(DEPDIR)/libpp_mysql_la-del_policy.Tpo" -c -o libpp_mysql_la-del_policy.lo `test -f 'del_policy.c' || echo '$(srcdir)/'`del_policy.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_mysql_la-del_policy.Tpo" "$(DEPDIR)/libpp_mysql_la-del_policy.Plo"; else rm -f "$(DEPDIR)/libpp_mysql_la-del_policy.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='del_policy.c' object='libpp_mysql_la-del_policy.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_mysql_la-del_policy.lo `test -f 'del_policy.c' || echo '$(srcdir)/'`del_policy.c libpp_mysql_la-db_macro_actions.lo: db_macro_actions.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_mysql_la-db_macro_actions.lo -MD -MP -MF "$(DEPDIR)/libpp_mysql_la-db_macro_actions.Tpo" -c -o libpp_mysql_la-db_macro_actions.lo `test -f 'db_macro_actions.c' || echo '$(srcdir)/'`db_macro_actions.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_mysql_la-db_macro_actions.Tpo" "$(DEPDIR)/libpp_mysql_la-db_macro_actions.Plo"; else rm -f "$(DEPDIR)/libpp_mysql_la-db_macro_actions.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='db_macro_actions.c' object='libpp_mysql_la-db_macro_actions.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_mysql_la-db_macro_actions.lo `test -f 'db_macro_actions.c' || echo '$(srcdir)/'`db_macro_actions.c mostlyclean-libtool: --- 355,384 ---- libpp_mysql_la-common.lo: common.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_mysql_la-common.lo -MD -MP -MF $(DEPDIR)/libpp_mysql_la-common.Tpo -c -o libpp_mysql_la-common.lo `test -f 'common.c' || echo '$(srcdir)/'`common.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_mysql_la-common.Tpo $(DEPDIR)/libpp_mysql_la-common.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='common.c' object='libpp_mysql_la-common.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_mysql_la-common.lo `test -f 'common.c' || echo '$(srcdir)/'`common.c libpp_mysql_la-dbms.lo: dbms.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_mysql_la-dbms.lo -MD -MP -MF $(DEPDIR)/libpp_mysql_la-dbms.Tpo -c -o libpp_mysql_la-dbms.lo `test -f 'dbms.c' || echo '$(srcdir)/'`dbms.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_mysql_la-dbms.Tpo $(DEPDIR)/libpp_mysql_la-dbms.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dbms.c' object='libpp_mysql_la-dbms.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_mysql_la-dbms.lo `test -f 'dbms.c' || echo '$(srcdir)/'`dbms.c libpp_mysql_la-del_policy.lo: del_policy.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_mysql_la-del_policy.lo -MD -MP -MF $(DEPDIR)/libpp_mysql_la-del_policy.Tpo -c -o libpp_mysql_la-del_policy.lo `test -f 'del_policy.c' || echo '$(srcdir)/'`del_policy.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_mysql_la-del_policy.Tpo $(DEPDIR)/libpp_mysql_la-del_policy.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='del_policy.c' object='libpp_mysql_la-del_policy.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_mysql_la-del_policy.lo `test -f 'del_policy.c' || echo '$(srcdir)/'`del_policy.c libpp_mysql_la-db_macro_actions.lo: db_macro_actions.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_mysql_la-db_macro_actions.lo -MD -MP -MF $(DEPDIR)/libpp_mysql_la-db_macro_actions.Tpo -c -o libpp_mysql_la-db_macro_actions.lo `test -f 'db_macro_actions.c' || echo '$(srcdir)/'`db_macro_actions.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_mysql_la-db_macro_actions.Tpo $(DEPDIR)/libpp_mysql_la-db_macro_actions.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='db_macro_actions.c' object='libpp_mysql_la-db_macro_actions.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_mysql_la-db_macro_actions.lo `test -f 'db_macro_actions.c' || echo '$(srcdir)/'`db_macro_actions.c mostlyclean-libtool: *************** *** 398,405 **** -rm -rf .libs _libs - distclean-libtool: - -rm -f libtool - uninstall-info-am: - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ --- 388,391 ---- *************** *** 451,470 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 437,455 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 482,486 **** installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 467,471 ---- installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 517,521 **** -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 502,506 ---- -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 531,540 **** --- 516,533 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: install-libLTLIBRARIES + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 557,561 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ --- 550,556 ---- ps-am: ! uninstall-am: uninstall-libLTLIBRARIES ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ *************** *** 563,574 **** distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am \ ! install-libLTLIBRARIES install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 558,570 ---- distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am \ ! install-libLTLIBRARIES install-man install-pdf install-pdf-am \ ! install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. |
From: Florian G. <re...@us...> - 2007-12-18 15:10:34
|
Update of /cvsroot/perfparse/_perfparse/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/modules Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/modules/Makefile.in,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Makefile.in 2 Aug 2007 22:20:22 -0000 1.20 --- Makefile.in 18 Dec 2007 15:10:34 -0000 1.21 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,27 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 15,23 ---- *************** *** 78,81 **** --- 74,81 ---- libpp_storage_file_output_la_OBJECTS = \ $(am_libpp_storage_file_output_la_OBJECTS) + libpp_storage_file_output_la_LINK = $(LIBTOOL) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) $(libpp_storage_file_output_la_LDFLAGS) \ + $(LDFLAGS) -o $@ libpp_storage_gnuplot_la_DEPENDENCIES = $(am__DEPENDENCIES_1) am_libpp_storage_gnuplot_la_OBJECTS = \ *************** *** 84,87 **** --- 84,90 ---- libpp_storage_gnuplot_la_OBJECTS = \ $(am_libpp_storage_gnuplot_la_OBJECTS) + libpp_storage_gnuplot_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libpp_storage_gnuplot_la_LDFLAGS) $(LDFLAGS) -o $@ libpp_storage_mysql_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) *************** *** 90,93 **** --- 93,99 ---- libpp_storage_mysql_la-libstorage.lo libpp_storage_mysql_la_OBJECTS = $(am_libpp_storage_mysql_la_OBJECTS) + libpp_storage_mysql_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libpp_storage_mysql_la_LDFLAGS) $(LDFLAGS) -o $@ @USE_DB_MYSQL_TRUE@am_libpp_storage_mysql_la_rpath = -rpath $(libdir) libpp_storage_postgresql_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ *************** *** 98,101 **** --- 104,111 ---- libpp_storage_postgresql_la_OBJECTS = \ $(am_libpp_storage_postgresql_la_OBJECTS) + libpp_storage_postgresql_la_LINK = $(LIBTOOL) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) $(libpp_storage_postgresql_la_LDFLAGS) \ + $(LDFLAGS) -o $@ @USE_DB_POSTGRESQL_TRUE@am_libpp_storage_postgresql_la_rpath = -rpath \ @USE_DB_POSTGRESQL_TRUE@ $(libdir) *************** *** 105,108 **** --- 115,121 ---- libpp_storage_print_la-libstorage.lo libpp_storage_print_la_OBJECTS = $(am_libpp_storage_print_la_OBJECTS) + libpp_storage_print_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libpp_storage_print_la_LDFLAGS) $(LDFLAGS) -o $@ libpp_storage_socket_output_la_DEPENDENCIES = $(am__DEPENDENCIES_1) am_libpp_storage_socket_output_la_OBJECTS = \ *************** *** 111,114 **** --- 124,131 ---- libpp_storage_socket_output_la_OBJECTS = \ $(am_libpp_storage_socket_output_la_OBJECTS) + libpp_storage_socket_output_la_LINK = $(LIBTOOL) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(AM_CFLAGS) $(CFLAGS) \ + $(libpp_storage_socket_output_la_LDFLAGS) $(LDFLAGS) -o $@ libpp_storage_stdout_la_DEPENDENCIES = $(am__DEPENDENCIES_1) am_libpp_storage_stdout_la_OBJECTS = \ *************** *** 117,131 **** libpp_storage_stdout_la_OBJECTS = \ $(am_libpp_storage_stdout_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libpp_storage_file_output_la_SOURCES) \ $(libpp_storage_gnuplot_la_SOURCES) \ --- 134,152 ---- libpp_storage_stdout_la_OBJECTS = \ $(am_libpp_storage_stdout_la_OBJECTS) ! libpp_storage_stdout_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ ! $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(libpp_storage_stdout_la_LDFLAGS) $(LDFLAGS) -o $@ ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libpp_storage_file_output_la_SOURCES) \ $(libpp_storage_gnuplot_la_SOURCES) \ *************** *** 147,152 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 168,171 ---- *************** *** 160,171 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 179,182 ---- *************** *** 204,207 **** --- 215,219 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 228,231 **** --- 240,244 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 249,259 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 262,269 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 264,274 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 274,284 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 283,286 **** --- 293,297 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 312,315 **** --- 323,327 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 318,321 **** --- 330,335 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ STORAGE_INCLUDES = ${GLIB_CFLAGS} -I${top_srcdir} -I${top_srcdir}/libpp_common -I${top_srcdir}/libnagios_perfdata_parser '-DLOCALEDIR="$(datadir)/locale"' STORAGE_LIBS = *************** *** 394,398 **** install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ --- 408,412 ---- install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ *************** *** 405,409 **** uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ --- 419,423 ---- uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ *************** *** 420,436 **** done libpp_storage_file_output.la: $(libpp_storage_file_output_la_OBJECTS) $(libpp_storage_file_output_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libpp_storage_file_output_la_LDFLAGS) $(libpp_storage_file_output_la_OBJECTS) $(libpp_storage_file_output_la_LIBADD) $(LIBS) libpp_storage_gnuplot.la: $(libpp_storage_gnuplot_la_OBJECTS) $(libpp_storage_gnuplot_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libpp_storage_gnuplot_la_LDFLAGS) $(libpp_storage_gnuplot_la_OBJECTS) $(libpp_storage_gnuplot_la_LIBADD) $(LIBS) libpp_storage_mysql.la: $(libpp_storage_mysql_la_OBJECTS) $(libpp_storage_mysql_la_DEPENDENCIES) ! $(LINK) $(am_libpp_storage_mysql_la_rpath) $(libpp_storage_mysql_la_LDFLAGS) $(libpp_storage_mysql_la_OBJECTS) $(libpp_storage_mysql_la_LIBADD) $(LIBS) libpp_storage_postgresql.la: $(libpp_storage_postgresql_la_OBJECTS) $(libpp_storage_postgresql_la_DEPENDENCIES) ! $(LINK) $(am_libpp_storage_postgresql_la_rpath) $(libpp_storage_postgresql_la_LDFLAGS) $(libpp_storage_postgresql_la_OBJECTS) $(libpp_storage_postgresql_la_LIBADD) $(LIBS) libpp_storage_print.la: $(libpp_storage_print_la_OBJECTS) $(libpp_storage_print_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libpp_storage_print_la_LDFLAGS) $(libpp_storage_print_la_OBJECTS) $(libpp_storage_print_la_LIBADD) $(LIBS) libpp_storage_socket_output.la: $(libpp_storage_socket_output_la_OBJECTS) $(libpp_storage_socket_output_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libpp_storage_socket_output_la_LDFLAGS) $(libpp_storage_socket_output_la_OBJECTS) $(libpp_storage_socket_output_la_LIBADD) $(LIBS) libpp_storage_stdout.la: $(libpp_storage_stdout_la_OBJECTS) $(libpp_storage_stdout_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libpp_storage_stdout_la_LDFLAGS) $(libpp_storage_stdout_la_OBJECTS) $(libpp_storage_stdout_la_LIBADD) $(LIBS) mostlyclean-compile: --- 434,450 ---- done libpp_storage_file_output.la: $(libpp_storage_file_output_la_OBJECTS) $(libpp_storage_file_output_la_DEPENDENCIES) ! $(libpp_storage_file_output_la_LINK) -rpath $(libdir) $(libpp_storage_file_output_la_OBJECTS) $(libpp_storage_file_output_la_LIBADD) $(LIBS) libpp_storage_gnuplot.la: $(libpp_storage_gnuplot_la_OBJECTS) $(libpp_storage_gnuplot_la_DEPENDENCIES) ! $(libpp_storage_gnuplot_la_LINK) -rpath $(libdir) $(libpp_storage_gnuplot_la_OBJECTS) $(libpp_storage_gnuplot_la_LIBADD) $(LIBS) libpp_storage_mysql.la: $(libpp_storage_mysql_la_OBJECTS) $(libpp_storage_mysql_la_DEPENDENCIES) ! $(libpp_storage_mysql_la_LINK) $(am_libpp_storage_mysql_la_rpath) $(libpp_storage_mysql_la_OBJECTS) $(libpp_storage_mysql_la_LIBADD) $(LIBS) libpp_storage_postgresql.la: $(libpp_storage_postgresql_la_OBJECTS) $(libpp_storage_postgresql_la_DEPENDENCIES) ! $(libpp_storage_postgresql_la_LINK) $(am_libpp_storage_postgresql_la_rpath) $(libpp_storage_postgresql_la_OBJECTS) $(libpp_storage_postgresql_la_LIBADD) $(LIBS) libpp_storage_print.la: $(libpp_storage_print_la_OBJECTS) $(libpp_storage_print_la_DEPENDENCIES) ! $(libpp_storage_print_la_LINK) -rpath $(libdir) $(libpp_storage_print_la_OBJECTS) $(libpp_storage_print_la_LIBADD) $(LIBS) libpp_storage_socket_output.la: $(libpp_storage_socket_output_la_OBJECTS) $(libpp_storage_socket_output_la_DEPENDENCIES) ! $(libpp_storage_socket_output_la_LINK) -rpath $(libdir) $(libpp_storage_socket_output_la_OBJECTS) $(libpp_storage_socket_output_la_LIBADD) $(LIBS) libpp_storage_stdout.la: $(libpp_storage_stdout_la_OBJECTS) $(libpp_storage_stdout_la_DEPENDENCIES) ! $(libpp_storage_stdout_la_LINK) -rpath $(libdir) $(libpp_storage_stdout_la_OBJECTS) $(libpp_storage_stdout_la_LIBADD) $(LIBS) mostlyclean-compile: *************** *** 456,461 **** .c.o: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 470,475 ---- .c.o: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 463,468 **** .c.obj: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 477,482 ---- .c.obj: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 470,475 **** .c.lo: ! @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 484,489 ---- .c.lo: ! @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 477,576 **** libpp_storage_file_output_la-storage_file_output.lo: storage_file_output.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_file_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_file_output_la-storage_file_output.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_file_output_la-storage_file_output.Tpo" -c -o libpp_storage_file_output_la-storage_file_output.lo `test -f 'storage_file_output.c' || echo '$(srcdir)/'`storage_file_output.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_file_output_la-storage_file_output.Tpo" "$(DEPDIR)/libpp_storage_file_output_la-storage_file_output.Plo"; else rm -f "$(DEPDIR)/libpp_storage_file_output_la-storage_file_output.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_file_output.c' object='libpp_storage_file_output_la-storage_file_output.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_file_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_file_output_la-storage_file_output.lo `test -f 'storage_file_output.c' || echo '$(srcdir)/'`storage_file_output.c libpp_storage_file_output_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_file_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_file_output_la-libstorage.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_file_output_la-libstorage.Tpo" -c -o libpp_storage_file_output_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_file_output_la-libstorage.Tpo" "$(DEPDIR)/libpp_storage_file_output_la-libstorage.Plo"; else rm -f "$(DEPDIR)/libpp_storage_file_output_la-libstorage.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_file_output_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_file_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_file_output_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_gnuplot_la-storage_gnuplot.lo: storage_gnuplot.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_gnuplot_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_gnuplot_la-storage_gnuplot.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_gnuplot_la-storage_gnuplot.Tpo" -c -o libpp_storage_gnuplot_la-storage_gnuplot.lo `test -f 'storage_gnuplot.c' || echo '$(srcdir)/'`storage_gnuplot.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_gnuplot_la-storage_gnuplot.Tpo" "$(DEPDIR)/libpp_storage_gnuplot_la-storage_gnuplot.Plo"; else rm -f "$(DEPDIR)/libpp_storage_gnuplot_la-storage_gnuplot.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_gnuplot.c' object='libpp_storage_gnuplot_la-storage_gnuplot.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_gnuplot_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_gnuplot_la-storage_gnuplot.lo `test -f 'storage_gnuplot.c' || echo '$(srcdir)/'`storage_gnuplot.c libpp_storage_gnuplot_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_gnuplot_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_gnuplot_la-libstorage.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_gnuplot_la-libstorage.Tpo" -c -o libpp_storage_gnuplot_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_gnuplot_la-libstorage.Tpo" "$(DEPDIR)/libpp_storage_gnuplot_la-libstorage.Plo"; else rm -f "$(DEPDIR)/libpp_storage_gnuplot_la-libstorage.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_gnuplot_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_gnuplot_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_gnuplot_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_mysql_la-storage_mysql.lo: storage_mysql.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_mysql_la-storage_mysql.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_mysql_la-storage_mysql.Tpo" -c -o libpp_storage_mysql_la-storage_mysql.lo `test -f 'storage_mysql.c' || echo '$(srcdir)/'`storage_mysql.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_mysql_la-storage_mysql.Tpo" "$(DEPDIR)/libpp_storage_mysql_la-storage_mysql.Plo"; else rm -f "$(DEPDIR)/libpp_storage_mysql_la-storage_mysql.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_mysql.c' object='libpp_storage_mysql_la-storage_mysql.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_mysql_la-storage_mysql.lo `test -f 'storage_mysql.c' || echo '$(srcdir)/'`storage_mysql.c libpp_storage_mysql_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_mysql_la-libstorage.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_mysql_la-libstorage.Tpo" -c -o libpp_storage_mysql_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_mysql_la-libstorage.Tpo" "$(DEPDIR)/libpp_storage_mysql_la-libstorage.Plo"; else rm -f "$(DEPDIR)/libpp_storage_mysql_la-libstorage.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_mysql_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_mysql_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_postgresql_la-storage_postgresql.lo: storage_postgresql.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_postgresql_la-storage_postgresql.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_postgresql_la-storage_postgresql.Tpo" -c -o libpp_storage_postgresql_la-storage_postgresql.lo `test -f 'storage_postgresql.c' || echo '$(srcdir)/'`storage_postgresql.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_postgresql_la-storage_postgresql.Tpo" "$(DEPDIR)/libpp_storage_postgresql_la-storage_postgresql.Plo"; else rm -f "$(DEPDIR)/libpp_storage_postgresql_la-storage_postgresql.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_postgresql.c' object='libpp_storage_postgresql_la-storage_postgresql.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_postgresql_la-storage_postgresql.lo `test -f 'storage_postgresql.c' || echo '$(srcdir)/'`storage_postgresql.c libpp_storage_postgresql_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_postgresql_la-libstorage.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_postgresql_la-libstorage.Tpo" -c -o libpp_storage_postgresql_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_postgresql_la-libstorage.Tpo" "$(DEPDIR)/libpp_storage_postgresql_la-libstorage.Plo"; else rm -f "$(DEPDIR)/libpp_storage_postgresql_la-libstorage.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_postgresql_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_postgresql_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_print_la-storage_print.lo: storage_print.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_print_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_print_la-storage_print.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_print_la-storage_print.Tpo" -c -o libpp_storage_print_la-storage_print.lo `test -f 'storage_print.c' || echo '$(srcdir)/'`storage_print.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_print_la-storage_print.Tpo" "$(DEPDIR)/libpp_storage_print_la-storage_print.Plo"; else rm -f "$(DEPDIR)/libpp_storage_print_la-storage_print.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_print.c' object='libpp_storage_print_la-storage_print.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_print_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_print_la-storage_print.lo `test -f 'storage_print.c' || echo '$(srcdir)/'`storage_print.c libpp_storage_print_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_print_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_print_la-libstorage.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_print_la-libstorage.Tpo" -c -o libpp_storage_print_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_print_la-libstorage.Tpo" "$(DEPDIR)/libpp_storage_print_la-libstorage.Plo"; else rm -f "$(DEPDIR)/libpp_storage_print_la-libstorage.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_print_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_print_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_print_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_socket_output_la-storage_socket_output.lo: storage_socket_output.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_socket_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_socket_output_la-storage_socket_output.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_socket_output_la-storage_socket_output.Tpo" -c -o libpp_storage_socket_output_la-storage_socket_output.lo `test -f 'storage_socket_output.c' || echo '$(srcdir)/'`storage_socket_output.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_socket_output_la-storage_socket_output.Tpo" "$(DEPDIR)/libpp_storage_socket_output_la-storage_socket_output.Plo"; else rm -f "$(DEPDIR)/libpp_storage_socket_output_la-storage_socket_output.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_socket_output.c' object='libpp_storage_socket_output_la-storage_socket_output.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_socket_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_socket_output_la-storage_socket_output.lo `test -f 'storage_socket_output.c' || echo '$(srcdir)/'`storage_socket_output.c libpp_storage_socket_output_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_socket_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_socket_output_la-libstorage.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_socket_output_la-libstorage.Tpo" -c -o libpp_storage_socket_output_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_socket_output_la-libstorage.Tpo" "$(DEPDIR)/libpp_storage_socket_output_la-libstorage.Plo"; else rm -f "$(DEPDIR)/libpp_storage_socket_output_la-libstorage.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_socket_output_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_socket_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_socket_output_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_stdout_la-storage_stdout.lo: storage_stdout.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_stdout_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_stdout_la-storage_stdout.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_stdout_la-storage_stdout.Tpo" -c -o libpp_storage_stdout_la-storage_stdout.lo `test -f 'storage_stdout.c' || echo '$(srcdir)/'`storage_stdout.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_stdout_la-storage_stdout.Tpo" "$(DEPDIR)/libpp_storage_stdout_la-storage_stdout.Plo"; else rm -f "$(DEPDIR)/libpp_storage_stdout_la-storage_stdout.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_stdout.c' object='libpp_storage_stdout_la-storage_stdout.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_stdout_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_stdout_la-storage_stdout.lo `test -f 'storage_stdout.c' || echo '$(srcdir)/'`storage_stdout.c libpp_storage_stdout_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_stdout_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_stdout_la-libstorage.lo -MD -MP -MF "$(DEPDIR)/libpp_storage_stdout_la-libstorage.Tpo" -c -o libpp_storage_stdout_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_storage_stdout_la-libstorage.Tpo" "$(DEPDIR)/libpp_storage_stdout_la-libstorage.Plo"; else rm -f "$(DEPDIR)/libpp_storage_stdout_la-libstorage.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_stdout_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_stdout_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_stdout_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c mostlyclean-libtool: --- 491,590 ---- libpp_storage_file_output_la-storage_file_output.lo: storage_file_output.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_file_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_file_output_la-storage_file_output.lo -MD -MP -MF $(DEPDIR)/libpp_storage_file_output_la-storage_file_output.Tpo -c -o libpp_storage_file_output_la-storage_file_output.lo `test -f 'storage_file_output.c' || echo '$(srcdir)/'`storage_file_output.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_file_output_la-storage_file_output.Tpo $(DEPDIR)/libpp_storage_file_output_la-storage_file_output.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_file_output.c' object='libpp_storage_file_output_la-storage_file_output.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_file_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_file_output_la-storage_file_output.lo `test -f 'storage_file_output.c' || echo '$(srcdir)/'`storage_file_output.c libpp_storage_file_output_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_file_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_file_output_la-libstorage.lo -MD -MP -MF $(DEPDIR)/libpp_storage_file_output_la-libstorage.Tpo -c -o libpp_storage_file_output_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_file_output_la-libstorage.Tpo $(DEPDIR)/libpp_storage_file_output_la-libstorage.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_file_output_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_file_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_file_output_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_gnuplot_la-storage_gnuplot.lo: storage_gnuplot.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_gnuplot_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_gnuplot_la-storage_gnuplot.lo -MD -MP -MF $(DEPDIR)/libpp_storage_gnuplot_la-storage_gnuplot.Tpo -c -o libpp_storage_gnuplot_la-storage_gnuplot.lo `test -f 'storage_gnuplot.c' || echo '$(srcdir)/'`storage_gnuplot.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_gnuplot_la-storage_gnuplot.Tpo $(DEPDIR)/libpp_storage_gnuplot_la-storage_gnuplot.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_gnuplot.c' object='libpp_storage_gnuplot_la-storage_gnuplot.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_gnuplot_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_gnuplot_la-storage_gnuplot.lo `test -f 'storage_gnuplot.c' || echo '$(srcdir)/'`storage_gnuplot.c libpp_storage_gnuplot_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_gnuplot_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_gnuplot_la-libstorage.lo -MD -MP -MF $(DEPDIR)/libpp_storage_gnuplot_la-libstorage.Tpo -c -o libpp_storage_gnuplot_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_gnuplot_la-libstorage.Tpo $(DEPDIR)/libpp_storage_gnuplot_la-libstorage.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_gnuplot_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_gnuplot_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_gnuplot_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_mysql_la-storage_mysql.lo: storage_mysql.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_mysql_la-storage_mysql.lo -MD -MP -MF $(DEPDIR)/libpp_storage_mysql_la-storage_mysql.Tpo -c -o libpp_storage_mysql_la-storage_mysql.lo `test -f 'storage_mysql.c' || echo '$(srcdir)/'`storage_mysql.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_mysql_la-storage_mysql.Tpo $(DEPDIR)/libpp_storage_mysql_la-storage_mysql.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_mysql.c' object='libpp_storage_mysql_la-storage_mysql.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_mysql_la-storage_mysql.lo `test -f 'storage_mysql.c' || echo '$(srcdir)/'`storage_mysql.c libpp_storage_mysql_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_mysql_la-libstorage.lo -MD -MP -MF $(DEPDIR)/libpp_storage_mysql_la-libstorage.Tpo -c -o libpp_storage_mysql_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_mysql_la-libstorage.Tpo $(DEPDIR)/libpp_storage_mysql_la-libstorage.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_mysql_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_mysql_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_postgresql_la-storage_postgresql.lo: storage_postgresql.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_postgresql_la-storage_postgresql.lo -MD -MP -MF $(DEPDIR)/libpp_storage_postgresql_la-storage_postgresql.Tpo -c -o libpp_storage_postgresql_la-storage_postgresql.lo `test -f 'storage_postgresql.c' || echo '$(srcdir)/'`storage_postgresql.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_postgresql_la-storage_postgresql.Tpo $(DEPDIR)/libpp_storage_postgresql_la-storage_postgresql.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_postgresql.c' object='libpp_storage_postgresql_la-storage_postgresql.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_postgresql_la-storage_postgresql.lo `test -f 'storage_postgresql.c' || echo '$(srcdir)/'`storage_postgresql.c libpp_storage_postgresql_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_postgresql_la-libstorage.lo -MD -MP -MF $(DEPDIR)/libpp_storage_postgresql_la-libstorage.Tpo -c -o libpp_storage_postgresql_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_postgresql_la-libstorage.Tpo $(DEPDIR)/libpp_storage_postgresql_la-libstorage.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_postgresql_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_postgresql_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_print_la-storage_print.lo: storage_print.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_print_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_print_la-storage_print.lo -MD -MP -MF $(DEPDIR)/libpp_storage_print_la-storage_print.Tpo -c -o libpp_storage_print_la-storage_print.lo `test -f 'storage_print.c' || echo '$(srcdir)/'`storage_print.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_print_la-storage_print.Tpo $(DEPDIR)/libpp_storage_print_la-storage_print.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_print.c' object='libpp_storage_print_la-storage_print.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_print_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_print_la-storage_print.lo `test -f 'storage_print.c' || echo '$(srcdir)/'`storage_print.c libpp_storage_print_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_print_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_print_la-libstorage.lo -MD -MP -MF $(DEPDIR)/libpp_storage_print_la-libstorage.Tpo -c -o libpp_storage_print_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_print_la-libstorage.Tpo $(DEPDIR)/libpp_storage_print_la-libstorage.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_print_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_print_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_print_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_socket_output_la-storage_socket_output.lo: storage_socket_output.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_socket_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_socket_output_la-storage_socket_output.lo -MD -MP -MF $(DEPDIR)/libpp_storage_socket_output_la-storage_socket_output.Tpo -c -o libpp_storage_socket_output_la-storage_socket_output.lo `test -f 'storage_socket_output.c' || echo '$(srcdir)/'`storage_socket_output.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_socket_output_la-storage_socket_output.Tpo $(DEPDIR)/libpp_storage_socket_output_la-storage_socket_output.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_socket_output.c' object='libpp_storage_socket_output_la-storage_socket_output.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_socket_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_socket_output_la-storage_socket_output.lo `test -f 'storage_socket_output.c' || echo '$(srcdir)/'`storage_socket_output.c libpp_storage_socket_output_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_socket_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_socket_output_la-libstorage.lo -MD -MP -MF $(DEPDIR)/libpp_storage_socket_output_la-libstorage.Tpo -c -o libpp_storage_socket_output_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_socket_output_la-libstorage.Tpo $(DEPDIR)/libpp_storage_socket_output_la-libstorage.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_socket_output_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_socket_output_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_socket_output_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c libpp_storage_stdout_la-storage_stdout.lo: storage_stdout.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_stdout_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_stdout_la-storage_stdout.lo -MD -MP -MF $(DEPDIR)/libpp_storage_stdout_la-storage_stdout.Tpo -c -o libpp_storage_stdout_la-storage_stdout.lo `test -f 'storage_stdout.c' || echo '$(srcdir)/'`storage_stdout.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_stdout_la-storage_stdout.Tpo $(DEPDIR)/libpp_storage_stdout_la-storage_stdout.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='storage_stdout.c' object='libpp_storage_stdout_la-storage_stdout.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_stdout_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_stdout_la-storage_stdout.lo `test -f 'storage_stdout.c' || echo '$(srcdir)/'`storage_stdout.c libpp_storage_stdout_la-libstorage.lo: libstorage.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_stdout_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_storage_stdout_la-libstorage.lo -MD -MP -MF $(DEPDIR)/libpp_storage_stdout_la-libstorage.Tpo -c -o libpp_storage_stdout_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_storage_stdout_la-libstorage.Tpo $(DEPDIR)/libpp_storage_stdout_la-libstorage.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libstorage.c' object='libpp_storage_stdout_la-libstorage.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_storage_stdout_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_storage_stdout_la-libstorage.lo `test -f 'libstorage.c' || echo '$(srcdir)/'`libstorage.c mostlyclean-libtool: *************** *** 580,587 **** -rm -rf .libs _libs - distclean-libtool: - -rm -f libtool - uninstall-info-am: - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ --- 594,597 ---- *************** *** 633,652 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 643,661 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 664,668 **** installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 673,677 ---- installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 699,703 **** -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 708,712 ---- -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 713,722 **** --- 722,739 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: install-libLTLIBRARIES + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 739,743 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ --- 756,762 ---- ps-am: ! uninstall-am: uninstall-libLTLIBRARIES ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ *************** *** 745,756 **** distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am \ ! install-libLTLIBRARIES install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 764,776 ---- distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am \ ! install-libLTLIBRARIES install-man install-pdf install-pdf-am \ ! install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. |
From: Florian G. <re...@us...> - 2007-12-18 15:10:33
|
Update of /cvsroot/perfparse/_perfparse-phpgui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/phpgui Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse-phpgui/Makefile.in,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Makefile.in 5 Sep 2007 22:18:30 -0000 1.13 --- Makefile.in 18 Dec 2007 15:10:34 -0000 1.14 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,27 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 15,23 ---- *************** *** 77,82 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 73,76 ---- *************** *** 90,101 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 84,87 ---- *************** *** 134,137 **** --- 120,124 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 158,161 **** --- 145,149 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 179,189 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 167,174 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 194,204 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 179,189 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 213,216 **** --- 198,202 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 242,245 **** --- 228,232 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 248,251 **** --- 235,240 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ nobase_dist_phpui_DATA = \ utils.php \ *************** *** 610,620 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-nobase_dist_phpuiDATA: $(nobase_dist_phpui_DATA) @$(NORMAL_INSTALL) ! test -z "$(phpuidir)" || $(mkdir_p) "$(DESTDIR)$(phpuidir)" @$(am__vpath_adj_setup) \ list='$(nobase_dist_phpui_DATA)'; for p in $$list; do \ --- 599,605 ---- clean-libtool: -rm -rf .libs _libs install-nobase_dist_phpuiDATA: $(nobase_dist_phpui_DATA) @$(NORMAL_INSTALL) ! test -z "$(phpuidir)" || $(MKDIR_P) "$(DESTDIR)$(phpuidir)" @$(am__vpath_adj_setup) \ list='$(nobase_dist_phpui_DATA)'; for p in $$list; do \ *************** *** 641,661 **** distdir: $(DISTFILES) ! $(mkdir_p) $(distdir)/Smarty $(distdir)/Smarty/demo $(distdir)/Smarty/demo/configs $(distdir)/Smarty/demo/templates $(distdir)/Smarty/libs $(distdir)/Smarty/libs/internals $(distdir)/Smarty/libs/plugins $(distdir)/Smarty/misc $(distdir)/Smarty/unit_test $(distdir)/Smarty/unit_test/configs $(distdir)/Smarty/unit_test/templates $(distdir)/adodb $(distdir)/adodb/contrib $(distdir)/adodb/cute_icons_for_site $(distdir)/adodb/datadict $(distdir)/adodb/docs $(distdir)/adodb/drivers $(distdir)/adodb/lang $(distdir)/adodb/pear $(distdir)/adodb/pear/Auth/Container $(distdir)/adodb/perf $(distdir)/adodb/session $(distdir)/adodb/session/old $(distdir)/adodb/tests $(distdir)/adodb/xsl $(distdir)/lang $(distdir)/smarty_extensions $(distdir)/templates $(distdir)/templates/flo $(distdir)/templates_c ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 626,644 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 673,677 **** installdirs: for dir in "$(DESTDIR)$(phpuidir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 656,660 ---- installdirs: for dir in "$(DESTDIR)$(phpuidir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 705,709 **** distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am --- 688,692 ---- distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic dvi: dvi-am *************** *** 721,730 **** --- 704,721 ---- $(MAKE) $(AM_MAKEFLAGS) install-data-hook + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 745,760 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-nobase_dist_phpuiDATA .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-data-hook install-exec \ ! install-exec-am install-info install-info-am install-man \ ! install-nobase_dist_phpuiDATA install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ ! uninstall-info-am uninstall-nobase_dist_phpuiDATA --- 736,755 ---- ps-am: ! uninstall-am: uninstall-nobase_dist_phpuiDATA ! ! .MAKE: install-am install-data-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-data-hook install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am install-man \ ! install-nobase_dist_phpuiDATA install-pdf install-pdf-am \ ! install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ ! uninstall-nobase_dist_phpuiDATA |
From: Florian G. <re...@us...> - 2007-12-18 15:10:33
|
Update of /cvsroot/perfparse/_perfparse/libpp_postgresql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/libpp_postgresql Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_postgresql/Makefile.in,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Makefile.in 2 Aug 2007 22:20:21 -0000 1.20 --- Makefile.in 18 Dec 2007 15:10:33 -0000 1.21 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,27 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 15,23 ---- *************** *** 76,90 **** libpp_postgresql_la-db_macro_actions.lo libpp_postgresql_la_OBJECTS = $(am_libpp_postgresql_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libpp_postgresql_la_SOURCES) DIST_SOURCES = $(libpp_postgresql_la_SOURCES) --- 72,87 ---- libpp_postgresql_la-db_macro_actions.lo libpp_postgresql_la_OBJECTS = $(am_libpp_postgresql_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libpp_postgresql_la_SOURCES) DIST_SOURCES = $(libpp_postgresql_la_SOURCES) *************** *** 94,99 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 91,94 ---- *************** *** 107,118 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 102,105 ---- *************** *** 151,154 **** --- 138,142 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 175,178 **** --- 163,167 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 196,206 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 185,192 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 211,221 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 197,207 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 230,233 **** --- 216,220 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 259,262 **** --- 246,250 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 265,268 **** --- 253,258 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ lib_LTLIBRARIES = libpp_postgresql.la libpp_postgresql_la_SOURCES = common.c common.h dbms.h dbms.c del_policy.c del_policy.h db_macro_actions.c db_macro_actions.h *************** *** 303,307 **** install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ --- 293,297 ---- install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ *************** *** 314,318 **** uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ --- 304,308 ---- uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ *************** *** 329,333 **** done libpp_postgresql.la: $(libpp_postgresql_la_OBJECTS) $(libpp_postgresql_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libpp_postgresql_la_LDFLAGS) $(libpp_postgresql_la_OBJECTS) $(libpp_postgresql_la_LIBADD) $(LIBS) mostlyclean-compile: --- 319,323 ---- done libpp_postgresql.la: $(libpp_postgresql_la_OBJECTS) $(libpp_postgresql_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libpp_postgresql_la_OBJECTS) $(libpp_postgresql_la_LIBADD) $(LIBS) mostlyclean-compile: *************** *** 343,348 **** .c.o: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 333,338 ---- .c.o: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 350,355 **** .c.obj: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 340,345 ---- .c.obj: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 357,362 **** .c.lo: ! @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 347,352 ---- .c.lo: ! @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 364,393 **** libpp_postgresql_la-common.lo: common.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_postgresql_la-common.lo -MD -MP -MF "$(DEPDIR)/libpp_postgresql_la-common.Tpo" -c -o libpp_postgresql_la-common.lo `test -f 'common.c' || echo '$(srcdir)/'`common.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_postgresql_la-common.Tpo" "$(DEPDIR)/libpp_postgresql_la-common.Plo"; else rm -f "$(DEPDIR)/libpp_postgresql_la-common.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='common.c' object='libpp_postgresql_la-common.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_postgresql_la-common.lo `test -f 'common.c' || echo '$(srcdir)/'`common.c libpp_postgresql_la-dbms.lo: dbms.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_postgresql_la-dbms.lo -MD -MP -MF "$(DEPDIR)/libpp_postgresql_la-dbms.Tpo" -c -o libpp_postgresql_la-dbms.lo `test -f 'dbms.c' || echo '$(srcdir)/'`dbms.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_postgresql_la-dbms.Tpo" "$(DEPDIR)/libpp_postgresql_la-dbms.Plo"; else rm -f "$(DEPDIR)/libpp_postgresql_la-dbms.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dbms.c' object='libpp_postgresql_la-dbms.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_postgresql_la-dbms.lo `test -f 'dbms.c' || echo '$(srcdir)/'`dbms.c libpp_postgresql_la-del_policy.lo: del_policy.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_postgresql_la-del_policy.lo -MD -MP -MF "$(DEPDIR)/libpp_postgresql_la-del_policy.Tpo" -c -o libpp_postgresql_la-del_policy.lo `test -f 'del_policy.c' || echo '$(srcdir)/'`del_policy.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_postgresql_la-del_policy.Tpo" "$(DEPDIR)/libpp_postgresql_la-del_policy.Plo"; else rm -f "$(DEPDIR)/libpp_postgresql_la-del_policy.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='del_policy.c' object='libpp_postgresql_la-del_policy.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_postgresql_la-del_policy.lo `test -f 'del_policy.c' || echo '$(srcdir)/'`del_policy.c libpp_postgresql_la-db_macro_actions.lo: db_macro_actions.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_postgresql_la-db_macro_actions.lo -MD -MP -MF "$(DEPDIR)/libpp_postgresql_la-db_macro_actions.Tpo" -c -o libpp_postgresql_la-db_macro_actions.lo `test -f 'db_macro_actions.c' || echo '$(srcdir)/'`db_macro_actions.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_postgresql_la-db_macro_actions.Tpo" "$(DEPDIR)/libpp_postgresql_la-db_macro_actions.Plo"; else rm -f "$(DEPDIR)/libpp_postgresql_la-db_macro_actions.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='db_macro_actions.c' object='libpp_postgresql_la-db_macro_actions.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_postgresql_la-db_macro_actions.lo `test -f 'db_macro_actions.c' || echo '$(srcdir)/'`db_macro_actions.c mostlyclean-libtool: --- 354,383 ---- libpp_postgresql_la-common.lo: common.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_postgresql_la-common.lo -MD -MP -MF $(DEPDIR)/libpp_postgresql_la-common.Tpo -c -o libpp_postgresql_la-common.lo `test -f 'common.c' || echo '$(srcdir)/'`common.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_postgresql_la-common.Tpo $(DEPDIR)/libpp_postgresql_la-common.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='common.c' object='libpp_postgresql_la-common.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_postgresql_la-common.lo `test -f 'common.c' || echo '$(srcdir)/'`common.c libpp_postgresql_la-dbms.lo: dbms.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_postgresql_la-dbms.lo -MD -MP -MF $(DEPDIR)/libpp_postgresql_la-dbms.Tpo -c -o libpp_postgresql_la-dbms.lo `test -f 'dbms.c' || echo '$(srcdir)/'`dbms.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_postgresql_la-dbms.Tpo $(DEPDIR)/libpp_postgresql_la-dbms.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dbms.c' object='libpp_postgresql_la-dbms.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_postgresql_la-dbms.lo `test -f 'dbms.c' || echo '$(srcdir)/'`dbms.c libpp_postgresql_la-del_policy.lo: del_policy.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_postgresql_la-del_policy.lo -MD -MP -MF $(DEPDIR)/libpp_postgresql_la-del_policy.Tpo -c -o libpp_postgresql_la-del_policy.lo `test -f 'del_policy.c' || echo '$(srcdir)/'`del_policy.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_postgresql_la-del_policy.Tpo $(DEPDIR)/libpp_postgresql_la-del_policy.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='del_policy.c' object='libpp_postgresql_la-del_policy.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_postgresql_la-del_policy.lo `test -f 'del_policy.c' || echo '$(srcdir)/'`del_policy.c libpp_postgresql_la-db_macro_actions.lo: db_macro_actions.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_postgresql_la-db_macro_actions.lo -MD -MP -MF $(DEPDIR)/libpp_postgresql_la-db_macro_actions.Tpo -c -o libpp_postgresql_la-db_macro_actions.lo `test -f 'db_macro_actions.c' || echo '$(srcdir)/'`db_macro_actions.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_postgresql_la-db_macro_actions.Tpo $(DEPDIR)/libpp_postgresql_la-db_macro_actions.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='db_macro_actions.c' object='libpp_postgresql_la-db_macro_actions.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_postgresql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_postgresql_la-db_macro_actions.lo `test -f 'db_macro_actions.c' || echo '$(srcdir)/'`db_macro_actions.c mostlyclean-libtool: *************** *** 397,404 **** -rm -rf .libs _libs - distclean-libtool: - -rm -f libtool - uninstall-info-am: - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ --- 387,390 ---- *************** *** 450,469 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 436,454 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 481,485 **** installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 466,470 ---- installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 516,520 **** -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 501,505 ---- -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 530,539 **** --- 515,532 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: install-libLTLIBRARIES + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 556,560 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ --- 549,555 ---- ps-am: ! uninstall-am: uninstall-libLTLIBRARIES ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ *************** *** 562,573 **** distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am \ ! install-libLTLIBRARIES install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 557,569 ---- distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am \ ! install-libLTLIBRARIES install-man install-pdf install-pdf-am \ ! install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. |
From: Florian G. <re...@us...> - 2007-12-18 15:10:33
|
Update of /cvsroot/perfparse/_perfparse/db_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/db_tools Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/db_tools/Makefile.in,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Makefile.in 2 Aug 2007 22:20:21 -0000 1.21 --- Makefile.in 18 Dec 2007 15:10:33 -0000 1.22 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,27 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 15,23 ---- *************** *** 92,106 **** perfparse_db_tool_OBJECTS = $(am_perfparse_db_tool_OBJECTS) perfparse_db_tool_DEPENDENCIES = $(am__DEPENDENCIES_4) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(check_perfparse_version_SOURCES) \ $(perfparse_db_purge_SOURCES) $(perfparse_db_tool_SOURCES) --- 88,103 ---- perfparse_db_tool_OBJECTS = $(am_perfparse_db_tool_OBJECTS) perfparse_db_tool_DEPENDENCIES = $(am__DEPENDENCIES_4) ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(check_perfparse_version_SOURCES) \ $(perfparse_db_purge_SOURCES) $(perfparse_db_tool_SOURCES) *************** *** 112,117 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 109,112 ---- *************** *** 125,136 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 120,123 ---- *************** *** 169,172 **** --- 156,160 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 193,196 **** --- 181,185 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 214,224 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 203,210 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 229,239 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 215,225 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 248,251 **** --- 234,238 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 277,280 **** --- 264,268 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 283,286 **** --- 271,276 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ @USE_DB_MYSQL_TRUE@MYSQL_DBTOOLS = perfparse-db-purge perfparse-db-tool check_perfparse_version @USE_DB_MYSQL_TRUE@USE_MYSQL_CFLAGS = ${MYSQL_CFLAGS} -I${top_srcdir}/libpp_mysql *************** *** 335,339 **** install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ --- 325,329 ---- install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ *************** *** 363,373 **** check_perfparse_version$(EXEEXT): $(check_perfparse_version_OBJECTS) $(check_perfparse_version_DEPENDENCIES) @rm -f check_perfparse_version$(EXEEXT) ! $(LINK) $(check_perfparse_version_LDFLAGS) $(check_perfparse_version_OBJECTS) $(check_perfparse_version_LDADD) $(LIBS) perfparse-db-purge$(EXEEXT): $(perfparse_db_purge_OBJECTS) $(perfparse_db_purge_DEPENDENCIES) @rm -f perfparse-db-purge$(EXEEXT) ! $(LINK) $(perfparse_db_purge_LDFLAGS) $(perfparse_db_purge_OBJECTS) $(perfparse_db_purge_LDADD) $(LIBS) perfparse-db-tool$(EXEEXT): $(perfparse_db_tool_OBJECTS) $(perfparse_db_tool_DEPENDENCIES) @rm -f perfparse-db-tool$(EXEEXT) ! $(LINK) $(perfparse_db_tool_LDFLAGS) $(perfparse_db_tool_OBJECTS) $(perfparse_db_tool_LDADD) $(LIBS) mostlyclean-compile: --- 353,363 ---- check_perfparse_version$(EXEEXT): $(check_perfparse_version_OBJECTS) $(check_perfparse_version_DEPENDENCIES) @rm -f check_perfparse_version$(EXEEXT) ! $(LINK) $(check_perfparse_version_OBJECTS) $(check_perfparse_version_LDADD) $(LIBS) perfparse-db-purge$(EXEEXT): $(perfparse_db_purge_OBJECTS) $(perfparse_db_purge_DEPENDENCIES) @rm -f perfparse-db-purge$(EXEEXT) ! $(LINK) $(perfparse_db_purge_OBJECTS) $(perfparse_db_purge_LDADD) $(LIBS) perfparse-db-tool$(EXEEXT): $(perfparse_db_tool_OBJECTS) $(perfparse_db_tool_DEPENDENCIES) @rm -f perfparse-db-tool$(EXEEXT) ! $(LINK) $(perfparse_db_tool_OBJECTS) $(perfparse_db_tool_LDADD) $(LIBS) mostlyclean-compile: *************** *** 384,389 **** .c.o: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 374,379 ---- .c.o: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 391,396 **** .c.obj: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 381,386 ---- .c.obj: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 398,403 **** .c.lo: ! @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 388,393 ---- .c.lo: ! @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 405,410 **** check_perfparse_version-check_perfparse_version.o: check_perfparse_version.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(check_perfparse_version_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT check_perfparse_version-check_perfparse_version.o -MD -MP -MF "$(DEPDIR)/check_perfparse_version-check_perfparse_version.Tpo" -c -o check_perfparse_version-check_perfparse_version.o `test -f 'check_perfparse_version.c' || echo '$(srcdir)/'`check_perfparse_version.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/check_perfparse_version-check_perfparse_version.Tpo" "$(DEPDIR)/check_perfparse_version-check_perfparse_version.Po"; else rm -f "$(DEPDIR)/check_perfparse_version-check_perfparse_version.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='check_perfparse_version.c' object='check_perfparse_version-check_perfparse_version.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 395,400 ---- check_perfparse_version-check_perfparse_version.o: check_perfparse_version.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(check_perfparse_version_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT check_perfparse_version-check_perfparse_version.o -MD -MP -MF $(DEPDIR)/check_perfparse_version-check_perfparse_version.Tpo -c -o check_perfparse_version-check_perfparse_version.o `test -f 'check_perfparse_version.c' || echo '$(srcdir)/'`check_perfparse_version.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/check_perfparse_version-check_perfparse_version.Tpo $(DEPDIR)/check_perfparse_version-check_perfparse_version.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='check_perfparse_version.c' object='check_perfparse_version-check_perfparse_version.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 412,417 **** check_perfparse_version-check_perfparse_version.obj: check_perfparse_version.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(check_perfparse_version_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT check_perfparse_version-check_perfparse_version.obj -MD -MP -MF "$(DEPDIR)/check_perfparse_version-check_perfparse_version.Tpo" -c -o check_perfparse_version-check_perfparse_version.obj `if test -f 'check_perfparse_version.c'; then $(CYGPATH_W) 'check_perfparse_version.c'; else $(CYGPATH_W) '$(srcdir)/check_perfparse_version.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/check_perfparse_version-check_perfparse_version.Tpo" "$(DEPDIR)/check_perfparse_version-check_perfparse_version.Po"; else rm -f "$(DEPDIR)/check_perfparse_version-check_perfparse_version.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='check_perfparse_version.c' object='check_perfparse_version-check_perfparse_version.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 402,407 ---- check_perfparse_version-check_perfparse_version.obj: check_perfparse_version.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(check_perfparse_version_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT check_perfparse_version-check_perfparse_version.obj -MD -MP -MF $(DEPDIR)/check_perfparse_version-check_perfparse_version.Tpo -c -o check_perfparse_version-check_perfparse_version.obj `if test -f 'check_perfparse_version.c'; then $(CYGPATH_W) 'check_perfparse_version.c'; else $(CYGPATH_W) '$(srcdir)/check_perfparse_version.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/check_perfparse_version-check_perfparse_version.Tpo $(DEPDIR)/check_perfparse_version-check_perfparse_version.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='check_perfparse_version.c' object='check_perfparse_version-check_perfparse_version.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 419,424 **** perfparse_db_purge-perfparse-db-purge.o: perfparse-db-purge.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_purge_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_purge-perfparse-db-purge.o -MD -MP -MF "$(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Tpo" -c -o perfparse_db_purge-perfparse-db-purge.o `test -f 'perfparse-db-purge.c' || echo '$(srcdir)/'`perfparse-db-purge.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Tpo" "$(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Po"; else rm -f "$(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-db-purge.c' object='perfparse_db_purge-perfparse-db-purge.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 409,414 ---- perfparse_db_purge-perfparse-db-purge.o: perfparse-db-purge.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_purge_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_purge-perfparse-db-purge.o -MD -MP -MF $(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Tpo -c -o perfparse_db_purge-perfparse-db-purge.o `test -f 'perfparse-db-purge.c' || echo '$(srcdir)/'`perfparse-db-purge.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Tpo $(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-db-purge.c' object='perfparse_db_purge-perfparse-db-purge.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 426,431 **** perfparse_db_purge-perfparse-db-purge.obj: perfparse-db-purge.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_purge_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_purge-perfparse-db-purge.obj -MD -MP -MF "$(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Tpo" -c -o perfparse_db_purge-perfparse-db-purge.obj `if test -f 'perfparse-db-purge.c'; then $(CYGPATH_W) 'perfparse-db-purge.c'; else $(CYGPATH_W) '$(srcdir)/perfparse-db-purge.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Tpo" "$(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Po"; else rm -f "$(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-db-purge.c' object='perfparse_db_purge-perfparse-db-purge.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 416,421 ---- perfparse_db_purge-perfparse-db-purge.obj: perfparse-db-purge.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_purge_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_purge-perfparse-db-purge.obj -MD -MP -MF $(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Tpo -c -o perfparse_db_purge-perfparse-db-purge.obj `if test -f 'perfparse-db-purge.c'; then $(CYGPATH_W) 'perfparse-db-purge.c'; else $(CYGPATH_W) '$(srcdir)/perfparse-db-purge.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Tpo $(DEPDIR)/perfparse_db_purge-perfparse-db-purge.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-db-purge.c' object='perfparse_db_purge-perfparse-db-purge.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 433,438 **** perfparse_db_purge-convert.o: convert.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_purge_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_purge-convert.o -MD -MP -MF "$(DEPDIR)/perfparse_db_purge-convert.Tpo" -c -o perfparse_db_purge-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_db_purge-convert.Tpo" "$(DEPDIR)/perfparse_db_purge-convert.Po"; else rm -f "$(DEPDIR)/perfparse_db_purge-convert.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='convert.c' object='perfparse_db_purge-convert.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 423,428 ---- perfparse_db_purge-convert.o: convert.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_purge_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_purge-convert.o -MD -MP -MF $(DEPDIR)/perfparse_db_purge-convert.Tpo -c -o perfparse_db_purge-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_db_purge-convert.Tpo $(DEPDIR)/perfparse_db_purge-convert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='convert.c' object='perfparse_db_purge-convert.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 440,445 **** perfparse_db_purge-convert.obj: convert.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_purge_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_purge-convert.obj -MD -MP -MF "$(DEPDIR)/perfparse_db_purge-convert.Tpo" -c -o perfparse_db_purge-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_db_purge-convert.Tpo" "$(DEPDIR)/perfparse_db_purge-convert.Po"; else rm -f "$(DEPDIR)/perfparse_db_purge-convert.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='convert.c' object='perfparse_db_purge-convert.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 430,435 ---- perfparse_db_purge-convert.obj: convert.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_purge_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_purge-convert.obj -MD -MP -MF $(DEPDIR)/perfparse_db_purge-convert.Tpo -c -o perfparse_db_purge-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_db_purge-convert.Tpo $(DEPDIR)/perfparse_db_purge-convert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='convert.c' object='perfparse_db_purge-convert.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 447,452 **** perfparse_db_tool-perfparse-db-tool.o: perfparse-db-tool.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_tool_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_tool-perfparse-db-tool.o -MD -MP -MF "$(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Tpo" -c -o perfparse_db_tool-perfparse-db-tool.o `test -f 'perfparse-db-tool.c' || echo '$(srcdir)/'`perfparse-db-tool.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Tpo" "$(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Po"; else rm -f "$(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-db-tool.c' object='perfparse_db_tool-perfparse-db-tool.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 437,442 ---- perfparse_db_tool-perfparse-db-tool.o: perfparse-db-tool.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_tool_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_tool-perfparse-db-tool.o -MD -MP -MF $(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Tpo -c -o perfparse_db_tool-perfparse-db-tool.o `test -f 'perfparse-db-tool.c' || echo '$(srcdir)/'`perfparse-db-tool.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Tpo $(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-db-tool.c' object='perfparse_db_tool-perfparse-db-tool.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 454,459 **** perfparse_db_tool-perfparse-db-tool.obj: perfparse-db-tool.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_tool_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_tool-perfparse-db-tool.obj -MD -MP -MF "$(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Tpo" -c -o perfparse_db_tool-perfparse-db-tool.obj `if test -f 'perfparse-db-tool.c'; then $(CYGPATH_W) 'perfparse-db-tool.c'; else $(CYGPATH_W) '$(srcdir)/perfparse-db-tool.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Tpo" "$(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Po"; else rm -f "$(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-db-tool.c' object='perfparse_db_tool-perfparse-db-tool.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 444,449 ---- perfparse_db_tool-perfparse-db-tool.obj: perfparse-db-tool.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_tool_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_tool-perfparse-db-tool.obj -MD -MP -MF $(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Tpo -c -o perfparse_db_tool-perfparse-db-tool.obj `if test -f 'perfparse-db-tool.c'; then $(CYGPATH_W) 'perfparse-db-tool.c'; else $(CYGPATH_W) '$(srcdir)/perfparse-db-tool.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Tpo $(DEPDIR)/perfparse_db_tool-perfparse-db-tool.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfparse-db-tool.c' object='perfparse_db_tool-perfparse-db-tool.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 461,466 **** perfparse_db_tool-convert.o: convert.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_tool_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_tool-convert.o -MD -MP -MF "$(DEPDIR)/perfparse_db_tool-convert.Tpo" -c -o perfparse_db_tool-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_db_tool-convert.Tpo" "$(DEPDIR)/perfparse_db_tool-convert.Po"; else rm -f "$(DEPDIR)/perfparse_db_tool-convert.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='convert.c' object='perfparse_db_tool-convert.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 451,456 ---- perfparse_db_tool-convert.o: convert.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_tool_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_tool-convert.o -MD -MP -MF $(DEPDIR)/perfparse_db_tool-convert.Tpo -c -o perfparse_db_tool-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_db_tool-convert.Tpo $(DEPDIR)/perfparse_db_tool-convert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='convert.c' object='perfparse_db_tool-convert.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 468,473 **** perfparse_db_tool-convert.obj: convert.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_tool_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_tool-convert.obj -MD -MP -MF "$(DEPDIR)/perfparse_db_tool-convert.Tpo" -c -o perfparse_db_tool-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfparse_db_tool-convert.Tpo" "$(DEPDIR)/perfparse_db_tool-convert.Po"; else rm -f "$(DEPDIR)/perfparse_db_tool-convert.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='convert.c' object='perfparse_db_tool-convert.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 458,463 ---- perfparse_db_tool-convert.obj: convert.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfparse_db_tool_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfparse_db_tool-convert.obj -MD -MP -MF $(DEPDIR)/perfparse_db_tool-convert.Tpo -c -o perfparse_db_tool-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfparse_db_tool-convert.Tpo $(DEPDIR)/perfparse_db_tool-convert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='convert.c' object='perfparse_db_tool-convert.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 480,487 **** -rm -rf .libs _libs - distclean-libtool: - -rm -f libtool - uninstall-info-am: - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ --- 470,473 ---- *************** *** 533,552 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 519,537 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 564,568 **** installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 549,553 ---- installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 598,602 **** -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 583,587 ---- -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 612,621 **** --- 597,614 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: install-binPROGRAMS + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 638,642 **** ps-am: ! uninstall-am: uninstall-binPROGRAMS uninstall-info-am .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ --- 631,637 ---- ps-am: ! uninstall-am: uninstall-binPROGRAMS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ *************** *** 644,654 **** distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-binPROGRAMS install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am \ ! uninstall-binPROGRAMS uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 639,651 ---- distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-binPROGRAMS install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am install-man \ ! install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am \ ! uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. |
From: Florian G. <re...@us...> - 2007-12-18 15:10:33
|
Update of /cvsroot/perfparse/_perfparse/cgi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/cgi Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/cgi/Makefile.in,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Makefile.in 2 Aug 2007 22:20:20 -0000 1.21 --- Makefile.in 18 Dec 2007 15:10:33 -0000 1.22 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,27 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 15,23 ---- *************** *** 85,99 **** perfgant_png_DEPENDENCIES = $(am__DEPENDENCIES_4) \ $(am__DEPENDENCIES_1) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(perfchart_png_SOURCES) $(perfgant_png_SOURCES) DIST_SOURCES = $(perfchart_png_SOURCES) $(perfgant_png_SOURCES) --- 81,96 ---- perfgant_png_DEPENDENCIES = $(am__DEPENDENCIES_4) \ $(am__DEPENDENCIES_1) ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(perfchart_png_SOURCES) $(perfgant_png_SOURCES) DIST_SOURCES = $(perfchart_png_SOURCES) $(perfgant_png_SOURCES) *************** *** 103,108 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 100,103 ---- *************** *** 116,127 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 111,114 ---- *************** *** 160,163 **** --- 147,151 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 184,187 **** --- 172,176 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 205,215 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 194,201 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 220,230 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 206,216 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 239,242 **** --- 225,229 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 268,271 **** --- 255,259 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 274,277 **** --- 262,267 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ @USE_DB_MYSQL_TRUE@MYSQL_CGI = perfchart.png perfgant.png @USE_DB_MYSQL_TRUE@USE_MYSQL_CFLAGS = ${MYSQL_CFLAGS} -I${top_srcdir}/libpp_mysql *************** *** 328,332 **** install-cgiPROGRAMS: $(cgi_PROGRAMS) @$(NORMAL_INSTALL) ! test -z "$(cgidir)" || $(mkdir_p) "$(DESTDIR)$(cgidir)" @list='$(cgi_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ --- 318,322 ---- install-cgiPROGRAMS: $(cgi_PROGRAMS) @$(NORMAL_INSTALL) ! test -z "$(cgidir)" || $(MKDIR_P) "$(DESTDIR)$(cgidir)" @list='$(cgi_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ *************** *** 356,363 **** perfchart.png$(EXEEXT): $(perfchart_png_OBJECTS) $(perfchart_png_DEPENDENCIES) @rm -f perfchart.png$(EXEEXT) ! $(LINK) $(perfchart_png_LDFLAGS) $(perfchart_png_OBJECTS) $(perfchart_png_LDADD) $(LIBS) perfgant.png$(EXEEXT): $(perfgant_png_OBJECTS) $(perfgant_png_DEPENDENCIES) @rm -f perfgant.png$(EXEEXT) ! $(LINK) $(perfgant_png_LDFLAGS) $(perfgant_png_OBJECTS) $(perfgant_png_LDADD) $(LIBS) mostlyclean-compile: --- 346,353 ---- perfchart.png$(EXEEXT): $(perfchart_png_OBJECTS) $(perfchart_png_DEPENDENCIES) @rm -f perfchart.png$(EXEEXT) ! $(LINK) $(perfchart_png_OBJECTS) $(perfchart_png_LDADD) $(LIBS) perfgant.png$(EXEEXT): $(perfgant_png_OBJECTS) $(perfgant_png_DEPENDENCIES) @rm -f perfgant.png$(EXEEXT) ! $(LINK) $(perfgant_png_OBJECTS) $(perfgant_png_LDADD) $(LIBS) mostlyclean-compile: *************** *** 373,378 **** .c.o: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 363,368 ---- .c.o: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 380,385 **** .c.obj: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 370,375 ---- .c.obj: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 387,392 **** .c.lo: ! @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 377,382 ---- .c.lo: ! @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 394,399 **** perfchart_png-perfchart.o: perfchart.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfchart_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfchart_png-perfchart.o -MD -MP -MF "$(DEPDIR)/perfchart_png-perfchart.Tpo" -c -o perfchart_png-perfchart.o `test -f 'perfchart.c' || echo '$(srcdir)/'`perfchart.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfchart_png-perfchart.Tpo" "$(DEPDIR)/perfchart_png-perfchart.Po"; else rm -f "$(DEPDIR)/perfchart_png-perfchart.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfchart.c' object='perfchart_png-perfchart.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 384,389 ---- perfchart_png-perfchart.o: perfchart.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfchart_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfchart_png-perfchart.o -MD -MP -MF $(DEPDIR)/perfchart_png-perfchart.Tpo -c -o perfchart_png-perfchart.o `test -f 'perfchart.c' || echo '$(srcdir)/'`perfchart.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfchart_png-perfchart.Tpo $(DEPDIR)/perfchart_png-perfchart.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfchart.c' object='perfchart_png-perfchart.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 401,406 **** perfchart_png-perfchart.obj: perfchart.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfchart_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfchart_png-perfchart.obj -MD -MP -MF "$(DEPDIR)/perfchart_png-perfchart.Tpo" -c -o perfchart_png-perfchart.obj `if test -f 'perfchart.c'; then $(CYGPATH_W) 'perfchart.c'; else $(CYGPATH_W) '$(srcdir)/perfchart.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfchart_png-perfchart.Tpo" "$(DEPDIR)/perfchart_png-perfchart.Po"; else rm -f "$(DEPDIR)/perfchart_png-perfchart.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfchart.c' object='perfchart_png-perfchart.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 391,396 ---- perfchart_png-perfchart.obj: perfchart.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfchart_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfchart_png-perfchart.obj -MD -MP -MF $(DEPDIR)/perfchart_png-perfchart.Tpo -c -o perfchart_png-perfchart.obj `if test -f 'perfchart.c'; then $(CYGPATH_W) 'perfchart.c'; else $(CYGPATH_W) '$(srcdir)/perfchart.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfchart_png-perfchart.Tpo $(DEPDIR)/perfchart_png-perfchart.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfchart.c' object='perfchart_png-perfchart.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 408,413 **** perfchart_png-cgi.o: cgi.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfchart_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfchart_png-cgi.o -MD -MP -MF "$(DEPDIR)/perfchart_png-cgi.Tpo" -c -o perfchart_png-cgi.o `test -f 'cgi.c' || echo '$(srcdir)/'`cgi.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfchart_png-cgi.Tpo" "$(DEPDIR)/perfchart_png-cgi.Po"; else rm -f "$(DEPDIR)/perfchart_png-cgi.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cgi.c' object='perfchart_png-cgi.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 398,403 ---- perfchart_png-cgi.o: cgi.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfchart_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfchart_png-cgi.o -MD -MP -MF $(DEPDIR)/perfchart_png-cgi.Tpo -c -o perfchart_png-cgi.o `test -f 'cgi.c' || echo '$(srcdir)/'`cgi.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfchart_png-cgi.Tpo $(DEPDIR)/perfchart_png-cgi.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cgi.c' object='perfchart_png-cgi.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 415,420 **** perfchart_png-cgi.obj: cgi.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfchart_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfchart_png-cgi.obj -MD -MP -MF "$(DEPDIR)/perfchart_png-cgi.Tpo" -c -o perfchart_png-cgi.obj `if test -f 'cgi.c'; then $(CYGPATH_W) 'cgi.c'; else $(CYGPATH_W) '$(srcdir)/cgi.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfchart_png-cgi.Tpo" "$(DEPDIR)/perfchart_png-cgi.Po"; else rm -f "$(DEPDIR)/perfchart_png-cgi.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cgi.c' object='perfchart_png-cgi.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 405,410 ---- perfchart_png-cgi.obj: cgi.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfchart_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfchart_png-cgi.obj -MD -MP -MF $(DEPDIR)/perfchart_png-cgi.Tpo -c -o perfchart_png-cgi.obj `if test -f 'cgi.c'; then $(CYGPATH_W) 'cgi.c'; else $(CYGPATH_W) '$(srcdir)/cgi.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfchart_png-cgi.Tpo $(DEPDIR)/perfchart_png-cgi.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cgi.c' object='perfchart_png-cgi.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 422,427 **** perfgant_png-perfgant.o: perfgant.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfgant_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfgant_png-perfgant.o -MD -MP -MF "$(DEPDIR)/perfgant_png-perfgant.Tpo" -c -o perfgant_png-perfgant.o `test -f 'perfgant.c' || echo '$(srcdir)/'`perfgant.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfgant_png-perfgant.Tpo" "$(DEPDIR)/perfgant_png-perfgant.Po"; else rm -f "$(DEPDIR)/perfgant_png-perfgant.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfgant.c' object='perfgant_png-perfgant.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 412,417 ---- perfgant_png-perfgant.o: perfgant.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfgant_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfgant_png-perfgant.o -MD -MP -MF $(DEPDIR)/perfgant_png-perfgant.Tpo -c -o perfgant_png-perfgant.o `test -f 'perfgant.c' || echo '$(srcdir)/'`perfgant.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfgant_png-perfgant.Tpo $(DEPDIR)/perfgant_png-perfgant.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfgant.c' object='perfgant_png-perfgant.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 429,434 **** perfgant_png-perfgant.obj: perfgant.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfgant_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfgant_png-perfgant.obj -MD -MP -MF "$(DEPDIR)/perfgant_png-perfgant.Tpo" -c -o perfgant_png-perfgant.obj `if test -f 'perfgant.c'; then $(CYGPATH_W) 'perfgant.c'; else $(CYGPATH_W) '$(srcdir)/perfgant.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfgant_png-perfgant.Tpo" "$(DEPDIR)/perfgant_png-perfgant.Po"; else rm -f "$(DEPDIR)/perfgant_png-perfgant.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfgant.c' object='perfgant_png-perfgant.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 419,424 ---- perfgant_png-perfgant.obj: perfgant.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfgant_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfgant_png-perfgant.obj -MD -MP -MF $(DEPDIR)/perfgant_png-perfgant.Tpo -c -o perfgant_png-perfgant.obj `if test -f 'perfgant.c'; then $(CYGPATH_W) 'perfgant.c'; else $(CYGPATH_W) '$(srcdir)/perfgant.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfgant_png-perfgant.Tpo $(DEPDIR)/perfgant_png-perfgant.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='perfgant.c' object='perfgant_png-perfgant.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 436,441 **** perfgant_png-cgi.o: cgi.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfgant_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfgant_png-cgi.o -MD -MP -MF "$(DEPDIR)/perfgant_png-cgi.Tpo" -c -o perfgant_png-cgi.o `test -f 'cgi.c' || echo '$(srcdir)/'`cgi.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfgant_png-cgi.Tpo" "$(DEPDIR)/perfgant_png-cgi.Po"; else rm -f "$(DEPDIR)/perfgant_png-cgi.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cgi.c' object='perfgant_png-cgi.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 426,431 ---- perfgant_png-cgi.o: cgi.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfgant_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfgant_png-cgi.o -MD -MP -MF $(DEPDIR)/perfgant_png-cgi.Tpo -c -o perfgant_png-cgi.o `test -f 'cgi.c' || echo '$(srcdir)/'`cgi.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfgant_png-cgi.Tpo $(DEPDIR)/perfgant_png-cgi.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cgi.c' object='perfgant_png-cgi.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 443,448 **** perfgant_png-cgi.obj: cgi.c ! @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfgant_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfgant_png-cgi.obj -MD -MP -MF "$(DEPDIR)/perfgant_png-cgi.Tpo" -c -o perfgant_png-cgi.obj `if test -f 'cgi.c'; then $(CYGPATH_W) 'cgi.c'; else $(CYGPATH_W) '$(srcdir)/cgi.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/perfgant_png-cgi.Tpo" "$(DEPDIR)/perfgant_png-cgi.Po"; else rm -f "$(DEPDIR)/perfgant_png-cgi.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cgi.c' object='perfgant_png-cgi.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 433,438 ---- perfgant_png-cgi.obj: cgi.c ! @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(perfgant_png_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT perfgant_png-cgi.obj -MD -MP -MF $(DEPDIR)/perfgant_png-cgi.Tpo -c -o perfgant_png-cgi.obj `if test -f 'cgi.c'; then $(CYGPATH_W) 'cgi.c'; else $(CYGPATH_W) '$(srcdir)/cgi.c'; fi` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/perfgant_png-cgi.Tpo $(DEPDIR)/perfgant_png-cgi.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cgi.c' object='perfgant_png-cgi.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 455,462 **** -rm -rf .libs _libs - distclean-libtool: - -rm -f libtool - uninstall-info-am: - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ --- 445,448 ---- *************** *** 508,527 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 494,512 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 539,543 **** installdirs: for dir in "$(DESTDIR)$(cgidir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 524,528 ---- installdirs: for dir in "$(DESTDIR)$(cgidir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 573,577 **** -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 558,562 ---- -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 587,596 **** --- 572,589 ---- install-data-am: install-cgiPROGRAMS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 613,617 **** ps-am: ! uninstall-am: uninstall-cgiPROGRAMS uninstall-info-am .PHONY: CTAGS GTAGS all all-am check check-am clean clean-cgiPROGRAMS \ --- 606,612 ---- ps-am: ! uninstall-am: uninstall-cgiPROGRAMS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-cgiPROGRAMS \ *************** *** 619,629 **** distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-cgiPROGRAMS install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am \ ! uninstall-cgiPROGRAMS uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 614,626 ---- distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-cgiPROGRAMS install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am install-man \ ! install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am \ ! uninstall-cgiPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. |
From: Florian G. <re...@us...> - 2007-12-18 15:10:33
|
Update of /cvsroot/perfparse/_perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278 Modified Files: Makefile.in aclocal.m4 configure Log Message: ... after autoreconf Index: aclocal.m4 =================================================================== RCS file: /cvsroot/perfparse/_perfparse/aclocal.m4,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** aclocal.m4 2 Aug 2007 22:20:20 -0000 1.17 --- aclocal.m4 18 Dec 2007 15:10:32 -0000 1.18 *************** *** 1,6 **** ! # generated automatically by aclocal 1.9.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, ! # 2005 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,6 ---- ! # generated automatically by aclocal 1.10 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, [...1928 lines suppressed...] --- 7315,7333 ---- AC_CHECK_TOOL([STRIP], [strip], :) fi ! INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) + # Copyright (C) 2006 Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. + + # _AM_SUBST_NOTMAKE(VARIABLE) + # --------------------------- + # Prevent Automake from outputing VARIABLE = @VARIABLE@ in Makefile.in. + # This macro is traced by Automake. + AC_DEFUN([_AM_SUBST_NOTMAKE]) + # Check how to create a tarball. -*- Autoconf -*- Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/Makefile.in,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Makefile.in 2 Aug 2007 22:20:20 -0000 1.20 --- Makefile.in 18 Dec 2007 15:10:32 -0000 1.21 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 14,26 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = . am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 14,22 ---- *************** *** 37,40 **** --- 33,37 ---- host_triplet = @host@ target_triplet = @target@ + subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ *************** *** 43,47 **** config.guess config.rpath config.sub depcomp install-sh \ ltmain.sh missing mkinstalldirs - subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_lib_dir.m4 \ --- 40,43 ---- *************** *** 64,68 **** $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ ! configure.lineno configure.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h --- 60,64 ---- $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ ! configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h *************** *** 72,79 **** RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ ! install-exec-recursive install-info-recursive \ ! install-recursive installcheck-recursive installdirs-recursive \ ! pdf-recursive ps-recursive uninstall-info-recursive \ ! uninstall-recursive ETAGS = etags CTAGS = ctags --- 68,78 ---- RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ ! install-dvi-recursive install-exec-recursive \ ! install-html-recursive install-info-recursive \ ! install-pdf-recursive install-ps-recursive install-recursive \ ! installcheck-recursive installdirs-recursive pdf-recursive \ ! ps-recursive uninstall-recursive ! RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ! distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags *************** *** 94,99 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 93,96 ---- *************** *** 107,118 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 104,107 ---- *************** *** 151,154 **** --- 140,144 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 175,178 **** --- 165,169 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 196,206 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 187,194 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 211,221 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 199,209 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 230,233 **** --- 218,222 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 259,262 **** --- 248,252 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 265,268 **** --- 255,260 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ @COND_CGIS_TRUE@GO_CGIS = cgi images @COND_PHPUI_TRUE@GO_PHPUI = phpgui images *************** *** 327,331 **** @if test ! -f $@; then \ rm -f stamp-h1; \ ! $(MAKE) stamp-h1; \ else :; fi --- 319,323 ---- @if test ! -f $@; then \ rm -f stamp-h1; \ ! $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ else :; fi *************** *** 351,355 **** distclean-libtool: -rm -f libtool - uninstall-info-am: # This directory's subdirectories are mostly independent; you can cd --- 343,346 ---- *************** *** 384,389 **** fi; test -z "$$fail" ! mostlyclean-recursive clean-recursive distclean-recursive \ ! maintainer-clean-recursive: @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ --- 375,379 ---- fi; test -z "$$fail" ! $(RECURSIVE_CLEAN_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ *************** *** 487,508 **** distdir: $(DISTFILES) $(am__remove_distdir) ! mkdir $(distdir) ! $(mkdir_p) $(distdir)/doc $(distdir)/intl $(distdir)/m4 $(distdir)/po ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 477,496 ---- distdir: $(DISTFILES) $(am__remove_distdir) ! test -d $(distdir) || mkdir $(distdir) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 518,522 **** if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ ! || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ --- 506,510 ---- if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ ! || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ *************** *** 526,529 **** --- 514,519 ---- top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ distdir) \ || exit 1; \ *************** *** 533,537 **** ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir --- 523,527 ---- ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir *************** *** 609,613 **** @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ ! sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}' distuninstallcheck: @cd $(distuninstallcheck_dir) \ --- 599,603 ---- @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ ! sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @cd $(distuninstallcheck_dir) \ *************** *** 679,688 **** --- 669,686 ---- install-data-am: + install-dvi: install-dvi-recursive + install-exec-am: + install-html: install-html-recursive + install-info: install-info-recursive install-man: + install-pdf: install-pdf-recursive + + install-ps: install-ps-recursive + installcheck-am: *************** *** 705,726 **** ps-am: ! uninstall-am: uninstall-info-am ! uninstall-info: uninstall-info-recursive ! .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \ ! check-am clean clean-generic clean-libtool clean-recursive \ ! ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ ! dist-shar dist-tarZ dist-zip distcheck distclean \ distclean-generic distclean-hdr distclean-libtool \ ! distclean-recursive distclean-tags distcleancheck distdir \ ! distuninstallcheck dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am install-man \ ! install-strip installcheck installcheck-am installdirs \ ! installdirs-am maintainer-clean maintainer-clean-generic \ ! maintainer-clean-recursive mostlyclean mostlyclean-generic \ ! mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ ! tags tags-recursive uninstall uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 703,726 ---- ps-am: ! uninstall-am: ! .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ ! install-strip ! .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ! all all-am am--refresh check check-am clean clean-generic \ ! clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \ ! dist-gzip dist-shar dist-tarZ dist-zip distcheck distclean \ distclean-generic distclean-hdr distclean-libtool \ ! distclean-tags distcleancheck distdir distuninstallcheck dvi \ ! dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-ps install-ps-am install-strip \ ! installcheck installcheck-am installdirs installdirs-am \ ! maintainer-clean maintainer-clean-generic mostlyclean \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags tags-recursive uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. Index: configure =================================================================== RCS file: /cvsroot/perfparse/_perfparse/configure,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** configure 28 Sep 2007 21:53:16 -0000 1.30 --- configure 18 Dec 2007 15:10:32 -0000 1.31 *************** *** 1,5 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.60 for perfparse 0.106.2. # # Report bugs to <per...@li...>. --- 1,5 ---- #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.61 for perfparse 1.0 beta 1. # [...11974 lines suppressed...] s&@INSTALL@&$ac_INSTALL&;t t + s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out *************** *** 37868,37873 **** # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. ! # So let's grep whole file. ! if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ --- 35531,35537 ---- # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. ! # Grep'ing the whole file is not good either: AIX grep has a line ! # limit of 2048, but all sed's we know have understand at least 4000. ! if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ |
From: Florian G. <re...@us...> - 2007-12-18 15:10:33
|
Update of /cvsroot/perfparse/_perfparse/m4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/m4 Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/m4/Makefile.in,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Makefile.in 2 Aug 2007 22:20:21 -0000 1.20 --- Makefile.in 18 Dec 2007 15:10:33 -0000 1.21 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 14,26 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 14,22 ---- *************** *** 66,71 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 62,65 ---- *************** *** 79,90 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 73,76 ---- *************** *** 123,126 **** --- 109,113 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 147,150 **** --- 134,138 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 168,178 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 156,163 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 183,193 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 168,178 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 202,205 **** --- 187,191 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 231,234 **** --- 217,221 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 237,240 **** --- 224,229 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ EXTRA_DIST = codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 intmax.m4 inttypes.m4 inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 longdouble.m4 longlong.m4 nls.m4 po.m4 printf-posix.m4 progtest.m4 signed.m4 size_max.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4 wchar_t.m4 wint_t.m4 xsize.m4 all: all-am *************** *** 276,283 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: tags: TAGS TAGS: --- 265,268 ---- *************** *** 288,307 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 273,291 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 348,352 **** distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am --- 332,336 ---- distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic dvi: dvi-am *************** *** 362,371 **** --- 346,363 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 386,400 **** ps-am: ! uninstall-am: uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ ! uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 378,395 ---- ps-am: ! uninstall-am: ! ! .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. |
From: Florian G. <re...@us...> - 2007-12-18 15:10:33
|
Update of /cvsroot/perfparse/_perfparse/contrib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/contrib Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/contrib/Makefile.in,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Makefile.in 2 Aug 2007 22:20:21 -0000 1.20 --- Makefile.in 18 Dec 2007 15:10:33 -0000 1.21 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 14,26 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 14,22 ---- *************** *** 66,71 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 62,65 ---- *************** *** 79,90 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 73,76 ---- *************** *** 123,126 **** --- 109,113 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 147,150 **** --- 134,138 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 168,178 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 156,163 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 183,193 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 168,178 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 202,205 **** --- 187,191 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 231,234 **** --- 217,221 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 237,240 **** --- 224,229 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ EXTRA_DIST = \ check_perfparse_dropfile.sh *************** *** 278,285 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: tags: TAGS TAGS: --- 267,270 ---- *************** *** 290,309 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 275,293 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 350,354 **** distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am --- 334,338 ---- distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic dvi: dvi-am *************** *** 364,373 **** --- 348,365 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 388,402 **** ps-am: ! uninstall-am: uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ ! uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 380,397 ---- ps-am: ! uninstall-am: ! ! .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. |
From: Florian G. <re...@us...> - 2007-12-18 15:10:33
|
Update of /cvsroot/perfparse/_perfparse/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/scripts Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/scripts/Makefile.in,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** Makefile.in 2 Aug 2007 22:20:22 -0000 1.22 --- Makefile.in 18 Dec 2007 15:10:34 -0000 1.23 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,27 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 15,23 ---- *************** *** 70,75 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 66,69 ---- *************** *** 83,94 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 77,80 ---- *************** *** 127,130 **** --- 113,117 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 151,154 **** --- 138,142 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 172,182 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 160,167 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 187,197 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 172,182 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 206,209 **** --- 191,195 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 235,238 **** --- 221,225 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 241,244 **** --- 228,233 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ GO_PERFPARSE_SH = perfparse.sh.example EXTRA_DIST = \ *************** *** 291,295 **** install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_SCRIPTS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ --- 280,284 ---- install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_SCRIPTS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ *************** *** 314,321 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: tags: TAGS TAGS: --- 303,306 ---- *************** *** 326,345 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 311,329 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 357,361 **** installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 341,345 ---- installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 390,394 **** distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am --- 374,378 ---- distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic dvi: dvi-am *************** *** 404,413 **** --- 388,405 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: install-binSCRIPTS + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 428,442 **** ps-am: ! uninstall-am: uninstall-binSCRIPTS uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-binSCRIPTS install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! uninstall uninstall-am uninstall-binSCRIPTS uninstall-info-am --- 420,438 ---- ps-am: ! uninstall-am: uninstall-binSCRIPTS ! ! .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-binSCRIPTS install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am install-man \ ! install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! uninstall uninstall-am uninstall-binSCRIPTS |
From: Florian G. <re...@us...> - 2007-12-18 15:10:33
|
Update of /cvsroot/perfparse/_perfparse/libpp_common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/libpp_common Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_common/Makefile.in,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Makefile.in 2 Aug 2007 22:20:21 -0000 1.20 --- Makefile.in 18 Dec 2007 15:10:33 -0000 1.21 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,27 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 15,23 ---- *************** *** 76,90 **** libpp_common_la-log.lo libpp_common_la-clean_tools.lo libpp_common_la_OBJECTS = $(am_libpp_common_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libpp_common_la_SOURCES) DIST_SOURCES = $(libpp_common_la_SOURCES) --- 72,90 ---- libpp_common_la-log.lo libpp_common_la-clean_tools.lo libpp_common_la_OBJECTS = $(am_libpp_common_la_OBJECTS) ! libpp_common_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ ! $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(libpp_common_la_LDFLAGS) $(LDFLAGS) -o $@ ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libpp_common_la_SOURCES) DIST_SOURCES = $(libpp_common_la_SOURCES) *************** *** 94,99 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 94,97 ---- *************** *** 107,118 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 105,108 ---- *************** *** 151,154 **** --- 141,145 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 175,178 **** --- 166,170 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 196,206 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 188,195 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 211,221 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 200,210 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 230,233 **** --- 219,223 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 259,262 **** --- 249,253 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 265,268 **** --- 256,261 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ lib_LTLIBRARIES = libpp_common.la libpp_common_la_SOURCES = config_file.c log.c clean_tools.c libpp_common.h *************** *** 305,309 **** install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ --- 298,302 ---- install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ *************** *** 316,320 **** uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ --- 309,313 ---- uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ *************** *** 331,335 **** done libpp_common.la: $(libpp_common_la_OBJECTS) $(libpp_common_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libpp_common_la_LDFLAGS) $(libpp_common_la_OBJECTS) $(libpp_common_la_LIBADD) $(LIBS) mostlyclean-compile: --- 324,328 ---- done libpp_common.la: $(libpp_common_la_OBJECTS) $(libpp_common_la_DEPENDENCIES) ! $(libpp_common_la_LINK) -rpath $(libdir) $(libpp_common_la_OBJECTS) $(libpp_common_la_LIBADD) $(LIBS) mostlyclean-compile: *************** *** 344,349 **** .c.o: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 337,342 ---- .c.o: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 351,356 **** .c.obj: ! @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 344,349 ---- .c.obj: ! @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 358,363 **** .c.lo: ! @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ --- 351,356 ---- .c.lo: ! @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ *************** *** 365,387 **** libpp_common_la-config_file.lo: config_file.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_common_la-config_file.lo -MD -MP -MF "$(DEPDIR)/libpp_common_la-config_file.Tpo" -c -o libpp_common_la-config_file.lo `test -f 'config_file.c' || echo '$(srcdir)/'`config_file.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_common_la-config_file.Tpo" "$(DEPDIR)/libpp_common_la-config_file.Plo"; else rm -f "$(DEPDIR)/libpp_common_la-config_file.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='config_file.c' object='libpp_common_la-config_file.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_common_la-config_file.lo `test -f 'config_file.c' || echo '$(srcdir)/'`config_file.c libpp_common_la-log.lo: log.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_common_la-log.lo -MD -MP -MF "$(DEPDIR)/libpp_common_la-log.Tpo" -c -o libpp_common_la-log.lo `test -f 'log.c' || echo '$(srcdir)/'`log.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_common_la-log.Tpo" "$(DEPDIR)/libpp_common_la-log.Plo"; else rm -f "$(DEPDIR)/libpp_common_la-log.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log.c' object='libpp_common_la-log.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_common_la-log.lo `test -f 'log.c' || echo '$(srcdir)/'`log.c libpp_common_la-clean_tools.lo: clean_tools.c ! @am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_common_la-clean_tools.lo -MD -MP -MF "$(DEPDIR)/libpp_common_la-clean_tools.Tpo" -c -o libpp_common_la-clean_tools.lo `test -f 'clean_tools.c' || echo '$(srcdir)/'`clean_tools.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libpp_common_la-clean_tools.Tpo" "$(DEPDIR)/libpp_common_la-clean_tools.Plo"; else rm -f "$(DEPDIR)/libpp_common_la-clean_tools.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clean_tools.c' object='libpp_common_la-clean_tools.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_common_la-clean_tools.lo `test -f 'clean_tools.c' || echo '$(srcdir)/'`clean_tools.c mostlyclean-libtool: --- 358,380 ---- libpp_common_la-config_file.lo: config_file.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_common_la-config_file.lo -MD -MP -MF $(DEPDIR)/libpp_common_la-config_file.Tpo -c -o libpp_common_la-config_file.lo `test -f 'config_file.c' || echo '$(srcdir)/'`config_file.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_common_la-config_file.Tpo $(DEPDIR)/libpp_common_la-config_file.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='config_file.c' object='libpp_common_la-config_file.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_common_la-config_file.lo `test -f 'config_file.c' || echo '$(srcdir)/'`config_file.c libpp_common_la-log.lo: log.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_common_la-log.lo -MD -MP -MF $(DEPDIR)/libpp_common_la-log.Tpo -c -o libpp_common_la-log.lo `test -f 'log.c' || echo '$(srcdir)/'`log.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_common_la-log.Tpo $(DEPDIR)/libpp_common_la-log.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log.c' object='libpp_common_la-log.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_common_la-log.lo `test -f 'log.c' || echo '$(srcdir)/'`log.c libpp_common_la-clean_tools.lo: clean_tools.c ! @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpp_common_la-clean_tools.lo -MD -MP -MF $(DEPDIR)/libpp_common_la-clean_tools.Tpo -c -o libpp_common_la-clean_tools.lo `test -f 'clean_tools.c' || echo '$(srcdir)/'`clean_tools.c ! @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/libpp_common_la-clean_tools.Tpo $(DEPDIR)/libpp_common_la-clean_tools.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clean_tools.c' object='libpp_common_la-clean_tools.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ ! @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpp_common_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpp_common_la-clean_tools.lo `test -f 'clean_tools.c' || echo '$(srcdir)/'`clean_tools.c mostlyclean-libtool: *************** *** 391,398 **** -rm -rf .libs _libs - distclean-libtool: - -rm -f libtool - uninstall-info-am: - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ --- 384,387 ---- *************** *** 444,463 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 433,451 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 475,479 **** installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 463,467 ---- installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 510,514 **** -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 498,502 ---- -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 524,533 **** --- 512,529 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: install-libLTLIBRARIES + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 550,554 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ --- 546,552 ---- ps-am: ! uninstall-am: uninstall-libLTLIBRARIES ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ *************** *** 556,567 **** distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am \ ! install-libLTLIBRARIES install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 554,566 ---- distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am \ ! install-libLTLIBRARIES install-man install-pdf install-pdf-am \ ! install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. |
From: Florian G. <re...@us...> - 2007-12-18 15:10:31
|
Update of /cvsroot/perfparse/_perfparse/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/config Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/config/Makefile.in,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Makefile.in 2 Aug 2007 22:20:21 -0000 1.20 --- Makefile.in 18 Dec 2007 15:10:33 -0000 1.21 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 16,28 **** - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 16,24 ---- *************** *** 82,87 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 78,81 ---- *************** *** 95,106 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 89,92 ---- *************** *** 139,142 **** --- 125,129 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 163,166 **** --- 150,154 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 184,194 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 172,179 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 199,209 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 184,194 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 218,221 **** --- 203,207 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 247,250 **** --- 233,237 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 253,256 **** --- 240,245 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ sysconf_DATA = nagios_perfparse.cfg dist_sysconf_DATA = perfparse.cfg.example *************** *** 298,302 **** install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_SCRIPTS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ --- 287,291 ---- install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_SCRIPTS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ *************** *** 321,331 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-dist_sysconfDATA: $(dist_sysconf_DATA) @$(NORMAL_INSTALL) ! test -z "$(sysconfdir)" || $(mkdir_p) "$(DESTDIR)$(sysconfdir)" @list='$(dist_sysconf_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ --- 310,316 ---- clean-libtool: -rm -rf .libs _libs install-dist_sysconfDATA: $(dist_sysconf_DATA) @$(NORMAL_INSTALL) ! test -z "$(sysconfdir)" || $(MKDIR_P) "$(DESTDIR)$(sysconfdir)" @list='$(dist_sysconf_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ *************** *** 344,348 **** install-sysconfDATA: $(sysconf_DATA) @$(NORMAL_INSTALL) ! test -z "$(sysconfdir)" || $(mkdir_p) "$(DESTDIR)$(sysconfdir)" @list='$(sysconf_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ --- 329,333 ---- install-sysconfDATA: $(sysconf_DATA) @$(NORMAL_INSTALL) ! test -z "$(sysconfdir)" || $(MKDIR_P) "$(DESTDIR)$(sysconfdir)" @list='$(sysconf_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ *************** *** 367,386 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 352,370 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 398,402 **** installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sysconfdir)" "$(DESTDIR)$(sysconfdir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 382,386 ---- installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sysconfdir)" "$(DESTDIR)$(sysconfdir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 431,435 **** distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am --- 415,419 ---- distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic dvi: dvi-am *************** *** 445,455 **** --- 429,447 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: install-binSCRIPTS install-dist_sysconfDATA \ install-sysconfDATA + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 471,475 **** uninstall-am: uninstall-binSCRIPTS uninstall-dist_sysconfDATA \ ! uninstall-info-am uninstall-sysconfDATA .PHONY: all all-am check check-am clean clean-generic clean-libtool \ --- 463,469 ---- uninstall-am: uninstall-binSCRIPTS uninstall-dist_sysconfDATA \ ! uninstall-sysconfDATA ! ! .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ *************** *** 477,488 **** dvi-am html html-am info info-am install install-am \ install-binSCRIPTS install-data install-data-am \ ! install-dist_sysconfDATA install-exec install-exec-am \ ! install-info install-info-am install-man install-strip \ install-sysconfDATA installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-binSCRIPTS \ ! uninstall-dist_sysconfDATA uninstall-info-am \ ! uninstall-sysconfDATA --- 471,483 ---- dvi-am html html-am info info-am install install-am \ install-binSCRIPTS install-data install-data-am \ ! install-dist_sysconfDATA install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-ps install-ps-am install-strip \ install-sysconfDATA installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-binSCRIPTS \ ! uninstall-dist_sysconfDATA uninstall-sysconfDATA |
From: Florian G. <re...@us...> - 2007-12-18 15:10:31
|
Update of /cvsroot/perfparse/_perfparse/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27278/images Modified Files: Makefile.in Log Message: ... after autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/perfparse/_perfparse/images/Makefile.in,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Makefile.in 2 Aug 2007 22:20:21 -0000 1.21 --- Makefile.in 18 Dec 2007 15:10:33 -0000 1.22 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,26 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c --- 15,22 ---- *************** *** 77,82 **** ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ - AMDEP_FALSE = @AMDEP_FALSE@ - AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ --- 73,76 ---- *************** *** 90,101 **** CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ - COND_CGIS_FALSE = @COND_CGIS_FALSE@ - COND_CGIS_TRUE = @COND_CGIS_TRUE@ - COND_PERFPARSEDBTOOLS_FALSE = @COND_PERFPARSEDBTOOLS_FALSE@ - COND_PERFPARSEDBTOOLS_TRUE = @COND_PERFPARSEDBTOOLS_TRUE@ - COND_PERFPARSE_FALSE = @COND_PERFPARSE_FALSE@ - COND_PERFPARSE_TRUE = @COND_PERFPARSE_TRUE@ - COND_PHPUI_FALSE = @COND_PHPUI_FALSE@ - COND_PHPUI_TRUE = @COND_PHPUI_TRUE@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ --- 84,87 ---- *************** *** 134,137 **** --- 120,124 ---- HAVE_WPRINTF = @HAVE_WPRINTF@ HTTP_IMAGE_PATH = @HTTP_IMAGE_PATH@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ *************** *** 158,161 **** --- 145,149 ---- LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ *************** *** 179,189 **** POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ - USE_DB_MYSQL_FALSE = @USE_DB_MYSQL_FALSE@ - USE_DB_MYSQL_TRUE = @USE_DB_MYSQL_TRUE@ - USE_DB_POSTGRESQL_FALSE = @USE_DB_POSTGRESQL_FALSE@ - USE_DB_POSTGRESQL_TRUE = @USE_DB_POSTGRESQL_TRUE@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ --- 167,174 ---- POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ + SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ *************** *** 194,204 **** ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ - am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ - am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ - am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ --- 179,189 ---- ZLIB_CFLAGS = @ZLIB_CFLAGS@ ZLIB_LIBS = @ZLIB_LIBS@ + abs_builddir = @abs_builddir@ + abs_srcdir = @abs_srcdir@ + abs_top_builddir = @abs_top_builddir@ + abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ *************** *** 213,216 **** --- 198,202 ---- build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ cgidir = @cgidir@ datadir = @datadir@ *************** *** 242,245 **** --- 228,232 ---- sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ *************** *** 248,251 **** --- 235,240 ---- target_os = @target_os@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ dist_pkgdata_DATA = \ perfparse-logo-sm-asnmtap.png \ *************** *** 297,307 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-dist_pkgdataDATA: $(dist_pkgdata_DATA) @$(NORMAL_INSTALL) ! test -z "$(pkgdatadir)" || $(mkdir_p) "$(DESTDIR)$(pkgdatadir)" @list='$(dist_pkgdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ --- 286,292 ---- clean-libtool: -rm -rf .libs _libs install-dist_pkgdataDATA: $(dist_pkgdata_DATA) @$(NORMAL_INSTALL) ! test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)" @list='$(dist_pkgdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ *************** *** 326,345 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ --- 311,329 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ *************** *** 357,361 **** installdirs: for dir in "$(DESTDIR)$(pkgdatadir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am --- 341,345 ---- installdirs: for dir in "$(DESTDIR)$(pkgdatadir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am *************** *** 389,393 **** distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am --- 373,377 ---- distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic dvi: dvi-am *************** *** 403,412 **** --- 387,404 ---- install-data-am: install-dist_pkgdataDATA + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: *************** *** 427,431 **** ps-am: ! uninstall-am: uninstall-dist_pkgdataDATA uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ --- 419,425 ---- ps-am: ! uninstall-am: uninstall-dist_pkgdataDATA ! ! .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ *************** *** 433,442 **** dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dist_pkgdataDATA \ ! install-exec install-exec-am install-info install-info-am \ ! install-man install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ! ps ps-am uninstall uninstall-am uninstall-dist_pkgdataDATA \ ! uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 427,437 ---- dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dist_pkgdataDATA \ ! install-dvi install-dvi-am install-exec install-exec-am \ ! install-html install-html-am install-info install-info-am \ ! install-man install-pdf install-pdf-am install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ! ps ps-am uninstall uninstall-am uninstall-dist_pkgdataDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. |
From: Florian G. <re...@us...> - 2007-12-18 15:08:52
|
Update of /cvsroot/perfparse/_perfparse/perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26895/perfparse Modified Files: perfparsed.c storage.c Log Message: added version information to storage module api and renamed upcoming version. Index: perfparsed.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/perfparse/perfparsed.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** perfparsed.c 18 Dec 2007 00:15:00 -0000 1.11 --- perfparsed.c 18 Dec 2007 15:08:51 -0000 1.12 *************** *** 63,79 **** if (pid < 0) { ! pp_log(__FILE__,__LINE__,LOG_ERROR, _("daemonize failed (fork problem : errno=%d msg=%s)"),errno,strerror(errno)); exit(EXIT_FAILURE); } if (pid > 0) { ! pp_log(__FILE__,__LINE__,LOG_DEBUG,_("daemonize: fork succeeded. Parent process exiting\n")); exit (EXIT_SUCCESS); } ! pp_log(__FILE__,__LINE__,LOG_DEBUG,_("daemonize: fork succeeded. Child process PID: %d\n"),getpid()); sid=setsid (); if(sid<0) { ! pp_log(__FILE__,__LINE__,LOG_FATAL,_("daemonize: problem creating a new session for daemon process\n")); exit(EXIT_FAILURE); } --- 63,79 ---- if (pid < 0) { ! pp_log_fl(LOG_ERROR, _("daemonize failed (fork problem : errno=%d msg=%s)"),errno,strerror(errno)); exit(EXIT_FAILURE); } if (pid > 0) { ! pp_log_fl(LOG_DEBUG,_("daemonize: fork succeeded. Parent process exiting\n")); exit (EXIT_SUCCESS); } ! pp_log_fl(LOG_DEBUG,_("daemonize: fork succeeded. Child process PID: %d\n"),getpid()); sid=setsid (); if(sid<0) { ! pp_log_fl(LOG_FATAL,_("daemonize: problem creating a new session for daemon process\n")); exit(EXIT_FAILURE); } *************** *** 88,92 **** umask (022); if(0 != chdir (LOCALSTATEDIR)) { ! pp_log(__FILE__,__LINE__,LOG_ERROR, _("daemonize failed (could not chdir('%s') : errno=%d msg=%s)"),LOCALSTATEDIR, errno,strerror(errno)); exit(EXIT_FAILURE); } --- 88,92 ---- umask (022); if(0 != chdir (LOCALSTATEDIR)) { ! pp_log_fl(LOG_ERROR, _("daemonize failed (could not chdir('%s') : errno=%d msg=%s)"),LOCALSTATEDIR, errno,strerror(errno)); exit(EXIT_FAILURE); } *************** *** 94,98 **** fd = open (lock_file, O_RDWR | O_CREAT, 0640); if (fd < 0) { ! pp_log(__FILE__,__LINE__,LOG_ERROR,_("daemonize: cannot create lockfile %s\n"),lock_file); exit (EXIT_FAILURE); } --- 94,98 ---- fd = open (lock_file, O_RDWR | O_CREAT, 0640); if (fd < 0) { ! pp_log_fl(LOG_ERROR,_("daemonize: cannot create lockfile %s\n"),lock_file); exit (EXIT_FAILURE); } *************** *** 108,115 **** pid = strtol(tmp,NULL,10); if((0 == pid) && (EINVAL == errno)) { ! pp_log(__FILE__,__LINE__,LOG_ERROR, _("File '%s' is corrupted"),lock_file); exit (EXIT_FAILURE); } ! pp_log(__FILE__,__LINE__,LOG_ERROR, _("Perfparsed already running with PID %d"),pid); exit (EXIT_SUCCESS); } --- 108,115 ---- pid = strtol(tmp,NULL,10); if((0 == pid) && (EINVAL == errno)) { ! pp_log_fl(LOG_ERROR, _("File '%s' is corrupted"),lock_file); exit (EXIT_FAILURE); } ! pp_log_fl(LOG_ERROR, _("Perfparsed already running with PID %d"),pid); exit (EXIT_SUCCESS); } *************** *** 167,175 **** if(!strcmp(config_get_value_as_string(CONFIG_ITEM_ID_SERVICE_LOG),"-")) { ! pp_log(__FILE__,__LINE__,LOG_ERROR,_("Stdin not authorized as the perf data input source")); exit(EXIT_FAILURE); } if(config_get_value_as_string(CONFIG_ITEM_ID_SERVICE_LOG)[0] == '>') { ! pp_log(__FILE__,__LINE__,LOG_ERROR,_("Client socket not authorized as the perf data input source")); exit(EXIT_FAILURE); } --- 167,175 ---- if(!strcmp(config_get_value_as_string(CONFIG_ITEM_ID_SERVICE_LOG),"-")) { ! pp_log_fl(LOG_ERROR,_("Stdin not authorized as the perf data input source")); exit(EXIT_FAILURE); } if(config_get_value_as_string(CONFIG_ITEM_ID_SERVICE_LOG)[0] == '>') { ! pp_log_fl(LOG_ERROR,_("Client socket not authorized as the perf data input source")); exit(EXIT_FAILURE); } *************** *** 178,187 **** if(config_get_value_as_boolean(CONFIG_ITEM_ID_DAEMONIZE) && (config_option == CONFIG_OPTION_NONE)) { daemonize(config_get_value_as_string(CONFIG_ITEM_ID_DAEMON_LOCK)); ! pp_log(__FILE__,__LINE__,LOG_INFO, _("Perfparsed successfully daemonized (pid=%ld)"),getpid()); } // load staorage modules if(0 == storage_init(NULL)) { ! pp_log(__FILE__,__LINE__,LOG_WARNING,_("No module was loaded. Check the Storage_Modules_Load config option.")); exit(EXIT_FAILURE); } --- 178,187 ---- if(config_get_value_as_boolean(CONFIG_ITEM_ID_DAEMONIZE) && (config_option == CONFIG_OPTION_NONE)) { daemonize(config_get_value_as_string(CONFIG_ITEM_ID_DAEMON_LOCK)); ! pp_log_fl(LOG_INFO, _("Perfparsed successfully daemonized (pid=%ld)"),getpid()); } // load staorage modules if(0 == storage_init(NULL)) { ! pp_log_fl(LOG_WARNING,_("No module was loaded. Check the Storage_Modules_Load config option.")); exit(EXIT_FAILURE); } *************** *** 205,213 **** service_log_source = config_get_value_as_string(CONFIG_ITEM_ID_SERVICE_LOG); if(service_log_source[0] && (0 > (open_log_source(service_log_source)))) { ! pp_log(__FILE__,__LINE__,LOG_ERROR,_("Could not open log source ('%s') configured in Service_Log"),service_log_source); exit(EXIT_FAILURE); } if((config_get_value_as_integer(CONFIG_ITEM_ID_SERVER_PORT) > 0) && (0 > log_source_new_server(config_get_value_as_integer(CONFIG_ITEM_ID_SERVER_PORT)))) { ! pp_log(__FILE__,__LINE__,LOG_ERROR,_("Could not create perfparse server\n")); exit(EXIT_FAILURE); } --- 205,213 ---- service_log_source = config_get_value_as_string(CONFIG_ITEM_ID_SERVICE_LOG); if(service_log_source[0] && (0 > (open_log_source(service_log_source)))) { ! pp_log_fl(LOG_ERROR,_("Could not open log source ('%s') configured in Service_Log"),service_log_source); exit(EXIT_FAILURE); } if((config_get_value_as_integer(CONFIG_ITEM_ID_SERVER_PORT) > 0) && (0 > log_source_new_server(config_get_value_as_integer(CONFIG_ITEM_ID_SERVER_PORT)))) { ! pp_log_fl(LOG_ERROR,_("Could not create perfparse server\n")); exit(EXIT_FAILURE); } *************** *** 250,254 **** break; default : ! pp_log(__FILE__,__LINE__,LOG_FATAL,_("This is a bug. This code should never be executed")); } } --- 250,254 ---- break; default : ! pp_log_fl(LOG_FATAL,_("This is a bug. This code should never be executed")); } } *************** *** 258,262 **** while(0 < waitpid(-1,NULL,WNOHANG)); } ! pp_log(__FILE__,__LINE__,LOG_FATAL,_("This is a bug. This code should never be executed")); close_all_log_sources(); log_reader_remove_signal_handler(); --- 258,262 ---- while(0 < waitpid(-1,NULL,WNOHANG)); } ! pp_log_fl(LOG_FATAL,_("This is a bug. This code should never be executed")); close_all_log_sources(); log_reader_remove_signal_handler(); Index: storage.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/perfparse/storage.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** storage.c 14 Dec 2007 21:42:17 -0000 1.8 --- storage.c 18 Dec 2007 15:08:51 -0000 1.9 *************** *** 57,72 **** char*libpath; storage_module_t *(*storage_module_init_cb)(void); void*storage_module_handle; libpath = g_strdup_printf("%s/libpp_storage_%s." SHLIBEXT,config_get_value_as_string(CONFIG_ITEM_ID_STORAGE_MODULES_DIR),storage_name); if(NULL == (storage_module_handle = dlopen(libpath, RTLD_LAZY))) { ! pp_log(__FILE__,__LINE__,LOG_ERROR, _("storage_%s module failed to load (msg='%s')\n"),storage_name, dlerror()); exit(EXIT_FAILURE); } g_free(libpath); storage_module_init_cb = dlsym(storage_module_handle, "storage_module_init"); if(NULL == storage_module_init_cb) { ! pp_log(__FILE__,__LINE__,LOG_ERROR, _("storage_%s module failed to initialize\n"),storage_name); exit(EXIT_FAILURE); } --- 57,86 ---- char*libpath; storage_module_t *(*storage_module_init_cb)(void); + int (*storage_module_api_ver_cb) (void); void*storage_module_handle; libpath = g_strdup_printf("%s/libpp_storage_%s." SHLIBEXT,config_get_value_as_string(CONFIG_ITEM_ID_STORAGE_MODULES_DIR),storage_name); if(NULL == (storage_module_handle = dlopen(libpath, RTLD_LAZY))) { ! pp_log_fl(LOG_ERROR, _("storage_%s module failed to load (msg='%s')\n"),storage_name, dlerror()); exit(EXIT_FAILURE); } g_free(libpath); + storage_module_api_ver_cb = dlsym(storage_module_handle, "storage_module_api_version"); + if(storage_module_api_ver_cb == NULL) { + pp_log_fl(LOG_ERROR, _("storage_%s module does not have proper version information\n")); + exit(EXIT_FAILURE); + } + + if(storage_module_api_ver_cb()!=STORAGE_MODULE_API_VERSION) { + pp_log_fl(LOG_ERROR, _("storage_%s module is API version %d. Desired API version is %d.\n"), + storage_module_api_ver_cb(),STORAGE_MODULE_API_VERSION); + exit(EXIT_FAILURE); + } + + storage_module_init_cb = dlsym(storage_module_handle, "storage_module_init"); if(NULL == storage_module_init_cb) { ! pp_log_fl(LOG_ERROR, _("storage_%s module failed to initialize\n"),storage_name); exit(EXIT_FAILURE); } *************** *** 74,78 **** sm_new = storage_module_init_cb(); if(NULL == sm_new) { ! pp_log(__FILE__,__LINE__,LOG_ERROR, _("storage_%s module failed to initialize itself\n"),storage_name); exit(EXIT_FAILURE); } --- 88,92 ---- sm_new = storage_module_init_cb(); if(NULL == sm_new) { ! pp_log_fl(LOG_ERROR, _("storage_%s module failed to initialize itself\n"),storage_name); exit(EXIT_FAILURE); } *************** *** 80,84 **** if(NULL == (sme=malloc(sizeof(storage_module_element_t)))) { ! pp_log(__FILE__,__LINE__,LOG_ERROR, _("Not enough memory (malloc failed)\n")); exit(EXIT_FAILURE); } --- 94,98 ---- if(NULL == (sme=malloc(sizeof(storage_module_element_t)))) { ! pp_log_fl(LOG_ERROR, _("Not enough memory (malloc failed)\n")); exit(EXIT_FAILURE); } *************** *** 95,102 **** storage_modules->prev = NULL; } ! pp_log(__FILE__,__LINE__,LOG_INFO, _("storage_%s module successfully loaded\n"),storage_name); } int storage_init(const char*argv0) { const char*b; char*modules_list; --- 109,117 ---- storage_modules->prev = NULL; } ! pp_log_fl(LOG_INFO, _("storage_%s module successfully loaded\n"),storage_name); } int storage_init(const char*argv0) { + pp_log_func; const char*b; char*modules_list; |
From: Florian G. <re...@us...> - 2007-12-18 15:08:47
|
Update of /cvsroot/perfparse/_perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26895 Modified Files: ChangeLog configure.ac Log Message: added version information to storage module api and renamed upcoming version. Index: configure.ac =================================================================== RCS file: /cvsroot/perfparse/_perfparse/configure.ac,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** configure.ac 28 Sep 2007 21:53:16 -0000 1.28 --- configure.ac 18 Dec 2007 15:08:50 -0000 1.29 *************** *** 25,29 **** AC_PREREQ(2.59) ! AC_INIT([perfparse],[0.106.2],[per...@li...]) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE --- 25,29 ---- AC_PREREQ(2.59) ! AC_INIT([perfparse],[1.0 beta 1],[per...@li...]) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE Index: ChangeLog =================================================================== RCS file: /cvsroot/perfparse/_perfparse/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** ChangeLog 16 Dec 2007 22:45:52 -0000 1.19 --- ChangeLog 18 Dec 2007 15:08:50 -0000 1.20 *************** *** 1,3 **** ! Version 0.106.2 Added advanced error log facilities. (FG) Fixed bug where part of the grid is painted on the border. (FG) --- 1,4 ---- ! Version 1.0 beta 1 ! Added version information to storage API (module) (FG) Added advanced error log facilities. (FG) Fixed bug where part of the grid is painted on the border. (FG) |
From: Florian G. <re...@us...> - 2007-12-18 15:08:47
|
Update of /cvsroot/perfparse/_perfparse-phpgui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26895/phpgui Modified Files: perfparse.php Log Message: added version information to storage module api and renamed upcoming version. Index: perfparse.php =================================================================== RCS file: /cvsroot/perfparse/_perfparse-phpgui/perfparse.php,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** perfparse.php 3 Dec 2007 20:39:03 -0000 1.60 --- perfparse.php 18 Dec 2007 15:08:51 -0000 1.61 *************** *** 54,58 **** // php-perfparse version ! $smarty->assign('version','perfparse 0.106.2'); //minimum Database schema version required --- 54,58 ---- // php-perfparse version ! $smarty->assign('version','perfparse 1.0 beta 1'); //minimum Database schema version required |
From: Florian G. <re...@us...> - 2007-12-18 15:08:47
|
Update of /cvsroot/perfparse/_perfparse/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26895/modules Modified Files: libpp_storage.h storage_mysql.c storage_mysql.h Log Message: added version information to storage module api and renamed upcoming version. Index: libpp_storage.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/modules/libpp_storage.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** libpp_storage.h 18 Dec 2007 00:03:00 -0000 1.3 --- libpp_storage.h 18 Dec 2007 15:08:50 -0000 1.4 *************** *** 28,31 **** --- 28,34 ---- #define __LIB_STORAGE__ + // versioning for storage modules to avoid loading of incompatible modules + #define STORAGE_MODULE_API_VERSION 2 + #include <time.h> #include <stdio.h> Index: storage_mysql.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/modules/storage_mysql.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** storage_mysql.h 10 Dec 2007 18:55:09 -0000 1.7 --- storage_mysql.h 18 Dec 2007 15:08:50 -0000 1.8 *************** *** 32,35 **** --- 32,36 ---- #define STORAGE_MYSQL_VERSION "0.0.2" + #define STORAGE_MYSQL_API_VER 2 int storage_mysql_init(void); Index: storage_mysql.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/modules/storage_mysql.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** storage_mysql.c 17 Dec 2007 20:49:53 -0000 1.20 --- storage_mysql.c 18 Dec 2007 15:08:50 -0000 1.21 *************** *** 115,118 **** --- 115,122 ---- } + int storage_module_api_version(void) { + return(STORAGE_MYSQL_API_VER); + } + int storage_mysql_connect(struct storage_module_t *this) { pp_log_func; *************** *** 462,491 **** if(raw_policyinfo->iPolicySeconds>1) { dps=t-raw_policyinfo->iPolicySeconds; ! pp_log(__FILE__,__LINE__,LOG_INFO,_("Purging raw data older than %s from service '%s', ServiceId %d due to "), asctime(localtime(&dps)),raw_policyinfo->sServiceDesc, raw_policyinfo->iServiceId); switch(raw_policyinfo->iPolicySource) { case DEL_POLICY_SOURCE_SERVICE: ! pp_log(__FILE__,__LINE__,LOG_INFO,_("individual service setting\n")); break; case DEL_POLICY_SOURCE_HOST: ! pp_log(__FILE__,__LINE__,LOG_INFO,_("individual host setting\n")); break; case DEL_POLICY_SOURCE_HOSTGROUP: ! pp_log(__FILE__,__LINE__,LOG_INFO,_("individual hostgroup setting\n")); break; case DEL_POLICY_SOURCE_SERVICE_GROUP: ! pp_log(__FILE__,__LINE__,LOG_INFO,_("group '%s' setting in service.\n"),raw_policyinfo->sPolicyName); break; case DEL_POLICY_SOURCE_HOST_GROUP: ! pp_log(__FILE__,__LINE__,LOG_INFO,_("group '%s' setting in host.\n"),raw_policyinfo->sPolicyName); break; case DEL_POLICY_SOURCE_HOSTGROUP_GROUP: ! pp_log(__FILE__,__LINE__,LOG_INFO,_("group '%s' setting in hostgroup.\n"),raw_policyinfo->sPolicyName); break; case DEL_POLICY_SOURCE_DEFAULT: pp_log_fl(LOG_INFO,_("default setting.\n")); default: ! pp_log(__FILE__,__LINE__,LOG_FATAL,_("This is a error. This line should not be executed.\n")); } --- 466,495 ---- if(raw_policyinfo->iPolicySeconds>1) { dps=t-raw_policyinfo->iPolicySeconds; ! pp_log_fl(LOG_INFO,_("Purging raw data older than %s from service '%s', ServiceId %d due to "), asctime(localtime(&dps)),raw_policyinfo->sServiceDesc, raw_policyinfo->iServiceId); switch(raw_policyinfo->iPolicySource) { case DEL_POLICY_SOURCE_SERVICE: ! pp_log_fl(LOG_INFO,_("individual service setting\n")); break; case DEL_POLICY_SOURCE_HOST: ! pp_log_fl(LOG_INFO,_("individual host setting\n")); break; case DEL_POLICY_SOURCE_HOSTGROUP: ! pp_log_fl(LOG_INFO,_("individual hostgroup setting\n")); break; case DEL_POLICY_SOURCE_SERVICE_GROUP: ! pp_log_fl(LOG_INFO,_("group '%s' setting in service.\n"),raw_policyinfo->sPolicyName); break; case DEL_POLICY_SOURCE_HOST_GROUP: ! pp_log_fl(LOG_INFO,_("group '%s' setting in host.\n"),raw_policyinfo->sPolicyName); break; case DEL_POLICY_SOURCE_HOSTGROUP_GROUP: ! pp_log_fl(LOG_INFO,_("group '%s' setting in hostgroup.\n"),raw_policyinfo->sPolicyName); break; case DEL_POLICY_SOURCE_DEFAULT: pp_log_fl(LOG_INFO,_("default setting.\n")); default: ! pp_log_fl(LOG_FATAL,_("This is a error. This line should not be executed.\n")); } *************** *** 499,503 **** ! pp_log(__FILE__,__LINE__,LOG_DEBUG,"Closing mysql connection\n"); mysql_close(&db_mysql); } --- 503,507 ---- ! pp_log_fl(LOG_DEBUG,"Closing mysql connection\n"); mysql_close(&db_mysql); } |
From: Florian G. <re...@us...> - 2007-12-18 00:14:57
|
Update of /cvsroot/perfparse/_perfparse/perfparse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30882/perfparse Modified Files: perfparse-common.c perfparsed.c Log Message: print more log messages Index: perfparse-common.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/perfparse/perfparse-common.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** perfparse-common.c 28 Sep 2007 21:53:16 -0000 1.4 --- perfparse-common.c 18 Dec 2007 00:15:00 -0000 1.5 *************** *** 93,96 **** --- 93,97 ---- // printf("\n"); } else { + pp_log_fl(LOG_INFO,_("Unable to parse input line.\n")); log_dropped_line(l->str); if(stats) stats->nb_lines_dropped++; Index: perfparsed.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/perfparse/perfparsed.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** perfparsed.c 15 Dec 2007 23:30:56 -0000 1.10 --- perfparsed.c 18 Dec 2007 00:15:00 -0000 1.11 *************** *** 235,240 **** else if(log_source_type(i) == LOG_FD_SOCKET) parse_command(l,i); ! else log_dropped_line(l->str); } log_reader_unmask_signals(); --- 235,242 ---- else if(log_source_type(i) == LOG_FD_SOCKET) parse_command(l,i); ! else { ! pp_log_fl(LOG_INFO,_("Unable to parse input line.\n")); log_dropped_line(l->str); + } } log_reader_unmask_signals(); |
From: Florian G. <re...@us...> - 2007-12-18 00:03:12
|
Update of /cvsroot/perfparse/_perfparse/libpp_common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26547/libpp_common Modified Files: config_file.c log.c Log Message: squashed some compiler warnings Index: log.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_common/log.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** log.c 16 Dec 2007 22:45:52 -0000 1.5 --- log.c 18 Dec 2007 00:03:00 -0000 1.6 *************** *** 71,75 **** if((log_level&config_get_value_as_integer(CONFIG_ITEM_ID_ERROR_LOG_LEVEL))==0) { ! return; } --- 71,75 ---- if((log_level&config_get_value_as_integer(CONFIG_ITEM_ID_ERROR_LOG_LEVEL))==0) { ! return(FALSE); } Index: config_file.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libpp_common/config_file.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** config_file.c 17 Dec 2007 20:49:53 -0000 1.7 --- config_file.c 18 Dec 2007 00:03:00 -0000 1.8 *************** *** 28,31 **** --- 28,35 ---- *****************************************************************************/ + #if HAVE_CONFIG_H + # include <config.h> + #endif /* HAVE_CONFIG_H */ + #include <gettext.h> #include <config.h> *************** *** 54,58 **** char *my_gethostname(void) { - pp_log_func; char *s=NULL; #if defined (OS_SOLARIS) --- 58,61 ---- *************** *** 110,124 **** config_item_add(config_definition, CONFIG_ITEM_ID_CONFIG_FILE, "Config_File", "/" SYSCONFDIR "/" CONFIG_FILE , _("Config file"), _("File for Perfparse configuration"), "-c", "--config-file", TYPE_STRING, 0); ! config_item_add(config_definition, CONFIG_ITEM_ID_ERROR_LOG, "Error_Log", default_error_log, _("Perfparse log"), _("File where Perfparse logs messages"), "-e", "--error-log", TYPE_STRING, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_ERROR_LOG_LEVEL, "Error_Log_Level", "15", _("Perfparse log level"), _("Error log level"), "-x", "--error-log-level", TYPE_INT, 1); config_item_add(config_definition, CONFIG_ITEM_ID_ERROR_LOG_ROTATE, "Error_Log_Rotate", "yes", _("Perfparse log rotate"), _("Rotate Perfparse log files"), NULL, NULL,TYPE_BOOLEAN, 1); config_item_add(config_definition, CONFIG_ITEM_ID_ERROR_LOG_KEEP_N_DAYS, "Error_Log_Keep_N_Days", "7", _("Keep N days of error log"), _("Keep N days of error log. Compress recent logs and remove too old ones"), NULL, NULL,TYPE_INT, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_DROP_FILE, "Drop_File", "/tmp/perfparse.drop", _("File for dropped lines"), _("When perfparse cannot parse a line, it drops it to that file"), NULL, "--drop-file", TYPE_STRING, 1); config_item_add(config_definition, CONFIG_ITEM_ID_DROP_FILE_ROTATE, "Drop_File_Rotate", "no", "", "", NULL, NULL,TYPE_BOOLEAN, 1); config_item_add(config_definition, CONFIG_ITEM_ID_DROP_FILE_KEEP_N_DAYS, "Drop_File_Keep_N_Days", "7", _("Keep N days of drop file log"), _("Keep N days of drop file log. Compress recent logs and remove too old ones"), NULL, NULL,TYPE_INT, 1); config_item_add(config_definition, CONFIG_ITEM_ID_SERVER_PORT, "Server_Port", "1976", _("Server port"), _("Port for perfparsed server\n# Put 0 or \"\" to disable the server"), "-p", "--port", TYPE_INT, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG, "Service_Log", "/usr/local/nagios/var/serviceperf.log", _("Input log source (from nagios or perfparsed)"), _("Log source from nagios (or other tools) that perfparse will scan\n# Authorized values: a file name, '-' for stdin, '|' for a fifo and '>' for a host:port socket\n# For sockets, a command 'history' will be sent before retreiving the data"), "-l", "--serviceperf-log", TYPE_STRING, 1); config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG_SAVE_POSITION, "Service_Log_Save_Position", "yes", _("Save the read position"), _("Save the read position in the nagios log file ? If yes, perfparse will start from that position instead of from the beginning"), NULL, NULL, TYPE_BOOLEAN, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG_POSITION_MARK_PATH, "Service_Log_Position_Mark_Path", "" , _("Position mark file path"), _("Path for files containing the read position for nagios log files"), NULL, NULL, TYPE_STRING, 1); config_item_add(config_definition, CONFIG_ITEM_ID_HISTORY_START_TM, "History_Start_Tm", "-86400", _("Start timestamp for history retreiving"), _("Start timestamp for history retreiving (positive is absolute, negative is relative to end tm)"), NULL, "--history_start_tm", TYPE_INT, 1); config_item_add(config_definition, CONFIG_ITEM_ID_HISTORY_END_TM, "History_End_Tm", "-30", _("End timestamp for history retreiving"), _("End timestamp for history retreiving (positive is absolute, negative is relative to Now)"), NULL, "--history_end_tm", TYPE_INT, 1); --- 113,127 ---- config_item_add(config_definition, CONFIG_ITEM_ID_CONFIG_FILE, "Config_File", "/" SYSCONFDIR "/" CONFIG_FILE , _("Config file"), _("File for Perfparse configuration"), "-c", "--config-file", TYPE_STRING, 0); ! config_item_add(config_definition, CONFIG_ITEM_ID_ERROR_LOG, "Error_Log", "/" LOCALSTATEDIR "/perfparse.log" , _("Perfparse log"), _("File where Perfparse logs messages"), "-e", "--error-log", TYPE_STRING, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_ERROR_LOG_LEVEL, "Error_Log_Level", "15", _("Perfparse log level"), _("Error log level"), NULL, "--error-log-level", TYPE_INT, 1); config_item_add(config_definition, CONFIG_ITEM_ID_ERROR_LOG_ROTATE, "Error_Log_Rotate", "yes", _("Perfparse log rotate"), _("Rotate Perfparse log files"), NULL, NULL,TYPE_BOOLEAN, 1); config_item_add(config_definition, CONFIG_ITEM_ID_ERROR_LOG_KEEP_N_DAYS, "Error_Log_Keep_N_Days", "7", _("Keep N days of error log"), _("Keep N days of error log. Compress recent logs and remove too old ones"), NULL, NULL,TYPE_INT, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_DROP_FILE, "Drop_File", "/" LOCALSTATEDIR "/perfparse.drop", _("File for dropped lines"), _("When perfparse cannot parse a line, it drops it to that file"), NULL, "--drop-file", TYPE_STRING, 1); config_item_add(config_definition, CONFIG_ITEM_ID_DROP_FILE_ROTATE, "Drop_File_Rotate", "no", "", "", NULL, NULL,TYPE_BOOLEAN, 1); config_item_add(config_definition, CONFIG_ITEM_ID_DROP_FILE_KEEP_N_DAYS, "Drop_File_Keep_N_Days", "7", _("Keep N days of drop file log"), _("Keep N days of drop file log. Compress recent logs and remove too old ones"), NULL, NULL,TYPE_INT, 1); config_item_add(config_definition, CONFIG_ITEM_ID_SERVER_PORT, "Server_Port", "1976", _("Server port"), _("Port for perfparsed server\n# Put 0 or \"\" to disable the server"), "-p", "--port", TYPE_INT, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG, "Service_Log", "/" LOCALSTATEDIR "/serviceperf.log", _("Input log source (from nagios or perfparsed)"), _("Log source from nagios (or other tools) that perfparse will scan\n# Authorized values: a file name, '-' for stdin, '|' for a fifo and '>' for a host:port socket\n# For sockets, a command 'history' will be sent before retreiving the data"), "-l", "--serviceperf-log", TYPE_STRING, 1); config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG_SAVE_POSITION, "Service_Log_Save_Position", "yes", _("Save the read position"), _("Save the read position in the nagios log file ? If yes, perfparse will start from that position instead of from the beginning"), NULL, NULL, TYPE_BOOLEAN, 1); ! config_item_add(config_definition, CONFIG_ITEM_ID_SERVICE_LOG_POSITION_MARK_PATH, "Service_Log_Position_Mark_Path", "/" LOCALSTATEDIR "/serviceperf.mark" , _("Position mark file path"), _("Path for files containing the read position for nagios log files"), NULL, NULL, TYPE_STRING, 1); config_item_add(config_definition, CONFIG_ITEM_ID_HISTORY_START_TM, "History_Start_Tm", "-86400", _("Start timestamp for history retreiving"), _("Start timestamp for history retreiving (positive is absolute, negative is relative to end tm)"), NULL, "--history_start_tm", TYPE_INT, 1); config_item_add(config_definition, CONFIG_ITEM_ID_HISTORY_END_TM, "History_End_Tm", "-30", _("End timestamp for history retreiving"), _("End timestamp for history retreiving (positive is absolute, negative is relative to Now)"), NULL, "--history_end_tm", TYPE_INT, 1); |
From: Florian G. <re...@us...> - 2007-12-18 00:03:12
|
Update of /cvsroot/perfparse/_perfparse/db_tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26547/db_tools Modified Files: convert.c Log Message: squashed some compiler warnings Index: convert.c =================================================================== RCS file: /cvsroot/perfparse/_perfparse/db_tools/convert.c,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** convert.c 8 Aug 2007 22:19:17 -0000 1.39 --- convert.c 18 Dec 2007 00:03:00 -0000 1.40 *************** *** 83,92 **** } ! void g_hash_table_insert_copy(GHashTable *hashCache,char *tmp_string,int tmp_int) { // mallocs space for string and value (int) and inserts it into the table given int *pInt=malloc(sizeof(int)); ! char *pStr=malloc(sizeof(char)*(strlen(tmp_string)+1)); *pInt=tmp_int; - strncpy(pStr,tmp_string,strlen(tmp_string)+1); g_hash_table_insert(hashCache,(gpointer) pStr,pInt); } --- 83,91 ---- } ! void g_hash_table_insert_copy(GHashTable *hashCache,const char *tmp_string,int tmp_int) { // mallocs space for string and value (int) and inserts it into the table given int *pInt=malloc(sizeof(int)); ! char *pStr=strdup(tmp_string); *pInt=tmp_int; g_hash_table_insert(hashCache,(gpointer) pStr,pInt); } |
From: Florian G. <re...@us...> - 2007-12-18 00:03:12
|
Update of /cvsroot/perfparse/_perfparse/libnagios_perfdata_parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26547/libnagios_perfdata_parser Modified Files: libnagios_perfdata_parser.h Log Message: squashed some compiler warnings Index: libnagios_perfdata_parser.h =================================================================== RCS file: /cvsroot/perfparse/_perfparse/libnagios_perfdata_parser/libnagios_perfdata_parser.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** libnagios_perfdata_parser.h 24 Aug 2006 14:36:45 -0000 1.2 --- libnagios_perfdata_parser.h 18 Dec 2007 00:03:00 -0000 1.3 *************** *** 3,8 **** * log_parser.h - Parse Nagios data and store in relational database. * ! * Copyright (c) 2004 Yves Mettier (yme...@li...) ! * * $Id$ * --- 3,9 ---- * log_parser.h - Parse Nagios data and store in relational database. * ! * Copyright (c) 2004-2007 Yves Mettier (yme...@li...) ! * Florian Gleixner ! * * $Id$ * |