aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kdevstart
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2006-10-18 11:40:53 +0000
committerMartin Willi <martin@strongswan.org>2006-10-18 11:40:53 +0000
commit5ec0c594fb8b7dc14e668fa7496b80b832587cd7 (patch)
tree9a4e5f5e10248dec736de1b2313dd3277bc38cf6 /scripts/kdevstart
parent85929956ae2c2bb293f5387a0c00f15ae6a5e85c (diff)
downloadstrongswan-5ec0c594fb8b7dc14e668fa7496b80b832587cd7.tar.bz2
strongswan-5ec0c594fb8b7dc14e668fa7496b80b832587cd7.tar.xz
moved various scripts in scripts/ dir
add configure script wrappers
Diffstat (limited to 'scripts/kdevstart')
-rwxr-xr-xscripts/kdevstart13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/kdevstart b/scripts/kdevstart
new file mode 100755
index 000000000..d3cc8098f
--- /dev/null
+++ b/scripts/kdevstart
@@ -0,0 +1,13 @@
+#!/bin/bash
+#
+# The kdevelop file parser gets confused by the
+# macrofied aes code, which leads to infinite
+# memory consumption. Use this dirty trick to
+# get kdevelop running...
+
+mv src/libstrongswan/crypto/crypters/aes_cbc_crypter.c libstrongswan_aes.c
+mv src/libcrypto/libaes/aes.c libcrypto_aes.c
+kdevelop3 &
+sleep 20
+mv libstrongswan_aes.c src/libstrongswan/crypto/crypters/aes_cbc_crypter.c
+mv libcrypto_aes.c src/libcrypto/libaes/aes.c