Move configs to 'configs/' and activate-config.pl should be called from root
diff --git a/scripts/activate-config.pl b/scripts/activate-config.pl
index 561e067..caa8cdc 100755
--- a/scripts/activate-config.pl
+++ b/scripts/activate-config.pl
@@ -5,7 +5,7 @@
 use warnings;
 use strict;
 
-my $config_h = "../include/polarssl/config.h";
+my $config_h = "include/polarssl/config.h";
 
 exit( main() );
 
diff --git a/scripts/data_files/config-mini-tls1_1.h b/scripts/data_files/config-mini-tls1_1.h
deleted file mode 100644
index 60b4c36..0000000
--- a/scripts/data_files/config-mini-tls1_1.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Minimal configuration for TLS 1.1 (RFC 4346), implementing only the
- * required ciphersuite: TLS_RSA_WITH_3DES_EDE_CBC_SHA
- *
- * Can be activated with:
- *      cd scripts
- *      ./activate-config.pl data_files/config-mini-tls1_1.h
- */
-
-/* PolarSSL feature support */
-#define POLARSSL_CIPHER_MODE_CBC
-#define POLARSSL_PKCS1_V15
-#define POLARSSL_KEY_EXCHANGE_RSA_ENABLED
-#define POLARSSL_SSL_PROTO_TLS1_1
-
-/* PolarSSL modules */
-#define POLARSSL_AES_C
-#define POLARSSL_ASN1_PARSE_C
-#define POLARSSL_ASN1_WRITE_C
-#define POLARSSL_BIGNUM_C
-#define POLARSSL_CIPHER_C
-#define POLARSSL_CTR_DRBG_C
-#define POLARSSL_DES_C
-#define POLARSSL_ENTROPY_C
-#define POLARSSL_MD_C
-#define POLARSSL_MD5_C
-#define POLARSSL_NET_C
-#define POLARSSL_OID_C
-#define POLARSSL_PK_C
-#define POLARSSL_PK_PARSE_C
-#define POLARSSL_RSA_C
-#define POLARSSL_SHA1_C
-#define POLARSSL_SHA256_C
-#define POLARSSL_SSL_CLI_C
-#define POLARSSL_SSL_SRV_C
-#define POLARSSL_SSL_TLS_C
-#define POLARSSL_X509_CRT_PARSE_C
-#define POLARSSL_X509_USE_C
-
-/* For test certificates */
-#define POLARSSL_BASE64_C
-#define POLARSSL_CERTS_C
-#define POLARSSL_PEM_PARSE_C
-
-/* For testing with compat.sh */
-#define POLARSSL_FS_IO
-
-/* marker for activate-config.pl
- * \} name SECTION: PolarSSL modules */
diff --git a/scripts/data_files/config-psk-rc4-tls1_0.h b/scripts/data_files/config-psk-rc4-tls1_0.h
deleted file mode 100644
index c809658..0000000
--- a/scripts/data_files/config-psk-rc4-tls1_0.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Custom compact configuration for TLS 1.0 with PSK and RC4
- * Distinguishing features: no bignum, no PK, no X509.
- *
- * Can be activated with:
- *      cd scripts
- *      ./activate-config.pl data_files/config-mini-tls1_1.h
- */
-
-/* PolarSSL feature support */
-#define POLARSSL_KEY_EXCHANGE_PSK_ENABLED
-#define POLARSSL_SSL_PROTO_TLS1
-
-/* PolarSSL modules */
-#define POLARSSL_AES_C
-#define POLARSSL_ARC4_C
-#define POLARSSL_ASN1_PARSE_C
-#define POLARSSL_ASN1_WRITE_C
-#define POLARSSL_CIPHER_C
-#define POLARSSL_CTR_DRBG_C
-#define POLARSSL_ENTROPY_C
-#define POLARSSL_MD_C
-#define POLARSSL_MD5_C
-#define POLARSSL_NET_C
-#define POLARSSL_OID_C
-#define POLARSSL_SHA1_C
-#define POLARSSL_SHA256_C
-#define POLARSSL_SSL_CLI_C
-#define POLARSSL_SSL_SRV_C
-#define POLARSSL_SSL_TLS_C
-
-/* marker for activate-config.pl
- * \} name SECTION: PolarSSL modules */
diff --git a/scripts/data_files/config-suite-b.h b/scripts/data_files/config-suite-b.h
deleted file mode 100644
index d140d8f..0000000
--- a/scripts/data_files/config-suite-b.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Minimal configuration for TLS NSA Suite B Profile (RFC 6460)
- *
- * Can be activated with:
- *      cd scripts
- *      ./activate-config.pl data_files/config-mini-tls1_1.h
- */
-
-/* PolarSSL feature support */
-#define POLARSSL_ECP_DP_SECP256R1_ENABLED
-#define POLARSSL_ECP_DP_SECP384R1_ENABLED
-#define POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
-#define POLARSSL_SSL_PROTO_TLS1_2
-
-/* PolarSSL modules */
-#define POLARSSL_AES_C
-#define POLARSSL_ASN1_PARSE_C
-#define POLARSSL_ASN1_WRITE_C
-#define POLARSSL_BIGNUM_C
-#define POLARSSL_CIPHER_C
-#define POLARSSL_CTR_DRBG_C
-#define POLARSSL_ECDH_C
-#define POLARSSL_ECDSA_C
-#define POLARSSL_ECP_C
-#define POLARSSL_ENTROPY_C
-#define POLARSSL_GCM_C
-#define POLARSSL_MD_C
-#define POLARSSL_NET_C
-#define POLARSSL_OID_C
-#define POLARSSL_PK_C
-#define POLARSSL_PK_PARSE_C
-#define POLARSSL_SHA256_C
-#define POLARSSL_SHA512_C
-#define POLARSSL_SSL_CLI_C
-#define POLARSSL_SSL_SRV_C
-#define POLARSSL_SSL_TLS_C
-#define POLARSSL_X509_CRT_PARSE_C
-#define POLARSSL_X509_USE_C
-
-/* For test certificates */
-#define POLARSSL_BASE64_C
-#define POLARSSL_CERTS_C
-#define POLARSSL_PEM_PARSE_C
-
-/* For testing with compat.sh */
-#define POLARSSL_FS_IO
-
-/* marker for activate-config.pl
- * \} name SECTION: PolarSSL modules */