- finished initial import of strongswan file tree

- removed a lot of old and unused stuff
This commit is contained in:
Martin Willi
2006-04-28 10:33:50 +00:00
parent 83cb0b0e8c
commit 340ad20a78
5 changed files with 13 additions and 10 deletions
+3
View File
@@ -33,6 +33,9 @@ SHELL=/bin/sh
### paths within the source tree
KLIPSINC=${FREESWANSRCDIR}/linux/include
KLIPSSRC=${FREESWANSRCDIR}/linux/net/ipsec
LIBFREESWANDIR=${FREESWANSRCDIR}/linux/lib/libfreeswan
FREESWANLIB=${FREESWANSRCDIR}/lib/libfreeswan/libfreeswan.a
+2 -2
View File
@@ -76,7 +76,7 @@ install:
do \
$(INSTALL) $(INSTMANFLAGS) $(SRCDIR)/$$f $(MANDIR)/ipsec_$$f || exit 1 ; \
done
@$(FREESWANSRCDIR)/packaging/utils/manlink $(foreach man, $(MANS), ${SRCDIR}/$(man)) | \
@$(FREESWANSRCDIR)/utils/manlink $(foreach man, $(MANS), ${SRCDIR}/$(man)) | \
while read from to; \
do \
ln -s -f ipsec_$$from $(MANDIR)/$$to; \
@@ -88,7 +88,7 @@ install_file_list:
do \
echo $(MANDIR)/ipsec_$$f;\
done;
@$(FREESWANSRCDIR)/packaging/utils/manlink $(foreach man, $(MANS), ${SRCDIR}/$(man)) | \
@$(FREESWANSRCDIR)/utils/manlink $(foreach man, $(MANS), ${SRCDIR}/$(man)) | \
while read from to; \
do \
echo $(MANDIR)/$$to; \
+4 -4
View File
@@ -314,13 +314,13 @@ install: all
$(INSTALL) $(INSTBINFLAGS) $(BINNAMEPLUTO) $(BINNAMEWHACK) $(LIBEXECDIR)
if $(USE_ADNS) ; then $(INSTALL) $(INSTBINFLAGS) $(BINNAMEADNS) $(LIBDIR) ; fi
$(INSTALL) $(INSTMANFLAGS) pluto.8 $(PMANDIR)/ipsec_pluto.8
sh ${FREESWANSRCDIR}/packaging/utils/manlink pluto.8 | \
sh ${FREESWANSRCDIR}/utils/manlink pluto.8 | \
while read from to ; \
do \
ln -s -f ipsec_$$from $(PMANDIR)/$$to; \
done
$(INSTALL) $(INSTMANFLAGS) ipsec.secrets.5 $(FMANDIR)
sh ${FREESWANSRCDIR}/packaging/utils/manlink ipsec.secrets.5 | \
sh ${FREESWANSRCDIR}/utils/manlink ipsec.secrets.5 | \
while read from to ; \
do \
ln -s -f $$from $(FMANDIR)/$$to; \
@@ -331,13 +331,13 @@ install_file_list:
@if $(USE_ADNS) ; then echo $(LIBDIR)/$(BINNAMEADNS) ; fi
@echo $(LIBEXECDIR)/$(BINNAMEWHACK)
@echo $(PMANDIR)/ipsec_pluto.8
@sh ${FREESWANSRCDIR}/packaging/utils/manlink pluto.8 | \
@sh ${FREESWANSRCDIR}/utils/manlink pluto.8 | \
while read from to; \
do\
echo $(PMANDIR)/$$to; \
done
@echo $(FMANDIR)/ipsec.secrets.5
@sh ${FREESWANSRCDIR}/packaging/utils/manlink ipsec.secrets.5 | \
@sh ${FREESWANSRCDIR}/utils/manlink ipsec.secrets.5 | \
while read from to; \
do \
echo $(FMANDIR)/$$to; \
+3 -3
View File
@@ -497,7 +497,7 @@ char *yytext;
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* RCSID $Id: lex.yy.c,v 1.4 2006/03/28 22:32:49 as Exp $
* RCSID $Id: parser.l,v 1.5 2006/03/28 22:32:33 as Exp $
*/
#include <string.h>
@@ -1706,10 +1706,10 @@ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
* @note If you want to scan bytes that may contain NUL values, then use
* yy_scan_bytes() instead.
*/
YY_BUFFER_STATE yy_scan_string (yyconst char * __yystr )
YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
{
return yy_scan_bytes(__yystr,strlen(__yystr) );
return yy_scan_bytes(yystr,strlen(yystr) );
}
/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
+1 -1
View File
@@ -99,7 +99,7 @@
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* RCSID $Id: parser.tab.c,v 1.5 2006/03/28 22:32:49 as Exp $
* RCSID $Id: parser.y,v 1.6 2006/01/17 23:43:36 as Exp $
*/
#include <stdio.h>