changeset 4274:f7660e7d9b80

[project @ 2003-01-03 20:09:58 by jwe]
author jwe
date Fri, 03 Jan 2003 20:10:33 +0000
parents d9f281027014
children 0c7f63908c5f
files kpathsea/klibtool.config src/pt-bp.cc
diffstat 2 files changed, 22 insertions(+), 22 deletions(-) [+]
line wrap: on
line diff
--- a/kpathsea/klibtool.config	Fri Jan 03 20:00:42 2003 +0000
+++ b/kpathsea/klibtool.config	Fri Jan 03 20:10:33 2003 +0000
@@ -1,12 +1,12 @@
 LIBTOOL_OBJTYPES='STATIC:'
-shared_support=''
+shared_support='true'
 shared_ext='so'
 libpath_var='LD_LIBRARY_PATH'
-CC='gcc'
+CC='cc'
 args_STATIC_compile=''
-args_SHARED_compile='-fPIC'
+args_SHARED_compile='-KPIC'
 args_STATIC_archive=''
 STATIC_ranlib='ranlib'
-args_SHARED_archive='-shared'
+args_SHARED_archive='-G -z text'
 args_SHARED_link=''
 SHARED_postinstall=''
--- a/src/pt-bp.cc	Fri Jan 03 20:00:42 2003 +0000
+++ b/src/pt-bp.cc	Fri Jan 03 20:10:33 2003 +0000
@@ -79,10 +79,10 @@
   if (expr)
     expr->accept (*this);
 
-  tree_statement_list *list = cmd.body ();
+  tree_statement_list *lst = cmd.body ();
 
-  if (list)
-    list->accept (*this);
+  if (lst)
+    lst->accept (*this);
 }
 
 void
@@ -243,10 +243,10 @@
   if (expr)
     expr->accept (*this);
 
-  tree_statement_list *list = cmd.body ();
+  tree_statement_list *lst = cmd.body ();
 
-  if (list)
-    list->accept (*this);
+  if (lst)
+    lst->accept (*this);
 }
 
 void 
@@ -263,10 +263,10 @@
   if (expr)
     expr->accept (*this);
 
-  tree_statement_list *list = cmd.body ();
+  tree_statement_list *lst = cmd.body ();
 
-  if (list)
-    list->accept (*this);
+  if (lst)
+    lst->accept (*this);
 
 }
 
@@ -310,10 +310,10 @@
   if (expr)
     expr->accept (*this);
 
-  tree_statement_list *list = cmd.commands ();
+  tree_statement_list *lst = cmd.commands ();
 
-  if (list)
-    list->accept (*this);
+  if (lst)
+    lst->accept (*this);
 }
 
 void
@@ -322,10 +322,10 @@
   if (found)
     return;
 
-  tree_if_command_list *list = cmd.cmd_list ();
+  tree_if_command_list *lst = cmd.cmd_list ();
 
-  if (list)
-    list->accept (*this);
+  if (lst)
+    lst->accept (*this);
 }
 
 void
@@ -410,10 +410,10 @@
   if (found)
     return;
 
-  tree_argument_list *list = expr.left_hand_side ();
+  tree_argument_list *lst = expr.left_hand_side ();
 
-  if (list)
-    list->accept (*this);
+  if (lst)
+    lst->accept (*this);
 
   tree_expression *rhs = expr.right_hand_side ();