Author: jan
Date: 2007-09-18 15:10:14 +0200 (Tue, 18 Sep 2007)
New Revision: 396
Modified:
trunk/openvas-plugins/ChangeLog
trunk/openvas-plugins/plugins/3com_hub/Makefile
trunk/openvas-plugins/plugins/find_service/Makefile
trunk/openvas-plugins/plugins/ftp_write_dirs/Makefile
trunk/openvas-plugins/plugins/hydra/Makefile
trunk/openvas-plugins/plugins/linux_tftp/Makefile
trunk/openvas-plugins/plugins/nikto_wrapper/Makefile
trunk/openvas-plugins/plugins/nmap_tcp_connect/Makefile
trunk/openvas-plugins/plugins/nmap_wrapper/Makefile
trunk/openvas-plugins/plugins/objectserver/Makefile
trunk/openvas-plugins/plugins/openvas_tcp_scanner/Makefile
trunk/openvas-plugins/plugins/smad/Makefile
trunk/openvas-plugins/plugins/snmp_portscan/Makefile
trunk/openvas-plugins/plugins/ssl_ciphers/Makefile
trunk/openvas-plugins/plugins/synscan/Makefile
trunk/openvas-plugins/plugins/tftp_grab_file/Makefile
Log:
* plugins/3com_hub/Makefile, plugins/find_service/Makefile,
plugins/ftp_write_dirs/Makefile, plugins/hydra/Makefile,
plugins/linux_tftp/Makefile, plugins/nikto_wrapper/Makefile,
plugins/nmap_tcp_connect/Makefile, plugins/nmap_wrapper/Makefile,
plugins/objectserver/Makefile, plugins/openvas_tcp_scanner/Makefile,
plugins/smad/Makefile, plugins/snmp_portscan/Makefile,
plugins/ssl_ciphers/Makefile, plugins/synscan/Makefile,
plugins/tftp_grab_file/Makefile: Replace deprecated use of libtool
by new method "--mode". This patch was submitted by Christian Wiese.
Modified: trunk/openvas-plugins/ChangeLog
===================================================================
--- trunk/openvas-plugins/ChangeLog 2007-09-18 12:49:58 UTC (rev 395)
+++ trunk/openvas-plugins/ChangeLog 2007-09-18 13:10:14 UTC (rev 396)
@@ -1,3 +1,15 @@
+2007-09-18 Jan-Oliver Wagner <[EMAIL PROTECTED]>
+
+ * plugins/3com_hub/Makefile, plugins/find_service/Makefile,
+ plugins/ftp_write_dirs/Makefile, plugins/hydra/Makefile,
+ plugins/linux_tftp/Makefile, plugins/nikto_wrapper/Makefile,
+ plugins/nmap_tcp_connect/Makefile, plugins/nmap_wrapper/Makefile,
+ plugins/objectserver/Makefile, plugins/openvas_tcp_scanner/Makefile,
+ plugins/smad/Makefile, plugins/snmp_portscan/Makefile,
+ plugins/ssl_ciphers/Makefile, plugins/synscan/Makefile,
+ plugins/tftp_grab_file/Makefile: Replace deprecated use of libtool
+ by new method "--mode". This patch was submitted by Christian Wiese.
+
2007-07-31 Jan-Oliver Wagner <[EMAIL PROTECTED]>
* scripts/slad_fetch_results.nasl, scripts/slad_init.nasl,
Modified: trunk/openvas-plugins/plugins/3com_hub/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/3com_hub/Makefile 2007-09-18 12:49:58 UTC
(rev 395)
+++ trunk/openvas-plugins/plugins/3com_hub/Makefile 2007-09-18 13:10:14 UTC
(rev 396)
@@ -5,8 +5,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -I/usr/local/include
`libnet-config --defines --cflags` -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo
`libnet-config --defines --libs` -L/usr/local/lib $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include)
-I/usr/local/include `libnet-config --defines --cflags` -c $(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la
$(PLUGNAME).lo `libnet-config --defines --libs` -L/usr/local/lib $(LIBS) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/find_service/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/find_service/Makefile 2007-09-18 12:49:58 UTC
(rev 395)
+++ trunk/openvas-plugins/plugins/find_service/Makefile 2007-09-18 13:10:14 UTC
(rev 396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/ftp_write_dirs/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/ftp_write_dirs/Makefile 2007-09-18
12:49:58 UTC (rev 395)
+++ trunk/openvas-plugins/plugins/ftp_write_dirs/Makefile 2007-09-18
13:10:14 UTC (rev 396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/hydra/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/hydra/Makefile 2007-09-18 12:49:58 UTC
(rev 395)
+++ trunk/openvas-plugins/plugins/hydra/Makefile 2007-09-18 13:10:14 UTC
(rev 396)
@@ -4,8 +4,8 @@
all : hydra.nes
hydra.nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) -o libhydra.la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o libhydra.la
$(PLUGNAME).lo $(LIBS) \
-rpath $(rootdir)/bin/plugins
../install_plug hydra $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/linux_tftp/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/linux_tftp/Makefile 2007-09-18 12:49:58 UTC
(rev 395)
+++ trunk/openvas-plugins/plugins/linux_tftp/Makefile 2007-09-18 13:10:14 UTC
(rev 396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/nikto_wrapper/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/nikto_wrapper/Makefile 2007-09-18
12:49:58 UTC (rev 395)
+++ trunk/openvas-plugins/plugins/nikto_wrapper/Makefile 2007-09-18
13:10:14 UTC (rev 396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) \
$(LIBUTIL) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
Modified: trunk/openvas-plugins/plugins/nmap_tcp_connect/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/nmap_tcp_connect/Makefile 2007-09-18
12:49:58 UTC (rev 395)
+++ trunk/openvas-plugins/plugins/nmap_tcp_connect/Makefile 2007-09-18
13:10:14 UTC (rev 396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/nmap_wrapper/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/nmap_wrapper/Makefile 2007-09-18 12:49:58 UTC
(rev 395)
+++ trunk/openvas-plugins/plugins/nmap_wrapper/Makefile 2007-09-18 13:10:14 UTC
(rev 396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS)
$(LIBUTIL) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) $(LIBUTIL) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/objectserver/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/objectserver/Makefile 2007-09-18 12:49:58 UTC
(rev 395)
+++ trunk/openvas-plugins/plugins/objectserver/Makefile 2007-09-18 13:10:14 UTC
(rev 396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/openvas_tcp_scanner/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/openvas_tcp_scanner/Makefile 2007-09-18
12:49:58 UTC (rev 395)
+++ trunk/openvas-plugins/plugins/openvas_tcp_scanner/Makefile 2007-09-18
13:10:14 UTC (rev 396)
@@ -7,8 +7,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS)
-lm $(LIBUTIL) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) -lm $(LIBUTIL) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/smad/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/smad/Makefile 2007-09-18 12:49:58 UTC (rev
395)
+++ trunk/openvas-plugins/plugins/smad/Makefile 2007-09-18 13:10:14 UTC (rev
396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/snmp_portscan/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/snmp_portscan/Makefile 2007-09-18
12:49:58 UTC (rev 395)
+++ trunk/openvas-plugins/plugins/snmp_portscan/Makefile 2007-09-18
13:10:14 UTC (rev 396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) \
$(LIBUTIL) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
Modified: trunk/openvas-plugins/plugins/ssl_ciphers/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/ssl_ciphers/Makefile 2007-09-18 12:49:58 UTC
(rev 395)
+++ trunk/openvas-plugins/plugins/ssl_ciphers/Makefile 2007-09-18 13:10:14 UTC
(rev 396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/synscan/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/synscan/Makefile 2007-09-18 12:49:58 UTC
(rev 395)
+++ trunk/openvas-plugins/plugins/synscan/Makefile 2007-09-18 13:10:14 UTC
(rev 396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) $(DEFS) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
Modified: trunk/openvas-plugins/plugins/tftp_grab_file/Makefile
===================================================================
--- trunk/openvas-plugins/plugins/tftp_grab_file/Makefile 2007-09-18
12:49:58 UTC (rev 395)
+++ trunk/openvas-plugins/plugins/tftp_grab_file/Makefile 2007-09-18
13:10:14 UTC (rev 396)
@@ -4,8 +4,8 @@
all : $(PLUGNAME).nes
$(PLUGNAME).nes : $(PLUGNAME).c
- $(LIBTOOL) $(CC) $(DEFS) $(include) -c $(PLUGNAME).c
- $(LIBTOOL) $(CC) -o lib$(PLUGNAME).la $(PLUGNAME).lo $(LIBS) \
+ $(LIBTOOL) --mode=compile --tag CC $(CC) $(DEFS) $(include) -c
$(PLUGNAME).c
+ $(LIBTOOL) --mode=link --tag CC $(CC) -o lib$(PLUGNAME).la
$(PLUGNAME).lo $(LIBS) \
-rpath $(rootdir)/bin/plugins
../install_plug $(PLUGNAME) $(rootdir)
clean :
_______________________________________________
Openvas-commits mailing list
[email protected]
http://lists.wald.intevation.org/mailman/listinfo/openvas-commits