[Kst] extragear/graphics/kst/plugins/discretizing_filters

Nicolas Brisset nicolas.brisset at eurocopter.com
Thu Nov 24 18:45:07 CET 2005


SVN commit 482994 by brisset:

Fix licence formatting; add missing lib in Makefile

 M  +3 -3      Makefile  
 M  +3 -3      filter.cpp  
 M  +3 -3      filter.h  
 M  +3 -3      polynom.cpp  
 M  +3 -3      polynom.h  


--- trunk/extragear/graphics/kst/plugins/discretizing_filters/Makefile #482993:482994
@@ -10,10 +10,10 @@
 #Debug-Version
 #CFLAGS	=	-g -Wall 
 
-OBJ      = 	filter.o polynom.o kstfilter_generic.o
+OBJ      = 	polynom.o filter.o kstfilter_generic.o
 
 INCLUDE_DIR	   =  -I. -I/usr/local/kde/include
-LINK_LIBS          =  -lm -L/usr/local/kde/lib -lqt-mt
+LINK_LIBS          =  -lm -L/usr/local/kde/lib -lqt-mt -lc
 KST_PLUGIN         = kstfilter_generic.so
 
 all:	$(KST_PLUGIN)
@@ -21,7 +21,7 @@
 
 $(KST_PLUGIN): $(OBJ) 
 	@echo $(CC) -shared -o $(KST_PLUGIN) $(OBJ) $(LINK_LIBS)
-	@$(CC) -shared -o $(KST_PLUGIN) $(OBJ) $(LINK_LIBS)
+	@$(CC) -shared -z defs -o $(KST_PLUGIN) $(OBJ) $(LINK_LIBS)
 
 ###  rules #########################################
 
--- trunk/extragear/graphics/kst/plugins/discretizing_filters/filter.cpp #482993:482994
@@ -1,7 +1,7 @@
 /******************************************************************************
- * filter.cpp : Implementation of a digital filter                            *
- * author :                 Jean-Paul PETILLON                                *
- * licence :                GNU GPL V2+                                       *
+ *  filter.cpp : Implementation of a digital filter                           *
+ *  Copyright 2005, Jean-Paul Petillon                                        *
+ *  Released under the terms of the GPL.                                      *
  ******************************************************************************/
 
 #include "filter.h"
--- trunk/extragear/graphics/kst/plugins/discretizing_filters/filter.h #482993:482994
@@ -1,11 +1,11 @@
 /******************************************************************************
- * filter.h : Digital Filter. Specified by its "s" transfer function.        *
+ *  filter.h : Digital Filter. Specified by its "s" transfer function.        *
  *             Synthesis of "z" transfert function is done by bilinear        *
  *             transformation :             2   z-1                           *
  *                                    p -> --- -----                          *
  *                                          T   z+1                           *
- * author :                 Jean-Paul PETILLON                                *
- * licence :                GNU GPL V2+                                       *
+ *  Copyright 2005, Jean-Paul Petillon                                        *
+ *  Released under the terms of the GPL.                                      *
  ******************************************************************************/
 #ifndef FILTER_H
 #define FILTER_H
--- trunk/extragear/graphics/kst/plugins/discretizing_filters/polynom.cpp #482993:482994
@@ -1,7 +1,7 @@
 /******************************************************************************
- *                       polynom.cpp :  polynom class                         *
- * author :                 Jean-Paul PETILLON                                *
- * licence :                GNU GPL V2+                                       *
+ *  polynom.cpp :  polynom class implementation (see .h for more info)        *
+ *  Copyright 2005, Jean-Paul Petillon                                        *
+ *  Released under the terms of the GPL.                                      *
  ******************************************************************************/
 
 #include "polynom.h"
--- trunk/extragear/graphics/kst/plugins/discretizing_filters/polynom.h #482993:482994
@@ -1,11 +1,11 @@
 /******************************************************************************
- * polynom.h : polynom class. Implements the following operations:           *
+ *  polynom.h : polynom class. Implements the following operations:           *
  *              - the sum, the difference and the product between polynoms ;  *
  *              - the multiplication and the division by a scalar ;           *
  *              - the derivative and the integrate.                           *
  *                                                                            *
- * author :                 Jean-Paul PETILLON                                *
- * licence :                GNU GPL V2+                                       *
+ *  Copyright 2005, Jean-Paul Petillon                                        *
+ *  Released under the terms of the GPL.                                      *
  ******************************************************************************/
 #ifndef POLYNOM_H
 #define POLYNOM_H


More information about the Kst mailing list