libopkg: remove config.h references
authorJo-Philipp Wich <jo@mein.io>
Fri, 17 Feb 2017 17:26:18 +0000 (18:26 +0100)
committerJo-Philipp Wich <jo@mein.io>
Fri, 17 Feb 2017 17:26:18 +0000 (18:26 +0100)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
14 files changed:
libopkg/file_util.c
libopkg/md5.c
libopkg/opkg.c
libopkg/opkg_cmd.c
libopkg/opkg_conf.c
libopkg/opkg_conf.h
libopkg/opkg_download.c
libopkg/opkg_download.h
libopkg/opkg_install.c
libopkg/opkg_pathfinder.c
libopkg/pkg.c
libopkg/pkg.h
libopkg/pkg_parse.c
libopkg/sha256.c

index b1d793023154ff5f7da0f9ef76efc6601454b718..1a98df6a102bc0a9d9495b57328a16a9cac02b85 100644 (file)
@@ -16,8 +16,6 @@
    General Public License for more details.
 */
 
-#include "config.h"
-
 #include <stdio.h>
 #include <sys/types.h>
 #include <sys/stat.h>
index 5db235ed00999ee7c1075a96ae55d84247de94cb..c44e8154fde3529e7a298d4f8680e46649eb636a 100644 (file)
@@ -20,8 +20,6 @@
 
 /* Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.  */
 
-#include <config.h>
-
 #include "md5.h"
 
 #include <stddef.h>
index dc1148386ba18e63c80a531dd843e0d92cd6cd02..c48d73a9f9b3510bf25920aeb9ee338ec4c81beb 100644 (file)
@@ -15,8 +15,6 @@
    General Public License for more details.
  */
 
-#include "config.h"
-
 #include <stdio.h>
 #include <unistd.h>
 #include <fnmatch.h>
index f9d519259053dc51d94837026ba6727fc7ac2051..9a76faf83f39564967fc2f04ce9507750c250981 100644 (file)
@@ -15,8 +15,6 @@
    General Public License for more details.
 */
 
-#include "config.h"
-
 #include <stdio.h>
 #include <dirent.h>
 #include <glob.h>
index d77d5dd09d6e14989621672809263e58fbd7b78c..dd4f189c670a42d618987504d644ac113dfe4ef8 100644 (file)
@@ -16,8 +16,6 @@
    General Public License for more details.
 */
 
-#include "config.h"
-
 #include <stdio.h>
 #include <sys/types.h>
 #include <sys/stat.h>
index e81133773627a86eb303671b13b8e3666d178371..3893f33f2127e98640b207e9d82bd82150cf6bbd 100644 (file)
@@ -21,8 +21,6 @@
 typedef struct opkg_conf opkg_conf_t;
 extern opkg_conf_t *conf;
 
-#include "config.h"
-
 #include <stdarg.h>
 #include <fnmatch.h>           /* FNM_CASEFOLD */
 
index 73ff1ac711038fcc213e55064d89770f6e484ffe..33b6e7392d4e7395d3694f073c5d3eee32143da6 100644 (file)
@@ -17,8 +17,6 @@
    General Public License for more details.
 */
 
-#include "config.h"
-
 #include <sys/wait.h>
 #include <stdio.h>
 #include <unistd.h>
index ac67ca45d3bb7614fa551b033def2471b0988358..8fc435093148ae29dc18f5145205b18c60cf98c4 100644 (file)
@@ -18,7 +18,6 @@
 #ifndef OPKG_DOWNLOAD_H
 #define OPKG_DOWNLOAD_H
 
-#include "config.h"
 #include "pkg.h"
 
 typedef void (*opkg_download_progress_callback) (int percent, char *url);
index 6752e078484051357200ad4e9a18dd45472319f9..5ccb8a8f2769e0dc2ececc3698c4d37a6276e937 100644 (file)
@@ -15,8 +15,6 @@
    General Public License for more details.
 */
 
-#include "config.h"
-
 #include <stdio.h>
 #include <time.h>
 #include <signal.h>
index 98a6dd4ba2a4bd085d9102d600716ff0257b7cf4..578328ee87b63b9650c7ef5a62e94e1a4e38ac06 100644 (file)
@@ -13,7 +13,6 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.
 */
-#include "config.h"
 
 #include <openssl/ssl.h>
 #include <libpathfinder.h>
index a76e152d4420c49153eac0eaff2316cc055a3ad6..0a9f26d98112572b92b1a8247de8ff35cf27639f 100644 (file)
@@ -15,8 +15,6 @@
    General Public License for more details.
 */
 
-#include "config.h"
-
 #include <stdio.h>
 #include <string.h>
 #include <ctype.h>
index d9cab552826b3d3f2328f91cffab0d3bca676f6e..1ecb59e7558ba88dd3a06cc8a5a6a3635a7aecdb 100644 (file)
@@ -18,8 +18,6 @@
 #ifndef PKG_H
 #define PKG_H
 
-#include "config.h"
-
 #include <sys/types.h>
 #include <libubox/blob.h>
 
index c4637b266efff0fcc49290eb28e4e63bc5d9d8c2..ae52deb2556766211e0e19062340e3030fe1af74 100644 (file)
@@ -16,8 +16,6 @@
    General Public License for more details.
 */
 
-#include "config.h"
-
 #include <stdio.h>
 #include <ctype.h>
 #include <unistd.h>
index d2806a0f3c57625fd97ff2f15eac90f1153e8925..75d94e9953f5896ca7308edaee9cd6d66d7afb3e 100644 (file)
@@ -20,8 +20,6 @@
    Scott G. Miller's sha1.c
 */
 
-#include <config.h>
-
 #include "sha256.h"
 
 #include <stddef.h>