diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:39:25 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:39:25 +0000 |
commit | fd42393167e943cc0c5c7f0dcc46352c2a366689 (patch) | |
tree | bc2b76899d2e926b047a10cb09beb054cf2dc0ec /sbin | |
parent | d4534a6de1dcb69b88ad8293a350e33d1b66f4d7 (diff) |
Merge from the Ericsson repository
| revision 1.5
| date: 1999/02/25 11:38:56; author: niklas; state: Exp; lines: +4 -2
| include sysdep.h everywhere
| ----------------------------
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/genconstants.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sbin/isakmpd/genconstants.sh b/sbin/isakmpd/genconstants.sh index 9482ade17c5..f641680bc39 100644 --- a/sbin/isakmpd/genconstants.sh +++ b/sbin/isakmpd/genconstants.sh @@ -1,5 +1,5 @@ -# $OpenBSD: genconstants.sh,v 1.4 1998/12/21 01:02:23 niklas Exp $ -# $EOM: genconstants.sh,v 1.4 1998/11/24 09:13:09 niklas Exp $ +# $OpenBSD: genconstants.sh,v 1.5 1999/02/26 03:39:24 niklas Exp $ +# $EOM: genconstants.sh,v 1.5 1999/02/25 11:38:56 niklas Exp $ # # Copyright (c) 1998 Niklas Hallqvist. All rights reserved. @@ -53,6 +53,7 @@ BEGIN { print "/* DO NOT EDIT-- this file is automatically generated. */\n" print "#ifndef _'$upcased_name'_H_" print "#define _'$upcased_name'_H_\n" + print "#include \"sysdep.h\"\n" print "#include \"constants.h\"\n" } @@ -86,7 +87,8 @@ $locase_function "' BEGIN { print "/* DO NOT EDIT-- this file is automatically generated. */\n" - print "#include \"constants.h\"\n" + print "#include \"sysdep.h\"\n" + print "#include \"constants.h\"" print "#include \"'$base'.h\"\n" } |