]> err.no Git - pkg-config/commitdiff
Unstaticify variables. (Freedesktop #2459)
authorArch Librarian <arch@canonical.com>
Thu, 14 Jul 2005 13:06:06 +0000 (13:06 +0000)
committerArch Librarian <arch@canonical.com>
Thu, 14 Jul 2005 13:06:06 +0000 (13:06 +0000)
Author: tfheen
Date: 2005-02-21 06:46:31 GMT
Unstaticify variables.  (Freedesktop #2459)

ChangeLog
main.c

index 44d2dd6210f0944be2561a6f50b7eebe3ed744ab..3273d37d2057104633e6d8b4508a250bc852df98 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-02-20  Tollef Fog Heen  <tfheen@err.no>
+
+       * main.c (main): Unstaticify variables.  (Freedesktop #2459)
+
 2004-07-18  Scott James Remnant  <scott@netsplit.com>
 
        * pkg.m4: Fix a bad patch causing duplication in one of the error
diff --git a/main.c b/main.c
index 00d0a272b25b93e4ed0c887d5b5adb1a8d775d96..599f775c2723aaa6f389154a325b662c7e7d3828 100644 (file)
--- a/main.c
+++ b/main.c
@@ -165,25 +165,25 @@ pkg_uninstalled (Package *pkg)
 int
 main (int argc, char **argv)
 {
-  static int want_my_version = 0;
-  static int want_version = 0;
-  static int want_libs = 0;
-  static int want_cflags = 0;
-  static int want_l_libs = 0;
-  static int want_L_libs = 0;
-  static int want_other_libs = 0;
-  static int want_I_cflags = 0;
-  static int want_other_cflags = 0;
-  static int want_list = 0;
-  static int result;
-  static int want_uninstalled = 0;
-  static char *variable_name = NULL;
-  static int want_exists = 0;
-  static char *required_atleast_version = NULL;
-  static char *required_exact_version = NULL;
-  static char *required_max_version = NULL;
-  static char *required_pkgconfig_version = NULL;
-  static int want_silence_errors = 0;
+  int want_my_version = 0;
+  int want_version = 0;
+  int want_libs = 0;
+  int want_cflags = 0;
+  int want_l_libs = 0;
+  int want_L_libs = 0;
+  int want_other_libs = 0;
+  int want_I_cflags = 0;
+  int want_other_cflags = 0;
+  int want_list = 0;
+  int result;
+  int want_uninstalled = 0;
+  char *variable_name = NULL;
+  int want_exists = 0;
+  char *required_atleast_version = NULL;
+  char *required_exact_version = NULL;
+  char *required_max_version = NULL;
+  char *required_pkgconfig_version = NULL;
+  int want_silence_errors = 0;
   GString *str;
   GSList *packages = NULL;
   char *search_path;