Update of /cvsroot/perfparse/_perfparse/libnagios_perfdata_parser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10160/libnagios_perfdata_parser
Modified Files:
Makefile.am Makefile.in
Log Message:
some refactoring
Index: Makefile.in
===================================================================
RCS file: /cvsroot/perfparse/_perfparse/libnagios_perfdata_parser/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
***************
*** 71,74 ****
--- 71,78 ----
libnagios_perfdata_parser_la_OBJECTS = \
$(am_libnagios_perfdata_parser_la_OBJECTS)
+ libnagios_perfdata_parser_la_LINK = $(LIBTOOL) --tag=CC \
+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
+ $(AM_CFLAGS) $(CFLAGS) $(libnagios_perfdata_parser_la_LDFLAGS) \
+ $(LDFLAGS) -o $@
DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
depcomp = $(SHELL) $(top_srcdir)/depcomp
***************
*** 256,259 ****
--- 260,264 ----
lib_LTLIBRARIES = libnagios_perfdata_parser.la
libnagios_perfdata_parser_la_SOURCES = log_parser.c libnagios_perfdata_parser.h
+ libnagios_perfdata_parser_la_LDFLAGS = -version-info 1:0:0
all: all-am
***************
*** 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:
--- 322,326 ----
done
libnagios_perfdata_parser.la: $(libnagios_perfdata_parser_la_OBJECTS) $(libnagios_perfdata_parser_la_DEPENDENCIES)
! $(libnagios_perfdata_parser_la_LINK) -rpath $(libdir) $(libnagios_perfdata_parser_la_OBJECTS) $(libnagios_perfdata_parser_la_LIBADD) $(LIBS)
mostlyclean-compile:
Index: Makefile.am
===================================================================
RCS file: /cvsroot/perfparse/_perfparse/libnagios_perfdata_parser/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
***************
*** 2,3 ****
--- 2,4 ----
lib_LTLIBRARIES = libnagios_perfdata_parser.la
libnagios_perfdata_parser_la_SOURCES=log_parser.c libnagios_perfdata_parser.h
+ libnagios_perfdata_parser_la_LDFLAGS= -version-info 1:0:0
|